ERC-1155
Overview
Max Total Supply
122
Holders
77
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GOBToken
Compiler Version
v0.8.2+commit.661d1103
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract GOBToken is ERC1155, Ownable, ERC1155Burnable, Pausable { using SafeMath for uint256; bytes32 public merkleRoot; mapping (address => bool) redeemableContracts; mapping(address => uint256) public claimedMPs; event Claimed(address indexed account, uint amount); constructor(string memory _uri, bytes32 _merkleRoot) ERC1155(_uri) { merkleRoot = _merkleRoot; } function setURI(string memory newuri) public onlyOwner { _setURI(newuri); } function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function _leaf(address account, uint256 amount) internal pure returns (bytes32) { return keccak256(abi.encodePacked(account, amount)); } function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) { return MerkleProof.verify(proof, merkleRoot, leaf); } function claim(uint256 amount, bytes32[] calldata proof) public whenNotPaused { require(claimedMPs[msg.sender] < amount, "Claim: Not allowed to claim given amount"); require(_verify(_leaf(msg.sender, amount), proof), "Invalid merkle proof"); uint256 numberToClaim = amount.sub(claimedMPs[msg.sender]); claimedMPs[msg.sender] = claimedMPs[msg.sender].add(numberToClaim); _mint(msg.sender, 0, numberToClaim, ""); emit Claimed(msg.sender, numberToClaim); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function forceMint(address account, uint256 id, uint256 amount, bytes memory data) public onlyOwner { claimedMPs[account] = claimedMPs[account].add(amount); _mint(account, id, amount, data); } function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal whenNotPaused override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } function burnFromRedeem( address account, uint256 index, uint256 amount ) external { require(redeemableContracts[msg.sender] == true, "Burnable: Only allowed from redeemable contract"); _burn(account, index, amount); } function updateAuthorizedContract(address contractAddress, bool isAuthorized) public onlyOwner { redeemableContracts[contractAddress] = isAuthorized; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address account, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] += amount; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn( address account, uint256 id, uint256 amount ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } emit TransferSingle(operator, account, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address account, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFromRedeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedMPs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"forceMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"updateAuthorizedContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162004cdc38038062004cdc8339818101604052810190620000379190620002b7565b8162000049816200009460201b60201c565b506200006a6200005e620000b060201b60201c565b620000b860201b60201c565b6000600360146101000a81548160ff021916908315150217905550806004819055505050620004a5565b8060029080519060200190620000ac9291906200017e565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200018c90620003b0565b90600052602060002090601f016020900481019282620001b05760008555620001fc565b82601f10620001cb57805160ff1916838001178555620001fc565b82800160010185558215620001fc579182015b82811115620001fb578251825591602001919060010190620001de565b5b5090506200020b91906200020f565b5090565b5b808211156200022a57600081600090555060010162000210565b5090565b6000620002456200023f846200033a565b62000311565b9050828152602081018484840111156200025e57600080fd5b6200026b8482856200037a565b509392505050565b60008151905062000284816200048b565b92915050565b600082601f8301126200029c57600080fd5b8151620002ae8482602086016200022e565b91505092915050565b60008060408385031215620002cb57600080fd5b600083015167ffffffffffffffff811115620002e657600080fd5b620002f4858286016200028a565b9250506020620003078582860162000273565b9150509250929050565b60006200031d62000330565b90506200032b8282620003e6565b919050565b6000604051905090565b600067ffffffffffffffff8211156200035857620003576200044b565b5b62000363826200047a565b9050602081019050919050565b6000819050919050565b60005b838110156200039a5780820151818401526020810190506200037d565b83811115620003aa576000848401525b50505050565b60006002820490506001821680620003c957607f821691505b60208210811415620003e057620003df6200041c565b5b50919050565b620003f1826200047a565b810181811067ffffffffffffffff821117156200041357620004126200044b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620004968162000370565b8114620004a257600080fd5b50565b61482780620004b56000396000f3fe608060405234801561001057600080fd5b50600436106101575760003560e01c80636b20c454116100c3578063a22cb4651161007c578063a22cb46514610388578063e985e9c5146103a4578063f09066d2146103d4578063f242432a146103f0578063f2fde38b1461040c578063f5298aca1461042857610157565b80636b20c454146102ee578063715018a61461030a5780637cb64759146103145780638456cb59146103305780638da5cb5b1461033a578063a088083e1461035857610157565b80632f52ebb7116101155780632f52ebb7146102425780633615ff641461025e5780633aeca2101461027a5780633f4ba83a146102965780634e1273f4146102a05780635c975abb146102d057610157565b8062fdd58e1461015c57806301ffc9a71461018c57806302fe5305146101bc5780630e89341c146101d85780632eb2c2d6146102085780632eb4a7ab14610224575b600080fd5b6101766004803603810190610171919061316f565b610444565b6040516101839190613cb8565b60405180910390f35b6101a660048036038101906101a1919061330a565b61050d565b6040516101b391906139e0565b60405180910390f35b6101d660048036038101906101d1919061335c565b6105ef565b005b6101f260048036038101906101ed919061339d565b610677565b6040516101ff9190613a16565b60405180910390f35b610222600480360381019061021d9190612f66565b61070b565b005b61022c6107ac565b60405161023991906139fb565b60405180910390f35b61025c600480360381019061025791906133c6565b6107b2565b005b61027860048036038101906102739190613133565b610a69565b005b610294600480360381019061028f91906131ab565b610b40565b005b61029e610be3565b005b6102ba60048036038101906102b59190613275565b610c69565b6040516102c79190613987565b60405180910390f35b6102d8610e1a565b6040516102e591906139e0565b60405180910390f35b610308600480360381019061030391906130b4565b610e31565b005b610312610ece565b005b61032e600480360381019061032991906132e1565b610f56565b005b610338610fdc565b005b610342611062565b60405161034f91906138aa565b60405180910390f35b610372600480360381019061036d9190612f01565b61108c565b60405161037f9190613cb8565b60405180910390f35b6103a2600480360381019061039d9190613133565b6110a4565b005b6103be60048036038101906103b99190612f2a565b611225565b6040516103cb91906139e0565b60405180910390f35b6103ee60048036038101906103e991906131fa565b6112b9565b005b61040a60048036038101906104059190613025565b6113dc565b005b61042660048036038101906104219190612f01565b61147d565b005b610442600480360381019061043d91906131ab565b611575565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ac90613a98565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105d857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105e857506105e782611612565b5b9050919050565b6105f761167c565b73ffffffffffffffffffffffffffffffffffffffff16610615611062565b73ffffffffffffffffffffffffffffffffffffffff161461066b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066290613bf8565b60405180910390fd5b61067481611684565b50565b60606002805461068690613f96565b80601f01602080910402602001604051908101604052809291908181526020018280546106b290613f96565b80156106ff5780601f106106d4576101008083540402835291602001916106ff565b820191906000526020600020905b8154815290600101906020018083116106e257829003601f168201915b50505050509050919050565b61071361167c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061075957506107588561075361167c565b611225565b5b610798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078f90613b98565b60405180910390fd5b6107a5858585858561169e565b5050505050565b60045481565b6107ba610e1a565b156107fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f190613b58565b60405180910390fd5b82600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061087b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087290613ab8565b60405180910390fd5b6108cf61088833856119fe565b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050611a31565b61090e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090590613c18565b60405180910390fd5b6000610962600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485611a4890919063ffffffff16565b90506109b681600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a5e90919063ffffffff16565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610a153360008360405180602001604052806000815250611a74565b3373ffffffffffffffffffffffffffffffffffffffff167fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a82604051610a5b9190613cb8565b60405180910390a250505050565b610a7161167c565b73ffffffffffffffffffffffffffffffffffffffff16610a8f611062565b73ffffffffffffffffffffffffffffffffffffffff1614610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc90613bf8565b60405180910390fd5b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60011515600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca90613b38565b60405180910390fd5b610bde838383611c0a565b505050565b610beb61167c565b73ffffffffffffffffffffffffffffffffffffffff16610c09611062565b73ffffffffffffffffffffffffffffffffffffffff1614610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690613bf8565b60405180910390fd5b610c67611e27565b565b60608151835114610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690613c58565b60405180910390fd5b6000835167ffffffffffffffff811115610cf2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d205781602001602082028036833780820191505090505b50905060005b8451811015610e0f57610db9858281518110610d6b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610dac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610444565b828281518110610df2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610e0890613ff9565b9050610d26565b508091505092915050565b6000600360149054906101000a900460ff16905090565b610e3961167c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610e7f5750610e7e83610e7961167c565b611225565b5b610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590613b18565b60405180910390fd5b610ec9838383611ec9565b505050565b610ed661167c565b73ffffffffffffffffffffffffffffffffffffffff16610ef4611062565b73ffffffffffffffffffffffffffffffffffffffff1614610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4190613bf8565b60405180910390fd5b610f5460006121c6565b565b610f5e61167c565b73ffffffffffffffffffffffffffffffffffffffff16610f7c611062565b73ffffffffffffffffffffffffffffffffffffffff1614610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc990613bf8565b60405180910390fd5b8060048190555050565b610fe461167c565b73ffffffffffffffffffffffffffffffffffffffff16611002611062565b73ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90613bf8565b60405180910390fd5b61106061228c565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60066020528060005260406000206000915090505481565b8173ffffffffffffffffffffffffffffffffffffffff166110c361167c565b73ffffffffffffffffffffffffffffffffffffffff16141561111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190613c38565b60405180910390fd5b806001600061112761167c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111d461167c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161121991906139e0565b60405180910390a35050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112c161167c565b73ffffffffffffffffffffffffffffffffffffffff166112df611062565b73ffffffffffffffffffffffffffffffffffffffff1614611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90613bf8565b60405180910390fd5b61138782600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a5e90919063ffffffff16565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113d684848484611a74565b50505050565b6113e461167c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061142a57506114298561142461167c565b611225565b5b611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146090613b18565b60405180910390fd5b611476858585858561232f565b5050505050565b61148561167c565b73ffffffffffffffffffffffffffffffffffffffff166114a3611062565b73ffffffffffffffffffffffffffffffffffffffff16146114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090613bf8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090613ad8565b60405180910390fd5b611572816121c6565b50565b61157d61167c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115c357506115c2836115bd61167c565b611225565b5b611602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f990613b18565b60405180910390fd5b61160d838383611c0a565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b806002908051906020019061169a929190612b9a565b5050565b81518351146116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990613c78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174990613b78565b60405180910390fd5b600061175c61167c565b905061176c8187878787876125b1565b60005b84518110156119695760008582815181106117b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008583815181106117f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189090613bd8565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461194e9190613e4c565b925050819055505050508061196290613ff9565b905061176f565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516119e09291906139a9565b60405180910390a46119f681878787878761260f565b505050505050565b60008282604051602001611a13929190613852565b60405160208183030381529060405280519060200120905092915050565b6000611a4082600454856127f6565b905092915050565b60008183611a569190613ea2565b905092915050565b60008183611a6c9190613e4c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90613c98565b60405180910390fd5b6000611aee61167c565b9050611b0f81600087611b00886128d2565b611b09886128d2565b876125b1565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b6e9190613e4c565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611bec929190613cd3565b60405180910390a4611c0381600087878787612998565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7190613bb8565b60405180910390fd5b6000611c8461167c565b9050611cb481856000611c96876128d2565b611c9f876128d2565b604051806020016040528060008152506125b1565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4290613af8565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611e18929190613cd3565b60405180910390a45050505050565b611e2f610e1a565b611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6590613a78565b60405180910390fd5b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611eb261167c565b604051611ebf91906138aa565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3090613bb8565b60405180910390fd5b8051825114611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7490613c78565b60405180910390fd5b6000611f8761167c565b9050611fa7818560008686604051806020016040528060008152506125b1565b60005b8351811015612140576000848281518110611fee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000848381518110612033577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb90613af8565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061213890613ff9565b915050611faa565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516121b89291906139a9565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612294610e1a565b156122d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cb90613b58565b60405180910390fd5b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861231861167c565b60405161232591906138aa565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561239f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239690613b78565b60405180910390fd5b60006123a961167c565b90506123c98187876123ba886128d2565b6123c3886128d2565b876125b1565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612460576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245790613bd8565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125159190613e4c565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612592929190613cd3565b60405180910390a46125a8828888888888612998565b50505050505050565b6125b9610e1a565b156125f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f090613b58565b60405180910390fd5b612607868686868686612b7f565b505050505050565b61262e8473ffffffffffffffffffffffffffffffffffffffff16612b87565b156127ee578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016126749594939291906138c5565b602060405180830381600087803b15801561268e57600080fd5b505af19250505080156126bf57506040513d601f19601f820116820180604052508101906126bc9190613333565b60015b612765576126cb614107565b806308c379a0141561272857506126e06146e8565b806126eb575061272a565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271f9190613a16565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275c90613a38565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146127ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e390613a58565b60405180910390fd5b505b505050505050565b60008082905060005b85518110156128c4576000868281518110612843577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161288457828160405160200161286792919061387e565b6040516020818303038152906040528051906020012092506128b0565b808360405160200161289792919061387e565b6040516020818303038152906040528051906020012092505b5080806128bc90613ff9565b9150506127ff565b508381149150509392505050565b60606000600167ffffffffffffffff811115612917577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156129455781602001602082028036833780820191505090505b5090508281600081518110612983577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6129b78473ffffffffffffffffffffffffffffffffffffffff16612b87565b15612b77578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016129fd95949392919061392d565b602060405180830381600087803b158015612a1757600080fd5b505af1925050508015612a4857506040513d601f19601f82011682018060405250810190612a459190613333565b60015b612aee57612a54614107565b806308c379a01415612ab15750612a696146e8565b80612a745750612ab3565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa89190613a16565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae590613a38565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6c90613a58565b60405180910390fd5b505b505050505050565b505050505050565b600080823b905060008111915050919050565b828054612ba690613f96565b90600052602060002090601f016020900481019282612bc85760008555612c0f565b82601f10612be157805160ff1916838001178555612c0f565b82800160010185558215612c0f579182015b82811115612c0e578251825591602001919060010190612bf3565b5b509050612c1c9190612c20565b5090565b5b80821115612c39576000816000905550600101612c21565b5090565b6000612c50612c4b84613d21565b613cfc565b90508083825260208201905082856020860282011115612c6f57600080fd5b60005b85811015612c9f5781612c858882612d91565b845260208401935060208301925050600181019050612c72565b5050509392505050565b6000612cbc612cb784613d4d565b613cfc565b90508083825260208201905082856020860282011115612cdb57600080fd5b60005b85811015612d0b5781612cf18882612eec565b845260208401935060208301925050600181019050612cde565b5050509392505050565b6000612d28612d2384613d79565b613cfc565b905082815260208101848484011115612d4057600080fd5b612d4b848285613f54565b509392505050565b6000612d66612d6184613daa565b613cfc565b905082815260208101848484011115612d7e57600080fd5b612d89848285613f54565b509392505050565b600081359050612da08161477e565b92915050565b600082601f830112612db757600080fd5b8135612dc7848260208601612c3d565b91505092915050565b60008083601f840112612de257600080fd5b8235905067ffffffffffffffff811115612dfb57600080fd5b602083019150836020820283011115612e1357600080fd5b9250929050565b600082601f830112612e2b57600080fd5b8135612e3b848260208601612ca9565b91505092915050565b600081359050612e5381614795565b92915050565b600081359050612e68816147ac565b92915050565b600081359050612e7d816147c3565b92915050565b600081519050612e92816147c3565b92915050565b600082601f830112612ea957600080fd5b8135612eb9848260208601612d15565b91505092915050565b600082601f830112612ed357600080fd5b8135612ee3848260208601612d53565b91505092915050565b600081359050612efb816147da565b92915050565b600060208284031215612f1357600080fd5b6000612f2184828501612d91565b91505092915050565b60008060408385031215612f3d57600080fd5b6000612f4b85828601612d91565b9250506020612f5c85828601612d91565b9150509250929050565b600080600080600060a08688031215612f7e57600080fd5b6000612f8c88828901612d91565b9550506020612f9d88828901612d91565b945050604086013567ffffffffffffffff811115612fba57600080fd5b612fc688828901612e1a565b935050606086013567ffffffffffffffff811115612fe357600080fd5b612fef88828901612e1a565b925050608086013567ffffffffffffffff81111561300c57600080fd5b61301888828901612e98565b9150509295509295909350565b600080600080600060a0868803121561303d57600080fd5b600061304b88828901612d91565b955050602061305c88828901612d91565b945050604061306d88828901612eec565b935050606061307e88828901612eec565b925050608086013567ffffffffffffffff81111561309b57600080fd5b6130a788828901612e98565b9150509295509295909350565b6000806000606084860312156130c957600080fd5b60006130d786828701612d91565b935050602084013567ffffffffffffffff8111156130f457600080fd5b61310086828701612e1a565b925050604084013567ffffffffffffffff81111561311d57600080fd5b61312986828701612e1a565b9150509250925092565b6000806040838503121561314657600080fd5b600061315485828601612d91565b925050602061316585828601612e44565b9150509250929050565b6000806040838503121561318257600080fd5b600061319085828601612d91565b92505060206131a185828601612eec565b9150509250929050565b6000806000606084860312156131c057600080fd5b60006131ce86828701612d91565b93505060206131df86828701612eec565b92505060406131f086828701612eec565b9150509250925092565b6000806000806080858703121561321057600080fd5b600061321e87828801612d91565b945050602061322f87828801612eec565b935050604061324087828801612eec565b925050606085013567ffffffffffffffff81111561325d57600080fd5b61326987828801612e98565b91505092959194509250565b6000806040838503121561328857600080fd5b600083013567ffffffffffffffff8111156132a257600080fd5b6132ae85828601612da6565b925050602083013567ffffffffffffffff8111156132cb57600080fd5b6132d785828601612e1a565b9150509250929050565b6000602082840312156132f357600080fd5b600061330184828501612e59565b91505092915050565b60006020828403121561331c57600080fd5b600061332a84828501612e6e565b91505092915050565b60006020828403121561334557600080fd5b600061335384828501612e83565b91505092915050565b60006020828403121561336e57600080fd5b600082013567ffffffffffffffff81111561338857600080fd5b61339484828501612ec2565b91505092915050565b6000602082840312156133af57600080fd5b60006133bd84828501612eec565b91505092915050565b6000806000604084860312156133db57600080fd5b60006133e986828701612eec565b935050602084013567ffffffffffffffff81111561340657600080fd5b61341286828701612dd0565b92509250509250925092565b600061342a838361381d565b60208301905092915050565b61343f81613ed6565b82525050565b61345661345182613ed6565b614042565b82525050565b600061346782613deb565b6134718185613e19565b935061347c83613ddb565b8060005b838110156134ad578151613494888261341e565b975061349f83613e0c565b925050600181019050613480565b5085935050505092915050565b6134c381613ee8565b82525050565b6134d281613ef4565b82525050565b6134e96134e482613ef4565b614054565b82525050565b60006134fa82613df6565b6135048185613e2a565b9350613514818560208601613f63565b61351d81614129565b840191505092915050565b600061353382613e01565b61353d8185613e3b565b935061354d818560208601613f63565b61355681614129565b840191505092915050565b600061356e603483613e3b565b915061357982614154565b604082019050919050565b6000613591602883613e3b565b915061359c826141a3565b604082019050919050565b60006135b4601483613e3b565b91506135bf826141f2565b602082019050919050565b60006135d7602b83613e3b565b91506135e28261421b565b604082019050919050565b60006135fa602883613e3b565b91506136058261426a565b604082019050919050565b600061361d602683613e3b565b9150613628826142b9565b604082019050919050565b6000613640602483613e3b565b915061364b82614308565b604082019050919050565b6000613663602983613e3b565b915061366e82614357565b604082019050919050565b6000613686602f83613e3b565b9150613691826143a6565b604082019050919050565b60006136a9601083613e3b565b91506136b4826143f5565b602082019050919050565b60006136cc602583613e3b565b91506136d78261441e565b604082019050919050565b60006136ef603283613e3b565b91506136fa8261446d565b604082019050919050565b6000613712602383613e3b565b915061371d826144bc565b604082019050919050565b6000613735602a83613e3b565b91506137408261450b565b604082019050919050565b6000613758602083613e3b565b91506137638261455a565b602082019050919050565b600061377b601483613e3b565b915061378682614583565b602082019050919050565b600061379e602983613e3b565b91506137a9826145ac565b604082019050919050565b60006137c1602983613e3b565b91506137cc826145fb565b604082019050919050565b60006137e4602883613e3b565b91506137ef8261464a565b604082019050919050565b6000613807602183613e3b565b915061381282614699565b604082019050919050565b61382681613f4a565b82525050565b61383581613f4a565b82525050565b61384c61384782613f4a565b614070565b82525050565b600061385e8285613445565b60148201915061386e828461383b565b6020820191508190509392505050565b600061388a82856134d8565b60208201915061389a82846134d8565b6020820191508190509392505050565b60006020820190506138bf6000830184613436565b92915050565b600060a0820190506138da6000830188613436565b6138e76020830187613436565b81810360408301526138f9818661345c565b9050818103606083015261390d818561345c565b9050818103608083015261392181846134ef565b90509695505050505050565b600060a0820190506139426000830188613436565b61394f6020830187613436565b61395c604083018661382c565b613969606083018561382c565b818103608083015261397b81846134ef565b90509695505050505050565b600060208201905081810360008301526139a1818461345c565b905092915050565b600060408201905081810360008301526139c3818561345c565b905081810360208301526139d7818461345c565b90509392505050565b60006020820190506139f560008301846134ba565b92915050565b6000602082019050613a1060008301846134c9565b92915050565b60006020820190508181036000830152613a308184613528565b905092915050565b60006020820190508181036000830152613a5181613561565b9050919050565b60006020820190508181036000830152613a7181613584565b9050919050565b60006020820190508181036000830152613a91816135a7565b9050919050565b60006020820190508181036000830152613ab1816135ca565b9050919050565b60006020820190508181036000830152613ad1816135ed565b9050919050565b60006020820190508181036000830152613af181613610565b9050919050565b60006020820190508181036000830152613b1181613633565b9050919050565b60006020820190508181036000830152613b3181613656565b9050919050565b60006020820190508181036000830152613b5181613679565b9050919050565b60006020820190508181036000830152613b718161369c565b9050919050565b60006020820190508181036000830152613b91816136bf565b9050919050565b60006020820190508181036000830152613bb1816136e2565b9050919050565b60006020820190508181036000830152613bd181613705565b9050919050565b60006020820190508181036000830152613bf181613728565b9050919050565b60006020820190508181036000830152613c118161374b565b9050919050565b60006020820190508181036000830152613c318161376e565b9050919050565b60006020820190508181036000830152613c5181613791565b9050919050565b60006020820190508181036000830152613c71816137b4565b9050919050565b60006020820190508181036000830152613c91816137d7565b9050919050565b60006020820190508181036000830152613cb1816137fa565b9050919050565b6000602082019050613ccd600083018461382c565b92915050565b6000604082019050613ce8600083018561382c565b613cf5602083018461382c565b9392505050565b6000613d06613d17565b9050613d128282613fc8565b919050565b6000604051905090565b600067ffffffffffffffff821115613d3c57613d3b6140d8565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d6857613d676140d8565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d9457613d936140d8565b5b613d9d82614129565b9050602081019050919050565b600067ffffffffffffffff821115613dc557613dc46140d8565b5b613dce82614129565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613e5782613f4a565b9150613e6283613f4a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e9757613e9661407a565b5b828201905092915050565b6000613ead82613f4a565b9150613eb883613f4a565b925082821015613ecb57613eca61407a565b5b828203905092915050565b6000613ee182613f2a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f81578082015181840152602081019050613f66565b83811115613f90576000848401525b50505050565b60006002820490506001821680613fae57607f821691505b60208210811415613fc257613fc16140a9565b5b50919050565b613fd182614129565b810181811067ffffffffffffffff82111715613ff057613fef6140d8565b5b80604052505050565b600061400482613f4a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140375761403661407a565b5b600182019050919050565b600061404d8261405e565b9050919050565b6000819050919050565b60006140698261413a565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156141265760046000803e614123600051614147565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f436c61696d3a204e6f7420616c6c6f77656420746f20636c61696d206769766560008201527f6e20616d6f756e74000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f4275726e61626c653a204f6e6c7920616c6c6f7765642066726f6d207265646560008201527f656d61626c6520636f6e74726163740000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156146f85761477b565b614700613d17565b60043d036004823e80513d602482011167ffffffffffffffff8211171561472857505061477b565b808201805167ffffffffffffffff811115614746575050505061477b565b80602083010160043d03850181111561476357505050505061477b565b61477282602001850186613fc8565b82955050505050505b90565b61478781613ed6565b811461479257600080fd5b50565b61479e81613ee8565b81146147a957600080fd5b50565b6147b581613ef4565b81146147c057600080fd5b50565b6147cc81613efe565b81146147d757600080fd5b50565b6147e381613f4a565b81146147ee57600080fd5b5056fea2646970667358221220a9c8c0fc9999004ba74079951ed4764144ea0a609306b485c8c6291b312955c264736f6c634300080200330000000000000000000000000000000000000000000000000000000000000040ea2d5291e2e3719853ffe1597005d2e12431761ea7bd3b9aa336eee58cd8bb07000000000000000000000000000000000000000000000000000000000000003f697066733a2f2f516d6376746b4e636d7a7542663343386a56635256444832754e5a57376338726274706a4e525558394b433743642f7b69647d2e6a736f6e00
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101575760003560e01c80636b20c454116100c3578063a22cb4651161007c578063a22cb46514610388578063e985e9c5146103a4578063f09066d2146103d4578063f242432a146103f0578063f2fde38b1461040c578063f5298aca1461042857610157565b80636b20c454146102ee578063715018a61461030a5780637cb64759146103145780638456cb59146103305780638da5cb5b1461033a578063a088083e1461035857610157565b80632f52ebb7116101155780632f52ebb7146102425780633615ff641461025e5780633aeca2101461027a5780633f4ba83a146102965780634e1273f4146102a05780635c975abb146102d057610157565b8062fdd58e1461015c57806301ffc9a71461018c57806302fe5305146101bc5780630e89341c146101d85780632eb2c2d6146102085780632eb4a7ab14610224575b600080fd5b6101766004803603810190610171919061316f565b610444565b6040516101839190613cb8565b60405180910390f35b6101a660048036038101906101a1919061330a565b61050d565b6040516101b391906139e0565b60405180910390f35b6101d660048036038101906101d1919061335c565b6105ef565b005b6101f260048036038101906101ed919061339d565b610677565b6040516101ff9190613a16565b60405180910390f35b610222600480360381019061021d9190612f66565b61070b565b005b61022c6107ac565b60405161023991906139fb565b60405180910390f35b61025c600480360381019061025791906133c6565b6107b2565b005b61027860048036038101906102739190613133565b610a69565b005b610294600480360381019061028f91906131ab565b610b40565b005b61029e610be3565b005b6102ba60048036038101906102b59190613275565b610c69565b6040516102c79190613987565b60405180910390f35b6102d8610e1a565b6040516102e591906139e0565b60405180910390f35b610308600480360381019061030391906130b4565b610e31565b005b610312610ece565b005b61032e600480360381019061032991906132e1565b610f56565b005b610338610fdc565b005b610342611062565b60405161034f91906138aa565b60405180910390f35b610372600480360381019061036d9190612f01565b61108c565b60405161037f9190613cb8565b60405180910390f35b6103a2600480360381019061039d9190613133565b6110a4565b005b6103be60048036038101906103b99190612f2a565b611225565b6040516103cb91906139e0565b60405180910390f35b6103ee60048036038101906103e991906131fa565b6112b9565b005b61040a60048036038101906104059190613025565b6113dc565b005b61042660048036038101906104219190612f01565b61147d565b005b610442600480360381019061043d91906131ab565b611575565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ac90613a98565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105d857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105e857506105e782611612565b5b9050919050565b6105f761167c565b73ffffffffffffffffffffffffffffffffffffffff16610615611062565b73ffffffffffffffffffffffffffffffffffffffff161461066b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066290613bf8565b60405180910390fd5b61067481611684565b50565b60606002805461068690613f96565b80601f01602080910402602001604051908101604052809291908181526020018280546106b290613f96565b80156106ff5780601f106106d4576101008083540402835291602001916106ff565b820191906000526020600020905b8154815290600101906020018083116106e257829003601f168201915b50505050509050919050565b61071361167c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061075957506107588561075361167c565b611225565b5b610798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078f90613b98565b60405180910390fd5b6107a5858585858561169e565b5050505050565b60045481565b6107ba610e1a565b156107fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f190613b58565b60405180910390fd5b82600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061087b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087290613ab8565b60405180910390fd5b6108cf61088833856119fe565b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050611a31565b61090e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090590613c18565b60405180910390fd5b6000610962600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485611a4890919063ffffffff16565b90506109b681600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a5e90919063ffffffff16565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610a153360008360405180602001604052806000815250611a74565b3373ffffffffffffffffffffffffffffffffffffffff167fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a82604051610a5b9190613cb8565b60405180910390a250505050565b610a7161167c565b73ffffffffffffffffffffffffffffffffffffffff16610a8f611062565b73ffffffffffffffffffffffffffffffffffffffff1614610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc90613bf8565b60405180910390fd5b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60011515600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca90613b38565b60405180910390fd5b610bde838383611c0a565b505050565b610beb61167c565b73ffffffffffffffffffffffffffffffffffffffff16610c09611062565b73ffffffffffffffffffffffffffffffffffffffff1614610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690613bf8565b60405180910390fd5b610c67611e27565b565b60608151835114610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690613c58565b60405180910390fd5b6000835167ffffffffffffffff811115610cf2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d205781602001602082028036833780820191505090505b50905060005b8451811015610e0f57610db9858281518110610d6b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610dac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610444565b828281518110610df2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610e0890613ff9565b9050610d26565b508091505092915050565b6000600360149054906101000a900460ff16905090565b610e3961167c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610e7f5750610e7e83610e7961167c565b611225565b5b610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590613b18565b60405180910390fd5b610ec9838383611ec9565b505050565b610ed661167c565b73ffffffffffffffffffffffffffffffffffffffff16610ef4611062565b73ffffffffffffffffffffffffffffffffffffffff1614610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4190613bf8565b60405180910390fd5b610f5460006121c6565b565b610f5e61167c565b73ffffffffffffffffffffffffffffffffffffffff16610f7c611062565b73ffffffffffffffffffffffffffffffffffffffff1614610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc990613bf8565b60405180910390fd5b8060048190555050565b610fe461167c565b73ffffffffffffffffffffffffffffffffffffffff16611002611062565b73ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90613bf8565b60405180910390fd5b61106061228c565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60066020528060005260406000206000915090505481565b8173ffffffffffffffffffffffffffffffffffffffff166110c361167c565b73ffffffffffffffffffffffffffffffffffffffff16141561111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190613c38565b60405180910390fd5b806001600061112761167c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111d461167c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161121991906139e0565b60405180910390a35050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112c161167c565b73ffffffffffffffffffffffffffffffffffffffff166112df611062565b73ffffffffffffffffffffffffffffffffffffffff1614611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90613bf8565b60405180910390fd5b61138782600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a5e90919063ffffffff16565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113d684848484611a74565b50505050565b6113e461167c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061142a57506114298561142461167c565b611225565b5b611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146090613b18565b60405180910390fd5b611476858585858561232f565b5050505050565b61148561167c565b73ffffffffffffffffffffffffffffffffffffffff166114a3611062565b73ffffffffffffffffffffffffffffffffffffffff16146114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090613bf8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090613ad8565b60405180910390fd5b611572816121c6565b50565b61157d61167c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115c357506115c2836115bd61167c565b611225565b5b611602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f990613b18565b60405180910390fd5b61160d838383611c0a565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b806002908051906020019061169a929190612b9a565b5050565b81518351146116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990613c78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174990613b78565b60405180910390fd5b600061175c61167c565b905061176c8187878787876125b1565b60005b84518110156119695760008582815181106117b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008583815181106117f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189090613bd8565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461194e9190613e4c565b925050819055505050508061196290613ff9565b905061176f565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516119e09291906139a9565b60405180910390a46119f681878787878761260f565b505050505050565b60008282604051602001611a13929190613852565b60405160208183030381529060405280519060200120905092915050565b6000611a4082600454856127f6565b905092915050565b60008183611a569190613ea2565b905092915050565b60008183611a6c9190613e4c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90613c98565b60405180910390fd5b6000611aee61167c565b9050611b0f81600087611b00886128d2565b611b09886128d2565b876125b1565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b6e9190613e4c565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611bec929190613cd3565b60405180910390a4611c0381600087878787612998565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7190613bb8565b60405180910390fd5b6000611c8461167c565b9050611cb481856000611c96876128d2565b611c9f876128d2565b604051806020016040528060008152506125b1565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4290613af8565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611e18929190613cd3565b60405180910390a45050505050565b611e2f610e1a565b611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6590613a78565b60405180910390fd5b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611eb261167c565b604051611ebf91906138aa565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3090613bb8565b60405180910390fd5b8051825114611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7490613c78565b60405180910390fd5b6000611f8761167c565b9050611fa7818560008686604051806020016040528060008152506125b1565b60005b8351811015612140576000848281518110611fee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000848381518110612033577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb90613af8565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061213890613ff9565b915050611faa565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516121b89291906139a9565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612294610e1a565b156122d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cb90613b58565b60405180910390fd5b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861231861167c565b60405161232591906138aa565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561239f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239690613b78565b60405180910390fd5b60006123a961167c565b90506123c98187876123ba886128d2565b6123c3886128d2565b876125b1565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612460576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245790613bd8565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125159190613e4c565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612592929190613cd3565b60405180910390a46125a8828888888888612998565b50505050505050565b6125b9610e1a565b156125f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f090613b58565b60405180910390fd5b612607868686868686612b7f565b505050505050565b61262e8473ffffffffffffffffffffffffffffffffffffffff16612b87565b156127ee578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016126749594939291906138c5565b602060405180830381600087803b15801561268e57600080fd5b505af19250505080156126bf57506040513d601f19601f820116820180604052508101906126bc9190613333565b60015b612765576126cb614107565b806308c379a0141561272857506126e06146e8565b806126eb575061272a565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271f9190613a16565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275c90613a38565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146127ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e390613a58565b60405180910390fd5b505b505050505050565b60008082905060005b85518110156128c4576000868281518110612843577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161288457828160405160200161286792919061387e565b6040516020818303038152906040528051906020012092506128b0565b808360405160200161289792919061387e565b6040516020818303038152906040528051906020012092505b5080806128bc90613ff9565b9150506127ff565b508381149150509392505050565b60606000600167ffffffffffffffff811115612917577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156129455781602001602082028036833780820191505090505b5090508281600081518110612983577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6129b78473ffffffffffffffffffffffffffffffffffffffff16612b87565b15612b77578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016129fd95949392919061392d565b602060405180830381600087803b158015612a1757600080fd5b505af1925050508015612a4857506040513d601f19601f82011682018060405250810190612a459190613333565b60015b612aee57612a54614107565b806308c379a01415612ab15750612a696146e8565b80612a745750612ab3565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa89190613a16565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae590613a38565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6c90613a58565b60405180910390fd5b505b505050505050565b505050505050565b600080823b905060008111915050919050565b828054612ba690613f96565b90600052602060002090601f016020900481019282612bc85760008555612c0f565b82601f10612be157805160ff1916838001178555612c0f565b82800160010185558215612c0f579182015b82811115612c0e578251825591602001919060010190612bf3565b5b509050612c1c9190612c20565b5090565b5b80821115612c39576000816000905550600101612c21565b5090565b6000612c50612c4b84613d21565b613cfc565b90508083825260208201905082856020860282011115612c6f57600080fd5b60005b85811015612c9f5781612c858882612d91565b845260208401935060208301925050600181019050612c72565b5050509392505050565b6000612cbc612cb784613d4d565b613cfc565b90508083825260208201905082856020860282011115612cdb57600080fd5b60005b85811015612d0b5781612cf18882612eec565b845260208401935060208301925050600181019050612cde565b5050509392505050565b6000612d28612d2384613d79565b613cfc565b905082815260208101848484011115612d4057600080fd5b612d4b848285613f54565b509392505050565b6000612d66612d6184613daa565b613cfc565b905082815260208101848484011115612d7e57600080fd5b612d89848285613f54565b509392505050565b600081359050612da08161477e565b92915050565b600082601f830112612db757600080fd5b8135612dc7848260208601612c3d565b91505092915050565b60008083601f840112612de257600080fd5b8235905067ffffffffffffffff811115612dfb57600080fd5b602083019150836020820283011115612e1357600080fd5b9250929050565b600082601f830112612e2b57600080fd5b8135612e3b848260208601612ca9565b91505092915050565b600081359050612e5381614795565b92915050565b600081359050612e68816147ac565b92915050565b600081359050612e7d816147c3565b92915050565b600081519050612e92816147c3565b92915050565b600082601f830112612ea957600080fd5b8135612eb9848260208601612d15565b91505092915050565b600082601f830112612ed357600080fd5b8135612ee3848260208601612d53565b91505092915050565b600081359050612efb816147da565b92915050565b600060208284031215612f1357600080fd5b6000612f2184828501612d91565b91505092915050565b60008060408385031215612f3d57600080fd5b6000612f4b85828601612d91565b9250506020612f5c85828601612d91565b9150509250929050565b600080600080600060a08688031215612f7e57600080fd5b6000612f8c88828901612d91565b9550506020612f9d88828901612d91565b945050604086013567ffffffffffffffff811115612fba57600080fd5b612fc688828901612e1a565b935050606086013567ffffffffffffffff811115612fe357600080fd5b612fef88828901612e1a565b925050608086013567ffffffffffffffff81111561300c57600080fd5b61301888828901612e98565b9150509295509295909350565b600080600080600060a0868803121561303d57600080fd5b600061304b88828901612d91565b955050602061305c88828901612d91565b945050604061306d88828901612eec565b935050606061307e88828901612eec565b925050608086013567ffffffffffffffff81111561309b57600080fd5b6130a788828901612e98565b9150509295509295909350565b6000806000606084860312156130c957600080fd5b60006130d786828701612d91565b935050602084013567ffffffffffffffff8111156130f457600080fd5b61310086828701612e1a565b925050604084013567ffffffffffffffff81111561311d57600080fd5b61312986828701612e1a565b9150509250925092565b6000806040838503121561314657600080fd5b600061315485828601612d91565b925050602061316585828601612e44565b9150509250929050565b6000806040838503121561318257600080fd5b600061319085828601612d91565b92505060206131a185828601612eec565b9150509250929050565b6000806000606084860312156131c057600080fd5b60006131ce86828701612d91565b93505060206131df86828701612eec565b92505060406131f086828701612eec565b9150509250925092565b6000806000806080858703121561321057600080fd5b600061321e87828801612d91565b945050602061322f87828801612eec565b935050604061324087828801612eec565b925050606085013567ffffffffffffffff81111561325d57600080fd5b61326987828801612e98565b91505092959194509250565b6000806040838503121561328857600080fd5b600083013567ffffffffffffffff8111156132a257600080fd5b6132ae85828601612da6565b925050602083013567ffffffffffffffff8111156132cb57600080fd5b6132d785828601612e1a565b9150509250929050565b6000602082840312156132f357600080fd5b600061330184828501612e59565b91505092915050565b60006020828403121561331c57600080fd5b600061332a84828501612e6e565b91505092915050565b60006020828403121561334557600080fd5b600061335384828501612e83565b91505092915050565b60006020828403121561336e57600080fd5b600082013567ffffffffffffffff81111561338857600080fd5b61339484828501612ec2565b91505092915050565b6000602082840312156133af57600080fd5b60006133bd84828501612eec565b91505092915050565b6000806000604084860312156133db57600080fd5b60006133e986828701612eec565b935050602084013567ffffffffffffffff81111561340657600080fd5b61341286828701612dd0565b92509250509250925092565b600061342a838361381d565b60208301905092915050565b61343f81613ed6565b82525050565b61345661345182613ed6565b614042565b82525050565b600061346782613deb565b6134718185613e19565b935061347c83613ddb565b8060005b838110156134ad578151613494888261341e565b975061349f83613e0c565b925050600181019050613480565b5085935050505092915050565b6134c381613ee8565b82525050565b6134d281613ef4565b82525050565b6134e96134e482613ef4565b614054565b82525050565b60006134fa82613df6565b6135048185613e2a565b9350613514818560208601613f63565b61351d81614129565b840191505092915050565b600061353382613e01565b61353d8185613e3b565b935061354d818560208601613f63565b61355681614129565b840191505092915050565b600061356e603483613e3b565b915061357982614154565b604082019050919050565b6000613591602883613e3b565b915061359c826141a3565b604082019050919050565b60006135b4601483613e3b565b91506135bf826141f2565b602082019050919050565b60006135d7602b83613e3b565b91506135e28261421b565b604082019050919050565b60006135fa602883613e3b565b91506136058261426a565b604082019050919050565b600061361d602683613e3b565b9150613628826142b9565b604082019050919050565b6000613640602483613e3b565b915061364b82614308565b604082019050919050565b6000613663602983613e3b565b915061366e82614357565b604082019050919050565b6000613686602f83613e3b565b9150613691826143a6565b604082019050919050565b60006136a9601083613e3b565b91506136b4826143f5565b602082019050919050565b60006136cc602583613e3b565b91506136d78261441e565b604082019050919050565b60006136ef603283613e3b565b91506136fa8261446d565b604082019050919050565b6000613712602383613e3b565b915061371d826144bc565b604082019050919050565b6000613735602a83613e3b565b91506137408261450b565b604082019050919050565b6000613758602083613e3b565b91506137638261455a565b602082019050919050565b600061377b601483613e3b565b915061378682614583565b602082019050919050565b600061379e602983613e3b565b91506137a9826145ac565b604082019050919050565b60006137c1602983613e3b565b91506137cc826145fb565b604082019050919050565b60006137e4602883613e3b565b91506137ef8261464a565b604082019050919050565b6000613807602183613e3b565b915061381282614699565b604082019050919050565b61382681613f4a565b82525050565b61383581613f4a565b82525050565b61384c61384782613f4a565b614070565b82525050565b600061385e8285613445565b60148201915061386e828461383b565b6020820191508190509392505050565b600061388a82856134d8565b60208201915061389a82846134d8565b6020820191508190509392505050565b60006020820190506138bf6000830184613436565b92915050565b600060a0820190506138da6000830188613436565b6138e76020830187613436565b81810360408301526138f9818661345c565b9050818103606083015261390d818561345c565b9050818103608083015261392181846134ef565b90509695505050505050565b600060a0820190506139426000830188613436565b61394f6020830187613436565b61395c604083018661382c565b613969606083018561382c565b818103608083015261397b81846134ef565b90509695505050505050565b600060208201905081810360008301526139a1818461345c565b905092915050565b600060408201905081810360008301526139c3818561345c565b905081810360208301526139d7818461345c565b90509392505050565b60006020820190506139f560008301846134ba565b92915050565b6000602082019050613a1060008301846134c9565b92915050565b60006020820190508181036000830152613a308184613528565b905092915050565b60006020820190508181036000830152613a5181613561565b9050919050565b60006020820190508181036000830152613a7181613584565b9050919050565b60006020820190508181036000830152613a91816135a7565b9050919050565b60006020820190508181036000830152613ab1816135ca565b9050919050565b60006020820190508181036000830152613ad1816135ed565b9050919050565b60006020820190508181036000830152613af181613610565b9050919050565b60006020820190508181036000830152613b1181613633565b9050919050565b60006020820190508181036000830152613b3181613656565b9050919050565b60006020820190508181036000830152613b5181613679565b9050919050565b60006020820190508181036000830152613b718161369c565b9050919050565b60006020820190508181036000830152613b91816136bf565b9050919050565b60006020820190508181036000830152613bb1816136e2565b9050919050565b60006020820190508181036000830152613bd181613705565b9050919050565b60006020820190508181036000830152613bf181613728565b9050919050565b60006020820190508181036000830152613c118161374b565b9050919050565b60006020820190508181036000830152613c318161376e565b9050919050565b60006020820190508181036000830152613c5181613791565b9050919050565b60006020820190508181036000830152613c71816137b4565b9050919050565b60006020820190508181036000830152613c91816137d7565b9050919050565b60006020820190508181036000830152613cb1816137fa565b9050919050565b6000602082019050613ccd600083018461382c565b92915050565b6000604082019050613ce8600083018561382c565b613cf5602083018461382c565b9392505050565b6000613d06613d17565b9050613d128282613fc8565b919050565b6000604051905090565b600067ffffffffffffffff821115613d3c57613d3b6140d8565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d6857613d676140d8565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d9457613d936140d8565b5b613d9d82614129565b9050602081019050919050565b600067ffffffffffffffff821115613dc557613dc46140d8565b5b613dce82614129565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613e5782613f4a565b9150613e6283613f4a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e9757613e9661407a565b5b828201905092915050565b6000613ead82613f4a565b9150613eb883613f4a565b925082821015613ecb57613eca61407a565b5b828203905092915050565b6000613ee182613f2a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f81578082015181840152602081019050613f66565b83811115613f90576000848401525b50505050565b60006002820490506001821680613fae57607f821691505b60208210811415613fc257613fc16140a9565b5b50919050565b613fd182614129565b810181811067ffffffffffffffff82111715613ff057613fef6140d8565b5b80604052505050565b600061400482613f4a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140375761403661407a565b5b600182019050919050565b600061404d8261405e565b9050919050565b6000819050919050565b60006140698261413a565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156141265760046000803e614123600051614147565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f436c61696d3a204e6f7420616c6c6f77656420746f20636c61696d206769766560008201527f6e20616d6f756e74000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f4275726e61626c653a204f6e6c7920616c6c6f7765642066726f6d207265646560008201527f656d61626c6520636f6e74726163740000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156146f85761477b565b614700613d17565b60043d036004823e80513d602482011167ffffffffffffffff8211171561472857505061477b565b808201805167ffffffffffffffff811115614746575050505061477b565b80602083010160043d03850181111561476357505050505061477b565b61477282602001850186613fc8565b82955050505050505b90565b61478781613ed6565b811461479257600080fd5b50565b61479e81613ee8565b81146147a957600080fd5b50565b6147b581613ef4565b81146147c057600080fd5b50565b6147cc81613efe565b81146147d757600080fd5b50565b6147e381613f4a565b81146147ee57600080fd5b5056fea2646970667358221220a9c8c0fc9999004ba74079951ed4764144ea0a609306b485c8c6291b312955c264736f6c63430008020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040ea2d5291e2e3719853ffe1597005d2e12431761ea7bd3b9aa336eee58cd8bb07000000000000000000000000000000000000000000000000000000000000003f697066733a2f2f516d6376746b4e636d7a7542663343386a56635256444832754e5a57376338726274706a4e525558394b433743642f7b69647d2e6a736f6e00
-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmcvtkNcmzuBf3C8jVcRVDH2uNZW7c8rbtpjNRUX9KC7Cd/{id}.json
Arg [1] : _merkleRoot (bytes32): 0xea2d5291e2e3719853ffe1597005d2e12431761ea7bd3b9aa336eee58cd8bb07
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : ea2d5291e2e3719853ffe1597005d2e12431761ea7bd3b9aa336eee58cd8bb07
Arg [2] : 000000000000000000000000000000000000000000000000000000000000003f
Arg [3] : 697066733a2f2f516d6376746b4e636d7a7542663343386a5663525644483275
Arg [4] : 4e5a57376338726274706a4e525558394b433743642f7b69647d2e6a736f6e00
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.