ERC-721
Overview
Max Total Supply
5,411 NUTZ
Holders
1,208
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 NUTZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CoconutzNFT
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-26 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.0) (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 = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // 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); } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev 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_; } /** * @dev 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); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev 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; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev 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())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev 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); } /** * @dev 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]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev 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); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ 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"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ 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)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ 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" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ 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); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ 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; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/CoconutzNFT.sol pragma solidity ^0.8.0; contract CoconutzNFT is ERC721, Ownable, ReentrancyGuard { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private tokenSupply; string baseURI; string notRevealedUri; string public baseExtension = ".json"; // IPFSConfiguration uint256 public cost = 42000000000000000; //Presale Price //(Always Use Converter and copy that) ///https://eth-converter.com uint256 public maxSupply = 5511; uint256 public maxMintAmount = 5; uint256 public nftPerAddressLimit = 5; bool public paused = true; bool public revealed = false; bool public onlyWhitelisted = true; mapping(address => uint256) public addressesMintedBalance; // Narq & Dactyl change hash code here bytes32 public whitelistMerkleRoot = 0x0a96477909e3c5f4628d65a350b22f7e3bd7feb4d2a725952de243d1b6e2f939; constructor() ERC721("CoconutzNFT", "NUTZ") {} /// modifier modifier mintCompliance(uint256 _mintAmount) { require(!paused, "Nice try but it's paused buddy"); require( tx.origin ==msg.sender, "CANNOT MINT THROUGH A CUSTOM CONTRACT"); uint256 ownerMintedCount = addressesMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "We love that you want more of our NFTs! Save some for others ;"); uint256 supply = tokenSupply.current(); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); _; } /// internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } /// public function totalSupply() public view returns (uint256) { return tokenSupply.current(); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount){ uint256 supply = tokenSupply.current(); require(!onlyWhitelisted, "Nice try but it's only for whitelisted buddy"); require(supply + _mintAmount <= 5411); for (uint256 i = 1; i <= _mintAmount; i++) { addressesMintedBalance[msg.sender]++; tokenSupply.increment(); _safeMint(msg.sender, supply + i); } } function whitelistMint(uint256 _mintAmount, bytes32[] calldata proof) public payable mintCompliance(_mintAmount) { uint256 supply = tokenSupply.current(); require(supply + _mintAmount <= 5411); require(onlyWhitelisted, "The contract is not in whitelist"); require(msg.value >= cost * _mintAmount, "Insufficient funds! Get some more ETH fren."); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(proof, whitelistMerkleRoot, leaf), "You are not eligible for the presale, nice try, THECryptoJesus is watching."); for (uint256 i = 1; i <= _mintAmount; i++) { addressesMintedBalance[msg.sender]++; tokenSupply.increment(); _safeMint(msg.sender, supply + i); } } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)); } //only owner function reveal() public onlyOwner() { revealed = !revealed; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner() { nftPerAddressLimit = _limit; } function setCost(uint256 _newCost) public onlyOwner() { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() { maxMintAmount = _newmaxMintAmount; } function reserveToken(uint256 _reserve) public onlyOwner { uint256 supply = tokenSupply.current(); uint256 i; for (i = 1; i < _reserve; i++) { _safeMint(msg.sender, supply +i); } } // function setNotRevealedURI(string memory _newNotRevealedURI) public onlyOwner { notRevealedUri = _newNotRevealedURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setOnlyWhitelisted() public onlyOwner { onlyWhitelisted = !onlyWhitelisted; } function pause() public onlyOwner { paused = !paused; } //merkletree function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner { whitelistMerkleRoot = _whitelistMerkleRoot; } function withdraw() public payable onlyOwner { (bool os, ) = payable(0xC23406F55641F403631113301465d7DcdE29A7DD).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"","type":"address"}],"name":"addressesMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reserve","type":"uint256"}],"name":"reserveToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newNotRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"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":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600b91906200016a565b50669536c708910000600c55611587600d556005600e819055600f556010805462ffffff1916620100011790557f0a96477909e3c5f4628d65a350b22f7e3bd7feb4d2a725952de243d1b6e2f9396012553480156200008657600080fd5b50604080518082018252600b81526a10dbd8dbdb9d5d1e93919560aa1b602080830191825283518085019094526004845263272aaa2d60e11b908401528151919291620000d6916000916200016a565b508051620000ec9060019060208401906200016a565b50505062000109620001036200011460201b60201c565b62000118565b60016007556200024d565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001789062000210565b90600052602060002090601f0160209004810192826200019c5760008555620001e7565b82601f10620001b757805160ff1916838001178555620001e7565b82800160010185558215620001e7579182015b82811115620001e7578251825591602001919060010190620001ca565b50620001f5929150620001f9565b5090565b5b80821115620001f55760008155600101620001fa565b600181811c908216806200022557607f821691505b602082108114156200024757634e487b7160e01b600052602260045260246000fd5b50919050565b6126e2806200025d6000396000f3fe6080604052600436106102465760003560e01c80638456cb5911610139578063ba7d2c76116100b6578063d2cab0561161007a578063d2cab05614610654578063d5abeb0114610667578063da3ef23f1461067d578063e985e9c51461069d578063f2c4ce1e146106e6578063f2fde38b1461070657600080fd5b8063ba7d2c76146105c9578063bd32fb66146105df578063c6682862146105ff578063c87b56dd14610614578063d0eb26b01461063457600080fd5b8063a22cb465116100fd578063a22cb46514610531578063a475b5dd14610551578063aa98e0c614610566578063b88d4fde1461057c578063ba2aec3a1461059c57600080fd5b80638456cb59146104b65780638da5cb5b146104cb57806395d89b41146104e95780639c70b512146104fe578063a0712d681461051e57600080fd5b80633ccfd60b116101c75780635c975abb1161018b5780635c975abb146104275780636352211e1461044157806370a0823114610461578063715018a6146104815780637f00c7a61461049657600080fd5b80633ccfd60b146103a057806342842e0e146103a857806344a0d68a146103c857806351830227146103e857806355f804b31461040757600080fd5b806313faede61161020e57806313faede61461031c57806318160ddd14610340578063239c70ae1461035557806323b872dd1461036b578063295e4c331461038b57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806310c0e158146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611f82565b610726565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b50610295610778565b6040516102779190611ffe565b3480156102ae57600080fd5b506102c26102bd366004612011565b61080a565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004612046565b6108a4565b005b34801561030857600080fd5b506102fa610317366004612011565b6109ba565b34801561032857600080fd5b50610332600c5481565b604051908152602001610277565b34801561034c57600080fd5b50610332610a21565b34801561036157600080fd5b50610332600e5481565b34801561037757600080fd5b506102fa610386366004612070565b610a31565b34801561039757600080fd5b506102fa610a62565b6102fa610aab565b3480156103b457600080fd5b506102fa6103c3366004612070565b610b41565b3480156103d457600080fd5b506102fa6103e3366004612011565b610b5c565b3480156103f457600080fd5b5060105461026b90610100900460ff1681565b34801561041357600080fd5b506102fa610422366004612138565b610b8b565b34801561043357600080fd5b5060105461026b9060ff1681565b34801561044d57600080fd5b506102c261045c366004612011565b610bcc565b34801561046d57600080fd5b5061033261047c366004612181565b610c43565b34801561048d57600080fd5b506102fa610cca565b3480156104a257600080fd5b506102fa6104b1366004612011565b610d00565b3480156104c257600080fd5b506102fa610d2f565b3480156104d757600080fd5b506006546001600160a01b03166102c2565b3480156104f557600080fd5b50610295610d6d565b34801561050a57600080fd5b5060105461026b9062010000900460ff1681565b6102fa61052c366004612011565b610d7c565b34801561053d57600080fd5b506102fa61054c36600461219c565b610f48565b34801561055d57600080fd5b506102fa610f53565b34801561057257600080fd5b5061033260125481565b34801561058857600080fd5b506102fa6105973660046121d8565b610f9a565b3480156105a857600080fd5b506103326105b7366004612181565b60116020526000908152604090205481565b3480156105d557600080fd5b50610332600f5481565b3480156105eb57600080fd5b506102fa6105fa366004612011565b610fd2565b34801561060b57600080fd5b50610295611001565b34801561062057600080fd5b5061029561062f366004612011565b61108f565b34801561064057600080fd5b506102fa61064f366004612011565b6111f0565b6102fa610662366004612254565b61121f565b34801561067357600080fd5b50610332600d5481565b34801561068957600080fd5b506102fa610698366004612138565b611548565b3480156106a957600080fd5b5061026b6106b83660046122d3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106f257600080fd5b506102fa610701366004612138565b611585565b34801561071257600080fd5b506102fa610721366004612181565b6115c2565b60006001600160e01b031982166380ac58cd60e01b148061075757506001600160e01b03198216635b5e139f60e01b145b8061077257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461078790612306565b80601f01602080910402602001604051908101604052809291908181526020018280546107b390612306565b80156108005780601f106107d557610100808354040283529160200191610800565b820191906000526020600020905b8154815290600101906020018083116107e357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108885760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108af82610bcc565b9050806001600160a01b0316836001600160a01b0316141561091d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161087f565b336001600160a01b0382161480610939575061093981336106b8565b6109ab5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161087f565b6109b5838361165a565b505050565b6006546001600160a01b031633146109e45760405162461bcd60e51b815260040161087f90612341565b60006109ef60085490565b905060015b828110156109b557610a0f33610a0a838561238c565b6116c8565b80610a19816123a4565b9150506109f4565b6000610a2c60085490565b905090565b610a3b33826116e2565b610a575760405162461bcd60e51b815260040161087f906123bf565b6109b58383836117d9565b6006546001600160a01b03163314610a8c5760405162461bcd60e51b815260040161087f90612341565b6010805462ff0000198116620100009182900460ff1615909102179055565b6006546001600160a01b03163314610ad55760405162461bcd60e51b815260040161087f90612341565b60405160009073c23406f55641f403631113301465d7dcde29a7dd9047908381818185875af1925050503d8060008114610b2b576040519150601f19603f3d011682016040523d82523d6000602084013e610b30565b606091505b5050905080610b3e57600080fd5b50565b6109b583838360405180602001604052806000815250610f9a565b6006546001600160a01b03163314610b865760405162461bcd60e51b815260040161087f90612341565b600c55565b6006546001600160a01b03163314610bb55760405162461bcd60e51b815260040161087f90612341565b8051610bc8906009906020840190611ed3565b5050565b6000818152600260205260408120546001600160a01b0316806107725760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161087f565b60006001600160a01b038216610cae5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161087f565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610cf45760405162461bcd60e51b815260040161087f90612341565b610cfe6000611975565b565b6006546001600160a01b03163314610d2a5760405162461bcd60e51b815260040161087f90612341565b600e55565b6006546001600160a01b03163314610d595760405162461bcd60e51b815260040161087f90612341565b6010805460ff19811660ff90911615179055565b60606001805461078790612306565b601054819060ff1615610dd15760405162461bcd60e51b815260206004820152601e60248201527f4e69636520747279206275742069742773207061757365642062756464790000604482015260640161087f565b323314610df05760405162461bcd60e51b815260040161087f90612410565b33600090815260116020526040902054600f54610e0d838361238c565b1115610e2b5760405162461bcd60e51b815260040161087f90612455565b6000610e3660085490565b905060008311610e4557600080fd5b600e54831115610e5457600080fd5b6000610e5f60085490565b60105490915062010000900460ff1615610ed05760405162461bcd60e51b815260206004820152602c60248201527f4e69636520747279206275742069742773206f6e6c7920666f7220776869746560448201526b6c697374656420627564647960a01b606482015260840161087f565b611523610edd868361238c565b1115610ee857600080fd5b60015b858111610f4057336000908152601160205260408120805491610f0d836123a4565b9190505550610f20600880546001019055565b610f2e33610a0a838561238c565b80610f38816123a4565b915050610eeb565b505050505050565b610bc83383836119c7565b6006546001600160a01b03163314610f7d5760405162461bcd60e51b815260040161087f90612341565b6010805461ff001981166101009182900460ff1615909102179055565b610fa433836116e2565b610fc05760405162461bcd60e51b815260040161087f906123bf565b610fcc84848484611a96565b50505050565b6006546001600160a01b03163314610ffc5760405162461bcd60e51b815260040161087f90612341565b601255565b600b805461100e90612306565b80601f016020809104026020016040519081016040528092919081815260200182805461103a90612306565b80156110875780601f1061105c57610100808354040283529160200191611087565b820191906000526020600020905b81548152906001019060200180831161106a57829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b031661110e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161087f565b601054610100900460ff166111af57600a805461112a90612306565b80601f016020809104026020016040519081016040528092919081815260200182805461115690612306565b80156111a35780601f10611178576101008083540402835291602001916111a3565b820191906000526020600020905b81548152906001019060200180831161118657829003601f168201915b50505050509050919050565b60006111b9611ac9565b9050806111c584611ad8565b600b6040516020016111d9939291906124b2565b604051602081830303815290604052915050919050565b6006546001600160a01b0316331461121a5760405162461bcd60e51b815260040161087f90612341565b600f55565b601054839060ff16156112745760405162461bcd60e51b815260206004820152601e60248201527f4e69636520747279206275742069742773207061757365642062756464790000604482015260640161087f565b3233146112935760405162461bcd60e51b815260040161087f90612410565b33600090815260116020526040902054600f546112b0838361238c565b11156112ce5760405162461bcd60e51b815260040161087f90612455565b60006112d960085490565b9050600083116112e857600080fd5b600e548311156112f757600080fd5b600061130260085490565b9050611523611311888361238c565b111561131c57600080fd5b60105462010000900460ff166113745760405162461bcd60e51b815260206004820181905260248201527f54686520636f6e7472616374206973206e6f7420696e2077686974656c697374604482015260640161087f565b86600c546113829190612576565b3410156113e55760405162461bcd60e51b815260206004820152602b60248201527f496e73756666696369656e742066756e6473212047657420736f6d65206d6f7260448201526a329022aa2410333932b71760a91b606482015260840161087f565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061145f878780806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050611bd6565b6114e55760405162461bcd60e51b815260206004820152604b60248201527f596f7520617265206e6f7420656c696769626c6520666f72207468652070726560448201527f73616c652c206e696365207472792c2054484543727970746f4a65737573206960648201526a39903bb0ba31b434b7339760a91b608482015260a40161087f565b60015b88811161153d5733600090815260116020526040812080549161150a836123a4565b919050555061151d600880546001019055565b61152b33610a0a838661238c565b80611535816123a4565b9150506114e8565b505050505050505050565b6006546001600160a01b031633146115725760405162461bcd60e51b815260040161087f90612341565b8051610bc890600b906020840190611ed3565b6006546001600160a01b031633146115af5760405162461bcd60e51b815260040161087f90612341565b8051610bc890600a906020840190611ed3565b6006546001600160a01b031633146115ec5760405162461bcd60e51b815260040161087f90612341565b6001600160a01b0381166116515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087f565b610b3e81611975565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061168f82610bcc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610bc8828260405180602001604052806000815250611bec565b6000818152600260205260408120546001600160a01b031661175b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161087f565b600061176683610bcc565b9050806001600160a01b0316846001600160a01b031614806117a15750836001600160a01b03166117968461080a565b6001600160a01b0316145b806117d157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117ec82610bcc565b6001600160a01b0316146118505760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161087f565b6001600160a01b0382166118b25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161087f565b6118bd60008261165a565b6001600160a01b03831660009081526003602052604081208054600192906118e6908490612595565b90915550506001600160a01b038216600090815260036020526040812080546001929061191490849061238c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611a295760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161087f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611aa18484846117d9565b611aad84848484611c1f565b610fcc5760405162461bcd60e51b815260040161087f906125ac565b60606009805461078790612306565b606081611afc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b265780611b10816123a4565b9150611b1f9050600a83612614565b9150611b00565b60008167ffffffffffffffff811115611b4157611b416120ac565b6040519080825280601f01601f191660200182016040528015611b6b576020820181803683370190505b5090505b84156117d157611b80600183612595565b9150611b8d600a86612628565b611b9890603061238c565b60f81b818381518110611bad57611bad61263c565b60200101906001600160f81b031916908160001a905350611bcf600a86612614565b9450611b6f565b600082611be38584611d1d565b14949350505050565b611bf68383611d91565b611c036000848484611c1f565b6109b55760405162461bcd60e51b815260040161087f906125ac565b60006001600160a01b0384163b15611d1257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c63903390899088908890600401612652565b6020604051808303816000875af1925050508015611c9e575060408051601f3d908101601f19168201909252611c9b9181019061268f565b60015b611cf8573d808015611ccc576040519150601f19603f3d011682016040523d82523d6000602084013e611cd1565b606091505b508051611cf05760405162461bcd60e51b815260040161087f906125ac565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117d1565b506001949350505050565b600081815b8451811015611d89576000858281518110611d3f57611d3f61263c565b60200260200101519050808311611d655760008381526020829052604090209250611d76565b600081815260208490526040902092505b5080611d81816123a4565b915050611d22565b509392505050565b6001600160a01b038216611de75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161087f565b6000818152600260205260409020546001600160a01b031615611e4c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161087f565b6001600160a01b0382166000908152600360205260408120805460019290611e7590849061238c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611edf90612306565b90600052602060002090601f016020900481019282611f015760008555611f47565b82601f10611f1a57805160ff1916838001178555611f47565b82800160010185558215611f47579182015b82811115611f47578251825591602001919060010190611f2c565b50611f53929150611f57565b5090565b5b80821115611f535760008155600101611f58565b6001600160e01b031981168114610b3e57600080fd5b600060208284031215611f9457600080fd5b8135611f9f81611f6c565b9392505050565b60005b83811015611fc1578181015183820152602001611fa9565b83811115610fcc5750506000910152565b60008151808452611fea816020860160208601611fa6565b601f01601f19169290920160200192915050565b602081526000611f9f6020830184611fd2565b60006020828403121561202357600080fd5b5035919050565b80356001600160a01b038116811461204157600080fd5b919050565b6000806040838503121561205957600080fd5b6120628361202a565b946020939093013593505050565b60008060006060848603121561208557600080fd5b61208e8461202a565b925061209c6020850161202a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156120dd576120dd6120ac565b604051601f8501601f19908116603f01168101908282118183101715612105576121056120ac565b8160405280935085815286868601111561211e57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561214a57600080fd5b813567ffffffffffffffff81111561216157600080fd5b8201601f8101841361217257600080fd5b6117d1848235602084016120c2565b60006020828403121561219357600080fd5b611f9f8261202a565b600080604083850312156121af57600080fd5b6121b88361202a565b9150602083013580151581146121cd57600080fd5b809150509250929050565b600080600080608085870312156121ee57600080fd5b6121f78561202a565b93506122056020860161202a565b925060408501359150606085013567ffffffffffffffff81111561222857600080fd5b8501601f8101871361223957600080fd5b612248878235602084016120c2565b91505092959194509250565b60008060006040848603121561226957600080fd5b83359250602084013567ffffffffffffffff8082111561228857600080fd5b818601915086601f83011261229c57600080fd5b8135818111156122ab57600080fd5b8760208260051b85010111156122c057600080fd5b6020830194508093505050509250925092565b600080604083850312156122e657600080fd5b6122ef8361202a565b91506122fd6020840161202a565b90509250929050565b600181811c9082168061231a57607f821691505b6020821081141561233b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561239f5761239f612376565b500190565b60006000198214156123b8576123b8612376565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526025908201527f43414e4e4f54204d494e54205448524f554748204120435553544f4d20434f4e60408201526415149050d560da1b606082015260800190565b6020808252603e908201527f5765206c6f7665207468617420796f752077616e74206d6f7265206f66206f7560408201527f72204e46547321205361766520736f6d6520666f72206f7468657273203b0000606082015260800190565b6000845160206124c58285838a01611fa6565b8551918401916124d88184848a01611fa6565b8554920191600090600181811c90808316806124f557607f831692505b85831081141561251357634e487b7160e01b85526022600452602485fd5b808015612527576001811461253857612565565b60ff19851688528388019550612565565b60008b81526020902060005b8581101561255d5781548a820152908401908801612544565b505083880195505b50939b9a5050505050505050505050565b600081600019048311821515161561259057612590612376565b500290565b6000828210156125a7576125a7612376565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612623576126236125fe565b500490565b600082612637576126376125fe565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061268590830184611fd2565b9695505050505050565b6000602082840312156126a157600080fd5b8151611f9f81611f6c56fea2646970667358221220af6b04ae24d017e8cb2be04086c897e83cdc8d5cd731160c40b3eed26d1d130d64736f6c634300080c0033
Deployed Bytecode
0x6080604052600436106102465760003560e01c80638456cb5911610139578063ba7d2c76116100b6578063d2cab0561161007a578063d2cab05614610654578063d5abeb0114610667578063da3ef23f1461067d578063e985e9c51461069d578063f2c4ce1e146106e6578063f2fde38b1461070657600080fd5b8063ba7d2c76146105c9578063bd32fb66146105df578063c6682862146105ff578063c87b56dd14610614578063d0eb26b01461063457600080fd5b8063a22cb465116100fd578063a22cb46514610531578063a475b5dd14610551578063aa98e0c614610566578063b88d4fde1461057c578063ba2aec3a1461059c57600080fd5b80638456cb59146104b65780638da5cb5b146104cb57806395d89b41146104e95780639c70b512146104fe578063a0712d681461051e57600080fd5b80633ccfd60b116101c75780635c975abb1161018b5780635c975abb146104275780636352211e1461044157806370a0823114610461578063715018a6146104815780637f00c7a61461049657600080fd5b80633ccfd60b146103a057806342842e0e146103a857806344a0d68a146103c857806351830227146103e857806355f804b31461040757600080fd5b806313faede61161020e57806313faede61461031c57806318160ddd14610340578063239c70ae1461035557806323b872dd1461036b578063295e4c331461038b57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806310c0e158146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611f82565b610726565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b50610295610778565b6040516102779190611ffe565b3480156102ae57600080fd5b506102c26102bd366004612011565b61080a565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004612046565b6108a4565b005b34801561030857600080fd5b506102fa610317366004612011565b6109ba565b34801561032857600080fd5b50610332600c5481565b604051908152602001610277565b34801561034c57600080fd5b50610332610a21565b34801561036157600080fd5b50610332600e5481565b34801561037757600080fd5b506102fa610386366004612070565b610a31565b34801561039757600080fd5b506102fa610a62565b6102fa610aab565b3480156103b457600080fd5b506102fa6103c3366004612070565b610b41565b3480156103d457600080fd5b506102fa6103e3366004612011565b610b5c565b3480156103f457600080fd5b5060105461026b90610100900460ff1681565b34801561041357600080fd5b506102fa610422366004612138565b610b8b565b34801561043357600080fd5b5060105461026b9060ff1681565b34801561044d57600080fd5b506102c261045c366004612011565b610bcc565b34801561046d57600080fd5b5061033261047c366004612181565b610c43565b34801561048d57600080fd5b506102fa610cca565b3480156104a257600080fd5b506102fa6104b1366004612011565b610d00565b3480156104c257600080fd5b506102fa610d2f565b3480156104d757600080fd5b506006546001600160a01b03166102c2565b3480156104f557600080fd5b50610295610d6d565b34801561050a57600080fd5b5060105461026b9062010000900460ff1681565b6102fa61052c366004612011565b610d7c565b34801561053d57600080fd5b506102fa61054c36600461219c565b610f48565b34801561055d57600080fd5b506102fa610f53565b34801561057257600080fd5b5061033260125481565b34801561058857600080fd5b506102fa6105973660046121d8565b610f9a565b3480156105a857600080fd5b506103326105b7366004612181565b60116020526000908152604090205481565b3480156105d557600080fd5b50610332600f5481565b3480156105eb57600080fd5b506102fa6105fa366004612011565b610fd2565b34801561060b57600080fd5b50610295611001565b34801561062057600080fd5b5061029561062f366004612011565b61108f565b34801561064057600080fd5b506102fa61064f366004612011565b6111f0565b6102fa610662366004612254565b61121f565b34801561067357600080fd5b50610332600d5481565b34801561068957600080fd5b506102fa610698366004612138565b611548565b3480156106a957600080fd5b5061026b6106b83660046122d3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106f257600080fd5b506102fa610701366004612138565b611585565b34801561071257600080fd5b506102fa610721366004612181565b6115c2565b60006001600160e01b031982166380ac58cd60e01b148061075757506001600160e01b03198216635b5e139f60e01b145b8061077257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461078790612306565b80601f01602080910402602001604051908101604052809291908181526020018280546107b390612306565b80156108005780601f106107d557610100808354040283529160200191610800565b820191906000526020600020905b8154815290600101906020018083116107e357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108885760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108af82610bcc565b9050806001600160a01b0316836001600160a01b0316141561091d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161087f565b336001600160a01b0382161480610939575061093981336106b8565b6109ab5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161087f565b6109b5838361165a565b505050565b6006546001600160a01b031633146109e45760405162461bcd60e51b815260040161087f90612341565b60006109ef60085490565b905060015b828110156109b557610a0f33610a0a838561238c565b6116c8565b80610a19816123a4565b9150506109f4565b6000610a2c60085490565b905090565b610a3b33826116e2565b610a575760405162461bcd60e51b815260040161087f906123bf565b6109b58383836117d9565b6006546001600160a01b03163314610a8c5760405162461bcd60e51b815260040161087f90612341565b6010805462ff0000198116620100009182900460ff1615909102179055565b6006546001600160a01b03163314610ad55760405162461bcd60e51b815260040161087f90612341565b60405160009073c23406f55641f403631113301465d7dcde29a7dd9047908381818185875af1925050503d8060008114610b2b576040519150601f19603f3d011682016040523d82523d6000602084013e610b30565b606091505b5050905080610b3e57600080fd5b50565b6109b583838360405180602001604052806000815250610f9a565b6006546001600160a01b03163314610b865760405162461bcd60e51b815260040161087f90612341565b600c55565b6006546001600160a01b03163314610bb55760405162461bcd60e51b815260040161087f90612341565b8051610bc8906009906020840190611ed3565b5050565b6000818152600260205260408120546001600160a01b0316806107725760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161087f565b60006001600160a01b038216610cae5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161087f565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610cf45760405162461bcd60e51b815260040161087f90612341565b610cfe6000611975565b565b6006546001600160a01b03163314610d2a5760405162461bcd60e51b815260040161087f90612341565b600e55565b6006546001600160a01b03163314610d595760405162461bcd60e51b815260040161087f90612341565b6010805460ff19811660ff90911615179055565b60606001805461078790612306565b601054819060ff1615610dd15760405162461bcd60e51b815260206004820152601e60248201527f4e69636520747279206275742069742773207061757365642062756464790000604482015260640161087f565b323314610df05760405162461bcd60e51b815260040161087f90612410565b33600090815260116020526040902054600f54610e0d838361238c565b1115610e2b5760405162461bcd60e51b815260040161087f90612455565b6000610e3660085490565b905060008311610e4557600080fd5b600e54831115610e5457600080fd5b6000610e5f60085490565b60105490915062010000900460ff1615610ed05760405162461bcd60e51b815260206004820152602c60248201527f4e69636520747279206275742069742773206f6e6c7920666f7220776869746560448201526b6c697374656420627564647960a01b606482015260840161087f565b611523610edd868361238c565b1115610ee857600080fd5b60015b858111610f4057336000908152601160205260408120805491610f0d836123a4565b9190505550610f20600880546001019055565b610f2e33610a0a838561238c565b80610f38816123a4565b915050610eeb565b505050505050565b610bc83383836119c7565b6006546001600160a01b03163314610f7d5760405162461bcd60e51b815260040161087f90612341565b6010805461ff001981166101009182900460ff1615909102179055565b610fa433836116e2565b610fc05760405162461bcd60e51b815260040161087f906123bf565b610fcc84848484611a96565b50505050565b6006546001600160a01b03163314610ffc5760405162461bcd60e51b815260040161087f90612341565b601255565b600b805461100e90612306565b80601f016020809104026020016040519081016040528092919081815260200182805461103a90612306565b80156110875780601f1061105c57610100808354040283529160200191611087565b820191906000526020600020905b81548152906001019060200180831161106a57829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b031661110e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161087f565b601054610100900460ff166111af57600a805461112a90612306565b80601f016020809104026020016040519081016040528092919081815260200182805461115690612306565b80156111a35780601f10611178576101008083540402835291602001916111a3565b820191906000526020600020905b81548152906001019060200180831161118657829003601f168201915b50505050509050919050565b60006111b9611ac9565b9050806111c584611ad8565b600b6040516020016111d9939291906124b2565b604051602081830303815290604052915050919050565b6006546001600160a01b0316331461121a5760405162461bcd60e51b815260040161087f90612341565b600f55565b601054839060ff16156112745760405162461bcd60e51b815260206004820152601e60248201527f4e69636520747279206275742069742773207061757365642062756464790000604482015260640161087f565b3233146112935760405162461bcd60e51b815260040161087f90612410565b33600090815260116020526040902054600f546112b0838361238c565b11156112ce5760405162461bcd60e51b815260040161087f90612455565b60006112d960085490565b9050600083116112e857600080fd5b600e548311156112f757600080fd5b600061130260085490565b9050611523611311888361238c565b111561131c57600080fd5b60105462010000900460ff166113745760405162461bcd60e51b815260206004820181905260248201527f54686520636f6e7472616374206973206e6f7420696e2077686974656c697374604482015260640161087f565b86600c546113829190612576565b3410156113e55760405162461bcd60e51b815260206004820152602b60248201527f496e73756666696369656e742066756e6473212047657420736f6d65206d6f7260448201526a329022aa2410333932b71760a91b606482015260840161087f565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061145f878780806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050611bd6565b6114e55760405162461bcd60e51b815260206004820152604b60248201527f596f7520617265206e6f7420656c696769626c6520666f72207468652070726560448201527f73616c652c206e696365207472792c2054484543727970746f4a65737573206960648201526a39903bb0ba31b434b7339760a91b608482015260a40161087f565b60015b88811161153d5733600090815260116020526040812080549161150a836123a4565b919050555061151d600880546001019055565b61152b33610a0a838661238c565b80611535816123a4565b9150506114e8565b505050505050505050565b6006546001600160a01b031633146115725760405162461bcd60e51b815260040161087f90612341565b8051610bc890600b906020840190611ed3565b6006546001600160a01b031633146115af5760405162461bcd60e51b815260040161087f90612341565b8051610bc890600a906020840190611ed3565b6006546001600160a01b031633146115ec5760405162461bcd60e51b815260040161087f90612341565b6001600160a01b0381166116515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087f565b610b3e81611975565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061168f82610bcc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610bc8828260405180602001604052806000815250611bec565b6000818152600260205260408120546001600160a01b031661175b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161087f565b600061176683610bcc565b9050806001600160a01b0316846001600160a01b031614806117a15750836001600160a01b03166117968461080a565b6001600160a01b0316145b806117d157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117ec82610bcc565b6001600160a01b0316146118505760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161087f565b6001600160a01b0382166118b25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161087f565b6118bd60008261165a565b6001600160a01b03831660009081526003602052604081208054600192906118e6908490612595565b90915550506001600160a01b038216600090815260036020526040812080546001929061191490849061238c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611a295760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161087f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611aa18484846117d9565b611aad84848484611c1f565b610fcc5760405162461bcd60e51b815260040161087f906125ac565b60606009805461078790612306565b606081611afc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b265780611b10816123a4565b9150611b1f9050600a83612614565b9150611b00565b60008167ffffffffffffffff811115611b4157611b416120ac565b6040519080825280601f01601f191660200182016040528015611b6b576020820181803683370190505b5090505b84156117d157611b80600183612595565b9150611b8d600a86612628565b611b9890603061238c565b60f81b818381518110611bad57611bad61263c565b60200101906001600160f81b031916908160001a905350611bcf600a86612614565b9450611b6f565b600082611be38584611d1d565b14949350505050565b611bf68383611d91565b611c036000848484611c1f565b6109b55760405162461bcd60e51b815260040161087f906125ac565b60006001600160a01b0384163b15611d1257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c63903390899088908890600401612652565b6020604051808303816000875af1925050508015611c9e575060408051601f3d908101601f19168201909252611c9b9181019061268f565b60015b611cf8573d808015611ccc576040519150601f19603f3d011682016040523d82523d6000602084013e611cd1565b606091505b508051611cf05760405162461bcd60e51b815260040161087f906125ac565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117d1565b506001949350505050565b600081815b8451811015611d89576000858281518110611d3f57611d3f61263c565b60200260200101519050808311611d655760008381526020829052604090209250611d76565b600081815260208490526040902092505b5080611d81816123a4565b915050611d22565b509392505050565b6001600160a01b038216611de75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161087f565b6000818152600260205260409020546001600160a01b031615611e4c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161087f565b6001600160a01b0382166000908152600360205260408120805460019290611e7590849061238c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611edf90612306565b90600052602060002090601f016020900481019282611f015760008555611f47565b82601f10611f1a57805160ff1916838001178555611f47565b82800160010185558215611f47579182015b82811115611f47578251825591602001919060010190611f2c565b50611f53929150611f57565b5090565b5b80821115611f535760008155600101611f58565b6001600160e01b031981168114610b3e57600080fd5b600060208284031215611f9457600080fd5b8135611f9f81611f6c565b9392505050565b60005b83811015611fc1578181015183820152602001611fa9565b83811115610fcc5750506000910152565b60008151808452611fea816020860160208601611fa6565b601f01601f19169290920160200192915050565b602081526000611f9f6020830184611fd2565b60006020828403121561202357600080fd5b5035919050565b80356001600160a01b038116811461204157600080fd5b919050565b6000806040838503121561205957600080fd5b6120628361202a565b946020939093013593505050565b60008060006060848603121561208557600080fd5b61208e8461202a565b925061209c6020850161202a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156120dd576120dd6120ac565b604051601f8501601f19908116603f01168101908282118183101715612105576121056120ac565b8160405280935085815286868601111561211e57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561214a57600080fd5b813567ffffffffffffffff81111561216157600080fd5b8201601f8101841361217257600080fd5b6117d1848235602084016120c2565b60006020828403121561219357600080fd5b611f9f8261202a565b600080604083850312156121af57600080fd5b6121b88361202a565b9150602083013580151581146121cd57600080fd5b809150509250929050565b600080600080608085870312156121ee57600080fd5b6121f78561202a565b93506122056020860161202a565b925060408501359150606085013567ffffffffffffffff81111561222857600080fd5b8501601f8101871361223957600080fd5b612248878235602084016120c2565b91505092959194509250565b60008060006040848603121561226957600080fd5b83359250602084013567ffffffffffffffff8082111561228857600080fd5b818601915086601f83011261229c57600080fd5b8135818111156122ab57600080fd5b8760208260051b85010111156122c057600080fd5b6020830194508093505050509250925092565b600080604083850312156122e657600080fd5b6122ef8361202a565b91506122fd6020840161202a565b90509250929050565b600181811c9082168061231a57607f821691505b6020821081141561233b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561239f5761239f612376565b500190565b60006000198214156123b8576123b8612376565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526025908201527f43414e4e4f54204d494e54205448524f554748204120435553544f4d20434f4e60408201526415149050d560da1b606082015260800190565b6020808252603e908201527f5765206c6f7665207468617420796f752077616e74206d6f7265206f66206f7560408201527f72204e46547321205361766520736f6d6520666f72206f7468657273203b0000606082015260800190565b6000845160206124c58285838a01611fa6565b8551918401916124d88184848a01611fa6565b8554920191600090600181811c90808316806124f557607f831692505b85831081141561251357634e487b7160e01b85526022600452602485fd5b808015612527576001811461253857612565565b60ff19851688528388019550612565565b60008b81526020902060005b8581101561255d5781548a820152908401908801612544565b505083880195505b50939b9a5050505050505050505050565b600081600019048311821515161561259057612590612376565b500290565b6000828210156125a7576125a7612376565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612623576126236125fe565b500490565b600082612637576126376125fe565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061268590830184611fd2565b9695505050505050565b6000602082840312156126a157600080fd5b8151611f9f81611f6c56fea2646970667358221220af6b04ae24d017e8cb2be04086c897e83cdc8d5cd731160c40b3eed26d1d130d64736f6c634300080c0033
Deployed Bytecode Sourcemap
43948:4885:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30755:305;;;;;;;;;;-1:-1:-1;30755:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30755:305:0;;;;;;;;31700:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33259:221::-;;;;;;;;;;-1:-1:-1;33259:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;33259:221:0;1528:203:1;32782:411:0;;;;;;;;;;-1:-1:-1;32782:411:0;;;;;:::i;:::-;;:::i;:::-;;47719:220;;;;;;;;;;-1:-1:-1;47719:220:0;;;;;:::i;:::-;;:::i;44231:39::-;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;44231:39:0;2173:177:1;45554:94:0;;;;;;;;;;;;;:::i;44406:32::-;;;;;;;;;;;;;;;;34009:339;;;;;;;;;;-1:-1:-1;34009:339:0;;;;;:::i;:::-;;:::i;48313:94::-;;;;;;;;;;;;;:::i;48649:181::-;;;:::i;34419:185::-;;;;;;;;;;-1:-1:-1;34419:185:0;;;;;:::i;:::-;;:::i;47506:82::-;;;;;;;;;;-1:-1:-1;47506:82:0;;;;;:::i;:::-;;:::i;44515:28::-;;;;;;;;;;-1:-1:-1;44515:28:0;;;;;;;;;;;48080:98;;;;;;;;;;-1:-1:-1;48080:98:0;;;;;:::i;:::-;;:::i;44485:25::-;;;;;;;;;;-1:-1:-1;44485:25:0;;;;;;;;31394:239;;;;;;;;;;-1:-1:-1;31394:239:0;;;;;:::i;:::-;;:::i;31124:208::-;;;;;;;;;;-1:-1:-1;31124:208:0;;;;;:::i;:::-;;:::i;11376:103::-;;;;;;;;;;;;;:::i;47594:118::-;;;;;;;;;;-1:-1:-1;47594:118:0;;;;;:::i;:::-;;:::i;48413:63::-;;;;;;;;;;;;;:::i;10725:87::-;;;;;;;;;;-1:-1:-1;10798:6:0;;-1:-1:-1;;;;;10798:6:0;10725:87;;31869:104;;;;;;;;;;;;;:::i;44548:34::-;;;;;;;;;;-1:-1:-1;44548:34:0;;;;;;;;;;;45654:437;;;;;;:::i;:::-;;:::i;33552:155::-;;;;;;;;;;-1:-1:-1;33552:155:0;;;;;:::i;:::-;;:::i;47320:72::-;;;;;;;;;;;;;:::i;44693:103::-;;;;;;;;;;;;;;;;34675:328;;;;;;;;;;-1:-1:-1;34675:328:0;;;;;:::i;:::-;;:::i;44587:57::-;;;;;;;;;;-1:-1:-1;44587:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;44443:37;;;;;;;;;;;;;;;;48500:142;;;;;;;;;;-1:-1:-1;48500:142:0;;;;;:::i;:::-;;:::i;44168:37::-;;;;;;;;;;;;;:::i;46859:439::-;;;;;;;;;;-1:-1:-1;46859:439:0;;;;;:::i;:::-;;:::i;47396:106::-;;;;;;;;;;-1:-1:-1;47396:106:0;;;;;:::i;:::-;;:::i;46097:756::-;;;;;;:::i;:::-;;:::i;44369:31::-;;;;;;;;;;;;;;;;48184:122;;;;;;;;;;-1:-1:-1;48184:122:0;;;;;:::i;:::-;;:::i;33778:164::-;;;;;;;;;;-1:-1:-1;33778:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33899:25:0;;;33875:4;33899:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33778:164;47949:125;;;;;;;;;;-1:-1:-1;47949:125:0;;;;;:::i;:::-;;:::i;11634:201::-;;;;;;;;;;-1:-1:-1;11634:201:0;;;;;:::i;:::-;;:::i;30755:305::-;30857:4;-1:-1:-1;;;;;;30894:40:0;;-1:-1:-1;;;30894:40:0;;:105;;-1:-1:-1;;;;;;;30951:48:0;;-1:-1:-1;;;30951:48:0;30894:105;:158;;;-1:-1:-1;;;;;;;;;;23618:40:0;;;31016:36;30874:178;30755:305;-1:-1:-1;;30755:305:0:o;31700:100::-;31754:13;31787:5;31780:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31700:100;:::o;33259:221::-;33335:7;36602:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36602:16:0;33355:73;;;;-1:-1:-1;;;33355:73:0;;7035:2:1;33355:73:0;;;7017:21:1;7074:2;7054:18;;;7047:30;7113:34;7093:18;;;7086:62;-1:-1:-1;;;7164:18:1;;;7157:42;7216:19;;33355:73:0;;;;;;;;;-1:-1:-1;33448:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33448:24:0;;33259:221::o;32782:411::-;32863:13;32879:23;32894:7;32879:14;:23::i;:::-;32863:39;;32927:5;-1:-1:-1;;;;;32921:11:0;:2;-1:-1:-1;;;;;32921:11:0;;;32913:57;;;;-1:-1:-1;;;32913:57:0;;7448:2:1;32913:57:0;;;7430:21:1;7487:2;7467:18;;;7460:30;7526:34;7506:18;;;7499:62;-1:-1:-1;;;7577:18:1;;;7570:31;7618:19;;32913:57:0;7246:397:1;32913:57:0;9529:10;-1:-1:-1;;;;;33005:21:0;;;;:62;;-1:-1:-1;33030:37:0;33047:5;9529:10;33778:164;:::i;33030:37::-;32983:168;;;;-1:-1:-1;;;32983:168:0;;7850:2:1;32983:168:0;;;7832:21:1;7889:2;7869:18;;;7862:30;7928:34;7908:18;;;7901:62;7999:26;7979:18;;;7972:54;8043:19;;32983:168:0;7648:420:1;32983:168:0;33164:21;33173:2;33177:7;33164:8;:21::i;:::-;32852:341;32782:411;;:::o;47719:220::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9529:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;47783:14:::1;47800:21;:11;6145:14:::0;;6053:114;47800:21:::1;47783:38:::0;-1:-1:-1;47855:1:0::1;47846:89;47862:8;47858:1;:12;47846:89;;;47889:32;47899:10;47911:9;47919:1:::0;47911:6;:9:::1;:::i;:::-;47889;:32::i;:::-;47872:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47846:89;;45554:94:::0;45598:7;45621:21;:11;6145:14;;6053:114;45621:21;45614:28;;45554:94;:::o;34009:339::-;34204:41;9529:10;34237:7;34204:18;:41::i;:::-;34196:103;;;;-1:-1:-1;;;34196:103:0;;;;;;;:::i;:::-;34312:28;34322:4;34328:2;34332:7;34312:9;:28::i;48313:94::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9529:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;48386:15:::1;::::0;;-1:-1:-1;;48367:34:0;::::1;48386:15:::0;;;;::::1;;;48385:16;48367:34:::0;;::::1;;::::0;;48313:94::o;48649:181::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9529:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;48715:90:::1;::::0;48702:7:::1;::::0;48723:42:::1;::::0;48779:21:::1;::::0;48702:7;48715:90;48702:7;48715:90;48779:21;48723:42;48715:90:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48701:104;;;48820:2;48812:11;;;::::0;::::1;;48694:136;48649:181::o:0;34419:185::-;34557:39;34574:4;34580:2;34584:7;34557:39;;;;;;;;;;;;:16;:39::i;47506:82::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9529:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;47567:4:::1;:15:::0;47506:82::o;48080:98::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9529:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;48151:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48080:98:::0;:::o;31394:239::-;31466:7;31502:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31502:16:0;31537:19;31529:73;;;;-1:-1:-1;;;31529:73:0;;9669:2:1;31529:73:0;;;9651:21:1;9708:2;9688:18;;;9681:30;9747:34;9727:18;;;9720:62;-1:-1:-1;;;9798:18:1;;;9791:39;9847:19;;31529:73:0;9467:405:1;31124:208:0;31196:7;-1:-1:-1;;;;;31224:19:0;;31216:74;;;;-1:-1:-1;;;31216:74:0;;10079:2:1;31216:74:0;;;10061:21:1;10118:2;10098:18;;;10091:30;10157:34;10137:18;;;10130:62;-1:-1:-1;;;10208:18:1;;;10201:40;10258:19;;31216:74:0;9877:406:1;31216:74:0;-1:-1:-1;;;;;;31308:16:0;;;;;:9;:16;;;;;;;31124:208::o;11376:103::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9529:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;11441:30:::1;11468:1;11441:18;:30::i;:::-;11376:103::o:0;47594:118::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9529:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;47673:13:::1;:33:::0;47594:118::o;48413:63::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9529:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;48464:6:::1;::::0;;-1:-1:-1;;48454:16:0;::::1;48464:6;::::0;;::::1;48463:7;48454:16;::::0;;48413:63::o;31869:104::-;31925:13;31958:7;31951:14;;;;;:::i;45654:437::-;44939:6;;45719:11;;44939:6;;44938:7;44930:50;;;;-1:-1:-1;;;44930:50:0;;10490:2:1;44930:50:0;;;10472:21:1;10529:2;10509:18;;;10502:30;10568:32;10548:18;;;10541:60;10618:18;;44930:50:0;10288:354:1;44930:50:0;45004:9;45016:10;45004:22;44995:73;;;;-1:-1:-1;;;44995:73:0;;;;;;;:::i;:::-;45125:10;45075:24;45102:34;;;:22;:34;;;;;;45185:18;;45151:30;45170:11;45102:34;45151:30;:::i;:::-;:52;;45143:127;;;;-1:-1:-1;;;45143:127:0;;;;;;;:::i;:::-;45277:14;45294:21;:11;6145:14;;6053:114;45294:21;45277:38;;45344:1;45330:11;:15;45322:24;;;;;;45376:13;;45361:11;:28;;45353:37;;;;;;45738:14:::1;45755:21;:11;6145:14:::0;;6053:114;45755:21:::1;45792:15;::::0;45738:38;;-1:-1:-1;45792:15:0;;::::1;;;45791:16;45783:73;;;::::0;-1:-1:-1;;;45783:73:0;;11686:2:1;45783:73:0::1;::::0;::::1;11668:21:1::0;11725:2;11705:18;;;11698:30;11764:34;11744:18;;;11737:62;-1:-1:-1;;;11815:18:1;;;11808:42;11867:19;;45783:73:0::1;11484:408:1::0;45783:73:0::1;45895:4;45871:20;45880:11:::0;45871:6;:20:::1;:::i;:::-;:28;;45863:37;;;::::0;::::1;;45924:1;45907:179;45932:11;45927:1;:16;45907:179;;45982:10;45959:34;::::0;;;:22:::1;:34;::::0;;;;:36;;;::::1;::::0;::::1;:::i;:::-;;;;;;46004:23;:11;6264:19:::0;;6282:1;6264:19;;;6175:127;46004:23:::1;46037:33;46047:10;46059;46068:1:::0;46059:6;:10:::1;:::i;46037:33::-;45945:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45907:179;;;;45731:360;44923:481:::0;;45654:437;;:::o;33552:155::-;33647:52;9529:10;33680:8;33690;33647:18;:52::i;47320:72::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9529:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;47378:8:::1;::::0;;-1:-1:-1;;47366:20:0;::::1;47378:8;::::0;;;::::1;;;47377:9;47366:20:::0;;::::1;;::::0;;47320:72::o;34675:328::-;34850:41;9529:10;34883:7;34850:18;:41::i;:::-;34842:103;;;;-1:-1:-1;;;34842:103:0;;;;;;;:::i;:::-;34956:39;34970:4;34976:2;34980:7;34989:5;34956:13;:39::i;:::-;34675:328;;;;:::o;48500:142::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9529:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;48592:19:::1;:42:::0;48500:142::o;44168:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46859:439::-;36578:4;36602:16;;;:7;:16;;;;;;46957:13;;-1:-1:-1;;;;;36602:16:0;46982:97;;;;-1:-1:-1;;;46982:97:0;;12099:2:1;46982:97:0;;;12081:21:1;12138:2;12118:18;;;12111:30;12177:34;12157:18;;;12150:62;-1:-1:-1;;;12228:18:1;;;12221:45;12283:19;;46982:97:0;11897:411:1;46982:97:0;47095:8;;;;;;;47092:62;;47132:14;47125:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46859:439;;;:::o;47092:62::-;47162:28;47193:10;:8;:10::i;:::-;47162:41;;47241:14;47257:18;:7;:16;:18::i;:::-;47277:13;47224:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47210:82;;;46859:439;;;:::o;47396:106::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9529:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;47469:18:::1;:27:::0;47396:106::o;46097:756::-;44939:6;;46197:11;;44939:6;;44938:7;44930:50;;;;-1:-1:-1;;;44930:50:0;;10490:2:1;44930:50:0;;;10472:21:1;10529:2;10509:18;;;10502:30;10568:32;10548:18;;;10541:60;10618:18;;44930:50:0;10288:354:1;44930:50:0;45004:9;45016:10;45004:22;44995:73;;;;-1:-1:-1;;;44995:73:0;;;;;;;:::i;:::-;45125:10;45075:24;45102:34;;;:22;:34;;;;;;45185:18;;45151:30;45170:11;45102:34;45151:30;:::i;:::-;:52;;45143:127;;;;-1:-1:-1;;;45143:127:0;;;;;;;:::i;:::-;45277:14;45294:21;:11;6145:14;;6053:114;45294:21;45277:38;;45344:1;45330:11;:15;45322:24;;;;;;45376:13;;45361:11;:28;;45353:37;;;;;;46217:14:::1;46234:21;:11;6145:14:::0;;6053:114;46234:21:::1;46217:38:::0;-1:-1:-1;46294:4:0::1;46270:20;46279:11:::0;46217:38;46270:20:::1;:::i;:::-;:28;;46262:37;;;::::0;::::1;;46314:15;::::0;;;::::1;;;46306:60;;;::::0;-1:-1:-1;;;46306:60:0;;14173:2:1;46306:60:0::1;::::0;::::1;14155:21:1::0;;;14192:18;;;14185:30;14251:34;14231:18;;;14224:62;14303:18;;46306:60:0::1;13971:356:1::0;46306:60:0::1;46401:11;46394:4;;:18;;;;:::i;:::-;46381:9;:31;;46373:87;;;::::0;-1:-1:-1;;;46373:87:0;;14707:2:1;46373:87:0::1;::::0;::::1;14689:21:1::0;14746:2;14726:18;;;14719:30;14785:34;14765:18;;;14758:62;-1:-1:-1;;;14836:18:1;;;14829:41;14887:19;;46373:87:0::1;14505:407:1::0;46373:87:0::1;46492:28;::::0;-1:-1:-1;;46509:10:0::1;15066:2:1::0;15062:15;15058:53;46492:28:0::1;::::0;::::1;15046:66:1::0;46467:12:0::1;::::0;15128::1;;46492:28:0::1;;;;;;;;;;;;46482:39;;;;;;46467:54;;46536:52;46555:5;;46536:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;46562:19:0::1;::::0;;-1:-1:-1;46583:4:0;;-1:-1:-1;46536:18:0::1;:52::i;:::-;46528:140;;;::::0;-1:-1:-1;;;46528:140:0;;15353:2:1;46528:140:0::1;::::0;::::1;15335:21:1::0;15392:2;15372:18;;;15365:30;15431:34;15411:18;;;15404:62;15502:34;15482:18;;;15475:62;-1:-1:-1;;;15553:19:1;;;15546:42;15605:19;;46528:140:0::1;15151:479:1::0;46528:140:0::1;46694:1;46677:171;46702:11;46697:1;:16;46677:171;;46752:10;46729:34;::::0;;;:22:::1;:34;::::0;;;;:36;;;::::1;::::0;::::1;:::i;:::-;;;;;;46774:23;:11;6264:19:::0;;6282:1;6264:19;;;6175:127;46774:23:::1;46807:33;46817:10;46829;46838:1:::0;46829:6;:10:::1;:::i;46807:33::-;46715:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46677:171;;;;46210:643;;44923:481:::0;;46097:756;;;;:::o;48184:122::-;10798:6;;-1:-1:-1;;;;;10798:6:0;9529:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;48267:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;47949:125::-:0;10798:6;;-1:-1:-1;;;;;10798:6:0;9529:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;48033:35;;::::1;::::0;:14:::1;::::0;:35:::1;::::0;::::1;::::0;::::1;:::i;11634:201::-:0;10798:6;;-1:-1:-1;;;;;10798:6:0;9529:10;10945:23;10937:68;;;;-1:-1:-1;;;10937:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11723:22:0;::::1;11715:73;;;::::0;-1:-1:-1;;;11715:73:0;;15837:2:1;11715:73:0::1;::::0;::::1;15819:21:1::0;15876:2;15856:18;;;15849:30;15915:34;15895:18;;;15888:62;-1:-1:-1;;;15966:18:1;;;15959:36;16012:19;;11715:73:0::1;15635:402:1::0;11715:73:0::1;11799:28;11818:8;11799:18;:28::i;40659:174::-:0;40734:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40734:29:0;-1:-1:-1;;;;;40734:29:0;;;;;;;;:24;;40788:23;40734:24;40788:14;:23::i;:::-;-1:-1:-1;;;;;40779:46:0;;;;;;;;;;;40659:174;;:::o;37497:110::-;37573:26;37583:2;37587:7;37573:26;;;;;;;;;;;;:9;:26::i;36807:348::-;36900:4;36602:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36602:16:0;36917:73;;;;-1:-1:-1;;;36917:73:0;;16244:2:1;36917:73:0;;;16226:21:1;16283:2;16263:18;;;16256:30;16322:34;16302:18;;;16295:62;-1:-1:-1;;;16373:18:1;;;16366:42;16425:19;;36917:73:0;16042:408:1;36917:73:0;37001:13;37017:23;37032:7;37017:14;:23::i;:::-;37001:39;;37070:5;-1:-1:-1;;;;;37059:16:0;:7;-1:-1:-1;;;;;37059:16:0;;:51;;;;37103:7;-1:-1:-1;;;;;37079:31:0;:20;37091:7;37079:11;:20::i;:::-;-1:-1:-1;;;;;37079:31:0;;37059:51;:87;;;-1:-1:-1;;;;;;33899:25:0;;;33875:4;33899:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37114:32;37051:96;36807:348;-1:-1:-1;;;;36807:348:0:o;39916:625::-;40075:4;-1:-1:-1;;;;;40048:31:0;:23;40063:7;40048:14;:23::i;:::-;-1:-1:-1;;;;;40048:31:0;;40040:81;;;;-1:-1:-1;;;40040:81:0;;16657:2:1;40040:81:0;;;16639:21:1;16696:2;16676:18;;;16669:30;16735:34;16715:18;;;16708:62;-1:-1:-1;;;16786:18:1;;;16779:35;16831:19;;40040:81:0;16455:401:1;40040:81:0;-1:-1:-1;;;;;40140:16:0;;40132:65;;;;-1:-1:-1;;;40132:65:0;;17063:2:1;40132:65:0;;;17045:21:1;17102:2;17082:18;;;17075:30;17141:34;17121:18;;;17114:62;-1:-1:-1;;;17192:18:1;;;17185:34;17236:19;;40132:65:0;16861:400:1;40132:65:0;40314:29;40331:1;40335:7;40314:8;:29::i;:::-;-1:-1:-1;;;;;40356:15:0;;;;;;:9;:15;;;;;:20;;40375:1;;40356:15;:20;;40375:1;;40356:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40387:13:0;;;;;;:9;:13;;;;;:18;;40404:1;;40387:13;:18;;40404:1;;40387:18;:::i;:::-;;;;-1:-1:-1;;40416:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40416:21:0;-1:-1:-1;;;;;40416:21:0;;;;;;;;;40455:27;;40416:16;;40455:27;;;;;;;32852:341;32782:411;;:::o;11995:191::-;12088:6;;;-1:-1:-1;;;;;12105:17:0;;;-1:-1:-1;;;;;;12105:17:0;;;;;;;12138:40;;12088:6;;;12105:17;12088:6;;12138:40;;12069:16;;12138:40;12058:128;11995:191;:::o;40975:315::-;41130:8;-1:-1:-1;;;;;41121:17:0;:5;-1:-1:-1;;;;;41121:17:0;;;41113:55;;;;-1:-1:-1;;;41113:55:0;;17598:2:1;41113:55:0;;;17580:21:1;17637:2;17617:18;;;17610:30;17676:27;17656:18;;;17649:55;17721:18;;41113:55:0;17396:349:1;41113:55:0;-1:-1:-1;;;;;41179:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41179:46:0;;;;;;;;;;41241:41;;540::1;;;41241::0;;513:18:1;41241:41:0;;;;;;;40975:315;;;:::o;35885:::-;36042:28;36052:4;36058:2;36062:7;36042:9;:28::i;:::-;36089:48;36112:4;36118:2;36122:7;36131:5;36089:22;:48::i;:::-;36081:111;;;;-1:-1:-1;;;36081:111:0;;;;;;;:::i;45430:102::-;45490:13;45519:7;45512:14;;;;;:::i;7011:723::-;7067:13;7288:10;7284:53;;-1:-1:-1;;7315:10:0;;;;;;;;;;;;-1:-1:-1;;;7315:10:0;;;;;7011:723::o;7284:53::-;7362:5;7347:12;7403:78;7410:9;;7403:78;;7436:8;;;;:::i;:::-;;-1:-1:-1;7459:10:0;;-1:-1:-1;7467:2:0;7459:10;;:::i;:::-;;;7403:78;;;7491:19;7523:6;7513:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7513:17:0;;7491:39;;7541:154;7548:10;;7541:154;;7575:11;7585:1;7575:11;;:::i;:::-;;-1:-1:-1;7644:10:0;7652:2;7644:5;:10;:::i;:::-;7631:24;;:2;:24;:::i;:::-;7618:39;;7601:6;7608;7601:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7601:56:0;;;;;;;;-1:-1:-1;7672:11:0;7681:2;7672:11;;:::i;:::-;;;7541:154;;3715:190;3840:4;3893;3864:25;3877:5;3884:4;3864:12;:25::i;:::-;:33;;3715:190;-1:-1:-1;;;;3715:190:0:o;37834:321::-;37964:18;37970:2;37974:7;37964:5;:18::i;:::-;38015:54;38046:1;38050:2;38054:7;38063:5;38015:22;:54::i;:::-;37993:154;;;;-1:-1:-1;;;37993:154:0;;;;;;;:::i;41855:799::-;42010:4;-1:-1:-1;;;;;42031:13:0;;13721:19;:23;42027:620;;42067:72;;-1:-1:-1;;;42067:72:0;;-1:-1:-1;;;;;42067:36:0;;;;;:72;;9529:10;;42118:4;;42124:7;;42133:5;;42067:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42067:72:0;;;;;;;;-1:-1:-1;;42067:72:0;;;;;;;;;;;;:::i;:::-;;;42063:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42309:13:0;;42305:272;;42352:60;;-1:-1:-1;;;42352:60:0;;;;;;;:::i;42305:272::-;42527:6;42521:13;42512:6;42508:2;42504:15;42497:38;42063:529;-1:-1:-1;;;;;;42190:51:0;-1:-1:-1;;;42190:51:0;;-1:-1:-1;42183:58:0;;42027:620;-1:-1:-1;42631:4:0;41855:799;;;;;;:::o;4267:675::-;4350:7;4393:4;4350:7;4408:497;4432:5;:12;4428:1;:16;4408:497;;;4466:20;4489:5;4495:1;4489:8;;;;;;;;:::i;:::-;;;;;;;4466:31;;4532:12;4516;:28;4512:382;;5018:13;5068:15;;;5104:4;5097:15;;;5151:4;5135:21;;4644:57;;4512:382;;;5018:13;5068:15;;;5104:4;5097:15;;;5151:4;5135:21;;4821:57;;4512:382;-1:-1:-1;4446:3:0;;;;:::i;:::-;;;;4408:497;;;-1:-1:-1;4922:12:0;4267:675;-1:-1:-1;;;4267:675:0:o;38491:439::-;-1:-1:-1;;;;;38571:16:0;;38563:61;;;;-1:-1:-1;;;38563:61:0;;19625:2:1;38563:61:0;;;19607:21:1;;;19644:18;;;19637:30;19703:34;19683:18;;;19676:62;19755:18;;38563:61:0;19423:356:1;38563:61:0;36578:4;36602:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36602:16:0;:30;38635:58;;;;-1:-1:-1;;;38635:58:0;;19986:2:1;38635:58:0;;;19968:21:1;20025:2;20005:18;;;19998:30;20064;20044:18;;;20037:58;20112:18;;38635:58:0;19784:352:1;38635:58:0;-1:-1:-1;;;;;38764:13:0;;;;;;:9;:13;;;;;:18;;38781:1;;38764:13;:18;;38781:1;;38764:18;:::i;:::-;;;;-1:-1:-1;;38793:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38793:21:0;-1:-1:-1;;;;;38793:21:0;;;;;;;;38832:33;;38793:16;;;38832:33;;38793:16;;38832:33;48151:21:::1;48080:98:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4638:667::-;4733:6;4741;4749;4757;4810:3;4798:9;4789:7;4785:23;4781:33;4778:53;;;4827:1;4824;4817:12;4778:53;4850:29;4869:9;4850:29;:::i;:::-;4840:39;;4898:38;4932:2;4921:9;4917:18;4898:38;:::i;:::-;4888:48;;4983:2;4972:9;4968:18;4955:32;4945:42;;5038:2;5027:9;5023:18;5010:32;5065:18;5057:6;5054:30;5051:50;;;5097:1;5094;5087:12;5051:50;5120:22;;5173:4;5165:13;;5161:27;-1:-1:-1;5151:55:1;;5202:1;5199;5192:12;5151:55;5225:74;5291:7;5286:2;5273:16;5268:2;5264;5260:11;5225:74;:::i;:::-;5215:84;;;4638:667;;;;;;;:::o;5495:683::-;5590:6;5598;5606;5659:2;5647:9;5638:7;5634:23;5630:32;5627:52;;;5675:1;5672;5665:12;5627:52;5711:9;5698:23;5688:33;;5772:2;5761:9;5757:18;5744:32;5795:18;5836:2;5828:6;5825:14;5822:34;;;5852:1;5849;5842:12;5822:34;5890:6;5879:9;5875:22;5865:32;;5935:7;5928:4;5924:2;5920:13;5916:27;5906:55;;5957:1;5954;5947:12;5906:55;5997:2;5984:16;6023:2;6015:6;6012:14;6009:34;;;6039:1;6036;6029:12;6009:34;6092:7;6087:2;6077:6;6074:1;6070:14;6066:2;6062:23;6058:32;6055:45;6052:65;;;6113:1;6110;6103:12;6052:65;6144:2;6140;6136:11;6126:21;;6166:6;6156:16;;;;;5495:683;;;;;:::o;6183:260::-;6251:6;6259;6312:2;6300:9;6291:7;6287:23;6283:32;6280:52;;;6328:1;6325;6318:12;6280:52;6351:29;6370:9;6351:29;:::i;:::-;6341:39;;6399:38;6433:2;6422:9;6418:18;6399:38;:::i;:::-;6389:48;;6183:260;;;;;:::o;6448:380::-;6527:1;6523:12;;;;6570;;;6591:61;;6645:4;6637:6;6633:17;6623:27;;6591:61;6698:2;6690:6;6687:14;6667:18;6664:38;6661:161;;;6744:10;6739:3;6735:20;6732:1;6725:31;6779:4;6776:1;6769:15;6807:4;6804:1;6797:15;6661:161;;6448:380;;;:::o;8073:356::-;8275:2;8257:21;;;8294:18;;;8287:30;8353:34;8348:2;8333:18;;8326:62;8420:2;8405:18;;8073:356::o;8434:127::-;8495:10;8490:3;8486:20;8483:1;8476:31;8526:4;8523:1;8516:15;8550:4;8547:1;8540:15;8566:128;8606:3;8637:1;8633:6;8630:1;8627:13;8624:39;;;8643:18;;:::i;:::-;-1:-1:-1;8679:9:1;;8566:128::o;8699:135::-;8738:3;-1:-1:-1;;8759:17:1;;8756:43;;;8779:18;;:::i;:::-;-1:-1:-1;8826:1:1;8815:13;;8699:135::o;8839:413::-;9041:2;9023:21;;;9080:2;9060:18;;;9053:30;9119:34;9114:2;9099:18;;9092:62;-1:-1:-1;;;9185:2:1;9170:18;;9163:47;9242:3;9227:19;;8839:413::o;10647:401::-;10849:2;10831:21;;;10888:2;10868:18;;;10861:30;10927:34;10922:2;10907:18;;10900:62;-1:-1:-1;;;10993:2:1;10978:18;;10971:35;11038:3;11023:19;;10647:401::o;11053:426::-;11255:2;11237:21;;;11294:2;11274:18;;;11267:30;11333:34;11328:2;11313:18;;11306:62;11404:32;11399:2;11384:18;;11377:60;11469:3;11454:19;;11053:426::o;12439:1527::-;12663:3;12701:6;12695:13;12727:4;12740:51;12784:6;12779:3;12774:2;12766:6;12762:15;12740:51;:::i;:::-;12854:13;;12813:16;;;;12876:55;12854:13;12813:16;12898:15;;;12876:55;:::i;:::-;13020:13;;12953:20;;;12993:1;;13080;13102:18;;;;13155;;;;13182:93;;13260:4;13250:8;13246:19;13234:31;;13182:93;13323:2;13313:8;13310:16;13290:18;13287:40;13284:167;;;-1:-1:-1;;;13350:33:1;;13406:4;13403:1;13396:15;13436:4;13357:3;13424:17;13284:167;13467:18;13494:110;;;;13618:1;13613:328;;;;13460:481;;13494:110;-1:-1:-1;;13529:24:1;;13515:39;;13574:20;;;;-1:-1:-1;13494:110:1;;13613:328;12386:1;12379:14;;;12423:4;12410:18;;13708:1;13722:169;13736:8;13733:1;13730:15;13722:169;;;13818:14;;13803:13;;;13796:37;13861:16;;;;13753:10;;13722:169;;;13726:3;;13922:8;13915:5;13911:20;13904:27;;13460:481;-1:-1:-1;13957:3:1;;12439:1527;-1:-1:-1;;;;;;;;;;;12439:1527:1:o;14332:168::-;14372:7;14438:1;14434;14430:6;14426:14;14423:1;14420:21;14415:1;14408:9;14401:17;14397:45;14394:71;;;14445:18;;:::i;:::-;-1:-1:-1;14485:9:1;;14332:168::o;17266:125::-;17306:4;17334:1;17331;17328:8;17325:34;;;17339:18;;:::i;:::-;-1:-1:-1;17376:9:1;;17266:125::o;17750:414::-;17952:2;17934:21;;;17991:2;17971:18;;;17964:30;18030:34;18025:2;18010:18;;18003:62;-1:-1:-1;;;18096:2:1;18081:18;;18074:48;18154:3;18139:19;;17750:414::o;18169:127::-;18230:10;18225:3;18221:20;18218:1;18211:31;18261:4;18258:1;18251:15;18285:4;18282:1;18275:15;18301:120;18341:1;18367;18357:35;;18372:18;;:::i;:::-;-1:-1:-1;18406:9:1;;18301:120::o;18426:112::-;18458:1;18484;18474:35;;18489:18;;:::i;:::-;-1:-1:-1;18523:9:1;;18426:112::o;18543:127::-;18604:10;18599:3;18595:20;18592:1;18585:31;18635:4;18632:1;18625:15;18659:4;18656:1;18649:15;18675:489;-1:-1:-1;;;;;18944:15:1;;;18926:34;;18996:15;;18991:2;18976:18;;18969:43;19043:2;19028:18;;19021:34;;;19091:3;19086:2;19071:18;;19064:31;;;18869:4;;19112:46;;19138:19;;19130:6;19112:46;:::i;:::-;19104:54;18675:489;-1:-1:-1;;;;;;18675:489:1:o;19169:249::-;19238:6;19291:2;19279:9;19270:7;19266:23;19262:32;19259:52;;;19307:1;19304;19297:12;19259:52;19339:9;19333:16;19358:30;19382:5;19358:30;:::i
Swarm Source
ipfs://af6b04ae24d017e8cb2be04086c897e83cdc8d5cd731160c40b3eed26d1d130d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.