@keep-network/tbtc-v2 0.1.1-ropsten.0 → 0.1.1-ropsten.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/artifacts/TBTC.json +25 -25
- package/artifacts/VendingMachine.json +22 -22
- package/artifacts/solcInputs/{7cc3eda3cb3ff2522d18b5e7b31ea228.json → 0c46d22cee2363c42c8bb0664dc1be66.json} +2 -2
- package/build/contracts/GovernanceUtils.sol/GovernanceUtils.dbg.json +1 -1
- package/build/contracts/bridge/VendingMachine.sol/VendingMachine.dbg.json +1 -1
- package/build/contracts/bridge/VendingMachine.sol/VendingMachine.json +2 -2
- package/build/contracts/token/TBTC.sol/TBTC.dbg.json +1 -1
- package/build/contracts/token/TBTC.sol/TBTC.json +4 -4
- package/deploy/00_resolve_tbtc_v1_token.ts +1 -1
- package/export.json +27 -27
- package/package.json +24 -15
|
@@ -29,13 +29,13 @@
|
|
|
29
29
|
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize, which returns 0 for contracts in\n // construction, since the code is only stored at the end of the\n // constructor execution.\n\n uint256 size;\n assembly {\n size := extcodesize(account)\n }\n return size > 0;\n }\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\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, it is bubbled up by this\n * function (like regular Solidity function calls).\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 * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCall(target, data, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\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 * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n require(isContract(target), \"Address: call to non-contract\");\n\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return _verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n require(isContract(target), \"Address: static call to non-contract\");\n\n (bool success, bytes memory returndata) = target.staticcall(data);\n return _verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(isContract(target), \"Address: delegate call to non-contract\");\n\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return _verifyCallResult(success, returndata, errorMessage);\n }\n\n function _verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) private pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\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\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n }\n}\n"
|
|
30
30
|
},
|
|
31
31
|
"@thesis/solidity-contracts/contracts/token/ERC20WithPermit.sol": {
|
|
32
|
-
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.4;\n\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\n\nimport \"./IERC20WithPermit.sol\";\nimport \"./IReceiveApproval.sol\";\n\n/// @title ERC20WithPermit\n/// @notice Burnable ERC20 token with EIP2612 permit functionality. User can\n/// authorize a transfer of their token with a signature conforming\n/// EIP712 standard instead of an on-chain transaction from their\n/// address. Anyone can submit this signature on the user's behalf by\n/// calling the permit function, as specified in EIP2612 standard,\n/// paying gas fees, and possibly performing other actions in the same\n/// transaction.\ncontract ERC20WithPermit is IERC20WithPermit, Ownable {\n /// @notice The amount of tokens owned by the given account.\n mapping(address => uint256) public override balanceOf;\n\n /// @notice The remaining number of tokens that spender will be\n /// allowed to spend on behalf of owner through `transferFrom` and\n /// `burnFrom`. This is zero by default.\n mapping(address => mapping(address => uint256)) public override allowance;\n\n /// @notice Returns the current nonce for EIP2612 permission for the\n /// provided token owner for a replay protection. Used to construct\n /// EIP2612 signature provided to `permit` function.\n mapping(address => uint256) public override nonces;\n\n uint256 public immutable cachedChainId;\n bytes32 public immutable cachedDomainSeparator;\n\n /// @notice Returns EIP2612 Permit message hash. Used to construct EIP2612\n /// signature provided to `permit` function.\n bytes32 public constant override PERMIT_TYPEHASH =\n keccak256(\n \"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\"\n );\n\n /// @notice The amount of tokens in existence.\n uint256 public override totalSupply;\n\n /// @notice The name of the token.\n string public override name;\n\n /// @notice The symbol of the token.\n string public override symbol;\n\n /// @notice The decimals places of the token.\n uint8 public constant override decimals = 18;\n\n constructor(string memory _name, string memory _symbol) {\n name = _name;\n symbol = _symbol;\n\n cachedChainId = block.chainid;\n cachedDomainSeparator = buildDomainSeparator();\n }\n\n /// @notice Moves `amount` tokens from the caller's account to `recipient`.\n /// @return True if the operation succeeded, reverts otherwise.\n /// @dev Requirements:\n /// - `recipient` cannot be the zero address,\n /// - the caller must have a balance of at least `amount`.\n function transfer(address recipient, uint256 amount)\n external\n override\n returns (bool)\n {\n _transfer(msg.sender, recipient, amount);\n return true;\n }\n\n /// @notice Moves `amount` tokens from `sender` to `recipient` using the\n /// allowance mechanism. `amount` is then deducted from the caller's\n /// allowance unless the allowance was made for `type(uint256).max`.\n /// @return True if the operation succeeded, reverts otherwise.\n /// @dev Requirements:\n /// - `sender` and `recipient` cannot be the zero address,\n /// - `sender` must have a balance of at least `amount`,\n /// - the caller must have allowance for `sender`'s tokens of at least\n /// `amount`.\n function transferFrom(\n address sender,\n address recipient,\n uint256 amount\n ) external override returns (bool) {\n uint256 currentAllowance = allowance[sender][msg.sender];\n if (currentAllowance != type(uint256).max) {\n require(\n currentAllowance >= amount,\n \"Transfer amount exceeds allowance\"\n );\n _approve(sender, msg.sender, currentAllowance - amount);\n }\n _transfer(sender, recipient, amount);\n return true;\n }\n\n /// @notice EIP2612 approval made with secp256k1 signature.\n /// Users can authorize a transfer of their tokens with a signature\n /// conforming EIP712 standard, rather than an on-chain transaction\n /// from their address. Anyone can submit this signature on the\n /// user's behalf by calling the permit function, paying gas fees,\n /// and possibly performing other actions in the same transaction.\n /// @dev The deadline argument can be set to `type(uint256).max to create\n /// permits that effectively never expire. If the `amount` is set\n /// to `type(uint256).max` then `transferFrom` and `burnFrom` will\n /// not reduce an allowance.\n function permit(\n address owner,\n address spender,\n uint256 amount,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) external override {\n /* solhint-disable-next-line not-rely-on-time */\n require(deadline >= block.timestamp, \"Permission expired\");\n\n // Validate `s` and `v` values for a malleability concern described in EIP2.\n // Only signatures with `s` value in the lower half of the secp256k1\n // curve's order and `v` value of 27 or 28 are considered valid.\n require(\n uint256(s) <=\n 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0,\n \"Invalid signature 's' value\"\n );\n require(v == 27 || v == 28, \"Invalid signature 'v' value\");\n\n bytes32 digest = keccak256(\n abi.encodePacked(\n \"\\x19\\x01\",\n DOMAIN_SEPARATOR(),\n keccak256(\n abi.encode(\n PERMIT_TYPEHASH,\n owner,\n spender,\n amount,\n nonces[owner]++,\n deadline\n )\n )\n )\n );\n address recoveredAddress = ecrecover(digest, v, r, s);\n require(\n recoveredAddress != address(0) && recoveredAddress == owner,\n \"Invalid signature\"\n );\n _approve(owner, spender, amount);\n }\n\n /// @notice Creates `amount` tokens and assigns them to `account`,\n /// increasing the total supply.\n /// @dev Requirements:\n /// - `recipient` cannot be the zero address.\n function mint(address recipient, uint256 amount) external onlyOwner {\n require(recipient != address(0), \"Mint to the zero address\");\n\n beforeTokenTransfer(address(0), recipient, amount);\n\n totalSupply += amount;\n balanceOf[recipient] += amount;\n emit Transfer(address(0), recipient, amount);\n }\n\n /// @notice Destroys `amount` tokens from the caller.\n /// @dev Requirements:\n /// - the caller must have a balance of at least `amount`.\n function burn(uint256 amount) external override {\n _burn(msg.sender, amount);\n }\n\n /// @notice Destroys `amount` of tokens from `account` using the allowance\n /// mechanism. `amount` is then deducted from the caller's allowance\n /// unless the allowance was made for `type(uint256).max`.\n /// @dev Requirements:\n /// - `account` must have a balance of at least `amount`,\n /// - the caller must have allowance for `account`'s tokens of at least\n /// `amount`.\n function burnFrom(address account, uint256 amount) external override {\n uint256 currentAllowance = allowance[account][msg.sender];\n if (currentAllowance != type(uint256).max) {\n require(\n currentAllowance >= amount,\n \"Burn amount exceeds allowance\"\n );\n _approve(account, msg.sender, currentAllowance - amount);\n }\n _burn(account, amount);\n }\n\n /// @notice Calls `receiveApproval` function on spender previously approving\n /// the spender to withdraw from the caller multiple times, up to\n /// the `amount` amount. If this function is called again, it\n /// overwrites the current allowance with `amount`. Reverts if the\n /// approval reverted or if `receiveApproval` call on the spender\n /// reverted.\n /// @return True if both approval and `receiveApproval` calls succeeded.\n /// @dev If the `amount` is set to `type(uint256).max` then\n /// `transferFrom` and `burnFrom` will not reduce an allowance.\n function approveAndCall(\n address spender,\n uint256 amount,\n bytes memory extraData\n ) external override returns (bool) {\n if (approve(spender, amount)) {\n IReceiveApproval(spender).receiveApproval(\n msg.sender,\n amount,\n address(this),\n extraData\n );\n return true;\n }\n return false;\n }\n\n /// @notice Sets `amount` as the allowance of `spender` over the caller's\n /// tokens.\n /// @return True if the operation succeeded.\n /// @dev If the `amount` is set to `type(uint256).max` then\n /// `transferFrom` and `burnFrom` will not reduce an allowance.\n /// Beware that changing an allowance with this method brings the risk\n /// that someone may use both the old and the new allowance by\n /// unfortunate transaction ordering. One possible solution to mitigate\n /// this race condition is to first reduce the spender's allowance to 0\n /// and set the desired value afterwards:\n /// https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n function approve(address spender, uint256 amount)\n public\n override\n returns (bool)\n {\n _approve(msg.sender, spender, amount);\n return true;\n }\n\n /// @notice Returns hash of EIP712 Domain struct with the token name as\n /// a signing domain and token contract as a verifying contract.\n /// Used to construct EIP2612 signature provided to `permit`\n /// function.\n /* solhint-disable-next-line func-name-mixedcase */\n function DOMAIN_SEPARATOR() public view override returns (bytes32) {\n // As explained in EIP-2612, if the DOMAIN_SEPARATOR contains the\n // chainId and is defined at contract deployment instead of\n // reconstructed for every signature, there is a risk of possible replay\n // attacks between chains in the event of a future chain split.\n // To address this issue, we check the cached chain ID against the\n // current one and in case they are different, we build domain separator\n // from scratch.\n if (block.chainid == cachedChainId) {\n return cachedDomainSeparator;\n } else {\n return buildDomainSeparator();\n }\n }\n\n /// @dev Hook that is called before any transfer of tokens. This includes\n /// minting and burning.\n ///\n /// Calling conditions:\n /// - when `from` and `to` are both non-zero, `amount` of `from`'s tokens\n /// will be to transferred to `to`.\n /// - when `from` is zero, `amount` tokens will be minted for `to`.\n /// - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n /// - `from` and `to` are never both zero.\n // slither-disable-next-line dead-code\n function beforeTokenTransfer(\n address from,\n address to,\n uint256 amount\n ) internal virtual {}\n\n function _burn(address account, uint256 amount) internal {\n uint256 currentBalance = balanceOf[account];\n require(currentBalance >= amount, \"Burn amount exceeds balance\");\n\n beforeTokenTransfer(account, address(0), amount);\n\n balanceOf[account] = currentBalance - amount;\n totalSupply -= amount;\n emit Transfer(account, address(0), amount);\n }\n\n function _transfer(\n address sender,\n address recipient,\n uint256 amount\n ) private {\n require(sender != address(0), \"Transfer from the zero address\");\n require(recipient != address(0), \"Transfer to the zero address\");\n require(recipient != address(this), \"Transfer to the token address\");\n\n beforeTokenTransfer(sender, recipient, amount);\n\n uint256 senderBalance = balanceOf[sender];\n require(senderBalance >= amount, \"Transfer amount exceeds balance\");\n balanceOf[sender] = senderBalance - amount;\n balanceOf[recipient] += amount;\n emit Transfer(sender, recipient, amount);\n }\n\n function _approve(\n address owner,\n address spender,\n uint256 amount\n ) private {\n require(owner != address(0), \"Approve from the zero address\");\n require(spender != address(0), \"Approve to the zero address\");\n allowance[owner][spender] = amount;\n emit Approval(owner, spender, amount);\n }\n\n function buildDomainSeparator() private view returns (bytes32) {\n return\n keccak256(\n abi.encode(\n keccak256(\n \"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\"\n ),\n keccak256(bytes(name)),\n keccak256(bytes(\"1\")),\n block.chainid,\n address(this)\n )\n );\n }\n}\n"
|
|
32
|
+
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.4;\n\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\n\nimport \"./IERC20WithPermit.sol\";\nimport \"./IReceiveApproval.sol\";\n\n/// @title ERC20WithPermit\n/// @notice Burnable ERC20 token with EIP2612 permit functionality. User can\n/// authorize a transfer of their token with a signature conforming\n/// EIP712 standard instead of an on-chain transaction from their\n/// address. Anyone can submit this signature on the user's behalf by\n/// calling the permit function, as specified in EIP2612 standard,\n/// paying gas fees, and possibly performing other actions in the same\n/// transaction.\ncontract ERC20WithPermit is IERC20WithPermit, Ownable {\n /// @notice The amount of tokens owned by the given account.\n mapping(address => uint256) public override balanceOf;\n\n /// @notice The remaining number of tokens that spender will be\n /// allowed to spend on behalf of owner through `transferFrom` and\n /// `burnFrom`. This is zero by default.\n mapping(address => mapping(address => uint256)) public override allowance;\n\n /// @notice Returns the current nonce for EIP2612 permission for the\n /// provided token owner for a replay protection. Used to construct\n /// EIP2612 signature provided to `permit` function.\n mapping(address => uint256) public override nonce;\n\n uint256 public immutable cachedChainId;\n bytes32 public immutable cachedDomainSeparator;\n\n /// @notice Returns EIP2612 Permit message hash. Used to construct EIP2612\n /// signature provided to `permit` function.\n bytes32 public constant override PERMIT_TYPEHASH =\n keccak256(\n \"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\"\n );\n\n /// @notice The amount of tokens in existence.\n uint256 public override totalSupply;\n\n /// @notice The name of the token.\n string public override name;\n\n /// @notice The symbol of the token.\n string public override symbol;\n\n /// @notice The decimals places of the token.\n uint8 public constant override decimals = 18;\n\n constructor(string memory _name, string memory _symbol) {\n name = _name;\n symbol = _symbol;\n\n cachedChainId = block.chainid;\n cachedDomainSeparator = buildDomainSeparator();\n }\n\n /// @notice Moves `amount` tokens from the caller's account to `recipient`.\n /// @return True if the operation succeeded, reverts otherwise.\n /// @dev Requirements:\n /// - `recipient` cannot be the zero address,\n /// - the caller must have a balance of at least `amount`.\n function transfer(address recipient, uint256 amount)\n external\n override\n returns (bool)\n {\n _transfer(msg.sender, recipient, amount);\n return true;\n }\n\n /// @notice Moves `amount` tokens from `spender` to `recipient` using the\n /// allowance mechanism. `amount` is then deducted from the caller's\n /// allowance unless the allowance was made for `type(uint256).max`.\n /// @return True if the operation succeeded, reverts otherwise.\n /// @dev Requirements:\n /// - `spender` and `recipient` cannot be the zero address,\n /// - `spender` must have a balance of at least `amount`,\n /// - the caller must have allowance for `spender`'s tokens of at least\n /// `amount`.\n function transferFrom(\n address spender,\n address recipient,\n uint256 amount\n ) external override returns (bool) {\n uint256 currentAllowance = allowance[spender][msg.sender];\n if (currentAllowance != type(uint256).max) {\n require(\n currentAllowance >= amount,\n \"Transfer amount exceeds allowance\"\n );\n _approve(spender, msg.sender, currentAllowance - amount);\n }\n _transfer(spender, recipient, amount);\n return true;\n }\n\n /// @notice EIP2612 approval made with secp256k1 signature.\n /// Users can authorize a transfer of their tokens with a signature\n /// conforming EIP712 standard, rather than an on-chain transaction\n /// from their address. Anyone can submit this signature on the\n /// user's behalf by calling the permit function, paying gas fees,\n /// and possibly performing other actions in the same transaction.\n /// @dev The deadline argument can be set to `type(uint256).max to create\n /// permits that effectively never expire. If the `amount` is set\n /// to `type(uint256).max` then `transferFrom` and `burnFrom` will\n /// not reduce an allowance.\n function permit(\n address owner,\n address spender,\n uint256 amount,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) external override {\n /* solhint-disable-next-line not-rely-on-time */\n require(deadline >= block.timestamp, \"Permission expired\");\n\n // Validate `s` and `v` values for a malleability concern described in EIP2.\n // Only signatures with `s` value in the lower half of the secp256k1\n // curve's order and `v` value of 27 or 28 are considered valid.\n require(\n uint256(s) <=\n 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0,\n \"Invalid signature 's' value\"\n );\n require(v == 27 || v == 28, \"Invalid signature 'v' value\");\n\n bytes32 digest = keccak256(\n abi.encodePacked(\n \"\\x19\\x01\",\n DOMAIN_SEPARATOR(),\n keccak256(\n abi.encode(\n PERMIT_TYPEHASH,\n owner,\n spender,\n amount,\n nonce[owner]++,\n deadline\n )\n )\n )\n );\n address recoveredAddress = ecrecover(digest, v, r, s);\n require(\n recoveredAddress != address(0) && recoveredAddress == owner,\n \"Invalid signature\"\n );\n _approve(owner, spender, amount);\n }\n\n /// @notice Creates `amount` tokens and assigns them to `account`,\n /// increasing the total supply.\n /// @dev Requirements:\n /// - `recipient` cannot be the zero address.\n function mint(address recipient, uint256 amount) external onlyOwner {\n require(recipient != address(0), \"Mint to the zero address\");\n\n beforeTokenTransfer(address(0), recipient, amount);\n\n totalSupply += amount;\n balanceOf[recipient] += amount;\n emit Transfer(address(0), recipient, amount);\n }\n\n /// @notice Destroys `amount` tokens from the caller.\n /// @dev Requirements:\n /// - the caller must have a balance of at least `amount`.\n function burn(uint256 amount) external override {\n _burn(msg.sender, amount);\n }\n\n /// @notice Destroys `amount` of tokens from `account` using the allowance\n /// mechanism. `amount` is then deducted from the caller's allowance\n /// unless the allowance was made for `type(uint256).max`.\n /// @dev Requirements:\n /// - `account` must have a balance of at least `amount`,\n /// - the caller must have allowance for `account`'s tokens of at least\n /// `amount`.\n function burnFrom(address account, uint256 amount) external override {\n uint256 currentAllowance = allowance[account][msg.sender];\n if (currentAllowance != type(uint256).max) {\n require(\n currentAllowance >= amount,\n \"Burn amount exceeds allowance\"\n );\n _approve(account, msg.sender, currentAllowance - amount);\n }\n _burn(account, amount);\n }\n\n /// @notice Calls `receiveApproval` function on spender previously approving\n /// the spender to withdraw from the caller multiple times, up to\n /// the `amount` amount. If this function is called again, it\n /// overwrites the current allowance with `amount`. Reverts if the\n /// approval reverted or if `receiveApproval` call on the spender\n /// reverted.\n /// @return True if both approval and `receiveApproval` calls succeeded.\n /// @dev If the `amount` is set to `type(uint256).max` then\n /// `transferFrom` and `burnFrom` will not reduce an allowance.\n function approveAndCall(\n address spender,\n uint256 amount,\n bytes memory extraData\n ) external override returns (bool) {\n if (approve(spender, amount)) {\n IReceiveApproval(spender).receiveApproval(\n msg.sender,\n amount,\n address(this),\n extraData\n );\n return true;\n }\n return false;\n }\n\n /// @notice Sets `amount` as the allowance of `spender` over the caller's\n /// tokens.\n /// @return True if the operation succeeded.\n /// @dev If the `amount` is set to `type(uint256).max` then\n /// `transferFrom` and `burnFrom` will not reduce an allowance.\n /// Beware that changing an allowance with this method brings the risk\n /// that someone may use both the old and the new allowance by\n /// unfortunate transaction ordering. One possible solution to mitigate\n /// this race condition is to first reduce the spender's allowance to 0\n /// and set the desired value afterwards:\n /// https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n function approve(address spender, uint256 amount)\n public\n override\n returns (bool)\n {\n _approve(msg.sender, spender, amount);\n return true;\n }\n\n /// @notice Returns hash of EIP712 Domain struct with the token name as\n /// a signing domain and token contract as a verifying contract.\n /// Used to construct EIP2612 signature provided to `permit`\n /// function.\n /* solhint-disable-next-line func-name-mixedcase */\n function DOMAIN_SEPARATOR() public view override returns (bytes32) {\n // As explained in EIP-2612, if the DOMAIN_SEPARATOR contains the\n // chainId and is defined at contract deployment instead of\n // reconstructed for every signature, there is a risk of possible replay\n // attacks between chains in the event of a future chain split.\n // To address this issue, we check the cached chain ID against the\n // current one and in case they are different, we build domain separator\n // from scratch.\n if (block.chainid == cachedChainId) {\n return cachedDomainSeparator;\n } else {\n return buildDomainSeparator();\n }\n }\n\n /// @dev Hook that is called before any transfer of tokens. This includes\n /// minting and burning.\n ///\n /// Calling conditions:\n /// - when `from` and `to` are both non-zero, `amount` of `from`'s tokens\n /// will be to transferred to `to`.\n /// - when `from` is zero, `amount` tokens will be minted for `to`.\n /// - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n /// - `from` and `to` are never both zero.\n // slither-disable-next-line dead-code\n function beforeTokenTransfer(\n address from,\n address to,\n uint256 amount\n ) internal virtual {}\n\n function _burn(address account, uint256 amount) internal {\n uint256 currentBalance = balanceOf[account];\n require(currentBalance >= amount, \"Burn amount exceeds balance\");\n\n beforeTokenTransfer(account, address(0), amount);\n\n balanceOf[account] = currentBalance - amount;\n totalSupply -= amount;\n emit Transfer(account, address(0), amount);\n }\n\n function _transfer(\n address spender,\n address recipient,\n uint256 amount\n ) private {\n require(spender != address(0), \"Transfer from the zero address\");\n require(recipient != address(0), \"Transfer to the zero address\");\n require(recipient != address(this), \"Transfer to the token address\");\n\n beforeTokenTransfer(spender, recipient, amount);\n\n uint256 spenderBalance = balanceOf[spender];\n require(spenderBalance >= amount, \"Transfer amount exceeds balance\");\n balanceOf[spender] = spenderBalance - amount;\n balanceOf[recipient] += amount;\n emit Transfer(spender, recipient, amount);\n }\n\n function _approve(\n address owner,\n address spender,\n uint256 amount\n ) private {\n require(owner != address(0), \"Approve from the zero address\");\n require(spender != address(0), \"Approve to the zero address\");\n allowance[owner][spender] = amount;\n emit Approval(owner, spender, amount);\n }\n\n function buildDomainSeparator() private view returns (bytes32) {\n return\n keccak256(\n abi.encode(\n keccak256(\n \"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\"\n ),\n keccak256(bytes(name)),\n keccak256(bytes(\"1\")),\n block.chainid,\n address(this)\n )\n );\n }\n}\n"
|
|
33
33
|
},
|
|
34
34
|
"@thesis/solidity-contracts/contracts/token/MisfundRecovery.sol": {
|
|
35
35
|
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.4;\n\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC721/IERC721.sol\";\n\n/// @title MisfundRecovery\n/// @notice Allows the owner of the token contract extending MisfundRecovery\n/// to recover any ERC20 and ERC721 sent mistakenly to the token\n/// contract address.\ncontract MisfundRecovery is Ownable {\n using SafeERC20 for IERC20;\n\n function recoverERC20(\n IERC20 token,\n address recipient,\n uint256 amount\n ) external onlyOwner {\n token.safeTransfer(recipient, amount);\n }\n\n function recoverERC721(\n IERC721 token,\n address recipient,\n uint256 tokenId,\n bytes calldata data\n ) external onlyOwner {\n token.safeTransferFrom(address(this), recipient, tokenId, data);\n }\n}\n"
|
|
36
36
|
},
|
|
37
37
|
"@thesis/solidity-contracts/contracts/token/IERC20WithPermit.sol": {
|
|
38
|
-
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.4;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\n\nimport \"./IApproveAndCall.sol\";\n\n/// @title IERC20WithPermit\n/// @notice Burnable ERC20 token with EIP2612 permit functionality. User can\n/// authorize a transfer of their token with a signature conforming\n/// EIP712 standard instead of an on-chain transaction from their\n/// address. Anyone can submit this signature on the user's behalf by\n/// calling the permit function, as specified in EIP2612 standard,\n/// paying gas fees, and possibly performing other actions in the same\n/// transaction.\ninterface IERC20WithPermit is IERC20, IERC20Metadata, IApproveAndCall {\n /// @notice EIP2612 approval made with secp256k1 signature.\n /// Users can authorize a transfer of their tokens with a signature\n /// conforming EIP712 standard, rather than an on-chain transaction\n /// from their address. Anyone can submit this signature on the\n /// user's behalf by calling the permit function, paying gas fees,\n /// and possibly performing other actions in the same transaction.\n /// @dev The deadline argument can be set to `type(uint256).max to create\n /// permits that effectively never expire.\n function permit(\n address owner,\n address spender,\n uint256 amount,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) external;\n\n /// @notice Destroys `amount` tokens from the caller.\n function burn(uint256 amount) external;\n\n /// @notice Destroys `amount` of tokens from `account`, deducting the amount\n /// from caller's allowance.\n function burnFrom(address account, uint256 amount) external;\n\n /// @notice Returns hash of EIP712 Domain struct with the token name as\n /// a signing domain and token contract as a verifying contract.\n /// Used to construct EIP2612 signature provided to `permit`\n /// function.\n /* solhint-disable-next-line func-name-mixedcase */\n function DOMAIN_SEPARATOR() external view returns (bytes32);\n\n /// @notice Returns the current nonce for EIP2612 permission for the\n /// provided token owner for a replay protection. Used to construct\n /// EIP2612 signature provided to `permit` function.\n function
|
|
38
|
+
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.4;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\n\nimport \"./IApproveAndCall.sol\";\n\n/// @title IERC20WithPermit\n/// @notice Burnable ERC20 token with EIP2612 permit functionality. User can\n/// authorize a transfer of their token with a signature conforming\n/// EIP712 standard instead of an on-chain transaction from their\n/// address. Anyone can submit this signature on the user's behalf by\n/// calling the permit function, as specified in EIP2612 standard,\n/// paying gas fees, and possibly performing other actions in the same\n/// transaction.\ninterface IERC20WithPermit is IERC20, IERC20Metadata, IApproveAndCall {\n /// @notice EIP2612 approval made with secp256k1 signature.\n /// Users can authorize a transfer of their tokens with a signature\n /// conforming EIP712 standard, rather than an on-chain transaction\n /// from their address. Anyone can submit this signature on the\n /// user's behalf by calling the permit function, paying gas fees,\n /// and possibly performing other actions in the same transaction.\n /// @dev The deadline argument can be set to `type(uint256).max to create\n /// permits that effectively never expire.\n function permit(\n address owner,\n address spender,\n uint256 amount,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) external;\n\n /// @notice Destroys `amount` tokens from the caller.\n function burn(uint256 amount) external;\n\n /// @notice Destroys `amount` of tokens from `account`, deducting the amount\n /// from caller's allowance.\n function burnFrom(address account, uint256 amount) external;\n\n /// @notice Returns hash of EIP712 Domain struct with the token name as\n /// a signing domain and token contract as a verifying contract.\n /// Used to construct EIP2612 signature provided to `permit`\n /// function.\n /* solhint-disable-next-line func-name-mixedcase */\n function DOMAIN_SEPARATOR() external view returns (bytes32);\n\n /// @notice Returns the current nonce for EIP2612 permission for the\n /// provided token owner for a replay protection. Used to construct\n /// EIP2612 signature provided to `permit` function.\n function nonce(address owner) external view returns (uint256);\n\n /// @notice Returns EIP2612 Permit message hash. Used to construct EIP2612\n /// signature provided to `permit` function.\n /* solhint-disable-next-line func-name-mixedcase */\n function PERMIT_TYPEHASH() external pure returns (bytes32);\n}\n"
|
|
39
39
|
},
|
|
40
40
|
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
|
|
41
41
|
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC20 standard.\n *\n * _Available since v4.1._\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"
|
|
@@ -511,8 +511,8 @@
|
|
|
511
511
|
"type": "function"
|
|
512
512
|
}
|
|
513
513
|
],
|
|
514
|
-
"bytecode": "0x60c06040523480156200001157600080fd5b5060405162002c6038038062002c60833981810160405281019062000037919062000268565b620000576200004b6200015760201b60201c565b6200015f60201b60201c565b8273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508060018190555033600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000372565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050620002348162000324565b92915050565b6000815190506200024b816200033e565b92915050565b600081519050620002628162000358565b92915050565b6000806000606084860312156200027e57600080fd5b60006200028e8682870162000223565b9350506020620002a1868287016200023a565b9250506040620002b48682870162000251565b9150509250925092565b6000620002cb82620002fa565b9050919050565b6000620002df82620002be565b9050919050565b6000620002f382620002be565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6200032f81620002d2565b81146200033b57600080fd5b50565b6200034981620002e6565b81146200035557600080fd5b50565b62000363816200031a565b81146200036f57600080fd5b50565b60805160601c60a05160601c61286e620003f260003960008181610a0e01528181610afe01528181610b4501528181610dff01528181610eb101528181611017015261184c01526000818161071301528181610bd701528181610cd201528181610d60015281816110ea015281816111930152611805015261286e6000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80638da5cb5b116100f9578063b766bd8a11610097578063ea1a4e6811610071578063ea1a4e6814610428578063f257a1a014610446578063f2fde38b14610462578063fe7294a81461047e576101a9565b8063b766bd8a146103d0578063bb81268c14610400578063c2b4aa751461040a576101a9565b8063a0712d68116100d3578063a0712d681461035c578063ad3b1b4714610378578063b0b5489514610394578063b29b95ce146103b2576101a9565b80638da5cb5b146103045780638f4ffcb11461032257806395de5a411461033e576101a9565b80632d42067d116101665780635bf32f52116101405780635bf32f52146102a65780636386d0b1146102c257806364e779b1146102de578063715018a6146102fa576101a9565b80632d42067d1461024e5780633678252f1461026a57806351b83ebc14610288576101a9565b806305e448fc146101ae5780630bb037df146101cc5780630c05ab39146101ea5780630c505b7a1461020857806320ad25dc14610226578063240b57e814610230575b600080fd5b6101b661049c565b6040516101c3919061223d565b60405180910390f35b6101d46104a2565b6040516101e1919061223d565b60405180910390f35b6101f26104b8565b6040516101ff9190611fca565b60405180910390f35b6102106104de565b60405161021d919061223d565b60405180910390f35b61022e6104e4565b005b6102386105c5565b604051610245919061223d565b60405180910390f35b61026860048036038101906102639190611be6565b6105cb565b005b610272610711565b60405161027f9190612045565b60405180910390f35b610290610735565b60405161029d919061223d565b60405180910390f35b6102c060048036038101906102bb9190611cf4565b610741565b005b6102dc60048036038101906102d79190611be6565b61081d565b005b6102f860048036038101906102f39190611cf4565b6109a3565b005b610302610c1f565b005b61030c610ca7565b6040516103199190611fca565b60405180910390f35b61033c60048036038101906103379190611c4b565b610cd0565b005b610346610dfd565b6040516103539190612060565b60405180910390f35b61037660048036038101906103719190611cf4565b610e21565b005b610392600480360381019061038d9190611c0f565b610e2e565b005b61039c610ef9565b6040516103a9919061223d565b60405180910390f35b6103ba610f00565b6040516103c7919061223d565b60405180910390f35b6103ea60048036038101906103e59190611cf4565b610f06565b6040516103f7919061223d565b60405180910390f35b610408610f30565b005b610412611224565b60405161041f919061223d565b60405180910390f35b61043061123a565b60405161043d9190611fca565b60405180910390f35b610460600480360381019061045b9190611be6565b611260565b005b61047c60048036038101906104779190611be6565b6113a6565b005b61048661149e565b6040516104939190611fca565b60405180910390f35b60065481565b60006104b360065462093a806114c4565b905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60015481565b6104ec61153f565b73ffffffffffffffffffffffffffffffffffffffff1661050a610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614610560576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105579061213d565b60405180910390fd5b6003546105708162093a80611547565b7f3fd2a429fdc4324c186eb6c71dc1bf3accae43e10f21367f6d143635dd5ed33c6002546040516105a1919061223d565b60405180910390a16002546001819055506000600281905550600060038190555050565b60025481565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461065c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106539061215d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156106cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c3906121bd565b60405180910390fd5b81600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b670de0b6b3a764000081565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c99061215d565b60405180910390fd5b7f0ddb39c814329b5da82b52fcacf65e4db6a1f64a0db4755282bee877cb97991a8242604051610803929190612258565b60405180910390a181600281905550426003819055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a59061215d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561091e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109159061217d565b60405180910390fd5b7f424e3c8894757dd6fd019d0d8065b19c7e49af137aeb89a275ed3d2435025a96824260405161094f92919061201c565b60405180910390a181600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006819055505050565b60006109ae82610f06565b90503373ffffffffffffffffffffffffffffffffffffffff167fe8a2f49c528033a686bb566d35ac82ca6fd93449bdd9f5d5b36c2f1aa68214b383836040516109f8929190612258565b60405180910390a28082610a0c91906122b3565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610a659190611fca565b60206040518083038186803b158015610a7d57600080fd5b505afa158015610a91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab59190611d1d565b1015610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed9061209d565b60405180910390fd5b610b433330837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166115dc909392919063ffffffff16565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166379cc679033846040518363ffffffff1660e01b8152600401610b9e92919061201c565b600060405180830381600087803b158015610bb857600080fd5b505af1158015610bcc573d6000803e3d6000fd5b50505050610c1b33837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166116659092919063ffffffff16565b5050565b610c2761153f565b73ffffffffffffffffffffffffffffffffffffffff16610c45610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c929061213d565b60405180910390fd5b610ca560006116eb565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d55906121fd565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de39061221d565b60405180910390fd5b610df685856117af565b5050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610e2b33826117af565b50565b610e3661153f565b73ffffffffffffffffffffffffffffffffffffffff16610e54610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea19061213d565b60405180910390fd5b610ef582827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166116659092919063ffffffff16565b5050565b62093a8081565b60035481565b6000670de0b6b3a764000060015483610f1f919061233a565b610f299190612309565b9050919050565b610f3861153f565b73ffffffffffffffffffffffffffffffffffffffff16610f56610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa39061213d565b60405180910390fd5b600654610fbc8162093a80611547565b7f99610bc40a14194a7a819ffeded94200b49e68ba00bc3a3ab89625c0972217ff600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660405161100d9190611fca565b60405180910390a17f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f2fde38b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016110909190611fca565b600060405180830381600087803b1580156110aa57600080fd5b505af11580156110be573d6000803e3d6000fd5b505050506111d7600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111419190611fca565b60206040518083038186803b15801561115957600080fd5b505afa15801561116d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111919190611d1d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166116659092919063ffffffff16565b6000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600060068190555050565b600061123560035462093a806114c4565b905090565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e89061215d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611358906121bd565b60405180910390fd5b81600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6113ae61153f565b73ffffffffffffffffffffffffffffffffffffffff166113cc610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614611422576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114199061213d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611492576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611489906120bd565b60405180910390fd5b61149b816116eb565b50565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000808311611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff906120fd565b60405180910390fd5b600083426115169190612394565b9050828110611529576000915050611539565b80836115359190612394565b9150505b92915050565b600033905090565b6000821161158a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611581906120fd565b60405180910390fd5b8082426115979190612394565b10156115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf9061211d565b60405180910390fd5b5050565b61165f846323b872dd60e01b8585856040516024016115fd93929190611fe5565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506118db565b50505050565b6116e68363a9059cbb60e01b848460405160240161168492919061201c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506118db565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe826040516117f5919061223d565b60405180910390a261184a8230837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166115dc909392919063ffffffff16565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166340c10f1983836040518363ffffffff1660e01b81526004016118a592919061201c565b600060405180830381600087803b1580156118bf57600080fd5b505af11580156118d3573d6000803e3d6000fd5b505050505050565b600061193d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166119a29092919063ffffffff16565b905060008151111561199d578080602001905181019061195d9190611ccb565b61199c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611993906121dd565b60405180910390fd5b5b505050565b60606119b184846000856119ba565b90509392505050565b6060824710156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f6906120dd565b60405180910390fd5b611a0885611ace565b611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e9061219d565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051611a709190611fb3565b60006040518083038185875af1925050503d8060008114611aad576040519150601f19603f3d011682016040523d82523d6000602084013e611ab2565b606091505b5091509150611ac2828286611ae1565b92505050949350505050565b600080823b905060008111915050919050565b60608315611af157829050611b41565b600083511115611b045782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b38919061207b565b60405180910390fd5b9392505050565b600081359050611b57816127f3565b92915050565b600081519050611b6c8161280a565b92915050565b60008083601f840112611b8457600080fd5b8235905067ffffffffffffffff811115611b9d57600080fd5b602083019150836001820283011115611bb557600080fd5b9250929050565b600081359050611bcb81612821565b92915050565b600081519050611be081612821565b92915050565b600060208284031215611bf857600080fd5b6000611c0684828501611b48565b91505092915050565b60008060408385031215611c2257600080fd5b6000611c3085828601611b48565b9250506020611c4185828601611bbc565b9150509250929050565b600080600080600060808688031215611c6357600080fd5b6000611c7188828901611b48565b9550506020611c8288828901611bbc565b9450506040611c9388828901611b48565b935050606086013567ffffffffffffffff811115611cb057600080fd5b611cbc88828901611b72565b92509250509295509295909350565b600060208284031215611cdd57600080fd5b6000611ceb84828501611b5d565b91505092915050565b600060208284031215611d0657600080fd5b6000611d1484828501611bbc565b91505092915050565b600060208284031215611d2f57600080fd5b6000611d3d84828501611bd1565b91505092915050565b611d4f816123c8565b82525050565b6000611d6082612281565b611d6a8185612297565b9350611d7a818560208601612458565b80840191505092915050565b611d8f81612410565b82525050565b611d9e81612434565b82525050565b6000611daf8261228c565b611db981856122a2565b9350611dc9818560208601612458565b611dd2816124e9565b840191505092915050565b6000611dea6024836122a2565b9150611df5826124fa565b604082019050919050565b6000611e0d6026836122a2565b9150611e1882612549565b604082019050919050565b6000611e306026836122a2565b9150611e3b82612598565b604082019050919050565b6000611e536014836122a2565b9150611e5e826125e7565b602082019050919050565b6000611e766020836122a2565b9150611e8182612610565b602082019050919050565b6000611e996020836122a2565b9150611ea482612639565b602082019050919050565b6000611ebc6018836122a2565b9150611ec782612662565b602082019050919050565b6000611edf6029836122a2565b9150611eea8261268b565b604082019050919050565b6000611f02601d836122a2565b9150611f0d826126da565b602082019050919050565b6000611f256026836122a2565b9150611f3082612703565b604082019050919050565b6000611f48602a836122a2565b9150611f5382612752565b604082019050919050565b6000611f6b6014836122a2565b9150611f76826127a1565b602082019050919050565b6000611f8e601b836122a2565b9150611f99826127ca565b602082019050919050565b611fad81612406565b82525050565b6000611fbf8284611d55565b915081905092915050565b6000602082019050611fdf6000830184611d46565b92915050565b6000606082019050611ffa6000830186611d46565b6120076020830185611d46565b6120146040830184611fa4565b949350505050565b60006040820190506120316000830185611d46565b61203e6020830184611fa4565b9392505050565b600060208201905061205a6000830184611d86565b92915050565b60006020820190506120756000830184611d95565b92915050565b600060208201905081810360008301526120958184611da4565b905092915050565b600060208201905081810360008301526120b681611ddd565b9050919050565b600060208201905081810360008301526120d681611e00565b9050919050565b600060208201905081810360008301526120f681611e23565b9050919050565b6000602082019050818103600083015261211681611e46565b9050919050565b6000602082019050818103600083015261213681611e69565b9050919050565b6000602082019050818103600083015261215681611e8c565b9050919050565b6000602082019050818103600083015261217681611eaf565b9050919050565b6000602082019050818103600083015261219681611ed2565b9050919050565b600060208201905081810360008301526121b681611ef5565b9050919050565b600060208201905081810360008301526121d681611f18565b9050919050565b600060208201905081810360008301526121f681611f3b565b9050919050565b6000602082019050818103600083015261221681611f5e565b9050919050565b6000602082019050818103600083015261223681611f81565b9050919050565b60006020820190506122526000830184611fa4565b92915050565b600060408201905061226d6000830185611fa4565b61227a6020830184611fa4565b9392505050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b60006122be82612406565b91506122c983612406565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122fe576122fd61248b565b5b828201905092915050565b600061231482612406565b915061231f83612406565b92508261232f5761232e6124ba565b5b828204905092915050565b600061234582612406565b915061235083612406565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156123895761238861248b565b5b828202905092915050565b600061239f82612406565b91506123aa83612406565b9250828210156123bd576123bc61248b565b5b828203905092915050565b60006123d3826123e6565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061241b82612422565b9050919050565b600061242d826123e6565b9050919050565b600061243f82612446565b9050919050565b6000612451826123e6565b9050919050565b60005b8381101561247657808201518184015260208101905061245b565b83811115612485576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b7f416d6f756e74202b20666565206578636565647320544254432076322062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4368616e6765206e6f7420696e69746961746564000000000000000000000000600082015250565b7f476f7665726e616e63652064656c617920686173206e6f7420656c6170736564600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616c6c6572206973206e6f7420617574686f72697a65640000000000000000600082015250565b7f4e65772056656e64696e674d616368696e652063616e6e6f74206265207a657260008201527f6f20616464726573730000000000000000000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f4e657720696e69746961746f72206d757374206e6f74206265207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f546f6b656e206973206e6f742054425443207631000000000000000000000000600082015250565b7f4f6e6c7920544254432076312063616c6c657220616c6c6f7765640000000000600082015250565b6127fc816123c8565b811461280757600080fd5b50565b612813816123da565b811461281e57600080fd5b50565b61282a81612406565b811461283557600080fd5b5056fea264697066735822122004db01c528b9b87ac36e1eb71ee034a1378362503cb3b35617819e9003a4c09064736f6c63430008040033",
|
|
515
|
-
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80638da5cb5b116100f9578063b766bd8a11610097578063ea1a4e6811610071578063ea1a4e6814610428578063f257a1a014610446578063f2fde38b14610462578063fe7294a81461047e576101a9565b8063b766bd8a146103d0578063bb81268c14610400578063c2b4aa751461040a576101a9565b8063a0712d68116100d3578063a0712d681461035c578063ad3b1b4714610378578063b0b5489514610394578063b29b95ce146103b2576101a9565b80638da5cb5b146103045780638f4ffcb11461032257806395de5a411461033e576101a9565b80632d42067d116101665780635bf32f52116101405780635bf32f52146102a65780636386d0b1146102c257806364e779b1146102de578063715018a6146102fa576101a9565b80632d42067d1461024e5780633678252f1461026a57806351b83ebc14610288576101a9565b806305e448fc146101ae5780630bb037df146101cc5780630c05ab39146101ea5780630c505b7a1461020857806320ad25dc14610226578063240b57e814610230575b600080fd5b6101b661049c565b6040516101c3919061223d565b60405180910390f35b6101d46104a2565b6040516101e1919061223d565b60405180910390f35b6101f26104b8565b6040516101ff9190611fca565b60405180910390f35b6102106104de565b60405161021d919061223d565b60405180910390f35b61022e6104e4565b005b6102386105c5565b604051610245919061223d565b60405180910390f35b61026860048036038101906102639190611be6565b6105cb565b005b610272610711565b60405161027f9190612045565b60405180910390f35b610290610735565b60405161029d919061223d565b60405180910390f35b6102c060048036038101906102bb9190611cf4565b610741565b005b6102dc60048036038101906102d79190611be6565b61081d565b005b6102f860048036038101906102f39190611cf4565b6109a3565b005b610302610c1f565b005b61030c610ca7565b6040516103199190611fca565b60405180910390f35b61033c60048036038101906103379190611c4b565b610cd0565b005b610346610dfd565b6040516103539190612060565b60405180910390f35b61037660048036038101906103719190611cf4565b610e21565b005b610392600480360381019061038d9190611c0f565b610e2e565b005b61039c610ef9565b6040516103a9919061223d565b60405180910390f35b6103ba610f00565b6040516103c7919061223d565b60405180910390f35b6103ea60048036038101906103e59190611cf4565b610f06565b6040516103f7919061223d565b60405180910390f35b610408610f30565b005b610412611224565b60405161041f919061223d565b60405180910390f35b61043061123a565b60405161043d9190611fca565b60405180910390f35b610460600480360381019061045b9190611be6565b611260565b005b61047c60048036038101906104779190611be6565b6113a6565b005b61048661149e565b6040516104939190611fca565b60405180910390f35b60065481565b60006104b360065462093a806114c4565b905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60015481565b6104ec61153f565b73ffffffffffffffffffffffffffffffffffffffff1661050a610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614610560576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105579061213d565b60405180910390fd5b6003546105708162093a80611547565b7f3fd2a429fdc4324c186eb6c71dc1bf3accae43e10f21367f6d143635dd5ed33c6002546040516105a1919061223d565b60405180910390a16002546001819055506000600281905550600060038190555050565b60025481565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461065c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106539061215d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156106cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c3906121bd565b60405180910390fd5b81600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b670de0b6b3a764000081565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c99061215d565b60405180910390fd5b7f0ddb39c814329b5da82b52fcacf65e4db6a1f64a0db4755282bee877cb97991a8242604051610803929190612258565b60405180910390a181600281905550426003819055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a59061215d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561091e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109159061217d565b60405180910390fd5b7f424e3c8894757dd6fd019d0d8065b19c7e49af137aeb89a275ed3d2435025a96824260405161094f92919061201c565b60405180910390a181600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006819055505050565b60006109ae82610f06565b90503373ffffffffffffffffffffffffffffffffffffffff167fe8a2f49c528033a686bb566d35ac82ca6fd93449bdd9f5d5b36c2f1aa68214b383836040516109f8929190612258565b60405180910390a28082610a0c91906122b3565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610a659190611fca565b60206040518083038186803b158015610a7d57600080fd5b505afa158015610a91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab59190611d1d565b1015610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed9061209d565b60405180910390fd5b610b433330837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166115dc909392919063ffffffff16565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166379cc679033846040518363ffffffff1660e01b8152600401610b9e92919061201c565b600060405180830381600087803b158015610bb857600080fd5b505af1158015610bcc573d6000803e3d6000fd5b50505050610c1b33837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166116659092919063ffffffff16565b5050565b610c2761153f565b73ffffffffffffffffffffffffffffffffffffffff16610c45610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c929061213d565b60405180910390fd5b610ca560006116eb565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d55906121fd565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de39061221d565b60405180910390fd5b610df685856117af565b5050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610e2b33826117af565b50565b610e3661153f565b73ffffffffffffffffffffffffffffffffffffffff16610e54610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea19061213d565b60405180910390fd5b610ef582827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166116659092919063ffffffff16565b5050565b62093a8081565b60035481565b6000670de0b6b3a764000060015483610f1f919061233a565b610f299190612309565b9050919050565b610f3861153f565b73ffffffffffffffffffffffffffffffffffffffff16610f56610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa39061213d565b60405180910390fd5b600654610fbc8162093a80611547565b7f99610bc40a14194a7a819ffeded94200b49e68ba00bc3a3ab89625c0972217ff600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660405161100d9190611fca565b60405180910390a17f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f2fde38b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016110909190611fca565b600060405180830381600087803b1580156110aa57600080fd5b505af11580156110be573d6000803e3d6000fd5b505050506111d7600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111419190611fca565b60206040518083038186803b15801561115957600080fd5b505afa15801561116d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111919190611d1d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166116659092919063ffffffff16565b6000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600060068190555050565b600061123560035462093a806114c4565b905090565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e89061215d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611358906121bd565b60405180910390fd5b81600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6113ae61153f565b73ffffffffffffffffffffffffffffffffffffffff166113cc610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614611422576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114199061213d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611492576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611489906120bd565b60405180910390fd5b61149b816116eb565b50565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000808311611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff906120fd565b60405180910390fd5b600083426115169190612394565b9050828110611529576000915050611539565b80836115359190612394565b9150505b92915050565b600033905090565b6000821161158a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611581906120fd565b60405180910390fd5b8082426115979190612394565b10156115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf9061211d565b60405180910390fd5b5050565b61165f846323b872dd60e01b8585856040516024016115fd93929190611fe5565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506118db565b50505050565b6116e68363a9059cbb60e01b848460405160240161168492919061201c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506118db565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe826040516117f5919061223d565b60405180910390a261184a8230837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166115dc909392919063ffffffff16565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166340c10f1983836040518363ffffffff1660e01b81526004016118a592919061201c565b600060405180830381600087803b1580156118bf57600080fd5b505af11580156118d3573d6000803e3d6000fd5b505050505050565b600061193d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166119a29092919063ffffffff16565b905060008151111561199d578080602001905181019061195d9190611ccb565b61199c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611993906121dd565b60405180910390fd5b5b505050565b60606119b184846000856119ba565b90509392505050565b6060824710156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f6906120dd565b60405180910390fd5b611a0885611ace565b611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e9061219d565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051611a709190611fb3565b60006040518083038185875af1925050503d8060008114611aad576040519150601f19603f3d011682016040523d82523d6000602084013e611ab2565b606091505b5091509150611ac2828286611ae1565b92505050949350505050565b600080823b905060008111915050919050565b60608315611af157829050611b41565b600083511115611b045782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b38919061207b565b60405180910390fd5b9392505050565b600081359050611b57816127f3565b92915050565b600081519050611b6c8161280a565b92915050565b60008083601f840112611b8457600080fd5b8235905067ffffffffffffffff811115611b9d57600080fd5b602083019150836001820283011115611bb557600080fd5b9250929050565b600081359050611bcb81612821565b92915050565b600081519050611be081612821565b92915050565b600060208284031215611bf857600080fd5b6000611c0684828501611b48565b91505092915050565b60008060408385031215611c2257600080fd5b6000611c3085828601611b48565b9250506020611c4185828601611bbc565b9150509250929050565b600080600080600060808688031215611c6357600080fd5b6000611c7188828901611b48565b9550506020611c8288828901611bbc565b9450506040611c9388828901611b48565b935050606086013567ffffffffffffffff811115611cb057600080fd5b611cbc88828901611b72565b92509250509295509295909350565b600060208284031215611cdd57600080fd5b6000611ceb84828501611b5d565b91505092915050565b600060208284031215611d0657600080fd5b6000611d1484828501611bbc565b91505092915050565b600060208284031215611d2f57600080fd5b6000611d3d84828501611bd1565b91505092915050565b611d4f816123c8565b82525050565b6000611d6082612281565b611d6a8185612297565b9350611d7a818560208601612458565b80840191505092915050565b611d8f81612410565b82525050565b611d9e81612434565b82525050565b6000611daf8261228c565b611db981856122a2565b9350611dc9818560208601612458565b611dd2816124e9565b840191505092915050565b6000611dea6024836122a2565b9150611df5826124fa565b604082019050919050565b6000611e0d6026836122a2565b9150611e1882612549565b604082019050919050565b6000611e306026836122a2565b9150611e3b82612598565b604082019050919050565b6000611e536014836122a2565b9150611e5e826125e7565b602082019050919050565b6000611e766020836122a2565b9150611e8182612610565b602082019050919050565b6000611e996020836122a2565b9150611ea482612639565b602082019050919050565b6000611ebc6018836122a2565b9150611ec782612662565b602082019050919050565b6000611edf6029836122a2565b9150611eea8261268b565b604082019050919050565b6000611f02601d836122a2565b9150611f0d826126da565b602082019050919050565b6000611f256026836122a2565b9150611f3082612703565b604082019050919050565b6000611f48602a836122a2565b9150611f5382612752565b604082019050919050565b6000611f6b6014836122a2565b9150611f76826127a1565b602082019050919050565b6000611f8e601b836122a2565b9150611f99826127ca565b602082019050919050565b611fad81612406565b82525050565b6000611fbf8284611d55565b915081905092915050565b6000602082019050611fdf6000830184611d46565b92915050565b6000606082019050611ffa6000830186611d46565b6120076020830185611d46565b6120146040830184611fa4565b949350505050565b60006040820190506120316000830185611d46565b61203e6020830184611fa4565b9392505050565b600060208201905061205a6000830184611d86565b92915050565b60006020820190506120756000830184611d95565b92915050565b600060208201905081810360008301526120958184611da4565b905092915050565b600060208201905081810360008301526120b681611ddd565b9050919050565b600060208201905081810360008301526120d681611e00565b9050919050565b600060208201905081810360008301526120f681611e23565b9050919050565b6000602082019050818103600083015261211681611e46565b9050919050565b6000602082019050818103600083015261213681611e69565b9050919050565b6000602082019050818103600083015261215681611e8c565b9050919050565b6000602082019050818103600083015261217681611eaf565b9050919050565b6000602082019050818103600083015261219681611ed2565b9050919050565b600060208201905081810360008301526121b681611ef5565b9050919050565b600060208201905081810360008301526121d681611f18565b9050919050565b600060208201905081810360008301526121f681611f3b565b9050919050565b6000602082019050818103600083015261221681611f5e565b9050919050565b6000602082019050818103600083015261223681611f81565b9050919050565b60006020820190506122526000830184611fa4565b92915050565b600060408201905061226d6000830185611fa4565b61227a6020830184611fa4565b9392505050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b60006122be82612406565b91506122c983612406565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122fe576122fd61248b565b5b828201905092915050565b600061231482612406565b915061231f83612406565b92508261232f5761232e6124ba565b5b828204905092915050565b600061234582612406565b915061235083612406565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156123895761238861248b565b5b828202905092915050565b600061239f82612406565b91506123aa83612406565b9250828210156123bd576123bc61248b565b5b828203905092915050565b60006123d3826123e6565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061241b82612422565b9050919050565b600061242d826123e6565b9050919050565b600061243f82612446565b9050919050565b6000612451826123e6565b9050919050565b60005b8381101561247657808201518184015260208101905061245b565b83811115612485576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b7f416d6f756e74202b20666565206578636565647320544254432076322062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4368616e6765206e6f7420696e69746961746564000000000000000000000000600082015250565b7f476f7665726e616e63652064656c617920686173206e6f7420656c6170736564600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616c6c6572206973206e6f7420617574686f72697a65640000000000000000600082015250565b7f4e65772056656e64696e674d616368696e652063616e6e6f74206265207a657260008201527f6f20616464726573730000000000000000000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f4e657720696e69746961746f72206d757374206e6f74206265207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f546f6b656e206973206e6f742054425443207631000000000000000000000000600082015250565b7f4f6e6c7920544254432076312063616c6c657220616c6c6f7765640000000000600082015250565b6127fc816123c8565b811461280757600080fd5b50565b612813816123da565b811461281e57600080fd5b50565b61282a81612406565b811461283557600080fd5b5056fea264697066735822122004db01c528b9b87ac36e1eb71ee034a1378362503cb3b35617819e9003a4c09064736f6c63430008040033",
|
|
514
|
+
"bytecode": "0x60c06040523480156200001157600080fd5b5060405162002c6038038062002c60833981810160405281019062000037919062000268565b620000576200004b6200015760201b60201c565b6200015f60201b60201c565b8273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508060018190555033600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000372565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050620002348162000324565b92915050565b6000815190506200024b816200033e565b92915050565b600081519050620002628162000358565b92915050565b6000806000606084860312156200027e57600080fd5b60006200028e8682870162000223565b9350506020620002a1868287016200023a565b9250506040620002b48682870162000251565b9150509250925092565b6000620002cb82620002fa565b9050919050565b6000620002df82620002be565b9050919050565b6000620002f382620002be565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6200032f81620002d2565b81146200033b57600080fd5b50565b6200034981620002e6565b81146200035557600080fd5b50565b62000363816200031a565b81146200036f57600080fd5b50565b60805160601c60a05160601c61286e620003f260003960008181610a0e01528181610afe01528181610b4501528181610dff01528181610eb101528181611017015261184c01526000818161071301528181610bd701528181610cd201528181610d60015281816110ea015281816111930152611805015261286e6000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80638da5cb5b116100f9578063b766bd8a11610097578063ea1a4e6811610071578063ea1a4e6814610428578063f257a1a014610446578063f2fde38b14610462578063fe7294a81461047e576101a9565b8063b766bd8a146103d0578063bb81268c14610400578063c2b4aa751461040a576101a9565b8063a0712d68116100d3578063a0712d681461035c578063ad3b1b4714610378578063b0b5489514610394578063b29b95ce146103b2576101a9565b80638da5cb5b146103045780638f4ffcb11461032257806395de5a411461033e576101a9565b80632d42067d116101665780635bf32f52116101405780635bf32f52146102a65780636386d0b1146102c257806364e779b1146102de578063715018a6146102fa576101a9565b80632d42067d1461024e5780633678252f1461026a57806351b83ebc14610288576101a9565b806305e448fc146101ae5780630bb037df146101cc5780630c05ab39146101ea5780630c505b7a1461020857806320ad25dc14610226578063240b57e814610230575b600080fd5b6101b661049c565b6040516101c3919061223d565b60405180910390f35b6101d46104a2565b6040516101e1919061223d565b60405180910390f35b6101f26104b8565b6040516101ff9190611fca565b60405180910390f35b6102106104de565b60405161021d919061223d565b60405180910390f35b61022e6104e4565b005b6102386105c5565b604051610245919061223d565b60405180910390f35b61026860048036038101906102639190611be6565b6105cb565b005b610272610711565b60405161027f9190612045565b60405180910390f35b610290610735565b60405161029d919061223d565b60405180910390f35b6102c060048036038101906102bb9190611cf4565b610741565b005b6102dc60048036038101906102d79190611be6565b61081d565b005b6102f860048036038101906102f39190611cf4565b6109a3565b005b610302610c1f565b005b61030c610ca7565b6040516103199190611fca565b60405180910390f35b61033c60048036038101906103379190611c4b565b610cd0565b005b610346610dfd565b6040516103539190612060565b60405180910390f35b61037660048036038101906103719190611cf4565b610e21565b005b610392600480360381019061038d9190611c0f565b610e2e565b005b61039c610ef9565b6040516103a9919061223d565b60405180910390f35b6103ba610f00565b6040516103c7919061223d565b60405180910390f35b6103ea60048036038101906103e59190611cf4565b610f06565b6040516103f7919061223d565b60405180910390f35b610408610f30565b005b610412611224565b60405161041f919061223d565b60405180910390f35b61043061123a565b60405161043d9190611fca565b60405180910390f35b610460600480360381019061045b9190611be6565b611260565b005b61047c60048036038101906104779190611be6565b6113a6565b005b61048661149e565b6040516104939190611fca565b60405180910390f35b60065481565b60006104b360065462093a806114c4565b905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60015481565b6104ec61153f565b73ffffffffffffffffffffffffffffffffffffffff1661050a610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614610560576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105579061213d565b60405180910390fd5b6003546105708162093a80611547565b7f3fd2a429fdc4324c186eb6c71dc1bf3accae43e10f21367f6d143635dd5ed33c6002546040516105a1919061223d565b60405180910390a16002546001819055506000600281905550600060038190555050565b60025481565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461065c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106539061215d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156106cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c3906121bd565b60405180910390fd5b81600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b670de0b6b3a764000081565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c99061215d565b60405180910390fd5b7f0ddb39c814329b5da82b52fcacf65e4db6a1f64a0db4755282bee877cb97991a8242604051610803929190612258565b60405180910390a181600281905550426003819055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a59061215d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561091e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109159061217d565b60405180910390fd5b7f424e3c8894757dd6fd019d0d8065b19c7e49af137aeb89a275ed3d2435025a96824260405161094f92919061201c565b60405180910390a181600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006819055505050565b60006109ae82610f06565b90503373ffffffffffffffffffffffffffffffffffffffff167fe8a2f49c528033a686bb566d35ac82ca6fd93449bdd9f5d5b36c2f1aa68214b383836040516109f8929190612258565b60405180910390a28082610a0c91906122b3565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610a659190611fca565b60206040518083038186803b158015610a7d57600080fd5b505afa158015610a91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab59190611d1d565b1015610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed9061209d565b60405180910390fd5b610b433330837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166115dc909392919063ffffffff16565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166379cc679033846040518363ffffffff1660e01b8152600401610b9e92919061201c565b600060405180830381600087803b158015610bb857600080fd5b505af1158015610bcc573d6000803e3d6000fd5b50505050610c1b33837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166116659092919063ffffffff16565b5050565b610c2761153f565b73ffffffffffffffffffffffffffffffffffffffff16610c45610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c929061213d565b60405180910390fd5b610ca560006116eb565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d55906121fd565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de39061221d565b60405180910390fd5b610df685856117af565b5050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610e2b33826117af565b50565b610e3661153f565b73ffffffffffffffffffffffffffffffffffffffff16610e54610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea19061213d565b60405180910390fd5b610ef582827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166116659092919063ffffffff16565b5050565b62093a8081565b60035481565b6000670de0b6b3a764000060015483610f1f919061233a565b610f299190612309565b9050919050565b610f3861153f565b73ffffffffffffffffffffffffffffffffffffffff16610f56610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa39061213d565b60405180910390fd5b600654610fbc8162093a80611547565b7f99610bc40a14194a7a819ffeded94200b49e68ba00bc3a3ab89625c0972217ff600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660405161100d9190611fca565b60405180910390a17f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f2fde38b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016110909190611fca565b600060405180830381600087803b1580156110aa57600080fd5b505af11580156110be573d6000803e3d6000fd5b505050506111d7600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111419190611fca565b60206040518083038186803b15801561115957600080fd5b505afa15801561116d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111919190611d1d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166116659092919063ffffffff16565b6000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600060068190555050565b600061123560035462093a806114c4565b905090565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e89061215d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611358906121bd565b60405180910390fd5b81600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6113ae61153f565b73ffffffffffffffffffffffffffffffffffffffff166113cc610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614611422576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114199061213d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611492576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611489906120bd565b60405180910390fd5b61149b816116eb565b50565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000808311611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff906120fd565b60405180910390fd5b600083426115169190612394565b9050828110611529576000915050611539565b80836115359190612394565b9150505b92915050565b600033905090565b6000821161158a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611581906120fd565b60405180910390fd5b8082426115979190612394565b10156115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf9061211d565b60405180910390fd5b5050565b61165f846323b872dd60e01b8585856040516024016115fd93929190611fe5565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506118db565b50505050565b6116e68363a9059cbb60e01b848460405160240161168492919061201c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506118db565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe826040516117f5919061223d565b60405180910390a261184a8230837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166115dc909392919063ffffffff16565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166340c10f1983836040518363ffffffff1660e01b81526004016118a592919061201c565b600060405180830381600087803b1580156118bf57600080fd5b505af11580156118d3573d6000803e3d6000fd5b505050505050565b600061193d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166119a29092919063ffffffff16565b905060008151111561199d578080602001905181019061195d9190611ccb565b61199c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611993906121dd565b60405180910390fd5b5b505050565b60606119b184846000856119ba565b90509392505050565b6060824710156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f6906120dd565b60405180910390fd5b611a0885611ace565b611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e9061219d565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051611a709190611fb3565b60006040518083038185875af1925050503d8060008114611aad576040519150601f19603f3d011682016040523d82523d6000602084013e611ab2565b606091505b5091509150611ac2828286611ae1565b92505050949350505050565b600080823b905060008111915050919050565b60608315611af157829050611b41565b600083511115611b045782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b38919061207b565b60405180910390fd5b9392505050565b600081359050611b57816127f3565b92915050565b600081519050611b6c8161280a565b92915050565b60008083601f840112611b8457600080fd5b8235905067ffffffffffffffff811115611b9d57600080fd5b602083019150836001820283011115611bb557600080fd5b9250929050565b600081359050611bcb81612821565b92915050565b600081519050611be081612821565b92915050565b600060208284031215611bf857600080fd5b6000611c0684828501611b48565b91505092915050565b60008060408385031215611c2257600080fd5b6000611c3085828601611b48565b9250506020611c4185828601611bbc565b9150509250929050565b600080600080600060808688031215611c6357600080fd5b6000611c7188828901611b48565b9550506020611c8288828901611bbc565b9450506040611c9388828901611b48565b935050606086013567ffffffffffffffff811115611cb057600080fd5b611cbc88828901611b72565b92509250509295509295909350565b600060208284031215611cdd57600080fd5b6000611ceb84828501611b5d565b91505092915050565b600060208284031215611d0657600080fd5b6000611d1484828501611bbc565b91505092915050565b600060208284031215611d2f57600080fd5b6000611d3d84828501611bd1565b91505092915050565b611d4f816123c8565b82525050565b6000611d6082612281565b611d6a8185612297565b9350611d7a818560208601612458565b80840191505092915050565b611d8f81612410565b82525050565b611d9e81612434565b82525050565b6000611daf8261228c565b611db981856122a2565b9350611dc9818560208601612458565b611dd2816124e9565b840191505092915050565b6000611dea6024836122a2565b9150611df5826124fa565b604082019050919050565b6000611e0d6026836122a2565b9150611e1882612549565b604082019050919050565b6000611e306026836122a2565b9150611e3b82612598565b604082019050919050565b6000611e536014836122a2565b9150611e5e826125e7565b602082019050919050565b6000611e766020836122a2565b9150611e8182612610565b602082019050919050565b6000611e996020836122a2565b9150611ea482612639565b602082019050919050565b6000611ebc6018836122a2565b9150611ec782612662565b602082019050919050565b6000611edf6029836122a2565b9150611eea8261268b565b604082019050919050565b6000611f02601d836122a2565b9150611f0d826126da565b602082019050919050565b6000611f256026836122a2565b9150611f3082612703565b604082019050919050565b6000611f48602a836122a2565b9150611f5382612752565b604082019050919050565b6000611f6b6014836122a2565b9150611f76826127a1565b602082019050919050565b6000611f8e601b836122a2565b9150611f99826127ca565b602082019050919050565b611fad81612406565b82525050565b6000611fbf8284611d55565b915081905092915050565b6000602082019050611fdf6000830184611d46565b92915050565b6000606082019050611ffa6000830186611d46565b6120076020830185611d46565b6120146040830184611fa4565b949350505050565b60006040820190506120316000830185611d46565b61203e6020830184611fa4565b9392505050565b600060208201905061205a6000830184611d86565b92915050565b60006020820190506120756000830184611d95565b92915050565b600060208201905081810360008301526120958184611da4565b905092915050565b600060208201905081810360008301526120b681611ddd565b9050919050565b600060208201905081810360008301526120d681611e00565b9050919050565b600060208201905081810360008301526120f681611e23565b9050919050565b6000602082019050818103600083015261211681611e46565b9050919050565b6000602082019050818103600083015261213681611e69565b9050919050565b6000602082019050818103600083015261215681611e8c565b9050919050565b6000602082019050818103600083015261217681611eaf565b9050919050565b6000602082019050818103600083015261219681611ed2565b9050919050565b600060208201905081810360008301526121b681611ef5565b9050919050565b600060208201905081810360008301526121d681611f18565b9050919050565b600060208201905081810360008301526121f681611f3b565b9050919050565b6000602082019050818103600083015261221681611f5e565b9050919050565b6000602082019050818103600083015261223681611f81565b9050919050565b60006020820190506122526000830184611fa4565b92915050565b600060408201905061226d6000830185611fa4565b61227a6020830184611fa4565b9392505050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b60006122be82612406565b91506122c983612406565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122fe576122fd61248b565b5b828201905092915050565b600061231482612406565b915061231f83612406565b92508261232f5761232e6124ba565b5b828204905092915050565b600061234582612406565b915061235083612406565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156123895761238861248b565b5b828202905092915050565b600061239f82612406565b91506123aa83612406565b9250828210156123bd576123bc61248b565b5b828203905092915050565b60006123d3826123e6565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061241b82612422565b9050919050565b600061242d826123e6565b9050919050565b600061243f82612446565b9050919050565b6000612451826123e6565b9050919050565b60005b8381101561247657808201518184015260208101905061245b565b83811115612485576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b7f416d6f756e74202b20666565206578636565647320544254432076322062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4368616e6765206e6f7420696e69746961746564000000000000000000000000600082015250565b7f476f7665726e616e63652064656c617920686173206e6f7420656c6170736564600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616c6c6572206973206e6f7420617574686f72697a65640000000000000000600082015250565b7f4e65772056656e64696e674d616368696e652063616e6e6f74206265207a657260008201527f6f20616464726573730000000000000000000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f4e657720696e69746961746f72206d757374206e6f74206265207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f546f6b656e206973206e6f742054425443207631000000000000000000000000600082015250565b7f4f6e6c7920544254432076312063616c6c657220616c6c6f7765640000000000600082015250565b6127fc816123c8565b811461280757600080fd5b50565b612813816123da565b811461281e57600080fd5b50565b61282a81612406565b811461283557600080fd5b5056fea264697066735822122034eee8d56c8381375d553d84b2ec211b9d4cc8c3ac4c8cfd798b9dd5d622e13f64736f6c63430008040033",
|
|
515
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80638da5cb5b116100f9578063b766bd8a11610097578063ea1a4e6811610071578063ea1a4e6814610428578063f257a1a014610446578063f2fde38b14610462578063fe7294a81461047e576101a9565b8063b766bd8a146103d0578063bb81268c14610400578063c2b4aa751461040a576101a9565b8063a0712d68116100d3578063a0712d681461035c578063ad3b1b4714610378578063b0b5489514610394578063b29b95ce146103b2576101a9565b80638da5cb5b146103045780638f4ffcb11461032257806395de5a411461033e576101a9565b80632d42067d116101665780635bf32f52116101405780635bf32f52146102a65780636386d0b1146102c257806364e779b1146102de578063715018a6146102fa576101a9565b80632d42067d1461024e5780633678252f1461026a57806351b83ebc14610288576101a9565b806305e448fc146101ae5780630bb037df146101cc5780630c05ab39146101ea5780630c505b7a1461020857806320ad25dc14610226578063240b57e814610230575b600080fd5b6101b661049c565b6040516101c3919061223d565b60405180910390f35b6101d46104a2565b6040516101e1919061223d565b60405180910390f35b6101f26104b8565b6040516101ff9190611fca565b60405180910390f35b6102106104de565b60405161021d919061223d565b60405180910390f35b61022e6104e4565b005b6102386105c5565b604051610245919061223d565b60405180910390f35b61026860048036038101906102639190611be6565b6105cb565b005b610272610711565b60405161027f9190612045565b60405180910390f35b610290610735565b60405161029d919061223d565b60405180910390f35b6102c060048036038101906102bb9190611cf4565b610741565b005b6102dc60048036038101906102d79190611be6565b61081d565b005b6102f860048036038101906102f39190611cf4565b6109a3565b005b610302610c1f565b005b61030c610ca7565b6040516103199190611fca565b60405180910390f35b61033c60048036038101906103379190611c4b565b610cd0565b005b610346610dfd565b6040516103539190612060565b60405180910390f35b61037660048036038101906103719190611cf4565b610e21565b005b610392600480360381019061038d9190611c0f565b610e2e565b005b61039c610ef9565b6040516103a9919061223d565b60405180910390f35b6103ba610f00565b6040516103c7919061223d565b60405180910390f35b6103ea60048036038101906103e59190611cf4565b610f06565b6040516103f7919061223d565b60405180910390f35b610408610f30565b005b610412611224565b60405161041f919061223d565b60405180910390f35b61043061123a565b60405161043d9190611fca565b60405180910390f35b610460600480360381019061045b9190611be6565b611260565b005b61047c60048036038101906104779190611be6565b6113a6565b005b61048661149e565b6040516104939190611fca565b60405180910390f35b60065481565b60006104b360065462093a806114c4565b905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60015481565b6104ec61153f565b73ffffffffffffffffffffffffffffffffffffffff1661050a610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614610560576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105579061213d565b60405180910390fd5b6003546105708162093a80611547565b7f3fd2a429fdc4324c186eb6c71dc1bf3accae43e10f21367f6d143635dd5ed33c6002546040516105a1919061223d565b60405180910390a16002546001819055506000600281905550600060038190555050565b60025481565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461065c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106539061215d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156106cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c3906121bd565b60405180910390fd5b81600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b670de0b6b3a764000081565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c99061215d565b60405180910390fd5b7f0ddb39c814329b5da82b52fcacf65e4db6a1f64a0db4755282bee877cb97991a8242604051610803929190612258565b60405180910390a181600281905550426003819055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a59061215d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561091e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109159061217d565b60405180910390fd5b7f424e3c8894757dd6fd019d0d8065b19c7e49af137aeb89a275ed3d2435025a96824260405161094f92919061201c565b60405180910390a181600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006819055505050565b60006109ae82610f06565b90503373ffffffffffffffffffffffffffffffffffffffff167fe8a2f49c528033a686bb566d35ac82ca6fd93449bdd9f5d5b36c2f1aa68214b383836040516109f8929190612258565b60405180910390a28082610a0c91906122b3565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610a659190611fca565b60206040518083038186803b158015610a7d57600080fd5b505afa158015610a91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab59190611d1d565b1015610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed9061209d565b60405180910390fd5b610b433330837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166115dc909392919063ffffffff16565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166379cc679033846040518363ffffffff1660e01b8152600401610b9e92919061201c565b600060405180830381600087803b158015610bb857600080fd5b505af1158015610bcc573d6000803e3d6000fd5b50505050610c1b33837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166116659092919063ffffffff16565b5050565b610c2761153f565b73ffffffffffffffffffffffffffffffffffffffff16610c45610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c929061213d565b60405180910390fd5b610ca560006116eb565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d55906121fd565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de39061221d565b60405180910390fd5b610df685856117af565b5050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610e2b33826117af565b50565b610e3661153f565b73ffffffffffffffffffffffffffffffffffffffff16610e54610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea19061213d565b60405180910390fd5b610ef582827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166116659092919063ffffffff16565b5050565b62093a8081565b60035481565b6000670de0b6b3a764000060015483610f1f919061233a565b610f299190612309565b9050919050565b610f3861153f565b73ffffffffffffffffffffffffffffffffffffffff16610f56610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa39061213d565b60405180910390fd5b600654610fbc8162093a80611547565b7f99610bc40a14194a7a819ffeded94200b49e68ba00bc3a3ab89625c0972217ff600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660405161100d9190611fca565b60405180910390a17f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f2fde38b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016110909190611fca565b600060405180830381600087803b1580156110aa57600080fd5b505af11580156110be573d6000803e3d6000fd5b505050506111d7600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111419190611fca565b60206040518083038186803b15801561115957600080fd5b505afa15801561116d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111919190611d1d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166116659092919063ffffffff16565b6000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600060068190555050565b600061123560035462093a806114c4565b905090565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e89061215d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611358906121bd565b60405180910390fd5b81600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6113ae61153f565b73ffffffffffffffffffffffffffffffffffffffff166113cc610ca7565b73ffffffffffffffffffffffffffffffffffffffff1614611422576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114199061213d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611492576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611489906120bd565b60405180910390fd5b61149b816116eb565b50565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000808311611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff906120fd565b60405180910390fd5b600083426115169190612394565b9050828110611529576000915050611539565b80836115359190612394565b9150505b92915050565b600033905090565b6000821161158a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611581906120fd565b60405180910390fd5b8082426115979190612394565b10156115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf9061211d565b60405180910390fd5b5050565b61165f846323b872dd60e01b8585856040516024016115fd93929190611fe5565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506118db565b50505050565b6116e68363a9059cbb60e01b848460405160240161168492919061201c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506118db565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe826040516117f5919061223d565b60405180910390a261184a8230837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166115dc909392919063ffffffff16565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166340c10f1983836040518363ffffffff1660e01b81526004016118a592919061201c565b600060405180830381600087803b1580156118bf57600080fd5b505af11580156118d3573d6000803e3d6000fd5b505050505050565b600061193d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166119a29092919063ffffffff16565b905060008151111561199d578080602001905181019061195d9190611ccb565b61199c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611993906121dd565b60405180910390fd5b5b505050565b60606119b184846000856119ba565b90509392505050565b6060824710156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f6906120dd565b60405180910390fd5b611a0885611ace565b611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e9061219d565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051611a709190611fb3565b60006040518083038185875af1925050503d8060008114611aad576040519150601f19603f3d011682016040523d82523d6000602084013e611ab2565b606091505b5091509150611ac2828286611ae1565b92505050949350505050565b600080823b905060008111915050919050565b60608315611af157829050611b41565b600083511115611b045782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b38919061207b565b60405180910390fd5b9392505050565b600081359050611b57816127f3565b92915050565b600081519050611b6c8161280a565b92915050565b60008083601f840112611b8457600080fd5b8235905067ffffffffffffffff811115611b9d57600080fd5b602083019150836001820283011115611bb557600080fd5b9250929050565b600081359050611bcb81612821565b92915050565b600081519050611be081612821565b92915050565b600060208284031215611bf857600080fd5b6000611c0684828501611b48565b91505092915050565b60008060408385031215611c2257600080fd5b6000611c3085828601611b48565b9250506020611c4185828601611bbc565b9150509250929050565b600080600080600060808688031215611c6357600080fd5b6000611c7188828901611b48565b9550506020611c8288828901611bbc565b9450506040611c9388828901611b48565b935050606086013567ffffffffffffffff811115611cb057600080fd5b611cbc88828901611b72565b92509250509295509295909350565b600060208284031215611cdd57600080fd5b6000611ceb84828501611b5d565b91505092915050565b600060208284031215611d0657600080fd5b6000611d1484828501611bbc565b91505092915050565b600060208284031215611d2f57600080fd5b6000611d3d84828501611bd1565b91505092915050565b611d4f816123c8565b82525050565b6000611d6082612281565b611d6a8185612297565b9350611d7a818560208601612458565b80840191505092915050565b611d8f81612410565b82525050565b611d9e81612434565b82525050565b6000611daf8261228c565b611db981856122a2565b9350611dc9818560208601612458565b611dd2816124e9565b840191505092915050565b6000611dea6024836122a2565b9150611df5826124fa565b604082019050919050565b6000611e0d6026836122a2565b9150611e1882612549565b604082019050919050565b6000611e306026836122a2565b9150611e3b82612598565b604082019050919050565b6000611e536014836122a2565b9150611e5e826125e7565b602082019050919050565b6000611e766020836122a2565b9150611e8182612610565b602082019050919050565b6000611e996020836122a2565b9150611ea482612639565b602082019050919050565b6000611ebc6018836122a2565b9150611ec782612662565b602082019050919050565b6000611edf6029836122a2565b9150611eea8261268b565b604082019050919050565b6000611f02601d836122a2565b9150611f0d826126da565b602082019050919050565b6000611f256026836122a2565b9150611f3082612703565b604082019050919050565b6000611f48602a836122a2565b9150611f5382612752565b604082019050919050565b6000611f6b6014836122a2565b9150611f76826127a1565b602082019050919050565b6000611f8e601b836122a2565b9150611f99826127ca565b602082019050919050565b611fad81612406565b82525050565b6000611fbf8284611d55565b915081905092915050565b6000602082019050611fdf6000830184611d46565b92915050565b6000606082019050611ffa6000830186611d46565b6120076020830185611d46565b6120146040830184611fa4565b949350505050565b60006040820190506120316000830185611d46565b61203e6020830184611fa4565b9392505050565b600060208201905061205a6000830184611d86565b92915050565b60006020820190506120756000830184611d95565b92915050565b600060208201905081810360008301526120958184611da4565b905092915050565b600060208201905081810360008301526120b681611ddd565b9050919050565b600060208201905081810360008301526120d681611e00565b9050919050565b600060208201905081810360008301526120f681611e23565b9050919050565b6000602082019050818103600083015261211681611e46565b9050919050565b6000602082019050818103600083015261213681611e69565b9050919050565b6000602082019050818103600083015261215681611e8c565b9050919050565b6000602082019050818103600083015261217681611eaf565b9050919050565b6000602082019050818103600083015261219681611ed2565b9050919050565b600060208201905081810360008301526121b681611ef5565b9050919050565b600060208201905081810360008301526121d681611f18565b9050919050565b600060208201905081810360008301526121f681611f3b565b9050919050565b6000602082019050818103600083015261221681611f5e565b9050919050565b6000602082019050818103600083015261223681611f81565b9050919050565b60006020820190506122526000830184611fa4565b92915050565b600060408201905061226d6000830185611fa4565b61227a6020830184611fa4565b9392505050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b60006122be82612406565b91506122c983612406565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122fe576122fd61248b565b5b828201905092915050565b600061231482612406565b915061231f83612406565b92508261232f5761232e6124ba565b5b828204905092915050565b600061234582612406565b915061235083612406565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156123895761238861248b565b5b828202905092915050565b600061239f82612406565b91506123aa83612406565b9250828210156123bd576123bc61248b565b5b828203905092915050565b60006123d3826123e6565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061241b82612422565b9050919050565b600061242d826123e6565b9050919050565b600061243f82612446565b9050919050565b6000612451826123e6565b9050919050565b60005b8381101561247657808201518184015260208101905061245b565b83811115612485576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b7f416d6f756e74202b20666565206578636565647320544254432076322062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4368616e6765206e6f7420696e69746961746564000000000000000000000000600082015250565b7f476f7665726e616e63652064656c617920686173206e6f7420656c6170736564600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616c6c6572206973206e6f7420617574686f72697a65640000000000000000600082015250565b7f4e65772056656e64696e674d616368696e652063616e6e6f74206265207a657260008201527f6f20616464726573730000000000000000000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f4e657720696e69746961746f72206d757374206e6f74206265207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f546f6b656e206973206e6f742054425443207631000000000000000000000000600082015250565b7f4f6e6c7920544254432076312063616c6c657220616c6c6f7765640000000000600082015250565b6127fc816123c8565b811461280757600080fd5b50565b612813816123da565b811461281e57600080fd5b50565b61282a81612406565b811461283557600080fd5b5056fea264697066735822122034eee8d56c8381375d553d84b2ec211b9d4cc8c3ac4c8cfd798b9dd5d622e13f64736f6c63430008040033",
|
|
516
516
|
"linkReferences": {},
|
|
517
517
|
"deployedLinkReferences": {}
|
|
518
518
|
}
|