ERC-721
NFT
Overview
Max Total Supply
361 TDB
Holders
187
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 TDBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NFT
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-09 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/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/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ 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; } interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/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/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/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/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/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/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; 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; } } /** * @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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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); } /** * @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); } /** * @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 of token that is not own"); 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); } /** * @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 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 {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/utils/Context.sol // File: @openzeppelin/contracts/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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/TDB.sol pragma solidity >=0.7.0 <0.9.0; contract NFT is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = 0.069 ether; uint256 public maxSupply = 10000; uint256 public maxMintAmount = 20; uint256 public nftPerAddressLimit = 3; bool public paused = false; bool public revealed = false; bool public onlyWhitelisted = true; address[] public whitelistedAddresses; mapping(address => uint256) public addressMintedBalance; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) public payable { require(!paused, "The contract is paused"); uint256 supply = totalSupply(); require(_mintAmount > 0, "Need to mint at least 1 NFT"); require(_mintAmount <= maxMintAmount, "Max mint amount per session exceeded"); require(supply + _mintAmount <= maxSupply, "Max NFT limit exceeded"); if (msg.sender != owner()) { if(onlyWhitelisted == true) { require(isWhitelisted(msg.sender), "User is not whitelisted"); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "Max NFT per address exceeded"); } require(msg.value >= cost * _mintAmount, "Insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, supply + i); } } function isWhitelisted(address _user) public view returns (bool) { for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } 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 bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function reveal() public onlyOwner() { revealed = true; } 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 setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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":"addressMintedBalance","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":"baseURI","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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","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":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"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":[],"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":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c91906200020a565b5066f5232269808000600e55612710600f55601460105560036011556012805462ffffff1916620100001790553480156200006257600080fd5b5060405162002eba38038062002eba833981016040819052620000859162000363565b8351849084906200009e9060009060208501906200020a565b508051620000b49060019060208401906200020a565b505050620000d1620000cb620000f160201b60201c565b620000f5565b620000dc8262000147565b620000e781620001af565b505050506200046a565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001965760405162461bcd60e51b8152602060048201819052602482015260008051602062002e9a83398151915260448201526064015b60405180910390fd5b8051620001ab90600b9060208401906200020a565b5050565b600a546001600160a01b03163314620001fa5760405162461bcd60e51b8152602060048201819052602482015260008051602062002e9a83398151915260448201526064016200018d565b8051620001ab90600d9060208401905b828054620002189062000417565b90600052602060002090601f0160209004810192826200023c576000855562000287565b82601f106200025757805160ff191683800117855562000287565b8280016001018555821562000287579182015b82811115620002875782518255916020019190600101906200026a565b506200029592915062000299565b5090565b5b808211156200029557600081556001016200029a565b600082601f830112620002c1578081fd5b81516001600160401b0380821115620002de57620002de62000454565b604051601f8301601f19908116603f0116810190828211818310171562000309576200030962000454565b8160405283815260209250868385880101111562000325578485fd5b8491505b8382101562000348578582018301518183018401529082019062000329565b838211156200035957848385830101525b9695505050505050565b6000806000806080858703121562000379578384fd5b84516001600160401b038082111562000390578586fd5b6200039e88838901620002b0565b95506020870151915080821115620003b4578485fd5b620003c288838901620002b0565b94506040870151915080821115620003d8578384fd5b620003e688838901620002b0565b93506060870151915080821115620003fc578283fd5b506200040b87828801620002b0565b91505092959194509250565b600181811c908216806200042c57607f821691505b602082108114156200044e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612a20806200047a6000396000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610717578063da3ef23f1461072d578063e985e9c51461074d578063edec5f2714610796578063f2c4ce1e146107b6578063f2fde38b146107d657600080fd5b8063b88d4fde1461066c578063ba4e5c491461068c578063ba7d2c76146106ac578063c6682862146106c2578063c87b56dd146106d7578063d0eb26b0146106f757600080fd5b80638da5cb5b116101135780638da5cb5b146105d157806395d89b41146105ef5780639c70b51214610604578063a0712d6814610624578063a22cb46514610637578063a475b5dd1461065757600080fd5b80636352211e146105475780636c0360eb1461056757806370a082311461057c578063715018a61461059c5780637f00c7a6146105b157600080fd5b80632f745c59116101e8578063438b6300116101ac578063438b63001461048157806344a0d68a146104ae5780634f6ccce7146104ce57806351830227146104ee57806355f804b31461050d5780635c975abb1461052d57600080fd5b80632f745c59146103f95780633af32abf146104195780633c952764146104395780633ccfd60b1461045957806342842e0e1461046157600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd1461038157806318cae26914610396578063239c70ae146103c357806323b872dd146103d957600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b506102976102923660046125aa565b6107f6565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004612590565b610821565b005b3480156102da57600080fd5b506102e3610867565b6040516102a391906127af565b3480156102fc57600080fd5b5061031061030b366004612628565b6108f9565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e361098e565b34801561034957600080fd5b506102cc6103583660046124f7565b610a1c565b34801561036957600080fd5b50610373600e5481565b6040519081526020016102a3565b34801561038d57600080fd5b50600854610373565b3480156103a257600080fd5b506103736103b13660046123ce565b60146020526000908152604090205481565b3480156103cf57600080fd5b5061037360105481565b3480156103e557600080fd5b506102cc6103f436600461241a565b610b32565b34801561040557600080fd5b506103736104143660046124f7565b610b63565b34801561042557600080fd5b506102976104343660046123ce565b610bf9565b34801561044557600080fd5b506102cc610454366004612590565b610c71565b6102cc610cb7565b34801561046d57600080fd5b506102cc61047c36600461241a565b610d39565b34801561048d57600080fd5b506104a161049c3660046123ce565b610d54565b6040516102a3919061276b565b3480156104ba57600080fd5b506102cc6104c9366004612628565b610e12565b3480156104da57600080fd5b506103736104e9366004612628565b610e41565b3480156104fa57600080fd5b5060125461029790610100900460ff1681565b34801561051957600080fd5b506102cc6105283660046125e2565b610ee2565b34801561053957600080fd5b506012546102979060ff1681565b34801561055357600080fd5b50610310610562366004612628565b610f23565b34801561057357600080fd5b506102e3610f9a565b34801561058857600080fd5b506103736105973660046123ce565b610fa7565b3480156105a857600080fd5b506102cc61102e565b3480156105bd57600080fd5b506102cc6105cc366004612628565b611064565b3480156105dd57600080fd5b50600a546001600160a01b0316610310565b3480156105fb57600080fd5b506102e3611093565b34801561061057600080fd5b506012546102979062010000900460ff1681565b6102cc610632366004612628565b6110a2565b34801561064357600080fd5b506102cc6106523660046124ce565b611389565b34801561066357600080fd5b506102cc61144e565b34801561067857600080fd5b506102cc610687366004612455565b611489565b34801561069857600080fd5b506103106106a7366004612628565b6114c1565b3480156106b857600080fd5b5061037360115481565b3480156106ce57600080fd5b506102e36114eb565b3480156106e357600080fd5b506102e36106f2366004612628565b6114f8565b34801561070357600080fd5b506102cc610712366004612628565b611677565b34801561072357600080fd5b50610373600f5481565b34801561073957600080fd5b506102cc6107483660046125e2565b6116a6565b34801561075957600080fd5b506102976107683660046123e8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102cc6107b1366004612520565b6116e3565b3480156107c257600080fd5b506102cc6107d13660046125e2565b611725565b3480156107e257600080fd5b506102cc6107f13660046123ce565b611762565b60006001600160e01b0319821663780e9d6360e01b148061081b575061081b826117fa565b92915050565b600a546001600160a01b031633146108545760405162461bcd60e51b815260040161084b90612814565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461087690612928565b80601f01602080910402602001604051908101604052809291908181526020018280546108a290612928565b80156108ef5780601f106108c4576101008083540402835291602001916108ef565b820191906000526020600020905b8154815290600101906020018083116108d257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b506000908152600460205260409020546001600160a01b031690565b600d805461099b90612928565b80601f01602080910402602001604051908101604052809291908181526020018280546109c790612928565b8015610a145780601f106109e957610100808354040283529160200191610a14565b820191906000526020600020905b8154815290600101906020018083116109f757829003601f168201915b505050505081565b6000610a2782610f23565b9050806001600160a01b0316836001600160a01b03161415610a955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084b565b336001600160a01b0382161480610ab15750610ab18133610768565b610b235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084b565b610b2d838361184a565b505050565b610b3c33826118b8565b610b585760405162461bcd60e51b815260040161084b90612849565b610b2d8383836119af565b6000610b6e83610fa7565b8210610bd05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161084b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610c6857826001600160a01b031660138281548110610c3257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610c565750600192915050565b80610c6081612963565b915050610bfd565b50600092915050565b600a546001600160a01b03163314610c9b5760405162461bcd60e51b815260040161084b90612814565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610ce15760405162461bcd60e51b815260040161084b90612814565b604051600090339047908381818185875af1925050503d8060008114610d23576040519150601f19603f3d011682016040523d82523d6000602084013e610d28565b606091505b5050905080610d3657600080fd5b50565b610b2d83838360405180602001604052806000815250611489565b60606000610d6183610fa7565b905060008167ffffffffffffffff811115610d8c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610db5578160200160208202803683370190505b50905060005b82811015610e0a57610dcd8582610b63565b828281518110610ded57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610e0281612963565b915050610dbb565b509392505050565b600a546001600160a01b03163314610e3c5760405162461bcd60e51b815260040161084b90612814565b600e55565b6000610e4c60085490565b8210610eaf5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161084b565b60088281548110610ed057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610f0c5760405162461bcd60e51b815260040161084b90612814565b8051610f1f90600b906020840190612222565b5050565b6000818152600260205260408120546001600160a01b03168061081b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084b565b600b805461099b90612928565b60006001600160a01b0382166110125760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110585760405162461bcd60e51b815260040161084b90612814565b6110626000611b5a565b565b600a546001600160a01b0316331461108e5760405162461bcd60e51b815260040161084b90612814565b601055565b60606001805461087690612928565b60125460ff16156110ee5760405162461bcd60e51b8152602060048201526016602482015275151a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161084b565b60006110f960085490565b90506000821161114b5760405162461bcd60e51b815260206004820152601b60248201527f4e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161084b565b6010548211156111a95760405162461bcd60e51b8152602060048201526024808201527f4d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161084b565b600f546111b6838361289a565b11156111fd5760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161084b565b600a546001600160a01b031633146113395760125462010000900460ff161515600114156112e75761122e33610bf9565b61127a5760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161084b565b33600090815260146020526040902054601154611297848361289a565b11156112e55760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161084b565b505b81600e546112f591906128c6565b3410156113395760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161084b565b60015b828111610b2d5733600090815260146020526040812080549161135e83612963565b90915550611377905033611372838561289a565b611bac565b8061138181612963565b91505061133c565b6001600160a01b0382163314156113e25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114785760405162461bcd60e51b815260040161084b90612814565b6012805461ff001916610100179055565b61149333836118b8565b6114af5760405162461bcd60e51b815260040161084b90612849565b6114bb84848484611bc6565b50505050565b601381815481106114d157600080fd5b6000918252602090912001546001600160a01b0316905081565b600c805461099b90612928565b6000818152600260205260409020546060906001600160a01b03166115775760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084b565b601254610100900460ff1661161857600d805461159390612928565b80601f01602080910402602001604051908101604052809291908181526020018280546115bf90612928565b801561160c5780601f106115e15761010080835404028352916020019161160c565b820191906000526020600020905b8154815290600101906020018083116115ef57829003601f168201915b50505050509050919050565b6000611622611bf9565b905060008151116116425760405180602001604052806000815250611670565b8061164c84611c08565b600c6040516020016116609392919061266c565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116a15760405162461bcd60e51b815260040161084b90612814565b601155565b600a546001600160a01b031633146116d05760405162461bcd60e51b815260040161084b90612814565b8051610f1f90600c906020840190612222565b600a546001600160a01b0316331461170d5760405162461bcd60e51b815260040161084b90612814565b611719601360006122a6565b610b2d601383836122c4565b600a546001600160a01b0316331461174f5760405162461bcd60e51b815260040161084b90612814565b8051610f1f90600d906020840190612222565b600a546001600160a01b0316331461178c5760405162461bcd60e51b815260040161084b90612814565b6001600160a01b0381166117f15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084b565b610d3681611b5a565b60006001600160e01b031982166380ac58cd60e01b148061182b57506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b031983161461081b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061187f82610f23565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119315760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b600061193c83610f23565b9050806001600160a01b0316846001600160a01b031614806119775750836001600160a01b031661196c846108f9565b6001600160a01b0316145b806119a757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119c282610f23565b6001600160a01b031614611a2a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084b565b6001600160a01b038216611a8c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084b565b611a97838383611d22565b611aa260008261184a565b6001600160a01b0383166000908152600360205260408120805460019290611acb9084906128e5565b90915550506001600160a01b0382166000908152600360205260408120805460019290611af990849061289a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f1f828260405180602001604052806000815250611dda565b611bd18484846119af565b611bdd84848484611e0d565b6114bb5760405162461bcd60e51b815260040161084b906127c2565b6060600b805461087690612928565b606081611c2c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c565780611c4081612963565b9150611c4f9050600a836128b2565b9150611c30565b60008167ffffffffffffffff811115611c7f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ca9576020820181803683370190505b5090505b84156119a757611cbe6001836128e5565b9150611ccb600a8661297e565b611cd690603061289a565b60f81b818381518110611cf957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d1b600a866128b2565b9450611cad565b6001600160a01b038316611d7d57611d7881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611da0565b816001600160a01b0316836001600160a01b031614611da057611da08382611f1a565b6001600160a01b038216611db757610b2d81611fb7565b826001600160a01b0316826001600160a01b031614610b2d57610b2d8282612090565b611de483836120d4565b611df16000848484611e0d565b610b2d5760405162461bcd60e51b815260040161084b906127c2565b60006001600160a01b0384163b15611f0f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e5190339089908890889060040161272e565b602060405180830381600087803b158015611e6b57600080fd5b505af1925050508015611e9b575060408051601f3d908101601f19168201909252611e98918101906125c6565b60015b611ef5573d808015611ec9576040519150601f19603f3d011682016040523d82523d6000602084013e611ece565b606091505b508051611eed5760405162461bcd60e51b815260040161084b906127c2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119a7565b506001949350505050565b60006001611f2784610fa7565b611f3191906128e5565b600083815260076020526040902054909150808214611f84576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fc9906001906128e5565b60008381526009602052604081205460088054939450909284908110611fff57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061202e57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061207457634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061209b83610fa7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661212a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084b565b6000818152600260205260409020546001600160a01b03161561218f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084b565b61219b60008383611d22565b6001600160a01b03821660009081526003602052604081208054600192906121c490849061289a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461222e90612928565b90600052602060002090601f0160209004810192826122505760008555612296565b82601f1061226957805160ff1916838001178555612296565b82800160010185558215612296579182015b8281111561229657825182559160200191906001019061227b565b506122a2929150612317565b5090565b5080546000825590600052602060002090810190610d369190612317565b828054828255906000526020600020908101928215612296579160200282015b828111156122965781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906122e4565b5b808211156122a25760008155600101612318565b600067ffffffffffffffff80841115612347576123476129be565b604051601f8501601f19908116603f0116810190828211818310171561236f5761236f6129be565b8160405280935085815286868601111561238857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123b957600080fd5b919050565b803580151581146123b957600080fd5b6000602082840312156123df578081fd5b611670826123a2565b600080604083850312156123fa578081fd5b612403836123a2565b9150612411602084016123a2565b90509250929050565b60008060006060848603121561242e578081fd5b612437846123a2565b9250612445602085016123a2565b9150604084013590509250925092565b6000806000806080858703121561246a578081fd5b612473856123a2565b9350612481602086016123a2565b925060408501359150606085013567ffffffffffffffff8111156124a3578182fd5b8501601f810187136124b3578182fd5b6124c28782356020840161232c565b91505092959194509250565b600080604083850312156124e0578182fd5b6124e9836123a2565b9150612411602084016123be565b60008060408385031215612509578182fd5b612512836123a2565b946020939093013593505050565b60008060208385031215612532578182fd5b823567ffffffffffffffff80821115612549578384fd5b818501915085601f83011261255c578384fd5b81358181111561256a578485fd5b8660208260051b850101111561257e578485fd5b60209290920196919550909350505050565b6000602082840312156125a1578081fd5b611670826123be565b6000602082840312156125bb578081fd5b8135611670816129d4565b6000602082840312156125d7578081fd5b8151611670816129d4565b6000602082840312156125f3578081fd5b813567ffffffffffffffff811115612609578182fd5b8201601f81018413612619578182fd5b6119a78482356020840161232c565b600060208284031215612639578081fd5b5035919050565b600081518084526126588160208601602086016128fc565b601f01601f19169290920160200192915050565b60008451602061267f8285838a016128fc565b8551918401916126928184848a016128fc565b85549201918390600181811c90808316806126ae57607f831692505b8583108114156126cc57634e487b7160e01b88526022600452602488fd5b8080156126e057600181146126f15761271d565b60ff1985168852838801955061271d565b60008b815260209020895b858110156127155781548a8201529084019088016126fc565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061276190830184612640565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127a357835183529284019291840191600101612787565b50909695505050505050565b6020815260006116706020830184612640565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128ad576128ad612992565b500190565b6000826128c1576128c16129a8565b500490565b60008160001904831182151516156128e0576128e0612992565b500290565b6000828210156128f7576128f7612992565b500390565b60005b838110156129175781810151838201526020016128ff565b838111156114bb5750506000910152565b600181811c9082168061293c57607f821691505b6020821081141561295d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561297757612977612992565b5060010190565b60008261298d5761298d6129a8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d3657600080fdfea2646970667358221220d8e8dbaac861defcbf9717ad795149ac48085817f254780c1cd2c6a4711d64d964736f6c634300080400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000115468652044726f706f757420426561727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035444420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f74686564726f706f757462656172732e636f6d2f72657665616c6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f74686564726f706f757462656172732e636f6d2f6e6f7472657665616c65642f636f6e74726163742e6a736f6e0000000000000000000000
Deployed Bytecode
0x6080604052600436106102725760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610717578063da3ef23f1461072d578063e985e9c51461074d578063edec5f2714610796578063f2c4ce1e146107b6578063f2fde38b146107d657600080fd5b8063b88d4fde1461066c578063ba4e5c491461068c578063ba7d2c76146106ac578063c6682862146106c2578063c87b56dd146106d7578063d0eb26b0146106f757600080fd5b80638da5cb5b116101135780638da5cb5b146105d157806395d89b41146105ef5780639c70b51214610604578063a0712d6814610624578063a22cb46514610637578063a475b5dd1461065757600080fd5b80636352211e146105475780636c0360eb1461056757806370a082311461057c578063715018a61461059c5780637f00c7a6146105b157600080fd5b80632f745c59116101e8578063438b6300116101ac578063438b63001461048157806344a0d68a146104ae5780634f6ccce7146104ce57806351830227146104ee57806355f804b31461050d5780635c975abb1461052d57600080fd5b80632f745c59146103f95780633af32abf146104195780633c952764146104395780633ccfd60b1461045957806342842e0e1461046157600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd1461038157806318cae26914610396578063239c70ae146103c357806323b872dd146103d957600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b506102976102923660046125aa565b6107f6565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004612590565b610821565b005b3480156102da57600080fd5b506102e3610867565b6040516102a391906127af565b3480156102fc57600080fd5b5061031061030b366004612628565b6108f9565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e361098e565b34801561034957600080fd5b506102cc6103583660046124f7565b610a1c565b34801561036957600080fd5b50610373600e5481565b6040519081526020016102a3565b34801561038d57600080fd5b50600854610373565b3480156103a257600080fd5b506103736103b13660046123ce565b60146020526000908152604090205481565b3480156103cf57600080fd5b5061037360105481565b3480156103e557600080fd5b506102cc6103f436600461241a565b610b32565b34801561040557600080fd5b506103736104143660046124f7565b610b63565b34801561042557600080fd5b506102976104343660046123ce565b610bf9565b34801561044557600080fd5b506102cc610454366004612590565b610c71565b6102cc610cb7565b34801561046d57600080fd5b506102cc61047c36600461241a565b610d39565b34801561048d57600080fd5b506104a161049c3660046123ce565b610d54565b6040516102a3919061276b565b3480156104ba57600080fd5b506102cc6104c9366004612628565b610e12565b3480156104da57600080fd5b506103736104e9366004612628565b610e41565b3480156104fa57600080fd5b5060125461029790610100900460ff1681565b34801561051957600080fd5b506102cc6105283660046125e2565b610ee2565b34801561053957600080fd5b506012546102979060ff1681565b34801561055357600080fd5b50610310610562366004612628565b610f23565b34801561057357600080fd5b506102e3610f9a565b34801561058857600080fd5b506103736105973660046123ce565b610fa7565b3480156105a857600080fd5b506102cc61102e565b3480156105bd57600080fd5b506102cc6105cc366004612628565b611064565b3480156105dd57600080fd5b50600a546001600160a01b0316610310565b3480156105fb57600080fd5b506102e3611093565b34801561061057600080fd5b506012546102979062010000900460ff1681565b6102cc610632366004612628565b6110a2565b34801561064357600080fd5b506102cc6106523660046124ce565b611389565b34801561066357600080fd5b506102cc61144e565b34801561067857600080fd5b506102cc610687366004612455565b611489565b34801561069857600080fd5b506103106106a7366004612628565b6114c1565b3480156106b857600080fd5b5061037360115481565b3480156106ce57600080fd5b506102e36114eb565b3480156106e357600080fd5b506102e36106f2366004612628565b6114f8565b34801561070357600080fd5b506102cc610712366004612628565b611677565b34801561072357600080fd5b50610373600f5481565b34801561073957600080fd5b506102cc6107483660046125e2565b6116a6565b34801561075957600080fd5b506102976107683660046123e8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102cc6107b1366004612520565b6116e3565b3480156107c257600080fd5b506102cc6107d13660046125e2565b611725565b3480156107e257600080fd5b506102cc6107f13660046123ce565b611762565b60006001600160e01b0319821663780e9d6360e01b148061081b575061081b826117fa565b92915050565b600a546001600160a01b031633146108545760405162461bcd60e51b815260040161084b90612814565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461087690612928565b80601f01602080910402602001604051908101604052809291908181526020018280546108a290612928565b80156108ef5780601f106108c4576101008083540402835291602001916108ef565b820191906000526020600020905b8154815290600101906020018083116108d257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b506000908152600460205260409020546001600160a01b031690565b600d805461099b90612928565b80601f01602080910402602001604051908101604052809291908181526020018280546109c790612928565b8015610a145780601f106109e957610100808354040283529160200191610a14565b820191906000526020600020905b8154815290600101906020018083116109f757829003601f168201915b505050505081565b6000610a2782610f23565b9050806001600160a01b0316836001600160a01b03161415610a955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084b565b336001600160a01b0382161480610ab15750610ab18133610768565b610b235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084b565b610b2d838361184a565b505050565b610b3c33826118b8565b610b585760405162461bcd60e51b815260040161084b90612849565b610b2d8383836119af565b6000610b6e83610fa7565b8210610bd05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161084b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610c6857826001600160a01b031660138281548110610c3257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610c565750600192915050565b80610c6081612963565b915050610bfd565b50600092915050565b600a546001600160a01b03163314610c9b5760405162461bcd60e51b815260040161084b90612814565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610ce15760405162461bcd60e51b815260040161084b90612814565b604051600090339047908381818185875af1925050503d8060008114610d23576040519150601f19603f3d011682016040523d82523d6000602084013e610d28565b606091505b5050905080610d3657600080fd5b50565b610b2d83838360405180602001604052806000815250611489565b60606000610d6183610fa7565b905060008167ffffffffffffffff811115610d8c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610db5578160200160208202803683370190505b50905060005b82811015610e0a57610dcd8582610b63565b828281518110610ded57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610e0281612963565b915050610dbb565b509392505050565b600a546001600160a01b03163314610e3c5760405162461bcd60e51b815260040161084b90612814565b600e55565b6000610e4c60085490565b8210610eaf5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161084b565b60088281548110610ed057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610f0c5760405162461bcd60e51b815260040161084b90612814565b8051610f1f90600b906020840190612222565b5050565b6000818152600260205260408120546001600160a01b03168061081b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084b565b600b805461099b90612928565b60006001600160a01b0382166110125760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110585760405162461bcd60e51b815260040161084b90612814565b6110626000611b5a565b565b600a546001600160a01b0316331461108e5760405162461bcd60e51b815260040161084b90612814565b601055565b60606001805461087690612928565b60125460ff16156110ee5760405162461bcd60e51b8152602060048201526016602482015275151a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161084b565b60006110f960085490565b90506000821161114b5760405162461bcd60e51b815260206004820152601b60248201527f4e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161084b565b6010548211156111a95760405162461bcd60e51b8152602060048201526024808201527f4d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161084b565b600f546111b6838361289a565b11156111fd5760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161084b565b600a546001600160a01b031633146113395760125462010000900460ff161515600114156112e75761122e33610bf9565b61127a5760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161084b565b33600090815260146020526040902054601154611297848361289a565b11156112e55760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161084b565b505b81600e546112f591906128c6565b3410156113395760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161084b565b60015b828111610b2d5733600090815260146020526040812080549161135e83612963565b90915550611377905033611372838561289a565b611bac565b8061138181612963565b91505061133c565b6001600160a01b0382163314156113e25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114785760405162461bcd60e51b815260040161084b90612814565b6012805461ff001916610100179055565b61149333836118b8565b6114af5760405162461bcd60e51b815260040161084b90612849565b6114bb84848484611bc6565b50505050565b601381815481106114d157600080fd5b6000918252602090912001546001600160a01b0316905081565b600c805461099b90612928565b6000818152600260205260409020546060906001600160a01b03166115775760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084b565b601254610100900460ff1661161857600d805461159390612928565b80601f01602080910402602001604051908101604052809291908181526020018280546115bf90612928565b801561160c5780601f106115e15761010080835404028352916020019161160c565b820191906000526020600020905b8154815290600101906020018083116115ef57829003601f168201915b50505050509050919050565b6000611622611bf9565b905060008151116116425760405180602001604052806000815250611670565b8061164c84611c08565b600c6040516020016116609392919061266c565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116a15760405162461bcd60e51b815260040161084b90612814565b601155565b600a546001600160a01b031633146116d05760405162461bcd60e51b815260040161084b90612814565b8051610f1f90600c906020840190612222565b600a546001600160a01b0316331461170d5760405162461bcd60e51b815260040161084b90612814565b611719601360006122a6565b610b2d601383836122c4565b600a546001600160a01b0316331461174f5760405162461bcd60e51b815260040161084b90612814565b8051610f1f90600d906020840190612222565b600a546001600160a01b0316331461178c5760405162461bcd60e51b815260040161084b90612814565b6001600160a01b0381166117f15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084b565b610d3681611b5a565b60006001600160e01b031982166380ac58cd60e01b148061182b57506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b031983161461081b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061187f82610f23565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119315760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b600061193c83610f23565b9050806001600160a01b0316846001600160a01b031614806119775750836001600160a01b031661196c846108f9565b6001600160a01b0316145b806119a757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119c282610f23565b6001600160a01b031614611a2a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084b565b6001600160a01b038216611a8c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084b565b611a97838383611d22565b611aa260008261184a565b6001600160a01b0383166000908152600360205260408120805460019290611acb9084906128e5565b90915550506001600160a01b0382166000908152600360205260408120805460019290611af990849061289a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f1f828260405180602001604052806000815250611dda565b611bd18484846119af565b611bdd84848484611e0d565b6114bb5760405162461bcd60e51b815260040161084b906127c2565b6060600b805461087690612928565b606081611c2c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c565780611c4081612963565b9150611c4f9050600a836128b2565b9150611c30565b60008167ffffffffffffffff811115611c7f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ca9576020820181803683370190505b5090505b84156119a757611cbe6001836128e5565b9150611ccb600a8661297e565b611cd690603061289a565b60f81b818381518110611cf957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d1b600a866128b2565b9450611cad565b6001600160a01b038316611d7d57611d7881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611da0565b816001600160a01b0316836001600160a01b031614611da057611da08382611f1a565b6001600160a01b038216611db757610b2d81611fb7565b826001600160a01b0316826001600160a01b031614610b2d57610b2d8282612090565b611de483836120d4565b611df16000848484611e0d565b610b2d5760405162461bcd60e51b815260040161084b906127c2565b60006001600160a01b0384163b15611f0f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e5190339089908890889060040161272e565b602060405180830381600087803b158015611e6b57600080fd5b505af1925050508015611e9b575060408051601f3d908101601f19168201909252611e98918101906125c6565b60015b611ef5573d808015611ec9576040519150601f19603f3d011682016040523d82523d6000602084013e611ece565b606091505b508051611eed5760405162461bcd60e51b815260040161084b906127c2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119a7565b506001949350505050565b60006001611f2784610fa7565b611f3191906128e5565b600083815260076020526040902054909150808214611f84576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fc9906001906128e5565b60008381526009602052604081205460088054939450909284908110611fff57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061202e57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061207457634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061209b83610fa7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661212a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084b565b6000818152600260205260409020546001600160a01b03161561218f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084b565b61219b60008383611d22565b6001600160a01b03821660009081526003602052604081208054600192906121c490849061289a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461222e90612928565b90600052602060002090601f0160209004810192826122505760008555612296565b82601f1061226957805160ff1916838001178555612296565b82800160010185558215612296579182015b8281111561229657825182559160200191906001019061227b565b506122a2929150612317565b5090565b5080546000825590600052602060002090810190610d369190612317565b828054828255906000526020600020908101928215612296579160200282015b828111156122965781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906122e4565b5b808211156122a25760008155600101612318565b600067ffffffffffffffff80841115612347576123476129be565b604051601f8501601f19908116603f0116810190828211818310171561236f5761236f6129be565b8160405280935085815286868601111561238857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123b957600080fd5b919050565b803580151581146123b957600080fd5b6000602082840312156123df578081fd5b611670826123a2565b600080604083850312156123fa578081fd5b612403836123a2565b9150612411602084016123a2565b90509250929050565b60008060006060848603121561242e578081fd5b612437846123a2565b9250612445602085016123a2565b9150604084013590509250925092565b6000806000806080858703121561246a578081fd5b612473856123a2565b9350612481602086016123a2565b925060408501359150606085013567ffffffffffffffff8111156124a3578182fd5b8501601f810187136124b3578182fd5b6124c28782356020840161232c565b91505092959194509250565b600080604083850312156124e0578182fd5b6124e9836123a2565b9150612411602084016123be565b60008060408385031215612509578182fd5b612512836123a2565b946020939093013593505050565b60008060208385031215612532578182fd5b823567ffffffffffffffff80821115612549578384fd5b818501915085601f83011261255c578384fd5b81358181111561256a578485fd5b8660208260051b850101111561257e578485fd5b60209290920196919550909350505050565b6000602082840312156125a1578081fd5b611670826123be565b6000602082840312156125bb578081fd5b8135611670816129d4565b6000602082840312156125d7578081fd5b8151611670816129d4565b6000602082840312156125f3578081fd5b813567ffffffffffffffff811115612609578182fd5b8201601f81018413612619578182fd5b6119a78482356020840161232c565b600060208284031215612639578081fd5b5035919050565b600081518084526126588160208601602086016128fc565b601f01601f19169290920160200192915050565b60008451602061267f8285838a016128fc565b8551918401916126928184848a016128fc565b85549201918390600181811c90808316806126ae57607f831692505b8583108114156126cc57634e487b7160e01b88526022600452602488fd5b8080156126e057600181146126f15761271d565b60ff1985168852838801955061271d565b60008b815260209020895b858110156127155781548a8201529084019088016126fc565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061276190830184612640565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127a357835183529284019291840191600101612787565b50909695505050505050565b6020815260006116706020830184612640565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128ad576128ad612992565b500190565b6000826128c1576128c16129a8565b500490565b60008160001904831182151516156128e0576128e0612992565b500290565b6000828210156128f7576128f7612992565b500390565b60005b838110156129175781810151838201526020016128ff565b838111156114bb5750506000910152565b600181811c9082168061293c57607f821691505b6020821081141561295d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561297757612977612992565b5060010190565b60008261298d5761298d6129a8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d3657600080fdfea2646970667358221220d8e8dbaac861defcbf9717ad795149ac48085817f254780c1cd2c6a4711d64d964736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000115468652044726f706f757420426561727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035444420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f74686564726f706f757462656172732e636f6d2f72657665616c6d657461646174612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f74686564726f706f757462656172732e636f6d2f6e6f7472657665616c65642f636f6e74726163742e6a736f6e0000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): The Dropout Bears
Arg [1] : _symbol (string): TDB
Arg [2] : _initBaseURI (string): https://thedropoutbears.com/revealmetadata/
Arg [3] : _initNotRevealedUri (string): https://thedropoutbears.com/notrevealed/contract.json
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [5] : 5468652044726f706f7574204265617273000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5444420000000000000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [9] : 68747470733a2f2f74686564726f706f757462656172732e636f6d2f72657665
Arg [10] : 616c6d657461646174612f000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [12] : 68747470733a2f2f74686564726f706f757462656172732e636f6d2f6e6f7472
Arg [13] : 657665616c65642f636f6e74726163742e6a736f6e0000000000000000000000
Deployed Bytecode Sourcemap
43230:4247:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34675:224;;;;;;;;;;-1:-1:-1;34675:224:0;;;;;:::i;:::-;;:::i;:::-;;;8634:14:1;;8627:22;8609:41;;8597:2;8582:18;34675:224:0;;;;;;;;46981:73;;;;;;;;;;-1:-1:-1;46981:73:0;;;;;:::i;:::-;;:::i;:::-;;22567:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24126:221::-;;;;;;;;;;-1:-1:-1;24126:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7292:32:1;;;7274:51;;7262:2;7247:18;24126:221:0;7229:102:1;43377:28:0;;;;;;;;;;;;;:::i;23649:411::-;;;;;;;;;;-1:-1:-1;23649:411:0;;;;;:::i;:::-;;:::i;43410:33::-;;;;;;;;;;;;;;;;;;;18757:25:1;;;18745:2;18730:18;43410:33:0;18712:76:1;35315:113:0;;;;;;;;;;-1:-1:-1;35403:10:0;:17;35315:113;;43710:55;;;;;;;;;;-1:-1:-1;43710:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;43485:33;;;;;;;;;;;;;;;;25016:339;;;;;;;;;;-1:-1:-1;25016:339:0;;;;;:::i;:::-;;:::i;34983:256::-;;;;;;;;;;-1:-1:-1;34983:256:0;;;;;:::i;:::-;;:::i;45102:239::-;;;;;;;;;;-1:-1:-1;45102:239:0;;;;;:::i;:::-;;:::i;47062:95::-;;;;;;;;;;-1:-1:-1;47062:95:0;;;;;:::i;:::-;;:::i;47316:158::-;;;:::i;25426:185::-;;;;;;;;;;-1:-1:-1;25426:185:0;;;;;:::i;:::-;;:::i;45347:348::-;;;;;;;;;;-1:-1:-1;45347:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46409:82::-;;;;;;;;;;-1:-1:-1;46409:82:0;;;;;:::i;:::-;;:::i;35505:233::-;;;;;;;;;;-1:-1:-1;35505:233:0;;;;;:::i;:::-;;:::i;43596:28::-;;;;;;;;;;-1:-1:-1;43596:28:0;;;;;;;;;;;46621:98;;;;;;;;;;-1:-1:-1;46621:98:0;;;;;:::i;:::-;;:::i;43565:26::-;;;;;;;;;;-1:-1:-1;43565:26:0;;;;;;;;22261:239;;;;;;;;;;-1:-1:-1;22261:239:0;;;;;:::i;:::-;;:::i;43309:21::-;;;;;;;;;;;;;:::i;21991:208::-;;;;;;;;;;-1:-1:-1;21991:208:0;;;;;:::i;:::-;;:::i;42528:94::-;;;;;;;;;;;;;:::i;46497:118::-;;;;;;;;;;-1:-1:-1;46497:118:0;;;;;:::i;:::-;;:::i;41877:87::-;;;;;;;;;;-1:-1:-1;41950:6:0;;-1:-1:-1;;;;;41950:6:0;41877:87;;22736:104;;;;;;;;;;;;;:::i;43629:34::-;;;;;;;;;;-1:-1:-1;43629:34:0;;;;;;;;;;;44163:931;;;;;;:::i;:::-;;:::i;24419:295::-;;;;;;;;;;-1:-1:-1;24419:295:0;;;;;:::i;:::-;;:::i;46220:67::-;;;;;;;;;;;;;:::i;25682:328::-;;;;;;;;;;-1:-1:-1;25682:328:0;;;;;:::i;:::-;;:::i;43668:37::-;;;;;;;;;;-1:-1:-1;43668:37:0;;;;;:::i;:::-;;:::i;43523:::-;;;;;;;;;;;;;;;;43335;;;;;;;;;;;;;:::i;45701:497::-;;;;;;;;;;-1:-1:-1;45701:497:0;;;;;:::i;:::-;;:::i;46295:106::-;;;;;;;;;;-1:-1:-1;46295:106:0;;;;;:::i;:::-;;:::i;43448:32::-;;;;;;;;;;;;;;;;46725:122;;;;;;;;;;-1:-1:-1;46725:122:0;;;;;:::i;:::-;;:::i;24785:164::-;;;;;;;;;;-1:-1:-1;24785:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24906:25:0;;;24882:4;24906:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24785:164;47165:144;;;;;;;;;;-1:-1:-1;47165:144:0;;;;;:::i;:::-;;:::i;46855:120::-;;;;;;;;;;-1:-1:-1;46855:120:0;;;;;:::i;:::-;;:::i;42777:192::-;;;;;;;;;;-1:-1:-1;42777:192:0;;;;;:::i;:::-;;:::i;34675:224::-;34777:4;-1:-1:-1;;;;;;34801:50:0;;-1:-1:-1;;;34801:50:0;;:90;;;34855:36;34879:11;34855:23;:36::i;:::-;34794:97;34675:224;-1:-1:-1;;34675:224:0:o;46981:73::-;41950:6;;-1:-1:-1;;;;;41950:6:0;20255:10;42097:23;42089:68;;;;-1:-1:-1;;;42089:68:0;;;;;;;:::i;:::-;;;;;;;;;47033:6:::1;:15:::0;;-1:-1:-1;;47033:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46981:73::o;22567:100::-;22621:13;22654:5;22647:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22567:100;:::o;24126:221::-;24202:7;27609:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27609:16:0;24222:73;;;;-1:-1:-1;;;24222:73:0;;15267:2:1;24222:73:0;;;15249:21:1;15306:2;15286:18;;;15279:30;15345:34;15325:18;;;15318:62;-1:-1:-1;;;15396:18:1;;;15389:42;15448:19;;24222:73:0;15239:234:1;24222:73:0;-1:-1:-1;24315:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24315:24:0;;24126:221::o;43377:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23649:411::-;23730:13;23746:23;23761:7;23746:14;:23::i;:::-;23730:39;;23794:5;-1:-1:-1;;;;;23788:11:0;:2;-1:-1:-1;;;;;23788:11:0;;;23780:57;;;;-1:-1:-1;;;23780:57:0;;17224:2:1;23780:57:0;;;17206:21:1;17263:2;17243:18;;;17236:30;17302:34;17282:18;;;17275:62;-1:-1:-1;;;17353:18:1;;;17346:31;17394:19;;23780:57:0;17196:223:1;23780:57:0;20255:10;-1:-1:-1;;;;;23872:21:0;;;;:62;;-1:-1:-1;23897:37:0;23914:5;20255:10;24785:164;:::i;23897:37::-;23850:168;;;;-1:-1:-1;;;23850:168:0;;13309:2:1;23850:168:0;;;13291:21:1;13348:2;13328:18;;;13321:30;13387:34;13367:18;;;13360:62;13458:26;13438:18;;;13431:54;13502:19;;23850:168:0;13281:246:1;23850:168:0;24031:21;24040:2;24044:7;24031:8;:21::i;:::-;23649:411;;;:::o;25016:339::-;25211:41;20255:10;25244:7;25211:18;:41::i;:::-;25203:103;;;;-1:-1:-1;;;25203:103:0;;;;;;;:::i;:::-;25319:28;25329:4;25335:2;25339:7;25319:9;:28::i;34983:256::-;35080:7;35116:23;35133:5;35116:16;:23::i;:::-;35108:5;:31;35100:87;;;;-1:-1:-1;;;35100:87:0;;9087:2:1;35100:87:0;;;9069:21:1;9126:2;9106:18;;;9099:30;9165:34;9145:18;;;9138:62;-1:-1:-1;;;9216:18:1;;;9209:41;9267:19;;35100:87:0;9059:233:1;35100:87:0;-1:-1:-1;;;;;;35205:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34983:256::o;45102:239::-;45161:4;;45174:143;45195:20;:27;45191:31;;45174:143;;;45269:5;-1:-1:-1;;;;;45242:32:0;:20;45263:1;45242:23;;;;;;-1:-1:-1;;;45242:23:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45242:23:0;:32;45238:72;;;-1:-1:-1;45296:4:0;;45102:239;-1:-1:-1;;45102:239:0:o;45238:72::-;45224:3;;;;:::i;:::-;;;;45174:143;;;-1:-1:-1;45330:5:0;;45102:239;-1:-1:-1;;45102:239:0:o;47062:95::-;41950:6;;-1:-1:-1;;;;;41950:6:0;20255:10;42097:23;42089:68;;;;-1:-1:-1;;;42089:68:0;;;;;;;:::i;:::-;47127:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;47127:24:0;;::::1;::::0;;;::::1;::::0;;47062:95::o;47316:158::-;41950:6;;-1:-1:-1;;;;;41950:6:0;20255:10;42097:23;42089:68;;;;-1:-1:-1;;;42089:68:0;;;;;;;:::i;:::-;47387:58:::1;::::0;47369:12:::1;::::0;47395:10:::1;::::0;47419:21:::1;::::0;47369:12;47387:58;47369:12;47387:58;47419:21;47395:10;47387:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47368:77;;;47460:7;47452:16;;;::::0;::::1;;42168:1;47316:158::o:0;25426:185::-;25564:39;25581:4;25587:2;25591:7;25564:39;;;;;;;;;;;;:16;:39::i;45347:348::-;45422:16;45450:23;45476:17;45486:6;45476:9;:17::i;:::-;45450:43;;45500:25;45542:15;45528:30;;;;;;-1:-1:-1;;;45528:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45528:30:0;;45500:58;;45570:9;45565:103;45585:15;45581:1;:19;45565:103;;;45630:30;45650:6;45658:1;45630:19;:30::i;:::-;45616:8;45625:1;45616:11;;;;;;-1:-1:-1;;;45616:11:0;;;;;;;;;;;;;;;;;;:44;45602:3;;;;:::i;:::-;;;;45565:103;;;-1:-1:-1;45681:8:0;45347:348;-1:-1:-1;;;45347:348:0:o;46409:82::-;41950:6;;-1:-1:-1;;;;;41950:6:0;20255:10;42097:23;42089:68;;;;-1:-1:-1;;;42089:68:0;;;;;;;:::i;:::-;46470:4:::1;:15:::0;46409:82::o;35505:233::-;35580:7;35616:30;35403:10;:17;;35315:113;35616:30;35608:5;:38;35600:95;;;;-1:-1:-1;;;35600:95:0;;18044:2:1;35600:95:0;;;18026:21:1;18083:2;18063:18;;;18056:30;18122:34;18102:18;;;18095:62;-1:-1:-1;;;18173:18:1;;;18166:42;18225:19;;35600:95:0;18016:234:1;35600:95:0;35713:10;35724:5;35713:17;;;;;;-1:-1:-1;;;35713:17:0;;;;;;;;;;;;;;;;;35706:24;;35505:233;;;:::o;46621:98::-;41950:6;;-1:-1:-1;;;;;41950:6:0;20255:10;42097:23;42089:68;;;;-1:-1:-1;;;42089:68:0;;;;;;;:::i;:::-;46692:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46621:98:::0;:::o;22261:239::-;22333:7;22369:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22369:16:0;22404:19;22396:73;;;;-1:-1:-1;;;22396:73:0;;14145:2:1;22396:73:0;;;14127:21:1;14184:2;14164:18;;;14157:30;14223:34;14203:18;;;14196:62;-1:-1:-1;;;14274:18:1;;;14267:39;14323:19;;22396:73:0;14117:231:1;43309:21:0;;;;;;;:::i;21991:208::-;22063:7;-1:-1:-1;;;;;22091:19:0;;22083:74;;;;-1:-1:-1;;;22083:74:0;;13734:2:1;22083:74:0;;;13716:21:1;13773:2;13753:18;;;13746:30;13812:34;13792:18;;;13785:62;-1:-1:-1;;;13863:18:1;;;13856:40;13913:19;;22083:74:0;13706:232:1;22083:74:0;-1:-1:-1;;;;;;22175:16:0;;;;;:9;:16;;;;;;;21991:208::o;42528:94::-;41950:6;;-1:-1:-1;;;;;41950:6:0;20255:10;42097:23;42089:68;;;;-1:-1:-1;;;42089:68:0;;;;;;;:::i;:::-;42593:21:::1;42611:1;42593:9;:21::i;:::-;42528:94::o:0;46497:118::-;41950:6;;-1:-1:-1;;;;;41950:6:0;20255:10;42097:23;42089:68;;;;-1:-1:-1;;;42089:68:0;;;;;;;:::i;:::-;46576:13:::1;:33:::0;46497:118::o;22736:104::-;22792:13;22825:7;22818:14;;;;;:::i;44163:931::-;44229:6;;;;44228:7;44220:42;;;;-1:-1:-1;;;44220:42:0;;9918:2:1;44220:42:0;;;9900:21:1;9957:2;9937:18;;;9930:30;-1:-1:-1;;;9976:18:1;;;9969:52;10038:18;;44220:42:0;9890:172:1;44220:42:0;44269:14;44286:13;35403:10;:17;;35315:113;44286:13;44269:30;;44328:1;44314:11;:15;44306:55;;;;-1:-1:-1;;;44306:55:0;;18457:2:1;44306:55:0;;;18439:21:1;18496:2;18476:18;;;18469:30;18535:29;18515:18;;;18508:57;18582:18;;44306:55:0;18429:177:1;44306:55:0;44391:13;;44376:11;:28;;44368:77;;;;-1:-1:-1;;;44368:77:0;;12205:2:1;44368:77:0;;;12187:21:1;12244:2;12224:18;;;12217:30;12283:34;12263:18;;;12256:62;-1:-1:-1;;;12334:18:1;;;12327:34;12378:19;;44368:77:0;12177:226:1;44368:77:0;44484:9;;44460:20;44469:11;44460:6;:20;:::i;:::-;:33;;44452:68;;;;-1:-1:-1;;;44452:68:0;;14555:2:1;44452:68:0;;;14537:21:1;14594:2;14574:18;;;14567:30;-1:-1:-1;;;14613:18:1;;;14606:52;14675:18;;44452:68:0;14527:172:1;44452:68:0;41950:6;;-1:-1:-1;;;;;41950:6:0;44533:10;:21;44529:416;;44570:15;;;;;;;:23;;44589:4;44570:23;44567:298;;;44618:25;44632:10;44618:13;:25::i;:::-;44610:61;;;;-1:-1:-1;;;44610:61:0;;12957:2:1;44610:61:0;;;12939:21:1;12996:2;12976:18;;;12969:30;13035:25;13015:18;;;13008:53;13078:18;;44610:61:0;12929:173:1;44610:61:0;44734:10;44686:24;44713:32;;;:20;:32;;;;;;44802:18;;44768:30;44787:11;44713:32;44768:30;:::i;:::-;:52;;44760:93;;;;-1:-1:-1;;;44760:93:0;;16867:2:1;44760:93:0;;;16849:21:1;16906:2;16886:18;;;16879:30;16945;16925:18;;;16918:58;16993:18;;44760:93:0;16839:178:1;44760:93:0;44567:298;;44903:11;44896:4;;:18;;;;:::i;:::-;44883:9;:31;;44875:62;;;;-1:-1:-1;;;44875:62:0;;12610:2:1;44875:62:0;;;12592:21:1;12649:2;12629:18;;;12622:30;-1:-1:-1;;;12668:18:1;;;12661:48;12726:18;;44875:62:0;12582:168:1;44875:62:0;44970:1;44953:136;44978:11;44973:1;:16;44953:136;;45026:10;45005:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;45048:33:0;;-1:-1:-1;45058:10:0;45070;45079:1;45070:6;:10;:::i;:::-;45048:9;:33::i;:::-;44991:3;;;;:::i;:::-;;;;44953:136;;24419:295;-1:-1:-1;;;;;24522:24:0;;20255:10;24522:24;;24514:62;;;;-1:-1:-1;;;24514:62:0;;11438:2:1;24514:62:0;;;11420:21:1;11477:2;11457:18;;;11450:30;11516:27;11496:18;;;11489:55;11561:18;;24514:62:0;11410:175:1;24514:62:0;20255:10;24589:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24589:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24589:53:0;;;;;;;;;;24658:48;;8609:41:1;;;24589:42:0;;20255:10;24658:48;;8582:18:1;24658:48:0;;;;;;;24419:295;;:::o;46220:67::-;41950:6;;-1:-1:-1;;;;;41950:6:0;20255:10;42097:23;42089:68;;;;-1:-1:-1;;;42089:68:0;;;;;;;:::i;:::-;46266:8:::1;:15:::0;;-1:-1:-1;;46266:15:0::1;;;::::0;;46220:67::o;25682:328::-;25857:41;20255:10;25890:7;25857:18;:41::i;:::-;25849:103;;;;-1:-1:-1;;;25849:103:0;;;;;;;:::i;:::-;25963:39;25977:4;25983:2;25987:7;25996:5;25963:13;:39::i;:::-;25682:328;;;;:::o;43668:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43668:37:0;;-1:-1:-1;43668:37:0;:::o;43335:::-;;;;;;;:::i;45701:497::-;27585:4;27609:16;;;:7;:16;;;;;;45799:13;;-1:-1:-1;;;;;27609:16:0;45824:97;;;;-1:-1:-1;;;45824:97:0;;16451:2:1;45824:97:0;;;16433:21:1;16490:2;16470:18;;;16463:30;16529:34;16509:18;;;16502:62;-1:-1:-1;;;16580:18:1;;;16573:45;16635:19;;45824:97:0;16423:237:1;45824:97:0;45937:8;;;;;;;45934:62;;45974:14;45967:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45701:497;;;:::o;45934:62::-;46004:28;46035:10;:8;:10::i;:::-;46004:41;;46090:1;46065:14;46059:28;:32;:133;;;;;;;;;;;;;;;;;46127:14;46143:18;:7;:16;:18::i;:::-;46163:13;46110:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46059:133;46052:140;45701:497;-1:-1:-1;;;45701:497:0:o;46295:106::-;41950:6;;-1:-1:-1;;;;;41950:6:0;20255:10;42097:23;42089:68;;;;-1:-1:-1;;;42089:68:0;;;;;;;:::i;:::-;46368:18:::1;:27:::0;46295:106::o;46725:122::-;41950:6;;-1:-1:-1;;;;;41950:6:0;20255:10;42097:23;42089:68;;;;-1:-1:-1;;;42089:68:0;;;;;;;:::i;:::-;46808:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;47165:144::-:0;41950:6;;-1:-1:-1;;;;;41950:6:0;20255:10;42097:23;42089:68;;;;-1:-1:-1;;;42089:68:0;;;;;;;:::i;:::-;47240:27:::1;47247:20;;47240:27;:::i;:::-;47274:29;:20;47297:6:::0;;47274:29:::1;:::i;46855:120::-:0;41950:6;;-1:-1:-1;;;;;41950:6:0;20255:10;42097:23;42089:68;;;;-1:-1:-1;;;42089:68:0;;;;;;;:::i;:::-;46937:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42777:192::-:0;41950:6;;-1:-1:-1;;;;;41950:6:0;20255:10;42097:23;42089:68;;;;-1:-1:-1;;;42089:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42866:22:0;::::1;42858:73;;;::::0;-1:-1:-1;;;42858:73:0;;10269:2:1;42858:73:0::1;::::0;::::1;10251:21:1::0;10308:2;10288:18;;;10281:30;10347:34;10327:18;;;10320:62;-1:-1:-1;;;10398:18:1;;;10391:36;10444:19;;42858:73:0::1;10241:228:1::0;42858:73:0::1;42942:19;42952:8;42942:9;:19::i;21622:305::-:0;21724:4;-1:-1:-1;;;;;;21761:40:0;;-1:-1:-1;;;21761:40:0;;:105;;-1:-1:-1;;;;;;;21818:48:0;;-1:-1:-1;;;21818:48:0;21761:105;:158;;;-1:-1:-1;;;;;;;;;;7429:40:0;;;21883:36;7320:157;31502:174;31577:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31577:29:0;-1:-1:-1;;;;;31577:29:0;;;;;;;;:24;;31631:23;31577:24;31631:14;:23::i;:::-;-1:-1:-1;;;;;31622:46:0;;;;;;;;;;;31502:174;;:::o;27814:348::-;27907:4;27609:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27609:16:0;27924:73;;;;-1:-1:-1;;;27924:73:0;;11792:2:1;27924:73:0;;;11774:21:1;11831:2;11811:18;;;11804:30;11870:34;11850:18;;;11843:62;-1:-1:-1;;;11921:18:1;;;11914:42;11973:19;;27924:73:0;11764:234:1;27924:73:0;28008:13;28024:23;28039:7;28024:14;:23::i;:::-;28008:39;;28077:5;-1:-1:-1;;;;;28066:16:0;:7;-1:-1:-1;;;;;28066:16:0;;:51;;;;28110:7;-1:-1:-1;;;;;28086:31:0;:20;28098:7;28086:11;:20::i;:::-;-1:-1:-1;;;;;28086:31:0;;28066:51;:87;;;-1:-1:-1;;;;;;24906:25:0;;;24882:4;24906:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28121:32;28058:96;27814:348;-1:-1:-1;;;;27814:348:0:o;30806:578::-;30965:4;-1:-1:-1;;;;;30938:31:0;:23;30953:7;30938:14;:23::i;:::-;-1:-1:-1;;;;;30938:31:0;;30930:85;;;;-1:-1:-1;;;30930:85:0;;16041:2:1;30930:85:0;;;16023:21:1;16080:2;16060:18;;;16053:30;16119:34;16099:18;;;16092:62;-1:-1:-1;;;16170:18:1;;;16163:39;16219:19;;30930:85:0;16013:231:1;30930:85:0;-1:-1:-1;;;;;31034:16:0;;31026:65;;;;-1:-1:-1;;;31026:65:0;;11033:2:1;31026:65:0;;;11015:21:1;11072:2;11052:18;;;11045:30;11111:34;11091:18;;;11084:62;-1:-1:-1;;;11162:18:1;;;11155:34;11206:19;;31026:65:0;11005:226:1;31026:65:0;31104:39;31125:4;31131:2;31135:7;31104:20;:39::i;:::-;31208:29;31225:1;31229:7;31208:8;:29::i;:::-;-1:-1:-1;;;;;31250:15:0;;;;;;:9;:15;;;;;:20;;31269:1;;31250:15;:20;;31269:1;;31250:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31281:13:0;;;;;;:9;:13;;;;;:18;;31298:1;;31281:13;:18;;31298:1;;31281:18;:::i;:::-;;;;-1:-1:-1;;31310:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31310:21:0;-1:-1:-1;;;;;31310:21:0;;;;;;;;;31349:27;;31310:16;;31349:27;;;;;;;30806:578;;;:::o;42977:173::-;43052:6;;;-1:-1:-1;;;;;43069:17:0;;;-1:-1:-1;;;;;;43069:17:0;;;;;;;43102:40;;43052:6;;;43069:17;43052:6;;43102:40;;43033:16;;43102:40;42977:173;;:::o;28504:110::-;28580:26;28590:2;28594:7;28580:26;;;;;;;;;;;;:9;:26::i;26892:315::-;27049:28;27059:4;27065:2;27069:7;27049:9;:28::i;:::-;27096:48;27119:4;27125:2;27129:7;27138:5;27096:22;:48::i;:::-;27088:111;;;;-1:-1:-1;;;27088:111:0;;;;;;;:::i;44042:102::-;44102:13;44131:7;44124:14;;;;;:::i;7795:723::-;7851:13;8072:10;8068:53;;-1:-1:-1;;8099:10:0;;;;;;;;;;;;-1:-1:-1;;;8099:10:0;;;;;7795:723::o;8068:53::-;8146:5;8131:12;8187:78;8194:9;;8187:78;;8220:8;;;;:::i;:::-;;-1:-1:-1;8243:10:0;;-1:-1:-1;8251:2:0;8243:10;;:::i;:::-;;;8187:78;;;8275:19;8307:6;8297:17;;;;;;-1:-1:-1;;;8297:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8297:17:0;;8275:39;;8325:154;8332:10;;8325:154;;8359:11;8369:1;8359:11;;:::i;:::-;;-1:-1:-1;8428:10:0;8436:2;8428:5;:10;:::i;:::-;8415:24;;:2;:24;:::i;:::-;8402:39;;8385:6;8392;8385:14;;;;;;-1:-1:-1;;;8385:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;8385:56:0;;;;;;;;-1:-1:-1;8456:11:0;8465:2;8456:11;;:::i;:::-;;;8325:154;;36351:589;-1:-1:-1;;;;;36557:18:0;;36553:187;;36592:40;36624:7;37767:10;:17;;37740:24;;;;:15;:24;;;;;:44;;;37795:24;;;;;;;;;;;;37663:164;36592:40;36553:187;;;36662:2;-1:-1:-1;;;;;36654:10:0;:4;-1:-1:-1;;;;;36654:10:0;;36650:90;;36681:47;36714:4;36720:7;36681:32;:47::i;:::-;-1:-1:-1;;;;;36754:16:0;;36750:183;;36787:45;36824:7;36787:36;:45::i;36750:183::-;36860:4;-1:-1:-1;;;;;36854:10:0;:2;-1:-1:-1;;;;;36854:10:0;;36850:83;;36881:40;36909:2;36913:7;36881:27;:40::i;28841:321::-;28971:18;28977:2;28981:7;28971:5;:18::i;:::-;29022:54;29053:1;29057:2;29061:7;29070:5;29022:22;:54::i;:::-;29000:154;;;;-1:-1:-1;;;29000:154:0;;;;;;;:::i;32241:799::-;32396:4;-1:-1:-1;;;;;32417:13:0;;10643:20;10691:8;32413:620;;32453:72;;-1:-1:-1;;;32453:72:0;;-1:-1:-1;;;;;32453:36:0;;;;;:72;;20255:10;;32504:4;;32510:7;;32519:5;;32453:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32453:72:0;;;;;;;;-1:-1:-1;;32453:72:0;;;;;;;;;;;;:::i;:::-;;;32449:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32695:13:0;;32691:272;;32738:60;;-1:-1:-1;;;32738:60:0;;;;;;;:::i;32691:272::-;32913:6;32907:13;32898:6;32894:2;32890:15;32883:38;32449:529;-1:-1:-1;;;;;;32576:51:0;-1:-1:-1;;;32576:51:0;;-1:-1:-1;32569:58:0;;32413:620;-1:-1:-1;33017:4:0;32241:799;;;;;;:::o;38454:988::-;38720:22;38770:1;38745:22;38762:4;38745:16;:22::i;:::-;:26;;;;:::i;:::-;38782:18;38803:26;;;:17;:26;;;;;;38720:51;;-1:-1:-1;38936:28:0;;;38932:328;;-1:-1:-1;;;;;39003:18:0;;38981:19;39003:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39054:30;;;;;;:44;;;39171:30;;:17;:30;;;;;:43;;;38932:328;-1:-1:-1;39356:26:0;;;;:17;:26;;;;;;;;39349:33;;;-1:-1:-1;;;;;39400:18:0;;;;;:12;:18;;;;;:34;;;;;;;39393:41;38454:988::o;39737:1079::-;40015:10;:17;39990:22;;40015:21;;40035:1;;40015:21;:::i;:::-;40047:18;40068:24;;;:15;:24;;;;;;40441:10;:26;;39990:46;;-1:-1:-1;40068:24:0;;39990:46;;40441:26;;;;-1:-1:-1;;;40441:26:0;;;;;;;;;;;;;;;;;40419:48;;40505:11;40480:10;40491;40480:22;;;;;;-1:-1:-1;;;40480:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40585:28;;;:15;:28;;;;;;;:41;;;40757:24;;;;;40750:31;40792:10;:16;;;;;-1:-1:-1;;;40792:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39737:1079;;;;:::o;37241:221::-;37326:14;37343:20;37360:2;37343:16;:20::i;:::-;-1:-1:-1;;;;;37374:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37419:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37241:221:0:o;29498:382::-;-1:-1:-1;;;;;29578:16:0;;29570:61;;;;-1:-1:-1;;;29570:61:0;;14906:2:1;29570:61:0;;;14888:21:1;;;14925:18;;;14918:30;14984:34;14964:18;;;14957:62;15036:18;;29570:61:0;14878:182:1;29570:61:0;27585:4;27609:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27609:16:0;:30;29642:58;;;;-1:-1:-1;;;29642:58:0;;10676:2:1;29642:58:0;;;10658:21:1;10715:2;10695:18;;;10688:30;10754;10734:18;;;10727:58;10802:18;;29642:58:0;10648:178:1;29642:58:0;29713:45;29742:1;29746:2;29750:7;29713:20;:45::i;:::-;-1:-1:-1;;;;;29771:13:0;;;;;;:9;:13;;;;;:18;;29788:1;;29771:13;:18;;29788:1;;29771:18;:::i;:::-;;;;-1:-1:-1;;29800:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29800:21:0;-1:-1:-1;;;;;29800:21:0;;;;;;;;29839:33;;29800:16;;;29839:33;;29800:16;;29839:33;29498:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:665::-;3137:6;3145;3198:2;3186:9;3177:7;3173:23;3169:32;3166:2;;;3219:6;3211;3204:22;3166:2;3264:9;3251:23;3293:18;3334:2;3326:6;3323:14;3320:2;;;3355:6;3347;3340:22;3320:2;3398:6;3387:9;3383:22;3373:32;;3443:7;3436:4;3432:2;3428:13;3424:27;3414:2;;3470:6;3462;3455:22;3414:2;3515;3502:16;3541:2;3533:6;3530:14;3527:2;;;3562:6;3554;3547:22;3527:2;3620:7;3615:2;3605:6;3602:1;3598:14;3594:2;3590:23;3586:32;3583:45;3580:2;;;3646:6;3638;3631:22;3580:2;3682;3674:11;;;;;3704:6;;-1:-1:-1;3156:560:1;;-1:-1:-1;;;;3156:560:1:o;3721:190::-;3777:6;3830:2;3818:9;3809:7;3805:23;3801:32;3798:2;;;3851:6;3843;3836:22;3798:2;3879:26;3895:9;3879:26;:::i;3916:255::-;3974:6;4027:2;4015:9;4006:7;4002:23;3998:32;3995:2;;;4048:6;4040;4033:22;3995:2;4092:9;4079:23;4111:30;4135:5;4111:30;:::i;4176:259::-;4245:6;4298:2;4286:9;4277:7;4273:23;4269:32;4266:2;;;4319:6;4311;4304:22;4266:2;4356:9;4350:16;4375:30;4399:5;4375:30;:::i;4440:480::-;4509:6;4562:2;4550:9;4541:7;4537:23;4533:32;4530:2;;;4583:6;4575;4568:22;4530:2;4628:9;4615:23;4661:18;4653:6;4650:30;4647:2;;;4698:6;4690;4683:22;4647:2;4726:22;;4779:4;4771:13;;4767:27;-1:-1:-1;4757:2:1;;4813:6;4805;4798:22;4757:2;4841:73;4906:7;4901:2;4888:16;4883:2;4879;4875:11;4841:73;:::i;4925:190::-;4984:6;5037:2;5025:9;5016:7;5012:23;5008:32;5005:2;;;5058:6;5050;5043:22;5005:2;-1:-1:-1;5086:23:1;;4995:120;-1:-1:-1;4995:120:1:o;5120:257::-;5161:3;5199:5;5193:12;5226:6;5221:3;5214:19;5242:63;5298:6;5291:4;5286:3;5282:14;5275:4;5268:5;5264:16;5242:63;:::i;:::-;5359:2;5338:15;-1:-1:-1;;5334:29:1;5325:39;;;;5366:4;5321:50;;5169:208;-1:-1:-1;;5169:208:1:o;5382:1531::-;5606:3;5644:6;5638:13;5670:4;5683:51;5727:6;5722:3;5717:2;5709:6;5705:15;5683:51;:::i;:::-;5797:13;;5756:16;;;;5819:55;5797:13;5756:16;5841:15;;;5819:55;:::i;:::-;5965:13;;5896:20;;;5936:3;;6025:1;6047:18;;;;6100;;;;6127:2;;6205:4;6195:8;6191:19;6179:31;;6127:2;6268;6258:8;6255:16;6235:18;6232:40;6229:2;;;-1:-1:-1;;;6295:33:1;;6351:4;6348:1;6341:15;6381:4;6302:3;6369:17;6229:2;6412:18;6439:110;;;;6563:1;6558:330;;;;6405:483;;6439:110;-1:-1:-1;;6474:24:1;;6460:39;;6519:20;;;;-1:-1:-1;6439:110:1;;6558:330;18840:4;18859:17;;;18909:4;18893:21;;6653:3;6669:169;6683:8;6680:1;6677:15;6669:169;;;6765:14;;6750:13;;;6743:37;6808:16;;;;6700:10;;6669:169;;;6673:3;;6869:8;6862:5;6858:20;6851:27;;6405:483;-1:-1:-1;6904:3:1;;5614:1299;-1:-1:-1;;;;;;;;;;;5614:1299:1:o;7336:488::-;-1:-1:-1;;;;;7605:15:1;;;7587:34;;7657:15;;7652:2;7637:18;;7630:43;7704:2;7689:18;;7682:34;;;7752:3;7747:2;7732:18;;7725:31;;;7530:4;;7773:45;;7798:19;;7790:6;7773:45;:::i;:::-;7765:53;7539:285;-1:-1:-1;;;;;;7539:285:1:o;7829:635::-;8000:2;8052:21;;;8122:13;;8025:18;;;8144:22;;;7971:4;;8000:2;8223:15;;;;8197:2;8182:18;;;7971:4;8269:169;8283:6;8280:1;8277:13;8269:169;;;8344:13;;8332:26;;8413:15;;;;8378:12;;;;8305:1;8298:9;8269:169;;;-1:-1:-1;8455:3:1;;7980:484;-1:-1:-1;;;;;;7980:484:1:o;8661:219::-;8810:2;8799:9;8792:21;8773:4;8830:44;8870:2;8859:9;8855:18;8847:6;8830:44;:::i;9297:414::-;9499:2;9481:21;;;9538:2;9518:18;;;9511:30;9577:34;9572:2;9557:18;;9550:62;-1:-1:-1;;;9643:2:1;9628:18;;9621:48;9701:3;9686:19;;9471:240::o;15478:356::-;15680:2;15662:21;;;15699:18;;;15692:30;15758:34;15753:2;15738:18;;15731:62;15825:2;15810:18;;15652:182::o;17424:413::-;17626:2;17608:21;;;17665:2;17645:18;;;17638:30;17704:34;17699:2;17684:18;;17677:62;-1:-1:-1;;;17770:2:1;17755:18;;17748:47;17827:3;17812:19;;17598:239::o;18925:128::-;18965:3;18996:1;18992:6;18989:1;18986:13;18983:2;;;19002:18;;:::i;:::-;-1:-1:-1;19038:9:1;;18973:80::o;19058:120::-;19098:1;19124;19114:2;;19129:18;;:::i;:::-;-1:-1:-1;19163:9:1;;19104:74::o;19183:168::-;19223:7;19289:1;19285;19281:6;19277:14;19274:1;19271:21;19266:1;19259:9;19252:17;19248:45;19245:2;;;19296:18;;:::i;:::-;-1:-1:-1;19336:9:1;;19235:116::o;19356:125::-;19396:4;19424:1;19421;19418:8;19415:2;;;19429:18;;:::i;:::-;-1:-1:-1;19466:9:1;;19405:76::o;19486:258::-;19558:1;19568:113;19582:6;19579:1;19576:13;19568:113;;;19658:11;;;19652:18;19639:11;;;19632:39;19604:2;19597:10;19568:113;;;19699:6;19696:1;19693:13;19690:2;;;-1:-1:-1;;19734:1:1;19716:16;;19709:27;19539:205::o;19749:380::-;19828:1;19824:12;;;;19871;;;19892:2;;19946:4;19938:6;19934:17;19924:27;;19892:2;19999;19991:6;19988:14;19968:18;19965:38;19962:2;;;20045:10;20040:3;20036:20;20033:1;20026:31;20080:4;20077:1;20070:15;20108:4;20105:1;20098:15;19962:2;;19804:325;;;:::o;20134:135::-;20173:3;-1:-1:-1;;20194:17:1;;20191:2;;;20214:18;;:::i;:::-;-1:-1:-1;20261:1:1;20250:13;;20181:88::o;20274:112::-;20306:1;20332;20322:2;;20337:18;;:::i;:::-;-1:-1:-1;20371:9:1;;20312:74::o;20391:127::-;20452:10;20447:3;20443:20;20440:1;20433:31;20483:4;20480:1;20473:15;20507:4;20504:1;20497:15;20523:127;20584:10;20579:3;20575:20;20572:1;20565:31;20615:4;20612:1;20605:15;20639:4;20636:1;20629:15;20655:127;20716:10;20711:3;20707:20;20704:1;20697:31;20747:4;20744:1;20737:15;20771:4;20768:1;20761:15;20787:131;-1:-1:-1;;;;;;20861:32:1;;20851:43;;20841:2;;20908:1;20905;20898:12
Swarm Source
ipfs://d8e8dbaac861defcbf9717ad795149ac48085817f254780c1cd2c6a4711d64d9
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.