Feature Tip: Add private address tag to any address under My Name Tag !
NFT
Overview
TokenID
1626
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SuperNormal
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Contract by pr0xy.io pragma solidity ^0.8.7; import './ERC721Enumerable.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; contract SuperNormal is ERC721Enumerable, Ownable { using Strings for uint256; // Contract to recieve ETH raised in sales address public vault; // Control for public sale bool public isActive; // Control for claim process bool public isClaimActive; // Control for presale bool public isPresaleActive; // Used for verification that an address is included in claim process bytes32 public claimMerkleRoot; // Used for verification that an address is included in public sale bytes32 public merkleRoot; // Used for verification that an address is included in presale bytes32 public presaleMerkleRoot; // Reference to image and metadata storage string public gallery; // Amount of ETH required per mint uint256 public price; // Storage of addresses that have minted with the `claim()` function mapping(address => bool) public claimParticipants; // Storage of addresses that have minted with the `presale()` function mapping(address => bool) public presaleParticipants; // Sets `price` upon deployment constructor(uint256 _price) ERC721("SuperNormalbyZipcy", "SUPERNORMAL") { setPrice(_price); } // Override of `_baseURI()` that returns `gallery` function _baseURI() internal view virtual override returns (string memory) { return gallery; } // Sets `isActive` to turn on/off minting in `mint()` function setActive(bool _isActive) external onlyOwner { isActive = _isActive; } // Sets `isClaimActive` to turn on/off minting in `claim()` function setClaimActive(bool _isClaimActive) external onlyOwner { isClaimActive = _isClaimActive; } // Sets `claimMerkleRoot` to be used in `presale()` function setClaimMerkleRoot(bytes32 _claimMerkleRoot) external onlyOwner { claimMerkleRoot = _claimMerkleRoot; } // Sets `gallery` to be returned by `_baseURI()` function setGallery(string calldata _gallery) external onlyOwner { gallery = _gallery; } // Sets `merkleRoot` to be used in `mint()` function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } // Sets `isPresaleActive` to turn on/off minting in `presale()` function setPresaleActive(bool _isPresaleActive) external onlyOwner { isPresaleActive = _isPresaleActive; } // Sets `presaleMerkleRoot` to be used in `presale()` function setPresaleMerkleRoot(bytes32 _presaleMerkleRoot) external onlyOwner { presaleMerkleRoot = _presaleMerkleRoot; } // Sets `price` to be used in `presale()` and `mint()`(called on deployment) function setPrice(uint256 _price) public onlyOwner { price = _price; } // Sets `vault` to recieve ETH from sales and used within `withdraw()` function setVault(address _vault) external onlyOwner { vault = _vault; } // Minting function used in the claim process function claim(bytes32[] calldata _merkleProof, uint256 _amount) external { uint256 supply = totalSupply(); bytes32 leaf = keccak256(abi.encodePacked(msg.sender, _amount)); require(isClaimActive, 'Not Active'); require(supply + _amount < 8889, 'Supply Denied'); require(tx.origin == msg.sender, 'Contract Denied'); require(!claimParticipants[msg.sender], 'Mint Claimed'); require(MerkleProof.verify(_merkleProof, claimMerkleRoot, leaf), 'Proof Invalid'); for(uint256 i; i < _amount; i++){ _safeMint( msg.sender, supply + i ); } claimParticipants[msg.sender] = true; } // Minting function used in the presale function presale(bytes32[] calldata _merkleProof, uint256 _amount) external payable { uint256 supply = totalSupply(); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(_amount < 3, 'Amount Denied'); require(isPresaleActive, 'Not Active'); require(supply + _amount < 8889, 'Supply Denied'); require(tx.origin == msg.sender, 'Contract Denied'); require(!presaleParticipants[msg.sender], 'Mint Claimed'); require(msg.value >= price * _amount, 'Ether Amount Denied'); require(MerkleProof.verify(_merkleProof, presaleMerkleRoot, leaf), 'Proof Invalid'); for(uint256 i; i < _amount; i++){ _safeMint( msg.sender, supply + i ); } presaleParticipants[msg.sender] = true; } // Minting function used in the public sale function mint(bytes32[] calldata _merkleProof, uint256 _amount) external payable { uint256 supply = totalSupply(); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(isActive, 'Not Active'); require(_amount < 11, 'Amount Denied'); require(supply + _amount < 8889, 'Supply Denied'); require(tx.origin == msg.sender, 'Contract Denied'); require(msg.value >= price * _amount, 'Ether Amount Denied'); require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Proof Invalid'); for(uint256 i; i < _amount; i++){ _safeMint( msg.sender, supply + i ); } } // Send balance of contract to address referenced in `vault` function withdraw() external payable onlyOwner { require(vault != address(0), 'Vault Invalid'); require(payable(vault).send(address(this).balance)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) 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) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { 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)); } } return computedHash; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) 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() { _transferOwnership(_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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "./ERC721.sol"; abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // See {IERC721Enumerable-totalSupply}. function totalSupply() public view virtual override returns (uint256) { return _owners.length; } // See {IERC721Enumerable-tokenByIndex}. function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < _owners.length, "ERC721Enumerable: global index out of bounds"); return index; } // See {IERC721Enumerable-tokenOfOwnerByIndex}. function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) { require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); uint count; for(uint i; i < _owners.length; i++){ if(owner == _owners[i]){ if(count == index) return i; else count++; } } revert("ERC721Enumerable: owner index out of bounds"); } // See {IERC165-supportsInterface}. function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; string private _name; string private _symbol; address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; // Initializes the contract by setting a `name` and a `symbol` to the token collection. constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } // See {IERC721Metadata-name}. function name() public view virtual override returns (string memory) { return _name; } // See {IERC721Metadata-symbol}. function symbol() public view virtual override returns (string memory) { return _symbol; } // Base URI for computing {tokenURI}. function _baseURI() internal view virtual returns (string memory) { return ""; } // See {IERC721Metadata-tokenURI}. function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } // Returns whether `tokenId` exists. function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _owners[tokenId] != address(0); } // See {IERC721-balanceOf}. function balanceOf(address owner) public view virtual override returns (uint) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count; for(uint i; i < _owners.length; ++i){ if(owner == _owners[i]) ++count; } return count; } // See {IERC721-ownerOf}. function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } // Approve `to` to operate on `tokenId` function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } // See {IERC721-approve}. function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all"); _approve(to, tokenId); } // See {IERC721-getApproved}. function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } // See {IERC721-setApprovalForAll}. function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } // Returns whether `spender` is allowed to manage `tokenId`. function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } // See {IERC721-isApprovedForAll}. function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } // Transfers `tokenId` from `from` to `to`. (No restrictions on sender) function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); _approve(address(0), tokenId); _owners[tokenId] = to; emit Transfer(from, to, tokenId); } // See {IERC721-transferFrom}. function transferFrom(address from, address to, uint256 tokenId) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } // Safely transfers `tokenId` token from `from` to `to`. function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } // See {IERC721-safeTransferFrom}. function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } // See {IERC721-safeTransferFrom}. function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } // Mints `tokenId` and transfers it to `to`. function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _owners.push(to); emit Transfer(address(0), to, tokenId); } // Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter. function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } // Safely mints `tokenId` and transfers it to `to`. function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } // Destroys `tokenId`. function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); _approve(address(0), tokenId); _owners[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } // See {IERC165-supportsInterface}. function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } // Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } // Hook that is called before any token transfer. function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) 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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimParticipants","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gallery","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isClaimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleParticipants","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setActive","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":"bool","name":"_isClaimActive","type":"bool"}],"name":"setClaimActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_claimMerkleRoot","type":"bytes32"}],"name":"setClaimMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_gallery","type":"string"}],"name":"setGallery","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPresaleActive","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_presaleMerkleRoot","type":"bytes32"}],"name":"setPresaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620052ce380380620052ce833981810160405281019062000037919062000390565b6040518060400160405280601281526020017f53757065724e6f726d616c62795a6970637900000000000000000000000000008152506040518060400160405280600b81526020017f53555045524e4f524d414c0000000000000000000000000000000000000000008152508160009080519060200190620000bb929190620002a0565b508060019080519060200190620000d4929190620002a0565b505050620000f7620000eb6200010f60201b60201c565b6200011760201b60201c565b6200010881620001dd60201b60201c565b50620004aa565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001ed6200010f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002136200027660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200026c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002639062000423565b60405180910390fd5b80600b8190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002ae9062000474565b90600052602060002090601f016020900481019282620002d257600085556200031e565b82601f10620002ed57805160ff19168380011785556200031e565b828001600101855582156200031e579182015b828111156200031d57825182559160200191906001019062000300565b5b5090506200032d919062000331565b5090565b5b808211156200034c57600081600090555060010162000332565b5090565b600080fd5b6000819050919050565b6200036a8162000355565b81146200037657600080fd5b50565b6000815190506200038a816200035f565b92915050565b600060208284031215620003a957620003a862000350565b5b6000620003b98482850162000379565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200040b602083620003c2565b91506200041882620003d3565b602082019050919050565b600060208201905081810360008301526200043e81620003fc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200048d57607f821691505b60208210811415620004a457620004a362000445565b5b50919050565b614e1480620004ba6000396000f3fe60806040526004361061025c5760003560e01c80636352211e11610144578063a035b1fe116100b6578063d50158781161007a578063d5015878146108bb578063e54ef9b5146108e4578063e985e9c514610921578063f2fde38b1461095e578063fbfa77cf14610987578063fd1e2962146109b25761025c565b8063a035b1fe146107d8578063a22cb46514610803578063acec338a1461082c578063b88d4fde14610855578063c87b56dd1461087e5761025c565b80637cb64759116101085780637cb64759146106da5780637fc27803146107035780638da5cb5b1461072e57806391b7f5ed1461075957806395d89b41146107825780639c4dab52146107ad5761025c565b80636352211e146105f75780636817031b1461063457806370a082311461065d578063715018a61461069a57806373417b09146106b15761025c565b806328d7b276116101dd5780633ccfd60b116101a15780633ccfd60b146105175780633f8121a21461052157806342842e0e1461054a57806345de0d9b146105735780634f6ccce71461058f57806360d938dc146105cc5761025c565b806328d7b276146104325780632eb4a7ab1461045b5780632f745c591461048657806333cd6f5d146104c35780633b439351146104ee5761025c565b806318160ddd1161022457806318160ddd1461036c57806322212e2b1461039757806322f3e2d4146103c257806323b872dd146103ed57806327ed3dce146104165761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063083a7baa14610306578063095ea7b314610343575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906134a1565b6109db565b60405161029591906134e9565b60405180910390f35b3480156102aa57600080fd5b506102b3610a55565b6040516102c0919061359d565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb91906135f5565b610ae7565b6040516102fd9190613663565b60405180910390f35b34801561031257600080fd5b5061032d600480360381019061032891906136aa565b610b6c565b60405161033a91906134e9565b60405180910390f35b34801561034f57600080fd5b5061036a600480360381019061036591906136d7565b610b8c565b005b34801561037857600080fd5b50610381610ca4565b60405161038e9190613726565b60405180910390f35b3480156103a357600080fd5b506103ac610cb1565b6040516103b9919061375a565b60405180910390f35b3480156103ce57600080fd5b506103d7610cb7565b6040516103e491906134e9565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f9190613775565b610cca565b005b610430600480360381019061042b919061382d565b610d2a565b005b34801561043e57600080fd5b50610459600480360381019061045491906138b9565b6110ad565b005b34801561046757600080fd5b50610470611133565b60405161047d919061375a565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a891906136d7565b611139565b6040516104ba9190613726565b60405180910390f35b3480156104cf57600080fd5b506104d861127e565b6040516104e5919061359d565b60405180910390f35b3480156104fa57600080fd5b506105156004803603810190610510919061382d565b61130c565b005b61051f6115fe565b005b34801561052d57600080fd5b5061054860048036038101906105439190613912565b61176e565b005b34801561055657600080fd5b50610571600480360381019061056c9190613775565b611807565b005b61058d6004803603810190610588919061382d565b611827565b005b34801561059b57600080fd5b506105b660048036038101906105b191906135f5565b611ac5565b6040516105c39190613726565b60405180910390f35b3480156105d857600080fd5b506105e1611b16565b6040516105ee91906134e9565b60405180910390f35b34801561060357600080fd5b5061061e600480360381019061061991906135f5565b611b29565b60405161062b9190613663565b60405180910390f35b34801561064057600080fd5b5061065b600480360381019061065691906136aa565b611be6565b005b34801561066957600080fd5b50610684600480360381019061067f91906136aa565b611ca6565b6040516106919190613726565b60405180910390f35b3480156106a657600080fd5b506106af611dc2565b005b3480156106bd57600080fd5b506106d860048036038101906106d39190613912565b611e4a565b005b3480156106e657600080fd5b5061070160048036038101906106fc91906138b9565b611ee3565b005b34801561070f57600080fd5b50610718611f69565b60405161072591906134e9565b60405180910390f35b34801561073a57600080fd5b50610743611f7c565b6040516107509190613663565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b91906135f5565b611fa6565b005b34801561078e57600080fd5b5061079761202c565b6040516107a4919061359d565b60405180910390f35b3480156107b957600080fd5b506107c26120be565b6040516107cf919061375a565b60405180910390f35b3480156107e457600080fd5b506107ed6120c4565b6040516107fa9190613726565b60405180910390f35b34801561080f57600080fd5b5061082a6004803603810190610825919061393f565b6120ca565b005b34801561083857600080fd5b50610853600480360381019061084e9190613912565b61224b565b005b34801561086157600080fd5b5061087c60048036038101906108779190613aaf565b6122e4565b005b34801561088a57600080fd5b506108a560048036038101906108a091906135f5565b612346565b6040516108b2919061359d565b60405180910390f35b3480156108c757600080fd5b506108e260048036038101906108dd9190613b88565b6123ed565b005b3480156108f057600080fd5b5061090b600480360381019061090691906136aa565b61247f565b60405161091891906134e9565b60405180910390f35b34801561092d57600080fd5b5061094860048036038101906109439190613bd5565b61249f565b60405161095591906134e9565b60405180910390f35b34801561096a57600080fd5b50610985600480360381019061098091906136aa565b612533565b005b34801561099357600080fd5b5061099c61262b565b6040516109a99190613663565b60405180910390f35b3480156109be57600080fd5b506109d960048036038101906109d491906138b9565b612651565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4e5750610a4d826126d7565b5b9050919050565b606060008054610a6490613c44565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9090613c44565b8015610add5780601f10610ab257610100808354040283529160200191610add565b820191906000526020600020905b815481529060010190602001808311610ac057829003601f168201915b5050505050905090565b6000610af2826127b9565b610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890613ce8565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000610b9782611b29565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90613d7a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c27612841565b73ffffffffffffffffffffffffffffffffffffffff161480610c565750610c5581610c50612841565b61249f565b5b610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90613e0c565b60405180910390fd5b610c9f8383612849565b505050565b6000600280549050905090565b60095481565b600660149054906101000a900460ff1681565b610cdb610cd5612841565b82612902565b610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190613e9e565b60405180910390fd5b610d258383836129e0565b505050565b6000610d34610ca4565b9050600033604051602001610d499190613f06565b60405160208183030381529060405280519060200120905060038310610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b90613f6d565b60405180910390fd5b600660169054906101000a900460ff16610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90613fd9565b60405180910390fd5b6122b98383610e029190614028565b10610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e39906140ca565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790614136565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f34906141a2565b60405180910390fd5b82600b54610f4b91906141c2565b341015610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8490614268565b60405180910390fd5b610fdb858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060095483612b99565b61101a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611011906142d4565b60405180910390fd5b60005b8381101561104d5761103a3382856110359190614028565b612bb0565b8080611045906142f4565b91505061101d565b506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b6110b5612841565b73ffffffffffffffffffffffffffffffffffffffff166110d3611f7c565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090614389565b60405180910390fd5b8060098190555050565b60085481565b600061114483611ca6565b8210611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c9061441b565b60405180910390fd5b6000805b60028054905081101561123c57600281815481106111aa576111a961443b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611229578382141561121a578092505050611278565b8180611225906142f4565b9250505b8080611234906142f4565b915050611189565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f9061441b565b60405180910390fd5b92915050565b600a805461128b90613c44565b80601f01602080910402602001604051908101604052809291908181526020018280546112b790613c44565b80156113045780601f106112d957610100808354040283529160200191611304565b820191906000526020600020905b8154815290600101906020018083116112e757829003601f168201915b505050505081565b6000611316610ca4565b90506000338360405160200161132d92919061448b565b604051602081830303815290604052805190602001209050600660159054906101000a900460ff16611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b90613fd9565b60405180910390fd5b6122b983836113a39190614028565b106113e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113da906140ca565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890614136565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d5906141a2565b60405180910390fd5b61152c858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060075483612b99565b61156b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611562906142d4565b60405180910390fd5b60005b8381101561159e5761158b3382856115869190614028565b612bb0565b8080611596906142f4565b91505061156e565b506001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b611606612841565b73ffffffffffffffffffffffffffffffffffffffff16611624611f7c565b73ffffffffffffffffffffffffffffffffffffffff161461167a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167190614389565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390614503565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061176c57600080fd5b565b611776612841565b73ffffffffffffffffffffffffffffffffffffffff16611794611f7c565b73ffffffffffffffffffffffffffffffffffffffff16146117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190614389565b60405180910390fd5b80600660166101000a81548160ff02191690831515021790555050565b611822838383604051806020016040528060008152506122e4565b505050565b6000611831610ca4565b90506000336040516020016118469190613f06565b604051602081830303815290604052805190602001209050600660149054906101000a900460ff166118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a490613fd9565b60405180910390fd5b600b83106118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790613f6d565b60405180910390fd5b6122b983836118ff9190614028565b1061193f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611936906140ca565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a490614136565b60405180910390fd5b82600b546119bb91906141c2565b3410156119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490614268565b60405180910390fd5b611a4b858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060085483612b99565b611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a81906142d4565b60405180910390fd5b60005b83811015611abd57611aaa338285611aa59190614028565b612bb0565b8080611ab5906142f4565b915050611a8d565b505050505050565b60006002805490508210611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590614595565b60405180910390fd5b819050919050565b600660169054906101000a900460ff1681565b60008060028381548110611b4057611b3f61443b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490614627565b60405180910390fd5b80915050919050565b611bee612841565b73ffffffffffffffffffffffffffffffffffffffff16611c0c611f7c565b73ffffffffffffffffffffffffffffffffffffffff1614611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5990614389565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0e906146b9565b60405180910390fd5b6000805b600280549050811015611db85760028181548110611d3c57611d3b61443b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611da75781611da4906142f4565b91505b80611db1906142f4565b9050611d1b565b5080915050919050565b611dca612841565b73ffffffffffffffffffffffffffffffffffffffff16611de8611f7c565b73ffffffffffffffffffffffffffffffffffffffff1614611e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3590614389565b60405180910390fd5b611e486000612bce565b565b611e52612841565b73ffffffffffffffffffffffffffffffffffffffff16611e70611f7c565b73ffffffffffffffffffffffffffffffffffffffff1614611ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebd90614389565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b611eeb612841565b73ffffffffffffffffffffffffffffffffffffffff16611f09611f7c565b73ffffffffffffffffffffffffffffffffffffffff1614611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5690614389565b60405180910390fd5b8060088190555050565b600660159054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fae612841565b73ffffffffffffffffffffffffffffffffffffffff16611fcc611f7c565b73ffffffffffffffffffffffffffffffffffffffff1614612022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201990614389565b60405180910390fd5b80600b8190555050565b60606001805461203b90613c44565b80601f016020809104026020016040519081016040528092919081815260200182805461206790613c44565b80156120b45780601f10612089576101008083540402835291602001916120b4565b820191906000526020600020905b81548152906001019060200180831161209757829003601f168201915b5050505050905090565b60075481565b600b5481565b6120d2612841565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213790614725565b60405180910390fd5b806004600061214d612841565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121fa612841565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161223f91906134e9565b60405180910390a35050565b612253612841565b73ffffffffffffffffffffffffffffffffffffffff16612271611f7c565b73ffffffffffffffffffffffffffffffffffffffff16146122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122be90614389565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b6122f56122ef612841565b83612902565b612334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232b90613e9e565b60405180910390fd5b61234084848484612c94565b50505050565b6060612351826127b9565b612390576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612387906147b7565b60405180910390fd5b600061239a612cf0565b905060008151116123ba57604051806020016040528060008152506123e5565b806123c484612d82565b6040516020016123d5929190614813565b6040516020818303038152906040525b915050919050565b6123f5612841565b73ffffffffffffffffffffffffffffffffffffffff16612413611f7c565b73ffffffffffffffffffffffffffffffffffffffff1614612469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246090614389565b60405180910390fd5b8181600a919061247a929190613392565b505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61253b612841565b73ffffffffffffffffffffffffffffffffffffffff16612559611f7c565b73ffffffffffffffffffffffffffffffffffffffff16146125af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a690614389565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561261f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612616906148a9565b60405180910390fd5b61262881612bce565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612659612841565b73ffffffffffffffffffffffffffffffffffffffff16612677611f7c565b73ffffffffffffffffffffffffffffffffffffffff16146126cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c490614389565b60405180910390fd5b8060078190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127b257506127b182612ee3565b5b9050919050565b60006002805490508210801561283a5750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106127f6576127f561443b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128bc83611b29565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061290d826127b9565b61294c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129439061493b565b60405180910390fd5b600061295783611b29565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129c657508373ffffffffffffffffffffffffffffffffffffffff166129ae84610ae7565b73ffffffffffffffffffffffffffffffffffffffff16145b806129d757506129d6818561249f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a0082611b29565b73ffffffffffffffffffffffffffffffffffffffff1614612a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4d906149cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abd90614a5f565b60405180910390fd5b612ad1838383612f4d565b612adc600082612849565b8160028281548110612af157612af061443b565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082612ba68584612f52565b1490509392505050565b612bca828260405180602001604052806000815250613005565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c9f8484846129e0565b612cab84848484613060565b612cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce190614af1565b60405180910390fd5b50505050565b6060600a8054612cff90613c44565b80601f0160208091040260200160405190810160405280929190818152602001828054612d2b90613c44565b8015612d785780601f10612d4d57610100808354040283529160200191612d78565b820191906000526020600020905b815481529060010190602001808311612d5b57829003601f168201915b5050505050905090565b60606000821415612dca576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ede565b600082905060005b60008214612dfc578080612de5906142f4565b915050600a82612df59190614b40565b9150612dd2565b60008167ffffffffffffffff811115612e1857612e17613984565b5b6040519080825280601f01601f191660200182016040528015612e4a5781602001600182028036833780820191505090505b5090505b60008514612ed757600182612e639190614b71565b9150600a85612e729190614ba5565b6030612e7e9190614028565b60f81b818381518110612e9457612e9361443b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ed09190614b40565b9450612e4e565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b60008082905060005b8451811015612ffa576000858281518110612f7957612f7861443b565b5b60200260200101519050808311612fba578281604051602001612f9d929190614bf7565b604051602081830303815290604052805190602001209250612fe6565b8083604051602001612fcd929190614bf7565b6040516020818303038152906040528051906020012092505b508080612ff2906142f4565b915050612f5b565b508091505092915050565b61300f83836131f7565b61301c6000848484613060565b61305b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305290614af1565b60405180910390fd5b505050565b60006130818473ffffffffffffffffffffffffffffffffffffffff1661337f565b156131ea578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130aa612841565b8786866040518563ffffffff1660e01b81526004016130cc9493929190614c78565b602060405180830381600087803b1580156130e657600080fd5b505af192505050801561311757506040513d601f19601f820116820180604052508101906131149190614cd9565b60015b61319a573d8060008114613147576040519150601f19603f3d011682016040523d82523d6000602084013e61314c565b606091505b50600081511415613192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318990614af1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131ef565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325e90614d52565b60405180910390fd5b613270816127b9565b156132b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a790614dbe565b60405180910390fd5b6132bc60008383612f4d565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461339e90613c44565b90600052602060002090601f0160209004810192826133c05760008555613407565b82601f106133d957803560ff1916838001178555613407565b82800160010185558215613407579182015b828111156134065782358255916020019190600101906133eb565b5b5090506134149190613418565b5090565b5b80821115613431576000816000905550600101613419565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61347e81613449565b811461348957600080fd5b50565b60008135905061349b81613475565b92915050565b6000602082840312156134b7576134b661343f565b5b60006134c58482850161348c565b91505092915050565b60008115159050919050565b6134e3816134ce565b82525050565b60006020820190506134fe60008301846134da565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561353e578082015181840152602081019050613523565b8381111561354d576000848401525b50505050565b6000601f19601f8301169050919050565b600061356f82613504565b613579818561350f565b9350613589818560208601613520565b61359281613553565b840191505092915050565b600060208201905081810360008301526135b78184613564565b905092915050565b6000819050919050565b6135d2816135bf565b81146135dd57600080fd5b50565b6000813590506135ef816135c9565b92915050565b60006020828403121561360b5761360a61343f565b5b6000613619848285016135e0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061364d82613622565b9050919050565b61365d81613642565b82525050565b60006020820190506136786000830184613654565b92915050565b61368781613642565b811461369257600080fd5b50565b6000813590506136a48161367e565b92915050565b6000602082840312156136c0576136bf61343f565b5b60006136ce84828501613695565b91505092915050565b600080604083850312156136ee576136ed61343f565b5b60006136fc85828601613695565b925050602061370d858286016135e0565b9150509250929050565b613720816135bf565b82525050565b600060208201905061373b6000830184613717565b92915050565b6000819050919050565b61375481613741565b82525050565b600060208201905061376f600083018461374b565b92915050565b60008060006060848603121561378e5761378d61343f565b5b600061379c86828701613695565b93505060206137ad86828701613695565b92505060406137be868287016135e0565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126137ed576137ec6137c8565b5b8235905067ffffffffffffffff81111561380a576138096137cd565b5b602083019150836020820283011115613826576138256137d2565b5b9250929050565b6000806000604084860312156138465761384561343f565b5b600084013567ffffffffffffffff81111561386457613863613444565b5b613870868287016137d7565b93509350506020613883868287016135e0565b9150509250925092565b61389681613741565b81146138a157600080fd5b50565b6000813590506138b38161388d565b92915050565b6000602082840312156138cf576138ce61343f565b5b60006138dd848285016138a4565b91505092915050565b6138ef816134ce565b81146138fa57600080fd5b50565b60008135905061390c816138e6565b92915050565b6000602082840312156139285761392761343f565b5b6000613936848285016138fd565b91505092915050565b600080604083850312156139565761395561343f565b5b600061396485828601613695565b9250506020613975858286016138fd565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139bc82613553565b810181811067ffffffffffffffff821117156139db576139da613984565b5b80604052505050565b60006139ee613435565b90506139fa82826139b3565b919050565b600067ffffffffffffffff821115613a1a57613a19613984565b5b613a2382613553565b9050602081019050919050565b82818337600083830152505050565b6000613a52613a4d846139ff565b6139e4565b905082815260208101848484011115613a6e57613a6d61397f565b5b613a79848285613a30565b509392505050565b600082601f830112613a9657613a956137c8565b5b8135613aa6848260208601613a3f565b91505092915050565b60008060008060808587031215613ac957613ac861343f565b5b6000613ad787828801613695565b9450506020613ae887828801613695565b9350506040613af9878288016135e0565b925050606085013567ffffffffffffffff811115613b1a57613b19613444565b5b613b2687828801613a81565b91505092959194509250565b60008083601f840112613b4857613b476137c8565b5b8235905067ffffffffffffffff811115613b6557613b646137cd565b5b602083019150836001820283011115613b8157613b806137d2565b5b9250929050565b60008060208385031215613b9f57613b9e61343f565b5b600083013567ffffffffffffffff811115613bbd57613bbc613444565b5b613bc985828601613b32565b92509250509250929050565b60008060408385031215613bec57613beb61343f565b5b6000613bfa85828601613695565b9250506020613c0b85828601613695565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c5c57607f821691505b60208210811415613c7057613c6f613c15565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613cd2602c8361350f565b9150613cdd82613c76565b604082019050919050565b60006020820190508181036000830152613d0181613cc5565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d6460218361350f565b9150613d6f82613d08565b604082019050919050565b60006020820190508181036000830152613d9381613d57565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613df660388361350f565b9150613e0182613d9a565b604082019050919050565b60006020820190508181036000830152613e2581613de9565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613e8860318361350f565b9150613e9382613e2c565b604082019050919050565b60006020820190508181036000830152613eb781613e7b565b9050919050565b60008160601b9050919050565b6000613ed682613ebe565b9050919050565b6000613ee882613ecb565b9050919050565b613f00613efb82613642565b613edd565b82525050565b6000613f128284613eef565b60148201915081905092915050565b7f416d6f756e742044656e69656400000000000000000000000000000000000000600082015250565b6000613f57600d8361350f565b9150613f6282613f21565b602082019050919050565b60006020820190508181036000830152613f8681613f4a565b9050919050565b7f4e6f742041637469766500000000000000000000000000000000000000000000600082015250565b6000613fc3600a8361350f565b9150613fce82613f8d565b602082019050919050565b60006020820190508181036000830152613ff281613fb6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614033826135bf565b915061403e836135bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561407357614072613ff9565b5b828201905092915050565b7f537570706c792044656e69656400000000000000000000000000000000000000600082015250565b60006140b4600d8361350f565b91506140bf8261407e565b602082019050919050565b600060208201905081810360008301526140e3816140a7565b9050919050565b7f436f6e74726163742044656e6965640000000000000000000000000000000000600082015250565b6000614120600f8361350f565b915061412b826140ea565b602082019050919050565b6000602082019050818103600083015261414f81614113565b9050919050565b7f4d696e7420436c61696d65640000000000000000000000000000000000000000600082015250565b600061418c600c8361350f565b915061419782614156565b602082019050919050565b600060208201905081810360008301526141bb8161417f565b9050919050565b60006141cd826135bf565b91506141d8836135bf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561421157614210613ff9565b5b828202905092915050565b7f457468657220416d6f756e742044656e69656400000000000000000000000000600082015250565b600061425260138361350f565b915061425d8261421c565b602082019050919050565b6000602082019050818103600083015261428181614245565b9050919050565b7f50726f6f6620496e76616c696400000000000000000000000000000000000000600082015250565b60006142be600d8361350f565b91506142c982614288565b602082019050919050565b600060208201905081810360008301526142ed816142b1565b9050919050565b60006142ff826135bf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561433257614331613ff9565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061437360208361350f565b915061437e8261433d565b602082019050919050565b600060208201905081810360008301526143a281614366565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614405602b8361350f565b9150614410826143a9565b604082019050919050565b60006020820190508181036000830152614434816143f8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b614485614480826135bf565b61446a565b82525050565b60006144978285613eef565b6014820191506144a78284614474565b6020820191508190509392505050565b7f5661756c7420496e76616c696400000000000000000000000000000000000000600082015250565b60006144ed600d8361350f565b91506144f8826144b7565b602082019050919050565b6000602082019050818103600083015261451c816144e0565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061457f602c8361350f565b915061458a82614523565b604082019050919050565b600060208201905081810360008301526145ae81614572565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061461160298361350f565b915061461c826145b5565b604082019050919050565b6000602082019050818103600083015261464081614604565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006146a3602a8361350f565b91506146ae82614647565b604082019050919050565b600060208201905081810360008301526146d281614696565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061470f60198361350f565b915061471a826146d9565b602082019050919050565b6000602082019050818103600083015261473e81614702565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006147a1602f8361350f565b91506147ac82614745565b604082019050919050565b600060208201905081810360008301526147d081614794565b9050919050565b600081905092915050565b60006147ed82613504565b6147f781856147d7565b9350614807818560208601613520565b80840191505092915050565b600061481f82856147e2565b915061482b82846147e2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061489360268361350f565b915061489e82614837565b604082019050919050565b600060208201905081810360008301526148c281614886565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614925602c8361350f565b9150614930826148c9565b604082019050919050565b6000602082019050818103600083015261495481614918565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006149b760298361350f565b91506149c28261495b565b604082019050919050565b600060208201905081810360008301526149e6816149aa565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a4960248361350f565b9150614a54826149ed565b604082019050919050565b60006020820190508181036000830152614a7881614a3c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614adb60328361350f565b9150614ae682614a7f565b604082019050919050565b60006020820190508181036000830152614b0a81614ace565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b4b826135bf565b9150614b56836135bf565b925082614b6657614b65614b11565b5b828204905092915050565b6000614b7c826135bf565b9150614b87836135bf565b925082821015614b9a57614b99613ff9565b5b828203905092915050565b6000614bb0826135bf565b9150614bbb836135bf565b925082614bcb57614bca614b11565b5b828206905092915050565b6000819050919050565b614bf1614bec82613741565b614bd6565b82525050565b6000614c038285614be0565b602082019150614c138284614be0565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000614c4a82614c23565b614c548185614c2e565b9350614c64818560208601613520565b614c6d81613553565b840191505092915050565b6000608082019050614c8d6000830187613654565b614c9a6020830186613654565b614ca76040830185613717565b8181036060830152614cb98184614c3f565b905095945050505050565b600081519050614cd381613475565b92915050565b600060208284031215614cef57614cee61343f565b5b6000614cfd84828501614cc4565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614d3c60208361350f565b9150614d4782614d06565b602082019050919050565b60006020820190508181036000830152614d6b81614d2f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614da8601c8361350f565b9150614db382614d72565b602082019050919050565b60006020820190508181036000830152614dd781614d9b565b905091905056fea2646970667358221220f45cb3e872dd909b5b756ae877beb4be31672d40c836dd791e1c322ca544a95164736f6c634300080900330000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061025c5760003560e01c80636352211e11610144578063a035b1fe116100b6578063d50158781161007a578063d5015878146108bb578063e54ef9b5146108e4578063e985e9c514610921578063f2fde38b1461095e578063fbfa77cf14610987578063fd1e2962146109b25761025c565b8063a035b1fe146107d8578063a22cb46514610803578063acec338a1461082c578063b88d4fde14610855578063c87b56dd1461087e5761025c565b80637cb64759116101085780637cb64759146106da5780637fc27803146107035780638da5cb5b1461072e57806391b7f5ed1461075957806395d89b41146107825780639c4dab52146107ad5761025c565b80636352211e146105f75780636817031b1461063457806370a082311461065d578063715018a61461069a57806373417b09146106b15761025c565b806328d7b276116101dd5780633ccfd60b116101a15780633ccfd60b146105175780633f8121a21461052157806342842e0e1461054a57806345de0d9b146105735780634f6ccce71461058f57806360d938dc146105cc5761025c565b806328d7b276146104325780632eb4a7ab1461045b5780632f745c591461048657806333cd6f5d146104c35780633b439351146104ee5761025c565b806318160ddd1161022457806318160ddd1461036c57806322212e2b1461039757806322f3e2d4146103c257806323b872dd146103ed57806327ed3dce146104165761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063083a7baa14610306578063095ea7b314610343575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906134a1565b6109db565b60405161029591906134e9565b60405180910390f35b3480156102aa57600080fd5b506102b3610a55565b6040516102c0919061359d565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb91906135f5565b610ae7565b6040516102fd9190613663565b60405180910390f35b34801561031257600080fd5b5061032d600480360381019061032891906136aa565b610b6c565b60405161033a91906134e9565b60405180910390f35b34801561034f57600080fd5b5061036a600480360381019061036591906136d7565b610b8c565b005b34801561037857600080fd5b50610381610ca4565b60405161038e9190613726565b60405180910390f35b3480156103a357600080fd5b506103ac610cb1565b6040516103b9919061375a565b60405180910390f35b3480156103ce57600080fd5b506103d7610cb7565b6040516103e491906134e9565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f9190613775565b610cca565b005b610430600480360381019061042b919061382d565b610d2a565b005b34801561043e57600080fd5b50610459600480360381019061045491906138b9565b6110ad565b005b34801561046757600080fd5b50610470611133565b60405161047d919061375a565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a891906136d7565b611139565b6040516104ba9190613726565b60405180910390f35b3480156104cf57600080fd5b506104d861127e565b6040516104e5919061359d565b60405180910390f35b3480156104fa57600080fd5b506105156004803603810190610510919061382d565b61130c565b005b61051f6115fe565b005b34801561052d57600080fd5b5061054860048036038101906105439190613912565b61176e565b005b34801561055657600080fd5b50610571600480360381019061056c9190613775565b611807565b005b61058d6004803603810190610588919061382d565b611827565b005b34801561059b57600080fd5b506105b660048036038101906105b191906135f5565b611ac5565b6040516105c39190613726565b60405180910390f35b3480156105d857600080fd5b506105e1611b16565b6040516105ee91906134e9565b60405180910390f35b34801561060357600080fd5b5061061e600480360381019061061991906135f5565b611b29565b60405161062b9190613663565b60405180910390f35b34801561064057600080fd5b5061065b600480360381019061065691906136aa565b611be6565b005b34801561066957600080fd5b50610684600480360381019061067f91906136aa565b611ca6565b6040516106919190613726565b60405180910390f35b3480156106a657600080fd5b506106af611dc2565b005b3480156106bd57600080fd5b506106d860048036038101906106d39190613912565b611e4a565b005b3480156106e657600080fd5b5061070160048036038101906106fc91906138b9565b611ee3565b005b34801561070f57600080fd5b50610718611f69565b60405161072591906134e9565b60405180910390f35b34801561073a57600080fd5b50610743611f7c565b6040516107509190613663565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b91906135f5565b611fa6565b005b34801561078e57600080fd5b5061079761202c565b6040516107a4919061359d565b60405180910390f35b3480156107b957600080fd5b506107c26120be565b6040516107cf919061375a565b60405180910390f35b3480156107e457600080fd5b506107ed6120c4565b6040516107fa9190613726565b60405180910390f35b34801561080f57600080fd5b5061082a6004803603810190610825919061393f565b6120ca565b005b34801561083857600080fd5b50610853600480360381019061084e9190613912565b61224b565b005b34801561086157600080fd5b5061087c60048036038101906108779190613aaf565b6122e4565b005b34801561088a57600080fd5b506108a560048036038101906108a091906135f5565b612346565b6040516108b2919061359d565b60405180910390f35b3480156108c757600080fd5b506108e260048036038101906108dd9190613b88565b6123ed565b005b3480156108f057600080fd5b5061090b600480360381019061090691906136aa565b61247f565b60405161091891906134e9565b60405180910390f35b34801561092d57600080fd5b5061094860048036038101906109439190613bd5565b61249f565b60405161095591906134e9565b60405180910390f35b34801561096a57600080fd5b50610985600480360381019061098091906136aa565b612533565b005b34801561099357600080fd5b5061099c61262b565b6040516109a99190613663565b60405180910390f35b3480156109be57600080fd5b506109d960048036038101906109d491906138b9565b612651565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4e5750610a4d826126d7565b5b9050919050565b606060008054610a6490613c44565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9090613c44565b8015610add5780601f10610ab257610100808354040283529160200191610add565b820191906000526020600020905b815481529060010190602001808311610ac057829003601f168201915b5050505050905090565b6000610af2826127b9565b610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890613ce8565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000610b9782611b29565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90613d7a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c27612841565b73ffffffffffffffffffffffffffffffffffffffff161480610c565750610c5581610c50612841565b61249f565b5b610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90613e0c565b60405180910390fd5b610c9f8383612849565b505050565b6000600280549050905090565b60095481565b600660149054906101000a900460ff1681565b610cdb610cd5612841565b82612902565b610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190613e9e565b60405180910390fd5b610d258383836129e0565b505050565b6000610d34610ca4565b9050600033604051602001610d499190613f06565b60405160208183030381529060405280519060200120905060038310610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b90613f6d565b60405180910390fd5b600660169054906101000a900460ff16610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea90613fd9565b60405180910390fd5b6122b98383610e029190614028565b10610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e39906140ca565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790614136565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f34906141a2565b60405180910390fd5b82600b54610f4b91906141c2565b341015610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8490614268565b60405180910390fd5b610fdb858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060095483612b99565b61101a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611011906142d4565b60405180910390fd5b60005b8381101561104d5761103a3382856110359190614028565b612bb0565b8080611045906142f4565b91505061101d565b506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b6110b5612841565b73ffffffffffffffffffffffffffffffffffffffff166110d3611f7c565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090614389565b60405180910390fd5b8060098190555050565b60085481565b600061114483611ca6565b8210611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c9061441b565b60405180910390fd5b6000805b60028054905081101561123c57600281815481106111aa576111a961443b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611229578382141561121a578092505050611278565b8180611225906142f4565b9250505b8080611234906142f4565b915050611189565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f9061441b565b60405180910390fd5b92915050565b600a805461128b90613c44565b80601f01602080910402602001604051908101604052809291908181526020018280546112b790613c44565b80156113045780601f106112d957610100808354040283529160200191611304565b820191906000526020600020905b8154815290600101906020018083116112e757829003601f168201915b505050505081565b6000611316610ca4565b90506000338360405160200161132d92919061448b565b604051602081830303815290604052805190602001209050600660159054906101000a900460ff16611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b90613fd9565b60405180910390fd5b6122b983836113a39190614028565b106113e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113da906140ca565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890614136565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d5906141a2565b60405180910390fd5b61152c858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060075483612b99565b61156b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611562906142d4565b60405180910390fd5b60005b8381101561159e5761158b3382856115869190614028565b612bb0565b8080611596906142f4565b91505061156e565b506001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b611606612841565b73ffffffffffffffffffffffffffffffffffffffff16611624611f7c565b73ffffffffffffffffffffffffffffffffffffffff161461167a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167190614389565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390614503565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061176c57600080fd5b565b611776612841565b73ffffffffffffffffffffffffffffffffffffffff16611794611f7c565b73ffffffffffffffffffffffffffffffffffffffff16146117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190614389565b60405180910390fd5b80600660166101000a81548160ff02191690831515021790555050565b611822838383604051806020016040528060008152506122e4565b505050565b6000611831610ca4565b90506000336040516020016118469190613f06565b604051602081830303815290604052805190602001209050600660149054906101000a900460ff166118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a490613fd9565b60405180910390fd5b600b83106118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790613f6d565b60405180910390fd5b6122b983836118ff9190614028565b1061193f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611936906140ca565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a490614136565b60405180910390fd5b82600b546119bb91906141c2565b3410156119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490614268565b60405180910390fd5b611a4b858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060085483612b99565b611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a81906142d4565b60405180910390fd5b60005b83811015611abd57611aaa338285611aa59190614028565b612bb0565b8080611ab5906142f4565b915050611a8d565b505050505050565b60006002805490508210611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590614595565b60405180910390fd5b819050919050565b600660169054906101000a900460ff1681565b60008060028381548110611b4057611b3f61443b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490614627565b60405180910390fd5b80915050919050565b611bee612841565b73ffffffffffffffffffffffffffffffffffffffff16611c0c611f7c565b73ffffffffffffffffffffffffffffffffffffffff1614611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5990614389565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0e906146b9565b60405180910390fd5b6000805b600280549050811015611db85760028181548110611d3c57611d3b61443b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611da75781611da4906142f4565b91505b80611db1906142f4565b9050611d1b565b5080915050919050565b611dca612841565b73ffffffffffffffffffffffffffffffffffffffff16611de8611f7c565b73ffffffffffffffffffffffffffffffffffffffff1614611e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3590614389565b60405180910390fd5b611e486000612bce565b565b611e52612841565b73ffffffffffffffffffffffffffffffffffffffff16611e70611f7c565b73ffffffffffffffffffffffffffffffffffffffff1614611ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebd90614389565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b611eeb612841565b73ffffffffffffffffffffffffffffffffffffffff16611f09611f7c565b73ffffffffffffffffffffffffffffffffffffffff1614611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5690614389565b60405180910390fd5b8060088190555050565b600660159054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fae612841565b73ffffffffffffffffffffffffffffffffffffffff16611fcc611f7c565b73ffffffffffffffffffffffffffffffffffffffff1614612022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201990614389565b60405180910390fd5b80600b8190555050565b60606001805461203b90613c44565b80601f016020809104026020016040519081016040528092919081815260200182805461206790613c44565b80156120b45780601f10612089576101008083540402835291602001916120b4565b820191906000526020600020905b81548152906001019060200180831161209757829003601f168201915b5050505050905090565b60075481565b600b5481565b6120d2612841565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213790614725565b60405180910390fd5b806004600061214d612841565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121fa612841565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161223f91906134e9565b60405180910390a35050565b612253612841565b73ffffffffffffffffffffffffffffffffffffffff16612271611f7c565b73ffffffffffffffffffffffffffffffffffffffff16146122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122be90614389565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b6122f56122ef612841565b83612902565b612334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232b90613e9e565b60405180910390fd5b61234084848484612c94565b50505050565b6060612351826127b9565b612390576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612387906147b7565b60405180910390fd5b600061239a612cf0565b905060008151116123ba57604051806020016040528060008152506123e5565b806123c484612d82565b6040516020016123d5929190614813565b6040516020818303038152906040525b915050919050565b6123f5612841565b73ffffffffffffffffffffffffffffffffffffffff16612413611f7c565b73ffffffffffffffffffffffffffffffffffffffff1614612469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246090614389565b60405180910390fd5b8181600a919061247a929190613392565b505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61253b612841565b73ffffffffffffffffffffffffffffffffffffffff16612559611f7c565b73ffffffffffffffffffffffffffffffffffffffff16146125af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a690614389565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561261f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612616906148a9565b60405180910390fd5b61262881612bce565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612659612841565b73ffffffffffffffffffffffffffffffffffffffff16612677611f7c565b73ffffffffffffffffffffffffffffffffffffffff16146126cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c490614389565b60405180910390fd5b8060078190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127b257506127b182612ee3565b5b9050919050565b60006002805490508210801561283a5750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106127f6576127f561443b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128bc83611b29565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061290d826127b9565b61294c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129439061493b565b60405180910390fd5b600061295783611b29565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129c657508373ffffffffffffffffffffffffffffffffffffffff166129ae84610ae7565b73ffffffffffffffffffffffffffffffffffffffff16145b806129d757506129d6818561249f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a0082611b29565b73ffffffffffffffffffffffffffffffffffffffff1614612a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4d906149cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abd90614a5f565b60405180910390fd5b612ad1838383612f4d565b612adc600082612849565b8160028281548110612af157612af061443b565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082612ba68584612f52565b1490509392505050565b612bca828260405180602001604052806000815250613005565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c9f8484846129e0565b612cab84848484613060565b612cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce190614af1565b60405180910390fd5b50505050565b6060600a8054612cff90613c44565b80601f0160208091040260200160405190810160405280929190818152602001828054612d2b90613c44565b8015612d785780601f10612d4d57610100808354040283529160200191612d78565b820191906000526020600020905b815481529060010190602001808311612d5b57829003601f168201915b5050505050905090565b60606000821415612dca576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ede565b600082905060005b60008214612dfc578080612de5906142f4565b915050600a82612df59190614b40565b9150612dd2565b60008167ffffffffffffffff811115612e1857612e17613984565b5b6040519080825280601f01601f191660200182016040528015612e4a5781602001600182028036833780820191505090505b5090505b60008514612ed757600182612e639190614b71565b9150600a85612e729190614ba5565b6030612e7e9190614028565b60f81b818381518110612e9457612e9361443b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ed09190614b40565b9450612e4e565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b60008082905060005b8451811015612ffa576000858281518110612f7957612f7861443b565b5b60200260200101519050808311612fba578281604051602001612f9d929190614bf7565b604051602081830303815290604052805190602001209250612fe6565b8083604051602001612fcd929190614bf7565b6040516020818303038152906040528051906020012092505b508080612ff2906142f4565b915050612f5b565b508091505092915050565b61300f83836131f7565b61301c6000848484613060565b61305b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305290614af1565b60405180910390fd5b505050565b60006130818473ffffffffffffffffffffffffffffffffffffffff1661337f565b156131ea578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130aa612841565b8786866040518563ffffffff1660e01b81526004016130cc9493929190614c78565b602060405180830381600087803b1580156130e657600080fd5b505af192505050801561311757506040513d601f19601f820116820180604052508101906131149190614cd9565b60015b61319a573d8060008114613147576040519150601f19603f3d011682016040523d82523d6000602084013e61314c565b606091505b50600081511415613192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318990614af1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131ef565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325e90614d52565b60405180910390fd5b613270816127b9565b156132b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a790614dbe565b60405180910390fd5b6132bc60008383612f4d565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461339e90613c44565b90600052602060002090601f0160209004810192826133c05760008555613407565b82601f106133d957803560ff1916838001178555613407565b82800160010185558215613407579182015b828111156134065782358255916020019190600101906133eb565b5b5090506134149190613418565b5090565b5b80821115613431576000816000905550600101613419565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61347e81613449565b811461348957600080fd5b50565b60008135905061349b81613475565b92915050565b6000602082840312156134b7576134b661343f565b5b60006134c58482850161348c565b91505092915050565b60008115159050919050565b6134e3816134ce565b82525050565b60006020820190506134fe60008301846134da565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561353e578082015181840152602081019050613523565b8381111561354d576000848401525b50505050565b6000601f19601f8301169050919050565b600061356f82613504565b613579818561350f565b9350613589818560208601613520565b61359281613553565b840191505092915050565b600060208201905081810360008301526135b78184613564565b905092915050565b6000819050919050565b6135d2816135bf565b81146135dd57600080fd5b50565b6000813590506135ef816135c9565b92915050565b60006020828403121561360b5761360a61343f565b5b6000613619848285016135e0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061364d82613622565b9050919050565b61365d81613642565b82525050565b60006020820190506136786000830184613654565b92915050565b61368781613642565b811461369257600080fd5b50565b6000813590506136a48161367e565b92915050565b6000602082840312156136c0576136bf61343f565b5b60006136ce84828501613695565b91505092915050565b600080604083850312156136ee576136ed61343f565b5b60006136fc85828601613695565b925050602061370d858286016135e0565b9150509250929050565b613720816135bf565b82525050565b600060208201905061373b6000830184613717565b92915050565b6000819050919050565b61375481613741565b82525050565b600060208201905061376f600083018461374b565b92915050565b60008060006060848603121561378e5761378d61343f565b5b600061379c86828701613695565b93505060206137ad86828701613695565b92505060406137be868287016135e0565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126137ed576137ec6137c8565b5b8235905067ffffffffffffffff81111561380a576138096137cd565b5b602083019150836020820283011115613826576138256137d2565b5b9250929050565b6000806000604084860312156138465761384561343f565b5b600084013567ffffffffffffffff81111561386457613863613444565b5b613870868287016137d7565b93509350506020613883868287016135e0565b9150509250925092565b61389681613741565b81146138a157600080fd5b50565b6000813590506138b38161388d565b92915050565b6000602082840312156138cf576138ce61343f565b5b60006138dd848285016138a4565b91505092915050565b6138ef816134ce565b81146138fa57600080fd5b50565b60008135905061390c816138e6565b92915050565b6000602082840312156139285761392761343f565b5b6000613936848285016138fd565b91505092915050565b600080604083850312156139565761395561343f565b5b600061396485828601613695565b9250506020613975858286016138fd565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139bc82613553565b810181811067ffffffffffffffff821117156139db576139da613984565b5b80604052505050565b60006139ee613435565b90506139fa82826139b3565b919050565b600067ffffffffffffffff821115613a1a57613a19613984565b5b613a2382613553565b9050602081019050919050565b82818337600083830152505050565b6000613a52613a4d846139ff565b6139e4565b905082815260208101848484011115613a6e57613a6d61397f565b5b613a79848285613a30565b509392505050565b600082601f830112613a9657613a956137c8565b5b8135613aa6848260208601613a3f565b91505092915050565b60008060008060808587031215613ac957613ac861343f565b5b6000613ad787828801613695565b9450506020613ae887828801613695565b9350506040613af9878288016135e0565b925050606085013567ffffffffffffffff811115613b1a57613b19613444565b5b613b2687828801613a81565b91505092959194509250565b60008083601f840112613b4857613b476137c8565b5b8235905067ffffffffffffffff811115613b6557613b646137cd565b5b602083019150836001820283011115613b8157613b806137d2565b5b9250929050565b60008060208385031215613b9f57613b9e61343f565b5b600083013567ffffffffffffffff811115613bbd57613bbc613444565b5b613bc985828601613b32565b92509250509250929050565b60008060408385031215613bec57613beb61343f565b5b6000613bfa85828601613695565b9250506020613c0b85828601613695565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c5c57607f821691505b60208210811415613c7057613c6f613c15565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613cd2602c8361350f565b9150613cdd82613c76565b604082019050919050565b60006020820190508181036000830152613d0181613cc5565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d6460218361350f565b9150613d6f82613d08565b604082019050919050565b60006020820190508181036000830152613d9381613d57565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613df660388361350f565b9150613e0182613d9a565b604082019050919050565b60006020820190508181036000830152613e2581613de9565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613e8860318361350f565b9150613e9382613e2c565b604082019050919050565b60006020820190508181036000830152613eb781613e7b565b9050919050565b60008160601b9050919050565b6000613ed682613ebe565b9050919050565b6000613ee882613ecb565b9050919050565b613f00613efb82613642565b613edd565b82525050565b6000613f128284613eef565b60148201915081905092915050565b7f416d6f756e742044656e69656400000000000000000000000000000000000000600082015250565b6000613f57600d8361350f565b9150613f6282613f21565b602082019050919050565b60006020820190508181036000830152613f8681613f4a565b9050919050565b7f4e6f742041637469766500000000000000000000000000000000000000000000600082015250565b6000613fc3600a8361350f565b9150613fce82613f8d565b602082019050919050565b60006020820190508181036000830152613ff281613fb6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614033826135bf565b915061403e836135bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561407357614072613ff9565b5b828201905092915050565b7f537570706c792044656e69656400000000000000000000000000000000000000600082015250565b60006140b4600d8361350f565b91506140bf8261407e565b602082019050919050565b600060208201905081810360008301526140e3816140a7565b9050919050565b7f436f6e74726163742044656e6965640000000000000000000000000000000000600082015250565b6000614120600f8361350f565b915061412b826140ea565b602082019050919050565b6000602082019050818103600083015261414f81614113565b9050919050565b7f4d696e7420436c61696d65640000000000000000000000000000000000000000600082015250565b600061418c600c8361350f565b915061419782614156565b602082019050919050565b600060208201905081810360008301526141bb8161417f565b9050919050565b60006141cd826135bf565b91506141d8836135bf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561421157614210613ff9565b5b828202905092915050565b7f457468657220416d6f756e742044656e69656400000000000000000000000000600082015250565b600061425260138361350f565b915061425d8261421c565b602082019050919050565b6000602082019050818103600083015261428181614245565b9050919050565b7f50726f6f6620496e76616c696400000000000000000000000000000000000000600082015250565b60006142be600d8361350f565b91506142c982614288565b602082019050919050565b600060208201905081810360008301526142ed816142b1565b9050919050565b60006142ff826135bf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561433257614331613ff9565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061437360208361350f565b915061437e8261433d565b602082019050919050565b600060208201905081810360008301526143a281614366565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614405602b8361350f565b9150614410826143a9565b604082019050919050565b60006020820190508181036000830152614434816143f8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b614485614480826135bf565b61446a565b82525050565b60006144978285613eef565b6014820191506144a78284614474565b6020820191508190509392505050565b7f5661756c7420496e76616c696400000000000000000000000000000000000000600082015250565b60006144ed600d8361350f565b91506144f8826144b7565b602082019050919050565b6000602082019050818103600083015261451c816144e0565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061457f602c8361350f565b915061458a82614523565b604082019050919050565b600060208201905081810360008301526145ae81614572565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061461160298361350f565b915061461c826145b5565b604082019050919050565b6000602082019050818103600083015261464081614604565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006146a3602a8361350f565b91506146ae82614647565b604082019050919050565b600060208201905081810360008301526146d281614696565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061470f60198361350f565b915061471a826146d9565b602082019050919050565b6000602082019050818103600083015261473e81614702565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006147a1602f8361350f565b91506147ac82614745565b604082019050919050565b600060208201905081810360008301526147d081614794565b9050919050565b600081905092915050565b60006147ed82613504565b6147f781856147d7565b9350614807818560208601613520565b80840191505092915050565b600061481f82856147e2565b915061482b82846147e2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061489360268361350f565b915061489e82614837565b604082019050919050565b600060208201905081810360008301526148c281614886565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614925602c8361350f565b9150614930826148c9565b604082019050919050565b6000602082019050818103600083015261495481614918565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006149b760298361350f565b91506149c28261495b565b604082019050919050565b600060208201905081810360008301526149e6816149aa565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a4960248361350f565b9150614a54826149ed565b604082019050919050565b60006020820190508181036000830152614a7881614a3c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614adb60328361350f565b9150614ae682614a7f565b604082019050919050565b60006020820190508181036000830152614b0a81614ace565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b4b826135bf565b9150614b56836135bf565b925082614b6657614b65614b11565b5b828204905092915050565b6000614b7c826135bf565b9150614b87836135bf565b925082821015614b9a57614b99613ff9565b5b828203905092915050565b6000614bb0826135bf565b9150614bbb836135bf565b925082614bcb57614bca614b11565b5b828206905092915050565b6000819050919050565b614bf1614bec82613741565b614bd6565b82525050565b6000614c038285614be0565b602082019150614c138284614be0565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000614c4a82614c23565b614c548185614c2e565b9350614c64818560208601613520565b614c6d81613553565b840191505092915050565b6000608082019050614c8d6000830187613654565b614c9a6020830186613654565b614ca76040830185613717565b8181036060830152614cb98184614c3f565b905095945050505050565b600081519050614cd381613475565b92915050565b600060208284031215614cef57614cee61343f565b5b6000614cfd84828501614cc4565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614d3c60208361350f565b9150614d4782614d06565b602082019050919050565b60006020820190508181036000830152614d6b81614d2f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614da8601c8361350f565b9150614db382614d72565b602082019050919050565b60006020820190508181036000830152614dd781614d9b565b905091905056fea2646970667358221220f45cb3e872dd909b5b756ae877beb4be31672d40c836dd791e1c322ca544a95164736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _price (uint256): 0
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ 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.