ERC-721
Overview
Max Total Supply
1,021 VDT
Holders
73
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 VDTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Vandaltown
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-10 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721A { using Address for address; using Strings for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _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 { _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 { _transfer(from, to, tokenId); if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/Vandaltown.sol pragma solidity >=0.7.0 <0.9.0; contract Vandaltown is ERC721A, Ownable { uint256 MAX_SUPPLY_DEV = 7777; uint256 public MAX_SUPPLY = 7777; uint256 public price = 0.003 ether; uint256 public maxPerTxDuringMint = 10; uint256 public maxPerAddressDuringMint = 100; uint256 public maxPerAddressDuringFreeMint = 1; string public unrevealedUri = "INSTAREVEAL"; bool public revealed = true; bool public saleIsActive = true; mapping(address => uint256) public freeMintedAmount; mapping(address => uint256) public mintedAmount; string public baseURI = "https://gateway.pinata.cloud/ipfs/QmTRy8YzeXJHEhenEUBJgRXEogUFBqkFNNKzYS2g3aMowV/"; constructor(string memory _name, string memory _symbol) ERC721A(_name, _symbol) {} modifier mintCompliance() { require(saleIsActive, "Sale is not active yet."); require(tx.origin == msg.sender, "Wrong Caller"); _; } function mint(uint256 _quantity) external payable mintCompliance() { require( msg.value >= price * _quantity, "GDZ: Insufficient Fund." ); require( MAX_SUPPLY_DEV >= totalSupply() + _quantity, "GDZ: Exceeds max supply." ); uint256 _mintedAmount = mintedAmount[msg.sender]; require( _mintedAmount + _quantity <= maxPerAddressDuringMint, "GDZ: Exceeds max mints per address!" ); require( _quantity > 0 && _quantity <= maxPerTxDuringMint, "Invalid mint amount." ); mintedAmount[msg.sender] = _mintedAmount + _quantity; _safeMint(msg.sender, _quantity); } function freeMint(uint256 _quantity) external mintCompliance() { require( MAX_SUPPLY >= totalSupply() + _quantity, "GDZ: Exceeds max supply." ); uint256 _freeMintedAmount = freeMintedAmount[msg.sender]; require( _freeMintedAmount + _quantity <= maxPerAddressDuringFreeMint, "GDZ: Exceeds max free mints per address!" ); freeMintedAmount[msg.sender] = _freeMintedAmount + _quantity; _safeMint(msg.sender, _quantity); } function reserveMint(uint256 quantity) public onlyOwner { require(quantity <= MAX_SUPPLY_DEV, "Not enough tokens left"); _safeMint(msg.sender, quantity); } function flipSaleStatus() public onlyOwner { saleIsActive = !saleIsActive; } function flipRevealedStatus() public onlyOwner { revealed = !revealed; } function setCost(uint256 _cost) public onlyOwner { price = _cost; } function setBaseURI(string calldata _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } function _baseURI() internal view override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(!revealed){ return unrevealedUri; } return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json")) : ""; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":[],"name":"MAX_SUPPLY","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipRevealedStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveMint","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
611e616009819055600a908155660aa87bee538000600b908155600c919091556064600d556001600e5560c060405260808190526a125394d51054915591505360aa1b60a09081526200005691600f919062000161565b506010805461ffff191661010117905560408051608081019091526051808252620023c860208301398051620000959160139160209091019062000161565b50348015620000a357600080fd5b506040516200241938038062002419833981016040819052620000c691620002be565b815182908290620000df90600290602085019062000161565b508051620000f590600390602084019062000161565b5050600080555062000107336200010f565b50506200037b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016f9062000328565b90600052602060002090601f016020900481019282620001935760008555620001de565b82601f10620001ae57805160ff1916838001178555620001de565b82800160010185558215620001de579182015b82811115620001de578251825591602001919060010190620001c1565b50620001ec929150620001f0565b5090565b5b80821115620001ec5760008155600101620001f1565b600082601f8301126200021957600080fd5b81516001600160401b038082111562000236576200023662000365565b604051601f8301601f19908116603f0116810190828211818310171562000261576200026162000365565b816040528381526020925086838588010111156200027e57600080fd5b600091505b83821015620002a2578582018301518183018401529082019062000283565b83821115620002b45760008385830101525b9695505050505050565b60008060408385031215620002d257600080fd5b82516001600160401b0380821115620002ea57600080fd5b620002f88683870162000207565b935060208501519150808211156200030f57600080fd5b506200031e8582860162000207565b9150509250929050565b600181811c908216806200033d57607f821691505b602082108114156200035f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61203d806200038b6000396000f3fe60806040526004361061020f5760003560e01c80637c928fe911610118578063b88d4fde116100a0578063d3464cbd1161006f578063d3464cbd1461059e578063e985e9c5146105b4578063eb8d2444146105fd578063f2fde38b1461061c578063fbbf8cc31461063c57600080fd5b8063b88d4fde14610534578063c02c1bcd14610554578063c87b56dd14610569578063ce03ec931461058957600080fd5b806396b10201116100e757806396b10201146104a9578063a035b1fe146104d6578063a0712d68146104ec578063a22cb465146104ff578063b14a2fce1461051f57600080fd5b80637c928fe9146104405780638bc35c2f146104605780638da5cb5b1461047657806395d89b411461049457600080fd5b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146103b65780636352211e146103d65780636c0360eb146103f657806370a082311461040b578063715018a61461042b57600080fd5b80633ccfd60b1461035457806342842e0e1461035c57806344a0d68a1461037c578063518302271461039c57600080fd5b80631342ff4c116101e25780631342ff4c146102c557806318160ddd146102e557806323b872dd146103085780632e0fd6eb1461032857806332cb6b0c1461033e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611c54565b610669565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106bb565b6040516102409190611e59565b34801561027757600080fd5b5061028b610286366004611d00565b61074d565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611c2a565b610791565b005b3480156102d157600080fd5b506102c36102e0366004611d00565b610818565b3480156102f157600080fd5b50600154600054035b604051908152602001610240565b34801561031457600080fd5b506102c3610323366004611ad6565b6108a3565b34801561033457600080fd5b506102fa600e5481565b34801561034a57600080fd5b506102fa600a5481565b6102c36108ae565b34801561036857600080fd5b506102c3610377366004611ad6565b610911565b34801561038857600080fd5b506102c3610397366004611d00565b61092c565b3480156103a857600080fd5b506010546102349060ff1681565b3480156103c257600080fd5b506102c36103d1366004611c8e565b61095b565b3480156103e257600080fd5b5061028b6103f1366004611d00565b610991565b34801561040257600080fd5b5061025e6109a3565b34801561041757600080fd5b506102fa610426366004611a81565b610a31565b34801561043757600080fd5b506102c3610a80565b34801561044c57600080fd5b506102c361045b366004611d00565b610ab6565b34801561046c57600080fd5b506102fa600d5481565b34801561048257600080fd5b506008546001600160a01b031661028b565b3480156104a057600080fd5b5061025e610c50565b3480156104b557600080fd5b506102fa6104c4366004611a81565b60116020526000908152604090205481565b3480156104e257600080fd5b506102fa600b5481565b6102c36104fa366004611d00565b610c5f565b34801561050b57600080fd5b506102c361051a366004611bee565b610ea2565b34801561052b57600080fd5b506102c3610f38565b34801561054057600080fd5b506102c361054f366004611b12565b610f76565b34801561056057600080fd5b5061025e610fc0565b34801561057557600080fd5b5061025e610584366004611d00565b610fcd565b34801561059557600080fd5b506102c3611134565b3480156105aa57600080fd5b506102fa600c5481565b3480156105c057600080fd5b506102346105cf366004611aa3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060957600080fd5b5060105461023490610100900460ff1681565b34801561062857600080fd5b506102c3610637366004611a81565b61117b565b34801561064857600080fd5b506102fa610657366004611a81565b60126020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b148061069a57506001600160e01b03198216635b5e139f60e01b145b806106b557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106ca90611f2f565b80601f01602080910402602001604051908101604052809291908181526020018280546106f690611f2f565b80156107435780601f1061071857610100808354040283529160200191610743565b820191906000526020600020905b81548152906001019060200180831161072657829003601f168201915b5050505050905090565b600061075882611213565b610775576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079c82610991565b9050806001600160a01b0316836001600160a01b031614156107d15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610808576107eb81336105cf565b610808576040516367d9dca160e11b815260040160405180910390fd5b61081383838361123e565b505050565b6008546001600160a01b0316331461084b5760405162461bcd60e51b815260040161084290611e6c565b60405180910390fd5b6009548111156108965760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610842565b6108a0338261129a565b50565b6108138383836112b4565b6008546001600160a01b031633146108d85760405162461bcd60e51b815260040161084290611e6c565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156108a0573d6000803e3d6000fd5b61081383838360405180602001604052806000815250610f76565b6008546001600160a01b031633146109565760405162461bcd60e51b815260040161084290611e6c565b600b55565b6008546001600160a01b031633146109855760405162461bcd60e51b815260040161084290611e6c565b610813601383836119cc565b600061099c826114a3565b5192915050565b601380546109b090611f2f565b80601f01602080910402602001604051908101604052809291908181526020018280546109dc90611f2f565b8015610a295780601f106109fe57610100808354040283529160200191610a29565b820191906000526020600020905b815481529060010190602001808311610a0c57829003601f168201915b505050505081565b60006001600160a01b038216610a5a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610aaa5760405162461bcd60e51b815260040161084290611e6c565b610ab460006115bf565b565b601054610100900460ff16610b075760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b6044820152606401610842565b323314610b455760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b6044820152606401610842565b80610b536001546000540390565b610b5d9190611ea1565b600a541015610ba95760405162461bcd60e51b815260206004820152601860248201527723a22d1d1022bc31b2b2b2399036b0bc1039bab838363c9760411b6044820152606401610842565b33600090815260116020526040902054600e54610bc68383611ea1565b1115610c255760405162461bcd60e51b815260206004820152602860248201527f47445a3a2045786365656473206d61782066726565206d696e74732070657220604482015267616464726573732160c01b6064820152608401610842565b610c2f8282611ea1565b33600081815260116020526040902091909155610c4c908361129a565b5050565b6060600380546106ca90611f2f565b601054610100900460ff16610cb05760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b6044820152606401610842565b323314610cee5760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b6044820152606401610842565b80600b54610cfc9190611ecd565b341015610d4b5760405162461bcd60e51b815260206004820152601760248201527f47445a3a20496e73756666696369656e742046756e642e0000000000000000006044820152606401610842565b80610d596001546000540390565b610d639190611ea1565b6009541015610daf5760405162461bcd60e51b815260206004820152601860248201527723a22d1d1022bc31b2b2b2399036b0bc1039bab838363c9760411b6044820152606401610842565b33600090815260126020526040902054600d54610dcc8383611ea1565b1115610e265760405162461bcd60e51b815260206004820152602360248201527f47445a3a2045786365656473206d6178206d696e74732070657220616464726560448201526273732160e81b6064820152608401610842565b600082118015610e385750600c548211155b610e7b5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b6044820152606401610842565b610e858282611ea1565b33600081815260126020526040902091909155610c4c908361129a565b6001600160a01b038216331415610ecc5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f625760405162461bcd60e51b815260040161084290611e6c565b6010805460ff19811660ff90911615179055565b610f818484846112b4565b6001600160a01b0383163b15610fba57610f9d84848484611611565b610fba576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600f80546109b090611f2f565b6060610fd882611213565b61103c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610842565b60105460ff166110d857600f805461105390611f2f565b80601f016020809104026020016040519081016040528092919081815260200182805461107f90611f2f565b80156110cc5780601f106110a1576101008083540402835291602001916110cc565b820191906000526020600020905b8154815290600101906020018083116110af57829003601f168201915b50505050509050919050565b6000601380546110e790611f2f565b90501161110357604051806020016040528060008152506106b5565b601361110e83611709565b60405160200161111f929190611d61565b60405160208183030381529060405292915050565b6008546001600160a01b0316331461115e5760405162461bcd60e51b815260040161084290611e6c565b6010805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146111a55760405162461bcd60e51b815260040161084290611e6c565b6001600160a01b03811661120a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610842565b6108a0816115bf565b60008054821080156106b5575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610c4c828260405180602001604052806000815250611807565b60006112bf826114a3565b9050836001600160a01b031681600001516001600160a01b0316146112f65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611314575061131485336105cf565b8061132f5750336113248461074d565b6001600160a01b0316145b90508061134f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661137657604051633a954ecd60e21b815260040160405180910390fd5b6113826000848761123e565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611458576000548214611458578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156115a657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115a45780516001600160a01b03161561153a579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561159f579392505050565b61153a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611646903390899088908890600401611e1c565b602060405180830381600087803b15801561166057600080fd5b505af1925050508015611690575060408051601f3d908101601f1916820190925261168d91810190611c71565b60015b6116eb573d8080156116be576040519150601f19603f3d011682016040523d82523d6000602084013e6116c3565b606091505b5080516116e3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161172d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611757578061174181611f6a565b91506117509050600a83611eb9565b9150611731565b60008167ffffffffffffffff81111561177257611772611fdb565b6040519080825280601f01601f19166020018201604052801561179c576020820181803683370190505b5090505b8415611701576117b1600183611eec565b91506117be600a86611f85565b6117c9906030611ea1565b60f81b8183815181106117de576117de611fc5565b60200101906001600160f81b031916908160001a905350611800600a86611eb9565b94506117a0565b6000546001600160a01b03841661183057604051622e076360e81b815260040160405180910390fd5b8261184e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611977575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119406000878480600101955087611611565b61195d576040516368d2bf6b60e11b815260040160405180910390fd5b8082106118f557826000541461197257600080fd5b6119bc565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611978575b506000908155610fba9085838684565b8280546119d890611f2f565b90600052602060002090601f0160209004810192826119fa5760008555611a40565b82601f10611a135782800160ff19823516178555611a40565b82800160010185558215611a40579182015b82811115611a40578235825591602001919060010190611a25565b50611a4c929150611a50565b5090565b5b80821115611a4c5760008155600101611a51565b80356001600160a01b0381168114611a7c57600080fd5b919050565b600060208284031215611a9357600080fd5b611a9c82611a65565b9392505050565b60008060408385031215611ab657600080fd5b611abf83611a65565b9150611acd60208401611a65565b90509250929050565b600080600060608486031215611aeb57600080fd5b611af484611a65565b9250611b0260208501611a65565b9150604084013590509250925092565b60008060008060808587031215611b2857600080fd5b611b3185611a65565b9350611b3f60208601611a65565b925060408501359150606085013567ffffffffffffffff80821115611b6357600080fd5b818701915087601f830112611b7757600080fd5b813581811115611b8957611b89611fdb565b604051601f8201601f19908116603f01168101908382118183101715611bb157611bb1611fdb565b816040528281528a6020848701011115611bca57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611c0157600080fd5b611c0a83611a65565b915060208301358015158114611c1f57600080fd5b809150509250929050565b60008060408385031215611c3d57600080fd5b611c4683611a65565b946020939093013593505050565b600060208284031215611c6657600080fd5b8135611a9c81611ff1565b600060208284031215611c8357600080fd5b8151611a9c81611ff1565b60008060208385031215611ca157600080fd5b823567ffffffffffffffff80821115611cb957600080fd5b818501915085601f830112611ccd57600080fd5b813581811115611cdc57600080fd5b866020828501011115611cee57600080fd5b60209290920196919550909350505050565b600060208284031215611d1257600080fd5b5035919050565b60008151808452611d31816020860160208601611f03565b601f01601f19169290920160200192915050565b60008151611d57818560208601611f03565b9290920192915050565b600080845481600182811c915080831680611d7d57607f831692505b6020808410821415611d9d57634e487b7160e01b86526022600452602486fd5b818015611db15760018114611dc257611def565b60ff19861689528489019650611def565b60008b81526020902060005b86811015611de75781548b820152908501908301611dce565b505084890196505b505050505050611e13611e028286611d45565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e4f90830184611d19565b9695505050505050565b602081526000611a9c6020830184611d19565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611eb457611eb4611f99565b500190565b600082611ec857611ec8611faf565b500490565b6000816000190483118215151615611ee757611ee7611f99565b500290565b600082821015611efe57611efe611f99565b500390565b60005b83811015611f1e578181015183820152602001611f06565b83811115610fba5750506000910152565b600181811c90821680611f4357607f821691505b60208210811415611f6457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f7e57611f7e611f99565b5060010190565b600082611f9457611f94611faf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108a057600080fdfea2646970667358221220f697b2396c70f1eef320fbbd7f4939a1d066cbbdb4a6e55ce5aabc787e8e080464736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d54527938597a65584a484568656e4555424a675258456f67554642716b464e4e4b7a5953326733614d6f77562f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e76616e64616c746f776e2e77746600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035644540000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80637c928fe911610118578063b88d4fde116100a0578063d3464cbd1161006f578063d3464cbd1461059e578063e985e9c5146105b4578063eb8d2444146105fd578063f2fde38b1461061c578063fbbf8cc31461063c57600080fd5b8063b88d4fde14610534578063c02c1bcd14610554578063c87b56dd14610569578063ce03ec931461058957600080fd5b806396b10201116100e757806396b10201146104a9578063a035b1fe146104d6578063a0712d68146104ec578063a22cb465146104ff578063b14a2fce1461051f57600080fd5b80637c928fe9146104405780638bc35c2f146104605780638da5cb5b1461047657806395d89b411461049457600080fd5b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146103b65780636352211e146103d65780636c0360eb146103f657806370a082311461040b578063715018a61461042b57600080fd5b80633ccfd60b1461035457806342842e0e1461035c57806344a0d68a1461037c578063518302271461039c57600080fd5b80631342ff4c116101e25780631342ff4c146102c557806318160ddd146102e557806323b872dd146103085780632e0fd6eb1461032857806332cb6b0c1461033e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611c54565b610669565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106bb565b6040516102409190611e59565b34801561027757600080fd5b5061028b610286366004611d00565b61074d565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611c2a565b610791565b005b3480156102d157600080fd5b506102c36102e0366004611d00565b610818565b3480156102f157600080fd5b50600154600054035b604051908152602001610240565b34801561031457600080fd5b506102c3610323366004611ad6565b6108a3565b34801561033457600080fd5b506102fa600e5481565b34801561034a57600080fd5b506102fa600a5481565b6102c36108ae565b34801561036857600080fd5b506102c3610377366004611ad6565b610911565b34801561038857600080fd5b506102c3610397366004611d00565b61092c565b3480156103a857600080fd5b506010546102349060ff1681565b3480156103c257600080fd5b506102c36103d1366004611c8e565b61095b565b3480156103e257600080fd5b5061028b6103f1366004611d00565b610991565b34801561040257600080fd5b5061025e6109a3565b34801561041757600080fd5b506102fa610426366004611a81565b610a31565b34801561043757600080fd5b506102c3610a80565b34801561044c57600080fd5b506102c361045b366004611d00565b610ab6565b34801561046c57600080fd5b506102fa600d5481565b34801561048257600080fd5b506008546001600160a01b031661028b565b3480156104a057600080fd5b5061025e610c50565b3480156104b557600080fd5b506102fa6104c4366004611a81565b60116020526000908152604090205481565b3480156104e257600080fd5b506102fa600b5481565b6102c36104fa366004611d00565b610c5f565b34801561050b57600080fd5b506102c361051a366004611bee565b610ea2565b34801561052b57600080fd5b506102c3610f38565b34801561054057600080fd5b506102c361054f366004611b12565b610f76565b34801561056057600080fd5b5061025e610fc0565b34801561057557600080fd5b5061025e610584366004611d00565b610fcd565b34801561059557600080fd5b506102c3611134565b3480156105aa57600080fd5b506102fa600c5481565b3480156105c057600080fd5b506102346105cf366004611aa3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060957600080fd5b5060105461023490610100900460ff1681565b34801561062857600080fd5b506102c3610637366004611a81565b61117b565b34801561064857600080fd5b506102fa610657366004611a81565b60126020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b148061069a57506001600160e01b03198216635b5e139f60e01b145b806106b557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106ca90611f2f565b80601f01602080910402602001604051908101604052809291908181526020018280546106f690611f2f565b80156107435780601f1061071857610100808354040283529160200191610743565b820191906000526020600020905b81548152906001019060200180831161072657829003601f168201915b5050505050905090565b600061075882611213565b610775576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079c82610991565b9050806001600160a01b0316836001600160a01b031614156107d15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610808576107eb81336105cf565b610808576040516367d9dca160e11b815260040160405180910390fd5b61081383838361123e565b505050565b6008546001600160a01b0316331461084b5760405162461bcd60e51b815260040161084290611e6c565b60405180910390fd5b6009548111156108965760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610842565b6108a0338261129a565b50565b6108138383836112b4565b6008546001600160a01b031633146108d85760405162461bcd60e51b815260040161084290611e6c565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156108a0573d6000803e3d6000fd5b61081383838360405180602001604052806000815250610f76565b6008546001600160a01b031633146109565760405162461bcd60e51b815260040161084290611e6c565b600b55565b6008546001600160a01b031633146109855760405162461bcd60e51b815260040161084290611e6c565b610813601383836119cc565b600061099c826114a3565b5192915050565b601380546109b090611f2f565b80601f01602080910402602001604051908101604052809291908181526020018280546109dc90611f2f565b8015610a295780601f106109fe57610100808354040283529160200191610a29565b820191906000526020600020905b815481529060010190602001808311610a0c57829003601f168201915b505050505081565b60006001600160a01b038216610a5a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610aaa5760405162461bcd60e51b815260040161084290611e6c565b610ab460006115bf565b565b601054610100900460ff16610b075760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b6044820152606401610842565b323314610b455760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b6044820152606401610842565b80610b536001546000540390565b610b5d9190611ea1565b600a541015610ba95760405162461bcd60e51b815260206004820152601860248201527723a22d1d1022bc31b2b2b2399036b0bc1039bab838363c9760411b6044820152606401610842565b33600090815260116020526040902054600e54610bc68383611ea1565b1115610c255760405162461bcd60e51b815260206004820152602860248201527f47445a3a2045786365656473206d61782066726565206d696e74732070657220604482015267616464726573732160c01b6064820152608401610842565b610c2f8282611ea1565b33600081815260116020526040902091909155610c4c908361129a565b5050565b6060600380546106ca90611f2f565b601054610100900460ff16610cb05760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b6044820152606401610842565b323314610cee5760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b6044820152606401610842565b80600b54610cfc9190611ecd565b341015610d4b5760405162461bcd60e51b815260206004820152601760248201527f47445a3a20496e73756666696369656e742046756e642e0000000000000000006044820152606401610842565b80610d596001546000540390565b610d639190611ea1565b6009541015610daf5760405162461bcd60e51b815260206004820152601860248201527723a22d1d1022bc31b2b2b2399036b0bc1039bab838363c9760411b6044820152606401610842565b33600090815260126020526040902054600d54610dcc8383611ea1565b1115610e265760405162461bcd60e51b815260206004820152602360248201527f47445a3a2045786365656473206d6178206d696e74732070657220616464726560448201526273732160e81b6064820152608401610842565b600082118015610e385750600c548211155b610e7b5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b6044820152606401610842565b610e858282611ea1565b33600081815260126020526040902091909155610c4c908361129a565b6001600160a01b038216331415610ecc5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f625760405162461bcd60e51b815260040161084290611e6c565b6010805460ff19811660ff90911615179055565b610f818484846112b4565b6001600160a01b0383163b15610fba57610f9d84848484611611565b610fba576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600f80546109b090611f2f565b6060610fd882611213565b61103c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610842565b60105460ff166110d857600f805461105390611f2f565b80601f016020809104026020016040519081016040528092919081815260200182805461107f90611f2f565b80156110cc5780601f106110a1576101008083540402835291602001916110cc565b820191906000526020600020905b8154815290600101906020018083116110af57829003601f168201915b50505050509050919050565b6000601380546110e790611f2f565b90501161110357604051806020016040528060008152506106b5565b601361110e83611709565b60405160200161111f929190611d61565b60405160208183030381529060405292915050565b6008546001600160a01b0316331461115e5760405162461bcd60e51b815260040161084290611e6c565b6010805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146111a55760405162461bcd60e51b815260040161084290611e6c565b6001600160a01b03811661120a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610842565b6108a0816115bf565b60008054821080156106b5575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610c4c828260405180602001604052806000815250611807565b60006112bf826114a3565b9050836001600160a01b031681600001516001600160a01b0316146112f65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611314575061131485336105cf565b8061132f5750336113248461074d565b6001600160a01b0316145b90508061134f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661137657604051633a954ecd60e21b815260040160405180910390fd5b6113826000848761123e565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611458576000548214611458578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156115a657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115a45780516001600160a01b03161561153a579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561159f579392505050565b61153a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611646903390899088908890600401611e1c565b602060405180830381600087803b15801561166057600080fd5b505af1925050508015611690575060408051601f3d908101601f1916820190925261168d91810190611c71565b60015b6116eb573d8080156116be576040519150601f19603f3d011682016040523d82523d6000602084013e6116c3565b606091505b5080516116e3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161172d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611757578061174181611f6a565b91506117509050600a83611eb9565b9150611731565b60008167ffffffffffffffff81111561177257611772611fdb565b6040519080825280601f01601f19166020018201604052801561179c576020820181803683370190505b5090505b8415611701576117b1600183611eec565b91506117be600a86611f85565b6117c9906030611ea1565b60f81b8183815181106117de576117de611fc5565b60200101906001600160f81b031916908160001a905350611800600a86611eb9565b94506117a0565b6000546001600160a01b03841661183057604051622e076360e81b815260040160405180910390fd5b8261184e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611977575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119406000878480600101955087611611565b61195d576040516368d2bf6b60e11b815260040160405180910390fd5b8082106118f557826000541461197257600080fd5b6119bc565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611978575b506000908155610fba9085838684565b8280546119d890611f2f565b90600052602060002090601f0160209004810192826119fa5760008555611a40565b82601f10611a135782800160ff19823516178555611a40565b82800160010185558215611a40579182015b82811115611a40578235825591602001919060010190611a25565b50611a4c929150611a50565b5090565b5b80821115611a4c5760008155600101611a51565b80356001600160a01b0381168114611a7c57600080fd5b919050565b600060208284031215611a9357600080fd5b611a9c82611a65565b9392505050565b60008060408385031215611ab657600080fd5b611abf83611a65565b9150611acd60208401611a65565b90509250929050565b600080600060608486031215611aeb57600080fd5b611af484611a65565b9250611b0260208501611a65565b9150604084013590509250925092565b60008060008060808587031215611b2857600080fd5b611b3185611a65565b9350611b3f60208601611a65565b925060408501359150606085013567ffffffffffffffff80821115611b6357600080fd5b818701915087601f830112611b7757600080fd5b813581811115611b8957611b89611fdb565b604051601f8201601f19908116603f01168101908382118183101715611bb157611bb1611fdb565b816040528281528a6020848701011115611bca57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611c0157600080fd5b611c0a83611a65565b915060208301358015158114611c1f57600080fd5b809150509250929050565b60008060408385031215611c3d57600080fd5b611c4683611a65565b946020939093013593505050565b600060208284031215611c6657600080fd5b8135611a9c81611ff1565b600060208284031215611c8357600080fd5b8151611a9c81611ff1565b60008060208385031215611ca157600080fd5b823567ffffffffffffffff80821115611cb957600080fd5b818501915085601f830112611ccd57600080fd5b813581811115611cdc57600080fd5b866020828501011115611cee57600080fd5b60209290920196919550909350505050565b600060208284031215611d1257600080fd5b5035919050565b60008151808452611d31816020860160208601611f03565b601f01601f19169290920160200192915050565b60008151611d57818560208601611f03565b9290920192915050565b600080845481600182811c915080831680611d7d57607f831692505b6020808410821415611d9d57634e487b7160e01b86526022600452602486fd5b818015611db15760018114611dc257611def565b60ff19861689528489019650611def565b60008b81526020902060005b86811015611de75781548b820152908501908301611dce565b505084890196505b505050505050611e13611e028286611d45565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e4f90830184611d19565b9695505050505050565b602081526000611a9c6020830184611d19565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611eb457611eb4611f99565b500190565b600082611ec857611ec8611faf565b500490565b6000816000190483118215151615611ee757611ee7611f99565b500290565b600082821015611efe57611efe611f99565b500390565b60005b83811015611f1e578181015183820152602001611f06565b83811115610fba5750506000910152565b600181811c90821680611f4357607f821691505b60208210811415611f6457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f7e57611f7e611f99565b5060010190565b600082611f9457611f94611faf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108a057600080fdfea2646970667358221220f697b2396c70f1eef320fbbd7f4939a1d066cbbdb4a6e55ce5aabc787e8e080464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e76616e64616c746f776e2e77746600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035644540000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): vandaltown.wtf
Arg [1] : _symbol (string): VDT
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 76616e64616c746f776e2e777466000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 5644540000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
47435:3569:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28545:305;;;;;;;;;;-1:-1:-1;28545:305:0;;;;;:::i;:::-;;:::i;:::-;;;6763:14:1;;6756:22;6738:41;;6726:2;6711:18;28545:305:0;;;;;;;;31660:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33164:204::-;;;;;;;;;;-1:-1:-1;33164:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6061:32:1;;;6043:51;;6031:2;6016:18;33164:204:0;5897:203:1;32726:372:0;;;;;;;;;;-1:-1:-1;32726:372:0;;;;;:::i;:::-;;:::i;:::-;;49786:178;;;;;;;;;;-1:-1:-1;49786:178:0;;;;;:::i;:::-;;:::i;27785:312::-;;;;;;;;;;-1:-1:-1;28048:12:0;;27838:7;28032:13;:28;27785:312;;;11255:25:1;;;11243:2;11228:18;27785:312:0;11109:177:1;34029:170:0;;;;;;;;;;-1:-1:-1;34029:170:0;;;;;:::i;:::-;;:::i;47775:47::-;;;;;;;;;;;;;;;;47543:50;;;;;;;;;;;;;;;;50369:114;;;:::i;34270:185::-;;;;;;;;;;-1:-1:-1;34270:185:0;;;;;:::i;:::-;;:::i;50164:81::-;;;;;;;;;;-1:-1:-1;50164:81:0;;;;;:::i;:::-;;:::i;47887:27::-;;;;;;;;;;-1:-1:-1;47887:27:0;;;;;;;;50253:108;;;;;;;;;;-1:-1:-1;50253:108:0;;;;;:::i;:::-;;:::i;31468:125::-;;;;;;;;;;-1:-1:-1;31468:125:0;;;;;:::i;:::-;;:::i;48082:107::-;;;;;;;;;;;;;:::i;28914:206::-;;;;;;;;;;-1:-1:-1;28914:206:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;49241:537::-;;;;;;;;;;-1:-1:-1;49241:537:0;;;;;:::i;:::-;;:::i;47719:49::-;;;;;;;;;;;;;;;;4079:87;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;31829:104;;;;;;;;;;;;;:::i;47963:51::-;;;;;;;;;;-1:-1:-1;47963:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;47600:57;;;;;;;;;;;;;;;;48474:759;;;;;;:::i;:::-;;:::i;33440:287::-;;;;;;;;;;-1:-1:-1;33440:287:0;;;;;:::i;:::-;;:::i;50070:86::-;;;;;;;;;;;;;:::i;34526:370::-;;;;;;;;;;-1:-1:-1;34526:370:0;;;;;:::i;:::-;;:::i;47829:43::-;;;;;;;;;;;;;:::i;50599:400::-;;;;;;;;;;-1:-1:-1;50599:400:0;;;;;:::i;:::-;;:::i;49972:90::-;;;;;;;;;;;;;:::i;47664:48::-;;;;;;;;;;;;;;;;33798:164;;;;;;;;;;-1:-1:-1;33798:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33919:25:0;;;33895:4;33919:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33798:164;47921:31;;;;;;;;;;-1:-1:-1;47921:31:0;;;;;;;;;;;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;48021:47::-;;;;;;;;;;-1:-1:-1;48021:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;28545:305;28647:4;-1:-1:-1;;;;;;28684:40:0;;-1:-1:-1;;;28684:40:0;;:105;;-1:-1:-1;;;;;;;28741:48:0;;-1:-1:-1;;;28741:48:0;28684:105;:158;;;-1:-1:-1;;;;;;;;;;16995:40:0;;;28806:36;28664:178;28545:305;-1:-1:-1;;28545:305:0:o;31660:100::-;31714:13;31747:5;31740:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31660:100;:::o;33164:204::-;33232:7;33257:16;33265:7;33257;:16::i;:::-;33252:64;;33282:34;;-1:-1:-1;;;33282:34:0;;;;;;;;;;;33252:64;-1:-1:-1;33336:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33336:24:0;;33164:204::o;32726:372::-;32799:13;32815:24;32831:7;32815:15;:24::i;:::-;32799:40;;32860:5;-1:-1:-1;;;;;32854:11:0;:2;-1:-1:-1;;;;;32854:11:0;;32850:48;;;32874:24;;-1:-1:-1;;;32874:24:0;;;;;;;;;;;32850:48;2883:10;-1:-1:-1;;;;;32915:21:0;;;32911:139;;32942:37;32959:5;2883:10;33798:164;:::i;32942:37::-;32938:112;;33003:35;;-1:-1:-1;;;33003:35:0;;;;;;;;;;;32938:112;33062:28;33071:2;33075:7;33084:5;33062:8;:28::i;:::-;32788:310;32726:372;;:::o;49786:178::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;49873:14:::1;;49861:8;:26;;49853:61;;;::::0;-1:-1:-1;;;49853:61:0;;9141:2:1;49853:61:0::1;::::0;::::1;9123:21:1::0;9180:2;9160:18;;;9153:30;-1:-1:-1;;;9199:18:1;;;9192:52;9261:18;;49853:61:0::1;8939:346:1::0;49853:61:0::1;49925:31;49935:10;49947:8;49925:9;:31::i;:::-;49786:178:::0;:::o;34029:170::-;34163:28;34173:4;34179:2;34183:7;34163:9;:28::i;50369:114::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4152:6;;50427:48:::1;::::0;-1:-1:-1;;;;;4152:6:0;;;;50453:21:::1;50427:48:::0;::::1;;;::::0;::::1;::::0;;;50453:21;4152:6;50427:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;34270:185:::0;34408:39;34425:4;34431:2;34435:7;34408:39;;;;;;;;;;;;:16;:39::i;50164:81::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50224:5:::1;:13:::0;50164:81::o;50253:108::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50332:21:::1;:7;50342:11:::0;;50332:21:::1;:::i;31468:125::-:0;31532:7;31559:21;31572:7;31559:12;:21::i;:::-;:26;;31468:125;-1:-1:-1;;31468:125:0:o;48082:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28914:206::-;28978:7;-1:-1:-1;;;;;29002:19:0;;28998:60;;29030:28;;-1:-1:-1;;;29030:28:0;;;;;;;;;;;28998:60;-1:-1:-1;;;;;;29084:19:0;;;;;:12;:19;;;;;:27;;;;28914:206::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;49241:537::-;48343:12;;;;;;;48335:48;;;;-1:-1:-1;;;48335:48:0;;8032:2:1;48335:48:0;;;8014:21:1;8071:2;8051:18;;;8044:30;-1:-1:-1;;;8090:18:1;;;8083:53;8153:18;;48335:48:0;7830:347:1;48335:48:0;48402:9;48415:10;48402:23;48394:48;;;;-1:-1:-1;;;48394:48:0;;10970:2:1;48394:48:0;;;10952:21:1;11009:2;10989:18;;;10982:30;-1:-1:-1;;;11028:18:1;;;11021:42;11080:18;;48394:48:0;10768:336:1;48394:48:0;49367:9:::1;49351:13;28048:12:::0;;27838:7;28032:13;:28;;27785:312;49351:13:::1;:25;;;;:::i;:::-;49337:10;;:39;;49315:113;;;::::0;-1:-1:-1;;;49315:113:0;;8384:2:1;49315:113:0::1;::::0;::::1;8366:21:1::0;8423:2;8403:18;;;8396:30;-1:-1:-1;;;8442:18:1;;;8435:54;8506:18;;49315:113:0::1;8182:348:1::0;49315:113:0::1;49484:10;49439:25;49467:28:::0;;;:16:::1;:28;::::0;;;;;49561:27:::1;::::0;49528:29:::1;49548:9:::0;49467:28;49528:29:::1;:::i;:::-;:60;;49506:150;;;::::0;-1:-1:-1;;;49506:150:0;;7623:2:1;49506:150:0::1;::::0;::::1;7605:21:1::0;7662:2;7642:18;;;7635:30;7701:34;7681:18;;;7674:62;-1:-1:-1;;;7752:18:1;;;7745:38;7800:19;;49506:150:0::1;7421:404:1::0;49506:150:0::1;49698:29;49718:9:::0;49698:17;:29:::1;:::i;:::-;49684:10;49667:28;::::0;;;:16:::1;:28;::::0;;;;:60;;;;49738:32:::1;::::0;49760:9;49738::::1;:32::i;:::-;49304:474;49241:537:::0;:::o;31829:104::-;31885:13;31918:7;31911:14;;;;;:::i;48474:759::-;48343:12;;;;;;;48335:48;;;;-1:-1:-1;;;48335:48:0;;8032:2:1;48335:48:0;;;8014:21:1;8071:2;8051:18;;;8044:30;-1:-1:-1;;;8090:18:1;;;8083:53;8153:18;;48335:48:0;7830:347:1;48335:48:0;48402:9;48415:10;48402:23;48394:48;;;;-1:-1:-1;;;48394:48:0;;10970:2:1;48394:48:0;;;10952:21:1;11009:2;10989:18;;;10982:30;-1:-1:-1;;;11028:18:1;;;11021:42;11080:18;;48394:48:0;10768:336:1;48394:48:0;48595:9:::1;48587:5;;:17;;;;:::i;:::-;48574:9;:30;;48552:103;;;::::0;-1:-1:-1;;;48552:103:0;;9841:2:1;48552:103:0::1;::::0;::::1;9823:21:1::0;9880:2;9860:18;;;9853:30;9919:25;9899:18;;;9892:53;9962:18;;48552:103:0::1;9639:347:1::0;48552:103:0::1;48722:9;48706:13;28048:12:::0;;27838:7;28032:13;:28;;27785:312;48706:13:::1;:25;;;;:::i;:::-;48688:14;;:43;;48666:117;;;::::0;-1:-1:-1;;;48666:117:0;;8384:2:1;48666:117:0::1;::::0;::::1;8366:21:1::0;8423:2;8403:18;;;8396:30;-1:-1:-1;;;8442:18:1;;;8435:54;8506:18;;48666:117:0::1;8182:348:1::0;48666:117:0::1;48831:10;48794:21;48818:24:::0;;;:12:::1;:24;::::0;;;;;48904:23:::1;::::0;48875:25:::1;48891:9:::0;48818:24;48875:25:::1;:::i;:::-;:52;;48853:137;;;::::0;-1:-1:-1;;;48853:137:0;;8737:2:1;48853:137:0::1;::::0;::::1;8719:21:1::0;8776:2;8756:18;;;8749:30;8815:34;8795:18;;;8788:62;-1:-1:-1;;;8866:18:1;;;8859:33;8909:19;;48853:137:0::1;8535:399:1::0;48853:137:0::1;49035:1;49023:9;:13;:48;;;;;49053:18;;49040:9;:31;;49023:48;49001:118;;;::::0;-1:-1:-1;;;49001:118:0;;9492:2:1;49001:118:0::1;::::0;::::1;9474:21:1::0;9531:2;9511:18;;;9504:30;-1:-1:-1;;;9550:18:1;;;9543:50;9610:18;;49001:118:0::1;9290:344:1::0;49001:118:0::1;49157:25;49173:9:::0;49157:13;:25:::1;:::i;:::-;49143:10;49130:24;::::0;;;:12:::1;:24;::::0;;;;:52;;;;49193:32:::1;::::0;49215:9;49193::::1;:32::i;33440:287::-:0;-1:-1:-1;;;;;33539:24:0;;2883:10;33539:24;33535:54;;;33572:17;;-1:-1:-1;;;33572:17:0;;;;;;;;;;;33535:54;2883:10;33602:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33602:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33602:53:0;;;;;;;;;;33671:48;;6738:41:1;;;33602:42:0;;2883:10;33671:48;;6711:18:1;33671:48:0;;;;;;;33440:287;;:::o;50070:86::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50140:8:::1;::::0;;-1:-1:-1;;50128:20:0;::::1;50140:8;::::0;;::::1;50139:9;50128:20;::::0;;50070:86::o;34526:370::-;34693:28;34703:4;34709:2;34713:7;34693:9;:28::i;:::-;-1:-1:-1;;;;;34736:13:0;;7075:19;:23;34732:157;;34757:56;34788:4;34794:2;34798:7;34807:5;34757:30;:56::i;:::-;34753:136;;34837:40;;-1:-1:-1;;;34837:40:0;;;;;;;;;;;34753:136;34526:370;;;;:::o;47829:43::-;;;;;;;:::i;50599:400::-;50672:13;50706:16;50714:7;50706;:16::i;:::-;50698:76;;;;-1:-1:-1;;;50698:76:0;;10554:2:1;50698:76:0;;;10536:21:1;10593:2;10573:18;;;10566:30;10632:34;10612:18;;;10605:62;-1:-1:-1;;;10683:18:1;;;10676:45;10738:19;;50698:76:0;10352:411:1;50698:76:0;50789:8;;;;50785:60;;50820:13;50813:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50599:400;;;:::o;50785:60::-;50896:1;50878:7;50872:21;;;;;:::i;:::-;;;:25;:102;;;;;;;;;;;;;;;;;50924:7;50933:25;50950:7;50933:16;:25::i;:::-;50907:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50865:109;50599:400;-1:-1:-1;;50599:400:0:o;49972:90::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50042:12:::1;::::0;;-1:-1:-1;;50026:28:0;::::1;50042:12;::::0;;;::::1;;;50041:13;50026:28:::0;;::::1;;::::0;;49972:90::o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;7216:2:1;5069:73:0::1;::::0;::::1;7198:21:1::0;7255:2;7235:18;;;7228:30;7294:34;7274:18;;;7267:62;-1:-1:-1;;;7345:18:1;;;7338:36;7391:19;;5069:73:0::1;7014:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;35151:174::-:0;35208:4;35272:13;;35262:7;:23;35232:85;;;;-1:-1:-1;;35290:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35290:27:0;;;;35289:28;;35151:174::o;44373:196::-;44488:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44488:29:0;-1:-1:-1;;;;;44488:29:0;;;;;;;;;44533:28;;44488:24;;44533:28;;;;;;;44373:196;;;:::o;35409:104::-;35478:27;35488:2;35492:8;35478:27;;;;;;;;;;;;:9;:27::i;39321:2130::-;39436:35;39474:21;39487:7;39474:12;:21::i;:::-;39436:59;;39534:4;-1:-1:-1;;;;;39512:26:0;:13;:18;;;-1:-1:-1;;;;;39512:26:0;;39508:67;;39547:28;;-1:-1:-1;;;39547:28:0;;;;;;;;;;;39508:67;39588:22;2883:10;-1:-1:-1;;;;;39614:20:0;;;;:73;;-1:-1:-1;39651:36:0;39668:4;2883:10;33798:164;:::i;39651:36::-;39614:126;;;-1:-1:-1;2883:10:0;39704:20;39716:7;39704:11;:20::i;:::-;-1:-1:-1;;;;;39704:36:0;;39614:126;39588:153;;39759:17;39754:66;;39785:35;;-1:-1:-1;;;39785:35:0;;;;;;;;;;;39754:66;-1:-1:-1;;;;;39835:16:0;;39831:52;;39860:23;;-1:-1:-1;;;39860:23:0;;;;;;;;;;;39831:52;40004:35;40021:1;40025:7;40034:4;40004:8;:35::i;:::-;-1:-1:-1;;;;;40335:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40335:31:0;;;;;;;-1:-1:-1;;40335:31:0;;;;;;;40381:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40381:29:0;;;;;;;;;;;40461:20;;;:11;:20;;;;;;40496:18;;-1:-1:-1;;;;;;40529:49:0;;;;-1:-1:-1;;;40562:15:0;40529:49;;;;;;;;;;40852:11;;40912:24;;;;;40955:13;;40461:20;;40912:24;;40955:13;40951:384;;41165:13;;41150:11;:28;41146:174;;41203:20;;41272:28;;;;41246:54;;-1:-1:-1;;;41246:54:0;-1:-1:-1;;;;;;41246:54:0;;;-1:-1:-1;;;;;41203:20:0;;41246:54;;;;41146:174;40310:1036;;;41382:7;41378:2;-1:-1:-1;;;;;41363:27:0;41372:4;-1:-1:-1;;;;;41363:27:0;;;;;;;;;;;39425:2026;;39321:2130;;;:::o;30295:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30406:7:0;30491:13;;30484:4;:20;30480:859;;;30525:31;30559:17;;;:11;:17;;;;;;;;;30525:51;;;;;;;;;-1:-1:-1;;;;;30525:51:0;;;;-1:-1:-1;;;30525:51:0;;;;;;;;;;;-1:-1:-1;;;30525:51:0;;;;;;;;;;;;;;30595:729;;30645:14;;-1:-1:-1;;;;;30645:28:0;;30641:101;;30709:9;30295:1111;-1:-1:-1;;;30295:1111:0:o;30641:101::-;-1:-1:-1;;;31084:6:0;31129:17;;;;:11;:17;;;;;;;;;31117:29;;;;;;;;;-1:-1:-1;;;;;31117:29:0;;;;;-1:-1:-1;;;31117:29:0;;;;;;;;;;;-1:-1:-1;;;31117:29:0;;;;;;;;;;;;;31177:28;31173:109;;31245:9;30295:1111;-1:-1:-1;;;30295:1111:0:o;31173:109::-;31044:261;;;30506:833;30480:859;31367:31;;-1:-1:-1;;;31367:31:0;;;;;;;;;;;5349:191;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;45061:667::-;45245:72;;-1:-1:-1;;;45245:72:0;;45224:4;;-1:-1:-1;;;;;45245:36:0;;;;;:72;;2883:10;;45296:4;;45302:7;;45311:5;;45245:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45245:72:0;;;;;;;;-1:-1:-1;;45245:72:0;;;;;;;;;;;;:::i;:::-;;;45241:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45479:13:0;;45475:235;;45525:40;;-1:-1:-1;;;45525:40:0;;;;;;;;;;;45475:235;45668:6;45662:13;45653:6;45649:2;45645:15;45638:38;45241:480;-1:-1:-1;;;;;;45364:55:0;-1:-1:-1;;;45364:55:0;;-1:-1:-1;45241:480:0;45061:667;;;;;;:::o;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;35886:1749;36009:20;36032:13;-1:-1:-1;;;;;36060:16:0;;36056:48;;36085:19;;-1:-1:-1;;;36085:19:0;;;;;;;;;;;36056:48;36119:13;36115:44;;36141:18;;-1:-1:-1;;;36141:18:0;;;;;;;;;;;36115:44;-1:-1:-1;;;;;36510:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36569:49:0;;36510:44;;;;;;;;36569:49;;;;-1:-1:-1;;36510:44:0;;;;;;36569:49;;;;;;;;;;;;;;;;36635:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36685:66:0;;;-1:-1:-1;;;36735:15:0;36685:66;;;;;;;;;;;;;36635:25;;36832:23;;;;7075:19;:23;36872:631;;36912:313;36943:38;;36968:12;;-1:-1:-1;;;;;36943:38:0;;;36960:1;;36943:38;;36960:1;;36943:38;37009:69;37048:1;37052:2;37056:14;;;;;;37072:5;37009:30;:69::i;:::-;37004:174;;37114:40;;-1:-1:-1;;;37114:40:0;;;;;;;;;;;37004:174;37220:3;37205:12;:18;36912:313;;37306:12;37289:13;;:29;37285:43;;37320:8;;;37285:43;36872:631;;;37369:119;37400:40;;37425:14;;;;;-1:-1:-1;;;;;37400:40:0;;;37417:1;;37400:40;;37417:1;;37400:40;37483:3;37468:12;:18;37369:119;;36872:631;-1:-1:-1;37517:13:0;:28;;;37567:60;;37600:2;37604:12;37618:8;37567:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:1;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:1:o;4283:185::-;4325:3;4363:5;4357:12;4378:52;4423:6;4418:3;4411:4;4404:5;4400:16;4378:52;:::i;:::-;4446:16;;;;;4283:185;-1:-1:-1;;4283:185:1:o;4591:1301::-;4868:3;4897:1;4930:6;4924:13;4960:3;4982:1;5010:9;5006:2;5002:18;4992:28;;5070:2;5059:9;5055:18;5092;5082:61;;5136:4;5128:6;5124:17;5114:27;;5082:61;5162:2;5210;5202:6;5199:14;5179:18;5176:38;5173:165;;;-1:-1:-1;;;5237:33:1;;5293:4;5290:1;5283:15;5323:4;5244:3;5311:17;5173:165;5354:18;5381:104;;;;5499:1;5494:320;;;;5347:467;;5381:104;-1:-1:-1;;5414:24:1;;5402:37;;5459:16;;;;-1:-1:-1;5381:104:1;;5494:320;11364:1;11357:14;;;11401:4;11388:18;;5589:1;5603:165;5617:6;5614:1;5611:13;5603:165;;;5695:14;;5682:11;;;5675:35;5738:16;;;;5632:10;;5603:165;;;5607:3;;5797:6;5792:3;5788:16;5781:23;;5347:467;;;;;;;5830:56;5855:30;5881:3;5873:6;5855:30;:::i;:::-;-1:-1:-1;;;4533:20:1;;4578:1;4569:11;;4473:113;5830:56;5823:63;4591:1301;-1:-1:-1;;;;;4591:1301:1:o;6105:488::-;-1:-1:-1;;;;;6374:15:1;;;6356:34;;6426:15;;6421:2;6406:18;;6399:43;6473:2;6458:18;;6451:34;;;6521:3;6516:2;6501:18;;6494:31;;;6299:4;;6542:45;;6567:19;;6559:6;6542:45;:::i;:::-;6534:53;6105:488;-1:-1:-1;;;;;;6105:488:1:o;6790:219::-;6939:2;6928:9;6921:21;6902:4;6959:44;6999:2;6988:9;6984:18;6976:6;6959:44;:::i;9991:356::-;10193:2;10175:21;;;10212:18;;;10205:30;10271:34;10266:2;10251:18;;10244:62;10338:2;10323:18;;9991:356::o;11417:128::-;11457:3;11488:1;11484:6;11481:1;11478:13;11475:39;;;11494:18;;:::i;:::-;-1:-1:-1;11530:9:1;;11417:128::o;11550:120::-;11590:1;11616;11606:35;;11621:18;;:::i;:::-;-1:-1:-1;11655:9:1;;11550:120::o;11675:168::-;11715:7;11781:1;11777;11773:6;11769:14;11766:1;11763:21;11758:1;11751:9;11744:17;11740:45;11737:71;;;11788:18;;:::i;:::-;-1:-1:-1;11828:9:1;;11675:168::o;11848:125::-;11888:4;11916:1;11913;11910:8;11907:34;;;11921:18;;:::i;:::-;-1:-1:-1;11958:9:1;;11848:125::o;11978:258::-;12050:1;12060:113;12074:6;12071:1;12068:13;12060:113;;;12150:11;;;12144:18;12131:11;;;12124:39;12096:2;12089:10;12060:113;;;12191:6;12188:1;12185:13;12182:48;;;-1:-1:-1;;12226:1:1;12208:16;;12201:27;11978:258::o;12241:380::-;12320:1;12316:12;;;;12363;;;12384:61;;12438:4;12430:6;12426:17;12416:27;;12384:61;12491:2;12483:6;12480:14;12460:18;12457:38;12454:161;;;12537:10;12532:3;12528:20;12525:1;12518:31;12572:4;12569:1;12562:15;12600:4;12597:1;12590:15;12454:161;;12241:380;;;:::o;12626:135::-;12665:3;-1:-1:-1;;12686:17:1;;12683:43;;;12706:18;;:::i;:::-;-1:-1:-1;12753:1:1;12742:13;;12626:135::o;12766:112::-;12798:1;12824;12814:35;;12829:18;;:::i;:::-;-1:-1:-1;12863:9:1;;12766:112::o;12883:127::-;12944:10;12939:3;12935:20;12932:1;12925:31;12975:4;12972:1;12965:15;12999:4;12996:1;12989:15;13015:127;13076:10;13071:3;13067:20;13064:1;13057:31;13107:4;13104:1;13097:15;13131:4;13128:1;13121:15;13147:127;13208:10;13203:3;13199:20;13196:1;13189:31;13239:4;13236:1;13229:15;13263:4;13260:1;13253:15;13279:127;13340:10;13335:3;13331:20;13328:1;13321:31;13371:4;13368:1;13361:15;13395:4;13392:1;13385:15;13411:131;-1:-1:-1;;;;;;13485:32:1;;13475:43;;13465:71;;13532:1;13529;13522:12
Swarm Source
ipfs://f697b2396c70f1eef320fbbd7f4939a1d066cbbdb4a6e55ce5aabc787e8e0804
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.