ETH Price: $3,701.72 (+3.07%)

Token

ERC-20: Toadkings (TOADKG)
 

Overview

Max Total Supply

114 TOADKG

Holders

95

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
verabera.eth
Balance
1 TOADKG
0x40196d371f7c687b4007af056787c54f82c1efdb
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Toadkings

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-07
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

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);
}

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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);
}

contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IERC721).interfaceId
            || interfaceId == type(IERC721Metadata).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, tokenId.toString()))
            : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

contract Toadkings is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Address for address;

    string private baseURI;
    ILilyPass public LilyPass;
    ICroak public Croak;

    address public dead = 0x000000000000000000000000000000000000dEaD;

    uint256 public maxSupply;
    bool public mintPassActive = false;

    mapping (address => uint256) public balanceKings;
    mapping (uint256 => bool) private _passClaimed;

    constructor(string memory name, string memory symbol, uint256 supply) ERC721(name, symbol) {
        maxSupply = supply;
    }

    modifier toadkingsOwner(uint256 toadkingsId) {
        require(ownerOf(toadkingsId) == msg.sender, "Cannot interact with a Toadkings you do not own");
        _;
    }

    function mintToadking(uint256 passId) public payable {
        uint256 supply = totalSupply();
        uint256 amount = LilyPass.balanceOf(msg.sender);
        require(amount > 0,                                                     "You do not own a Lily Pass");
        require(LilyPass.ownerOf(passId) == msg.sender,                         "You do not own that Lily Pass");
        require(mintPassActive,                                                 "Claim must be active to mint");
        require(_passClaimed[passId] == false,                                  "Toadking for this Lily Pass has already been claimed");
        LilyPass.safeTransferFrom(msg.sender, dead, passId);
        _safeMint(msg.sender, supply + 1);
        _passClaimed[passId] = true;
        balanceKings[msg.sender]++;
    }
    
    function transferFrom(address from, address to, uint256 tokenId) public override {
        if (tokenId < maxSupply) {
            Croak.updateToadkingsReward(from, to);
            balanceKings[from]--;
            balanceKings[to]++;
        }
        ERC721.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override {
        if (tokenId < maxSupply) {
            Croak.updateToadkingsReward(from, to);
            balanceKings[from]--;
            balanceKings[to]++;
        }
        ERC721.safeTransferFrom(from, to, tokenId, data);
    }

    function walletOfOwner(address owner) external view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokensId;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function toggleMintPass() public onlyOwner {
        mintPassActive = !mintPassActive;
    }

    function setCroak(address CroakAddress) external onlyOwner {
        Croak = ICroak(CroakAddress);
    }

    function setLilyPass(address LilyPassAddress) external onlyOwner {
        LilyPass = ILilyPass(LilyPassAddress);
    }
    
    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }
    
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
}

interface ICroak {
    function burn(address _from, uint256 _amount) external;
    function updateToadkingsReward(address _from, address _to) external;
} 

interface ILilyPass {
    function balanceOf(address owner) external view returns (uint256 balance);
    function ownerOf(uint256 tokenId) external view returns (address owner);
    function safeTransferFrom(address from, address to, uint256 tokenId) external;
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"supply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Croak","outputs":[{"internalType":"contract ICroak","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LilyPass","outputs":[{"internalType":"contract ILilyPass","name":"","type":"address"}],"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":"","type":"address"}],"name":"balanceKings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dead","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPassActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"passId","type":"uint256"}],"name":"mintToadking","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"CroakAddress","type":"address"}],"name":"setCroak","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"LilyPassAddress","type":"address"}],"name":"setLilyPass","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":[],"name":"toggleMintPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600e80546001600160a01b03191661dead1790556010805460ff191690553480156200002f57600080fd5b506040516200289338038062002893833981016040819052620000529162000267565b8251839083906200006b906000906020850190620000f4565b50805162000081906001906020840190620000f4565b505050600062000096620000f060201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600f5550620003179050565b3390565b8280546200010290620002da565b90600052602060002090601f01602090048101928262000126576000855562000171565b82601f106200014157805160ff191683800117855562000171565b8280016001018555821562000171579182015b828111156200017157825182559160200191906001019062000154565b506200017f92915062000183565b5090565b5b808211156200017f576000815560010162000184565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001c257600080fd5b81516001600160401b0380821115620001df57620001df6200019a565b604051601f8301601f19908116603f011681019082821181831017156200020a576200020a6200019a565b816040528381526020925086838588010111156200022757600080fd5b600091505b838210156200024b57858201830151818301840152908201906200022c565b838211156200025d5760008385830101525b9695505050505050565b6000806000606084860312156200027d57600080fd5b83516001600160401b03808211156200029557600080fd5b620002a387838801620001b0565b94506020860151915080821115620002ba57600080fd5b50620002c986828701620001b0565b925050604084015190509250925092565b600181811c90821680620002ef57607f821691505b602082108114156200031157634e487b7160e01b600052602260045260246000fd5b50919050565b61256c80620003276000396000f3fe6080604052600436106101e35760003560e01c80636d06b6a511610102578063a398958511610095578063d5abeb0111610064578063d5abeb0114610571578063e985e9c514610587578063f0999af4146105d0578063f2fde38b146105f057600080fd5b8063a3989585146104fc578063a778a9fd14610511578063b88d4fde14610531578063c87b56dd1461055157600080fd5b806380df8df0116100d157806380df8df01461047c5780638da5cb5b146104a957806395d89b41146104c7578063a22cb465146104dc57600080fd5b80636d06b6a51461041a57806370a082311461042d578063715018a61461044d57806379a349121461046257600080fd5b80633ccfd60b1161017a57806346417f941161014957806346417f941461039a5780634f6ccce7146103ba57806355f804b3146103da5780636352211e146103fa57600080fd5b80633ccfd60b1461031857806340f284f41461032d57806342842e0e1461034d578063438b63001461036d57600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102b85780632f745c59146102d857806336cf7c87146102f857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611f3e565b610610565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261063b565b6040516102149190611fb3565b34801561024b57600080fd5b5061025f61025a366004611fc6565b6106cd565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611ff4565b610767565b005b3480156102a557600080fd5b506008545b604051908152602001610214565b3480156102c457600080fd5b506102976102d3366004612020565b61087d565b3480156102e457600080fd5b506102aa6102f3366004611ff4565b61094c565b34801561030457600080fd5b50600e5461025f906001600160a01b031681565b34801561032457600080fd5b506102976109e2565b34801561033957600080fd5b50600d5461025f906001600160a01b031681565b34801561035957600080fd5b50610297610368366004612020565b610a3f565b34801561037957600080fd5b5061038d610388366004612061565b610a5a565b604051610214919061207e565b3480156103a657600080fd5b50600c5461025f906001600160a01b031681565b3480156103c657600080fd5b506102aa6103d5366004611fc6565b610afc565b3480156103e657600080fd5b506102976103f536600461214e565b610b8f565b34801561040657600080fd5b5061025f610415366004611fc6565b610bcc565b610297610428366004611fc6565b610c43565b34801561043957600080fd5b506102aa610448366004612061565b610f63565b34801561045957600080fd5b50610297610fea565b34801561046e57600080fd5b506010546102089060ff1681565b34801561048857600080fd5b506102aa610497366004612061565b60116020526000908152604090205481565b3480156104b557600080fd5b50600a546001600160a01b031661025f565b3480156104d357600080fd5b5061023261105e565b3480156104e857600080fd5b506102976104f7366004612197565b61106d565b34801561050857600080fd5b50610297611132565b34801561051d57600080fd5b5061029761052c366004612061565b611170565b34801561053d57600080fd5b5061029761054c3660046121d5565b6111bc565b34801561055d57600080fd5b5061023261056c366004611fc6565b611292565b34801561057d57600080fd5b506102aa600f5481565b34801561059357600080fd5b506102086105a2366004612255565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105dc57600080fd5b506102976105eb366004612061565b61136d565b3480156105fc57600080fd5b5061029761060b366004612061565b6113b9565b60006001600160e01b0319821663780e9d6360e01b14806106355750610635826114a4565b92915050565b60606000805461064a90612283565b80601f016020809104026020016040519081016040528092919081815260200182805461067690612283565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661074b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077282610bcc565b9050806001600160a01b0316836001600160a01b031614156107e05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610742565b336001600160a01b03821614806107fc57506107fc81336105a2565b61086e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610742565b61087883836114f4565b505050565b600f5481101561094157600d546040516327cd24ab60e01b81526001600160a01b0385811660048301528481166024830152909116906327cd24ab90604401600060405180830381600087803b1580156108d657600080fd5b505af11580156108ea573d6000803e3d6000fd5b505050506001600160a01b0383166000908152601160205260408120805491610912836122d4565b90915550506001600160a01b038216600090815260116020526040812080549161093b836122eb565b91905055505b610878838383611562565b600061095783610f63565b82106109b95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610742565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a0c5760405162461bcd60e51b815260040161074290612306565b6040514790339082156108fc029083906000818181858888f19350505050158015610a3b573d6000803e3d6000fd5b5050565b610878838383604051806020016040528060008152506111bc565b60606000610a6783610f63565b905060008167ffffffffffffffff811115610a8457610a846120c2565b604051908082528060200260200182016040528015610aad578160200160208202803683370190505b50905060005b82811015610af457610ac5858261094c565b828281518110610ad757610ad761233b565b602090810291909101015280610aec816122eb565b915050610ab3565b509392505050565b6000610b0760085490565b8210610b6a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610742565b60088281548110610b7d57610b7d61233b565b90600052602060002001549050919050565b600a546001600160a01b03163314610bb95760405162461bcd60e51b815260040161074290612306565b8051610a3b90600b906020840190611e8c565b6000818152600260205260408120546001600160a01b0316806106355760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610742565b6000610c4e60085490565b600c546040516370a0823160e01b81523360048201529192506000916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610c9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc09190612351565b905060008111610d125760405162461bcd60e51b815260206004820152601a60248201527f596f7520646f206e6f74206f776e2061204c696c7920506173730000000000006044820152606401610742565b600c546040516331a9108f60e11b81526004810185905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610d5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7f919061236a565b6001600160a01b031614610dd55760405162461bcd60e51b815260206004820152601d60248201527f596f7520646f206e6f74206f776e2074686174204c696c7920506173730000006044820152606401610742565b60105460ff16610e275760405162461bcd60e51b815260206004820152601c60248201527f436c61696d206d7573742062652061637469766520746f206d696e74000000006044820152606401610742565b60008381526012602052604090205460ff1615610ea35760405162461bcd60e51b815260206004820152603460248201527f546f61646b696e6720666f722074686973204c696c7920506173732068617320604482015273185b1c9958591e481899595b8818db185a5b595960621b6064820152608401610742565b600c54600e54604051632142170760e11b81523360048201526001600160a01b039182166024820152604481018690529116906342842e0e90606401600060405180830381600087803b158015610ef957600080fd5b505af1158015610f0d573d6000803e3d6000fd5b50505050610f2733836001610f229190612387565b611593565b6000838152601260209081526040808320805460ff1916600117905533835260119091528120805491610f59836122eb565b9190505550505050565b60006001600160a01b038216610fce5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610742565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110145760405162461bcd60e51b815260040161074290612306565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60606001805461064a90612283565b6001600160a01b0382163314156110c65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610742565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461115c5760405162461bcd60e51b815260040161074290612306565b6010805460ff19811660ff90911615179055565b600a546001600160a01b0316331461119a5760405162461bcd60e51b815260040161074290612306565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600f5482101561128057600d546040516327cd24ab60e01b81526001600160a01b0386811660048301528581166024830152909116906327cd24ab90604401600060405180830381600087803b15801561121557600080fd5b505af1158015611229573d6000803e3d6000fd5b505050506001600160a01b0384166000908152601160205260408120805491611251836122d4565b90915550506001600160a01b038316600090815260116020526040812080549161127a836122eb565b91905055505b61128c848484846115ad565b50505050565b6000818152600260205260409020546060906001600160a01b03166113115760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610742565b600061131b6115df565b9050600081511161133b5760405180602001604052806000815250611366565b80611345846115ee565b60405160200161135692919061239f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113975760405162461bcd60e51b815260040161074290612306565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146113e35760405162461bcd60e51b815260040161074290612306565b6001600160a01b0381166114485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610742565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806114d557506001600160e01b03198216635b5e139f60e01b145b8061063557506301ffc9a760e01b6001600160e01b0319831614610635565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061152982610bcc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61156c33826116f4565b6115885760405162461bcd60e51b8152600401610742906123ce565b6108788383836117e7565b610a3b828260405180602001604052806000815250611992565b6115b733836116f4565b6115d35760405162461bcd60e51b8152600401610742906123ce565b61128c848484846119c5565b6060600b805461064a90612283565b6060816116125750506040805180820190915260018152600360fc1b602082015290565b8160005b811561163c5780611626816122eb565b91506116359050600a83612435565b9150611616565b60008167ffffffffffffffff811115611657576116576120c2565b6040519080825280601f01601f191660200182016040528015611681576020820181803683370190505b5090505b84156116ec57611696600183612449565b91506116a3600a86612460565b6116ae906030612387565b60f81b8183815181106116c3576116c361233b565b60200101906001600160f81b031916908160001a9053506116e5600a86612435565b9450611685565b949350505050565b6000818152600260205260408120546001600160a01b031661176d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610742565b600061177883610bcc565b9050806001600160a01b0316846001600160a01b031614806117b35750836001600160a01b03166117a8846106cd565b6001600160a01b0316145b806116ec57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166116ec565b826001600160a01b03166117fa82610bcc565b6001600160a01b0316146118625760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610742565b6001600160a01b0382166118c45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610742565b6118cf8383836119f8565b6118da6000826114f4565b6001600160a01b0383166000908152600360205260408120805460019290611903908490612449565b90915550506001600160a01b0382166000908152600360205260408120805460019290611931908490612387565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61199c8383611ab0565b6119a96000848484611bfe565b6108785760405162461bcd60e51b815260040161074290612474565b6119d08484846117e7565b6119dc84848484611bfe565b61128c5760405162461bcd60e51b815260040161074290612474565b6001600160a01b038316611a5357611a4e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a76565b816001600160a01b0316836001600160a01b031614611a7657611a768382611cfc565b6001600160a01b038216611a8d5761087881611d99565b826001600160a01b0316826001600160a01b031614610878576108788282611e48565b6001600160a01b038216611b065760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610742565b6000818152600260205260409020546001600160a01b031615611b6b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610742565b611b77600083836119f8565b6001600160a01b0382166000908152600360205260408120805460019290611ba0908490612387565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611cf157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c429033908990889088906004016124c6565b6020604051808303816000875af1925050508015611c7d575060408051601f3d908101601f19168201909252611c7a91810190612503565b60015b611cd7573d808015611cab576040519150601f19603f3d011682016040523d82523d6000602084013e611cb0565b606091505b508051611ccf5760405162461bcd60e51b815260040161074290612474565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116ec565b506001949350505050565b60006001611d0984610f63565b611d139190612449565b600083815260076020526040902054909150808214611d66576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611dab90600190612449565b60008381526009602052604081205460088054939450909284908110611dd357611dd361233b565b906000526020600020015490508060088381548110611df457611df461233b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e2c57611e2c612520565b6001900381819060005260206000200160009055905550505050565b6000611e5383610f63565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611e9890612283565b90600052602060002090601f016020900481019282611eba5760008555611f00565b82601f10611ed357805160ff1916838001178555611f00565b82800160010185558215611f00579182015b82811115611f00578251825591602001919060010190611ee5565b50611f0c929150611f10565b5090565b5b80821115611f0c5760008155600101611f11565b6001600160e01b031981168114611f3b57600080fd5b50565b600060208284031215611f5057600080fd5b813561136681611f25565b60005b83811015611f76578181015183820152602001611f5e565b8381111561128c5750506000910152565b60008151808452611f9f816020860160208601611f5b565b601f01601f19169290920160200192915050565b6020815260006113666020830184611f87565b600060208284031215611fd857600080fd5b5035919050565b6001600160a01b0381168114611f3b57600080fd5b6000806040838503121561200757600080fd5b823561201281611fdf565b946020939093013593505050565b60008060006060848603121561203557600080fd5b833561204081611fdf565b9250602084013561205081611fdf565b929592945050506040919091013590565b60006020828403121561207357600080fd5b813561136681611fdf565b6020808252825182820181905260009190848201906040850190845b818110156120b65783518352928401929184019160010161209a565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156120f3576120f36120c2565b604051601f8501601f19908116603f0116810190828211818310171561211b5761211b6120c2565b8160405280935085815286868601111561213457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561216057600080fd5b813567ffffffffffffffff81111561217757600080fd5b8201601f8101841361218857600080fd5b6116ec848235602084016120d8565b600080604083850312156121aa57600080fd5b82356121b581611fdf565b9150602083013580151581146121ca57600080fd5b809150509250929050565b600080600080608085870312156121eb57600080fd5b84356121f681611fdf565b9350602085013561220681611fdf565b925060408501359150606085013567ffffffffffffffff81111561222957600080fd5b8501601f8101871361223a57600080fd5b612249878235602084016120d8565b91505092959194509250565b6000806040838503121561226857600080fd5b823561227381611fdf565b915060208301356121ca81611fdf565b600181811c9082168061229757607f821691505b602082108114156122b857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816122e3576122e36122be565b506000190190565b60006000198214156122ff576122ff6122be565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561236357600080fd5b5051919050565b60006020828403121561237c57600080fd5b815161136681611fdf565b6000821982111561239a5761239a6122be565b500190565b600083516123b1818460208801611f5b565b8351908301906123c5818360208801611f5b565b01949350505050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826124445761244461241f565b500490565b60008282101561245b5761245b6122be565b500390565b60008261246f5761246f61241f565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124f990830184611f87565b9695505050505050565b60006020828403121561251557600080fd5b815161136681611f25565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220e38abbf5a7bf7854faa34df84d0034cef38d5804f8b5adf91c34718ca00ccd0564736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000009546f61646b696e677300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006544f41444b470000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636d06b6a511610102578063a398958511610095578063d5abeb0111610064578063d5abeb0114610571578063e985e9c514610587578063f0999af4146105d0578063f2fde38b146105f057600080fd5b8063a3989585146104fc578063a778a9fd14610511578063b88d4fde14610531578063c87b56dd1461055157600080fd5b806380df8df0116100d157806380df8df01461047c5780638da5cb5b146104a957806395d89b41146104c7578063a22cb465146104dc57600080fd5b80636d06b6a51461041a57806370a082311461042d578063715018a61461044d57806379a349121461046257600080fd5b80633ccfd60b1161017a57806346417f941161014957806346417f941461039a5780634f6ccce7146103ba57806355f804b3146103da5780636352211e146103fa57600080fd5b80633ccfd60b1461031857806340f284f41461032d57806342842e0e1461034d578063438b63001461036d57600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102b85780632f745c59146102d857806336cf7c87146102f857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611f3e565b610610565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261063b565b6040516102149190611fb3565b34801561024b57600080fd5b5061025f61025a366004611fc6565b6106cd565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611ff4565b610767565b005b3480156102a557600080fd5b506008545b604051908152602001610214565b3480156102c457600080fd5b506102976102d3366004612020565b61087d565b3480156102e457600080fd5b506102aa6102f3366004611ff4565b61094c565b34801561030457600080fd5b50600e5461025f906001600160a01b031681565b34801561032457600080fd5b506102976109e2565b34801561033957600080fd5b50600d5461025f906001600160a01b031681565b34801561035957600080fd5b50610297610368366004612020565b610a3f565b34801561037957600080fd5b5061038d610388366004612061565b610a5a565b604051610214919061207e565b3480156103a657600080fd5b50600c5461025f906001600160a01b031681565b3480156103c657600080fd5b506102aa6103d5366004611fc6565b610afc565b3480156103e657600080fd5b506102976103f536600461214e565b610b8f565b34801561040657600080fd5b5061025f610415366004611fc6565b610bcc565b610297610428366004611fc6565b610c43565b34801561043957600080fd5b506102aa610448366004612061565b610f63565b34801561045957600080fd5b50610297610fea565b34801561046e57600080fd5b506010546102089060ff1681565b34801561048857600080fd5b506102aa610497366004612061565b60116020526000908152604090205481565b3480156104b557600080fd5b50600a546001600160a01b031661025f565b3480156104d357600080fd5b5061023261105e565b3480156104e857600080fd5b506102976104f7366004612197565b61106d565b34801561050857600080fd5b50610297611132565b34801561051d57600080fd5b5061029761052c366004612061565b611170565b34801561053d57600080fd5b5061029761054c3660046121d5565b6111bc565b34801561055d57600080fd5b5061023261056c366004611fc6565b611292565b34801561057d57600080fd5b506102aa600f5481565b34801561059357600080fd5b506102086105a2366004612255565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105dc57600080fd5b506102976105eb366004612061565b61136d565b3480156105fc57600080fd5b5061029761060b366004612061565b6113b9565b60006001600160e01b0319821663780e9d6360e01b14806106355750610635826114a4565b92915050565b60606000805461064a90612283565b80601f016020809104026020016040519081016040528092919081815260200182805461067690612283565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661074b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077282610bcc565b9050806001600160a01b0316836001600160a01b031614156107e05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610742565b336001600160a01b03821614806107fc57506107fc81336105a2565b61086e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610742565b61087883836114f4565b505050565b600f5481101561094157600d546040516327cd24ab60e01b81526001600160a01b0385811660048301528481166024830152909116906327cd24ab90604401600060405180830381600087803b1580156108d657600080fd5b505af11580156108ea573d6000803e3d6000fd5b505050506001600160a01b0383166000908152601160205260408120805491610912836122d4565b90915550506001600160a01b038216600090815260116020526040812080549161093b836122eb565b91905055505b610878838383611562565b600061095783610f63565b82106109b95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610742565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a0c5760405162461bcd60e51b815260040161074290612306565b6040514790339082156108fc029083906000818181858888f19350505050158015610a3b573d6000803e3d6000fd5b5050565b610878838383604051806020016040528060008152506111bc565b60606000610a6783610f63565b905060008167ffffffffffffffff811115610a8457610a846120c2565b604051908082528060200260200182016040528015610aad578160200160208202803683370190505b50905060005b82811015610af457610ac5858261094c565b828281518110610ad757610ad761233b565b602090810291909101015280610aec816122eb565b915050610ab3565b509392505050565b6000610b0760085490565b8210610b6a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610742565b60088281548110610b7d57610b7d61233b565b90600052602060002001549050919050565b600a546001600160a01b03163314610bb95760405162461bcd60e51b815260040161074290612306565b8051610a3b90600b906020840190611e8c565b6000818152600260205260408120546001600160a01b0316806106355760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610742565b6000610c4e60085490565b600c546040516370a0823160e01b81523360048201529192506000916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610c9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc09190612351565b905060008111610d125760405162461bcd60e51b815260206004820152601a60248201527f596f7520646f206e6f74206f776e2061204c696c7920506173730000000000006044820152606401610742565b600c546040516331a9108f60e11b81526004810185905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610d5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7f919061236a565b6001600160a01b031614610dd55760405162461bcd60e51b815260206004820152601d60248201527f596f7520646f206e6f74206f776e2074686174204c696c7920506173730000006044820152606401610742565b60105460ff16610e275760405162461bcd60e51b815260206004820152601c60248201527f436c61696d206d7573742062652061637469766520746f206d696e74000000006044820152606401610742565b60008381526012602052604090205460ff1615610ea35760405162461bcd60e51b815260206004820152603460248201527f546f61646b696e6720666f722074686973204c696c7920506173732068617320604482015273185b1c9958591e481899595b8818db185a5b595960621b6064820152608401610742565b600c54600e54604051632142170760e11b81523360048201526001600160a01b039182166024820152604481018690529116906342842e0e90606401600060405180830381600087803b158015610ef957600080fd5b505af1158015610f0d573d6000803e3d6000fd5b50505050610f2733836001610f229190612387565b611593565b6000838152601260209081526040808320805460ff1916600117905533835260119091528120805491610f59836122eb565b9190505550505050565b60006001600160a01b038216610fce5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610742565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110145760405162461bcd60e51b815260040161074290612306565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60606001805461064a90612283565b6001600160a01b0382163314156110c65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610742565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461115c5760405162461bcd60e51b815260040161074290612306565b6010805460ff19811660ff90911615179055565b600a546001600160a01b0316331461119a5760405162461bcd60e51b815260040161074290612306565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600f5482101561128057600d546040516327cd24ab60e01b81526001600160a01b0386811660048301528581166024830152909116906327cd24ab90604401600060405180830381600087803b15801561121557600080fd5b505af1158015611229573d6000803e3d6000fd5b505050506001600160a01b0384166000908152601160205260408120805491611251836122d4565b90915550506001600160a01b038316600090815260116020526040812080549161127a836122eb565b91905055505b61128c848484846115ad565b50505050565b6000818152600260205260409020546060906001600160a01b03166113115760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610742565b600061131b6115df565b9050600081511161133b5760405180602001604052806000815250611366565b80611345846115ee565b60405160200161135692919061239f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113975760405162461bcd60e51b815260040161074290612306565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146113e35760405162461bcd60e51b815260040161074290612306565b6001600160a01b0381166114485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610742565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806114d557506001600160e01b03198216635b5e139f60e01b145b8061063557506301ffc9a760e01b6001600160e01b0319831614610635565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061152982610bcc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61156c33826116f4565b6115885760405162461bcd60e51b8152600401610742906123ce565b6108788383836117e7565b610a3b828260405180602001604052806000815250611992565b6115b733836116f4565b6115d35760405162461bcd60e51b8152600401610742906123ce565b61128c848484846119c5565b6060600b805461064a90612283565b6060816116125750506040805180820190915260018152600360fc1b602082015290565b8160005b811561163c5780611626816122eb565b91506116359050600a83612435565b9150611616565b60008167ffffffffffffffff811115611657576116576120c2565b6040519080825280601f01601f191660200182016040528015611681576020820181803683370190505b5090505b84156116ec57611696600183612449565b91506116a3600a86612460565b6116ae906030612387565b60f81b8183815181106116c3576116c361233b565b60200101906001600160f81b031916908160001a9053506116e5600a86612435565b9450611685565b949350505050565b6000818152600260205260408120546001600160a01b031661176d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610742565b600061177883610bcc565b9050806001600160a01b0316846001600160a01b031614806117b35750836001600160a01b03166117a8846106cd565b6001600160a01b0316145b806116ec57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166116ec565b826001600160a01b03166117fa82610bcc565b6001600160a01b0316146118625760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610742565b6001600160a01b0382166118c45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610742565b6118cf8383836119f8565b6118da6000826114f4565b6001600160a01b0383166000908152600360205260408120805460019290611903908490612449565b90915550506001600160a01b0382166000908152600360205260408120805460019290611931908490612387565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61199c8383611ab0565b6119a96000848484611bfe565b6108785760405162461bcd60e51b815260040161074290612474565b6119d08484846117e7565b6119dc84848484611bfe565b61128c5760405162461bcd60e51b815260040161074290612474565b6001600160a01b038316611a5357611a4e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a76565b816001600160a01b0316836001600160a01b031614611a7657611a768382611cfc565b6001600160a01b038216611a8d5761087881611d99565b826001600160a01b0316826001600160a01b031614610878576108788282611e48565b6001600160a01b038216611b065760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610742565b6000818152600260205260409020546001600160a01b031615611b6b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610742565b611b77600083836119f8565b6001600160a01b0382166000908152600360205260408120805460019290611ba0908490612387565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611cf157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c429033908990889088906004016124c6565b6020604051808303816000875af1925050508015611c7d575060408051601f3d908101601f19168201909252611c7a91810190612503565b60015b611cd7573d808015611cab576040519150601f19603f3d011682016040523d82523d6000602084013e611cb0565b606091505b508051611ccf5760405162461bcd60e51b815260040161074290612474565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116ec565b506001949350505050565b60006001611d0984610f63565b611d139190612449565b600083815260076020526040902054909150808214611d66576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611dab90600190612449565b60008381526009602052604081205460088054939450909284908110611dd357611dd361233b565b906000526020600020015490508060088381548110611df457611df461233b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e2c57611e2c612520565b6001900381819060005260206000200160009055905550505050565b6000611e5383610f63565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611e9890612283565b90600052602060002090601f016020900481019282611eba5760008555611f00565b82601f10611ed357805160ff1916838001178555611f00565b82800160010185558215611f00579182015b82811115611f00578251825591602001919060010190611ee5565b50611f0c929150611f10565b5090565b5b80821115611f0c5760008155600101611f11565b6001600160e01b031981168114611f3b57600080fd5b50565b600060208284031215611f5057600080fd5b813561136681611f25565b60005b83811015611f76578181015183820152602001611f5e565b8381111561128c5750506000910152565b60008151808452611f9f816020860160208601611f5b565b601f01601f19169290920160200192915050565b6020815260006113666020830184611f87565b600060208284031215611fd857600080fd5b5035919050565b6001600160a01b0381168114611f3b57600080fd5b6000806040838503121561200757600080fd5b823561201281611fdf565b946020939093013593505050565b60008060006060848603121561203557600080fd5b833561204081611fdf565b9250602084013561205081611fdf565b929592945050506040919091013590565b60006020828403121561207357600080fd5b813561136681611fdf565b6020808252825182820181905260009190848201906040850190845b818110156120b65783518352928401929184019160010161209a565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156120f3576120f36120c2565b604051601f8501601f19908116603f0116810190828211818310171561211b5761211b6120c2565b8160405280935085815286868601111561213457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561216057600080fd5b813567ffffffffffffffff81111561217757600080fd5b8201601f8101841361218857600080fd5b6116ec848235602084016120d8565b600080604083850312156121aa57600080fd5b82356121b581611fdf565b9150602083013580151581146121ca57600080fd5b809150509250929050565b600080600080608085870312156121eb57600080fd5b84356121f681611fdf565b9350602085013561220681611fdf565b925060408501359150606085013567ffffffffffffffff81111561222957600080fd5b8501601f8101871361223a57600080fd5b612249878235602084016120d8565b91505092959194509250565b6000806040838503121561226857600080fd5b823561227381611fdf565b915060208301356121ca81611fdf565b600181811c9082168061229757607f821691505b602082108114156122b857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816122e3576122e36122be565b506000190190565b60006000198214156122ff576122ff6122be565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561236357600080fd5b5051919050565b60006020828403121561237c57600080fd5b815161136681611fdf565b6000821982111561239a5761239a6122be565b500190565b600083516123b1818460208801611f5b565b8351908301906123c5818360208801611f5b565b01949350505050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826124445761244461241f565b500490565b60008282101561245b5761245b6122be565b500390565b60008261246f5761246f61241f565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124f990830184611f87565b9695505050505050565b60006020828403121561251557600080fd5b815161136681611f25565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220e38abbf5a7bf7854faa34df84d0034cef38d5804f8b5adf91c34718ca00ccd0564736f6c634300080a0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000009546f61646b696e677300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006544f41444b470000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Toadkings
Arg [1] : symbol (string): TOADKG
Arg [2] : supply (uint256): 200

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 546f61646b696e67730000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 544f41444b470000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45270:3325:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39143:237;;;;;;;;;;-1:-1:-1;39143:237:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;39143:237:0;;;;;;;;27662:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29122:221::-;;;;;;;;;;-1:-1:-1;29122:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;29122:221:0;1528:203:1;28659:397:0;;;;;;;;;;-1:-1:-1;28659:397:0;;;;;:::i;:::-;;:::i;:::-;;39796:113;;;;;;;;;;-1:-1:-1;39884:10:0;:17;39796:113;;;2338:25:1;;;2326:2;2311:18;39796:113:0;2192:177:1;46884:305:0;;;;;;;;;;-1:-1:-1;46884:305:0;;;;;:::i;:::-;;:::i;39464:256::-;;;;;;;;;;-1:-1:-1;39464:256:0;;;;;:::i;:::-;;:::i;45481:64::-;;;;;;;;;;-1:-1:-1;45481:64:0;;;;-1:-1:-1;;;;;45481:64:0;;;47892:143;;;;;;;;;;;;;:::i;45453:19::-;;;;;;;;;;-1:-1:-1;45453:19:0;;;;-1:-1:-1;;;;;45453:19:0;;;30388:151;;;;;;;;;;-1:-1:-1;30388:151:0;;;;;:::i;:::-;;:::i;47543:341::-;;;;;;;;;;-1:-1:-1;47543:341:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45421:25::-;;;;;;;;;;-1:-1:-1;45421:25:0;;;;-1:-1:-1;;;;;45421:25:0;;;39986:233;;;;;;;;;;-1:-1:-1;39986:233:0;;;;;:::i;:::-;;:::i;48392:88::-;;;;;;;;;;-1:-1:-1;48392:88:0;;;;;:::i;:::-;;:::i;27356:239::-;;;;;;;;;;-1:-1:-1;27356:239:0;;;;;:::i;:::-;;:::i;46052:820::-;;;;;;:::i;:::-;;:::i;27086:208::-;;;;;;;;;;-1:-1:-1;27086:208:0;;;;;:::i;:::-;;:::i;10175:148::-;;;;;;;;;;;;;:::i;45585:34::-;;;;;;;;;;-1:-1:-1;45585:34:0;;;;;;;;45628:48;;;;;;;;;;-1:-1:-1;45628:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;9524:87;;;;;;;;;;-1:-1:-1;9597:6:0;;-1:-1:-1;;;;;9597:6:0;9524:87;;27831:104;;;;;;;;;;;;;:::i;29415:295::-;;;;;;;;;;-1:-1:-1;29415:295:0;;;;;:::i;:::-;;:::i;48043:94::-;;;;;;;;;;;;;:::i;48259:121::-;;;;;;;;;;-1:-1:-1;48259:121:0;;;;;:::i;:::-;;:::i;47197:338::-;;;;;;;;;;-1:-1:-1;47197:338:0;;;;;:::i;:::-;;:::i;28006:360::-;;;;;;;;;;-1:-1:-1;28006:360:0;;;;;:::i;:::-;;:::i;45554:24::-;;;;;;;;;;;;;;;;29781:164;;;;;;;;;;-1:-1:-1;29781:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29902:25:0;;;29878:4;29902:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29781:164;48145:106;;;;;;;;;;-1:-1:-1;48145:106:0;;;;;:::i;:::-;;:::i;10478:244::-;;;;;;;;;;-1:-1:-1;10478:244:0;;;;;:::i;:::-;;:::i;39143:237::-;39245:4;-1:-1:-1;;;;;;39269:50:0;;-1:-1:-1;;;39269:50:0;;:103;;;39336:36;39360:11;39336:23;:36::i;:::-;39262:110;39143:237;-1:-1:-1;;39143:237:0:o;27662:100::-;27716:13;27749:5;27742:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27662:100;:::o;29122:221::-;29198:7;32451:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32451:16:0;29218:73;;;;-1:-1:-1;;;29218:73:0;;7599:2:1;29218:73:0;;;7581:21:1;7638:2;7618:18;;;7611:30;7677:34;7657:18;;;7650:62;-1:-1:-1;;;7728:18:1;;;7721:42;7780:19;;29218:73:0;;;;;;;;;-1:-1:-1;29311:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29311:24:0;;29122:221::o;28659:397::-;28740:13;28756:23;28771:7;28756:14;:23::i;:::-;28740:39;;28804:5;-1:-1:-1;;;;;28798:11:0;:2;-1:-1:-1;;;;;28798:11:0;;;28790:57;;;;-1:-1:-1;;;28790:57:0;;8012:2:1;28790:57:0;;;7994:21:1;8051:2;8031:18;;;8024:30;8090:34;8070:18;;;8063:62;-1:-1:-1;;;8141:18:1;;;8134:31;8182:19;;28790:57:0;7810:397:1;28790:57:0;8755:10;-1:-1:-1;;;;;28868:21:0;;;;:62;;-1:-1:-1;28893:37:0;28910:5;8755:10;29781:164;:::i;28893:37::-;28860:154;;;;-1:-1:-1;;;28860:154:0;;8414:2:1;28860:154:0;;;8396:21:1;8453:2;8433:18;;;8426:30;8492:34;8472:18;;;8465:62;8563:26;8543:18;;;8536:54;8607:19;;28860:154:0;8212:420:1;28860:154:0;29027:21;29036:2;29040:7;29027:8;:21::i;:::-;28729:327;28659:397;;:::o;46884:305::-;46990:9;;46980:7;:19;46976:157;;;47016:5;;:37;;-1:-1:-1;;;47016:37:0;;-1:-1:-1;;;;;8867:15:1;;;47016:37:0;;;8849:34:1;8919:15;;;8899:18;;;8892:43;47016:5:0;;;;:27;;8784:18:1;;47016:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;47068:18:0;;;;;;:12;:18;;;;;:20;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;47103:16:0;;;;;;:12;:16;;;;;:18;;;;;;:::i;:::-;;;;;;46976:157;47143:38;47163:4;47169:2;47173:7;47143:19;:38::i;39464:256::-;39561:7;39597:23;39614:5;39597:16;:23::i;:::-;39589:5;:31;39581:87;;;;-1:-1:-1;;;39581:87:0;;9561:2:1;39581:87:0;;;9543:21:1;9600:2;9580:18;;;9573:30;9639:34;9619:18;;;9612:62;-1:-1:-1;;;9690:18:1;;;9683:41;9741:19;;39581:87:0;9359:407:1;39581:87:0;-1:-1:-1;;;;;;39686:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39464:256::o;47892:143::-;9597:6;;-1:-1:-1;;;;;9597:6:0;8755:10;9744:23;9736:68;;;;-1:-1:-1;;;9736:68:0;;;;;;;:::i;:::-;47990:37:::1;::::0;47958:21:::1;::::0;47998:10:::1;::::0;47990:37;::::1;;;::::0;47958:21;;47940:15:::1;47990:37:::0;47940:15;47990:37;47958:21;47998:10;47990:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47929:106;47892:143::o:0;30388:151::-;30492:39;30509:4;30515:2;30519:7;30492:39;;;;;;;;;;;;:16;:39::i;47543:341::-;47603:16;47632:18;47653:16;47663:5;47653:9;:16::i;:::-;47632:37;;47682:25;47724:10;47710:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47710:25:0;;47682:53;;47750:9;47746:105;47765:10;47761:1;:14;47746:105;;;47810:29;47830:5;47837:1;47810:19;:29::i;:::-;47796:8;47805:1;47796:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;47777:3;;;;:::i;:::-;;;;47746:105;;;-1:-1:-1;47868:8:0;47543:341;-1:-1:-1;;;47543:341:0:o;39986:233::-;40061:7;40097:30;39884:10;:17;;39796:113;40097:30;40089:5;:38;40081:95;;;;-1:-1:-1;;;40081:95:0;;10466:2:1;40081:95:0;;;10448:21:1;10505:2;10485:18;;;10478:30;10544:34;10524:18;;;10517:62;-1:-1:-1;;;10595:18:1;;;10588:42;10647:19;;40081:95:0;10264:408:1;40081:95:0;40194:10;40205:5;40194:17;;;;;;;;:::i;:::-;;;;;;;;;40187:24;;39986:233;;;:::o;48392:88::-;9597:6;;-1:-1:-1;;;;;9597:6:0;8755:10;9744:23;9736:68;;;;-1:-1:-1;;;9736:68:0;;;;;;;:::i;:::-;48459:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;27356:239::-:0;27428:7;27464:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27464:16:0;27499:19;27491:73;;;;-1:-1:-1;;;27491:73:0;;10879:2:1;27491:73:0;;;10861:21:1;10918:2;10898:18;;;10891:30;10957:34;10937:18;;;10930:62;-1:-1:-1;;;11008:18:1;;;11001:39;11057:19;;27491:73:0;10677:405:1;46052:820:0;46116:14;46133:13;39884:10;:17;;39796:113;46133:13;46174:8;;:30;;-1:-1:-1;;;46174:30:0;;46193:10;46174:30;;;1674:51:1;46116:30:0;;-1:-1:-1;46157:14:0;;-1:-1:-1;;;;;46174:8:0;;;;:18;;1647::1;;46174:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46157:47;;46232:1;46223:6;:10;46215:101;;;;-1:-1:-1;;;46215:101:0;;11478:2:1;46215:101:0;;;11460:21:1;11517:2;11497:18;;;11490:30;11556:28;11536:18;;;11529:56;11602:18;;46215:101:0;11276:350:1;46215:101:0;46335:8;;:24;;-1:-1:-1;;;46335:24:0;;;;;2338:25:1;;;46363:10:0;;-1:-1:-1;;;;;46335:8:0;;:16;;2311:18:1;;46335:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46335:38:0;;46327:104;;;;-1:-1:-1;;;46327:104:0;;12089:2:1;46327:104:0;;;12071:21:1;12128:2;12108:18;;;12101:30;12167:31;12147:18;;;12140:59;12216:18;;46327:104:0;11887:353:1;46327:104:0;46450:14;;;;46442:103;;;;-1:-1:-1;;;46442:103:0;;12447:2:1;46442:103:0;;;12429:21:1;12486:2;12466:18;;;12459:30;12525;12505:18;;;12498:58;12573:18;;46442:103:0;12245:352:1;46442:103:0;46564:20;;;;:12;:20;;;;;;;;:29;46556:127;;;;-1:-1:-1;;;46556:127:0;;12804:2:1;46556:127:0;;;12786:21:1;12843:2;12823:18;;;12816:30;12882:34;12862:18;;;12855:62;-1:-1:-1;;;12933:18:1;;;12926:50;12993:19;;46556:127:0;12602:416:1;46556:127:0;46694:8;;46732:4;;46694:51;;-1:-1:-1;;;46694:51:0;;46720:10;46694:51;;;13263:34:1;-1:-1:-1;;;;;46732:4:0;;;13313:18:1;;;13306:43;13365:18;;;13358:34;;;46694:8:0;;;:25;;13198:18:1;;46694:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46756:33;46766:10;46778:6;46787:1;46778:10;;;;:::i;:::-;46756:9;:33::i;:::-;46800:20;;;;:12;:20;;;;;;;;:27;;-1:-1:-1;;46800:27:0;46823:4;46800:27;;;46851:10;46838:24;;:12;:24;;;;;:26;;;;;;:::i;:::-;;;;;;46105:767;;46052:820;:::o;27086:208::-;27158:7;-1:-1:-1;;;;;27186:19:0;;27178:74;;;;-1:-1:-1;;;27178:74:0;;13738:2:1;27178:74:0;;;13720:21:1;13777:2;13757:18;;;13750:30;13816:34;13796:18;;;13789:62;-1:-1:-1;;;13867:18:1;;;13860:40;13917:19;;27178:74:0;13536:406:1;27178:74:0;-1:-1:-1;;;;;;27270:16:0;;;;;:9;:16;;;;;;;27086:208::o;10175:148::-;9597:6;;-1:-1:-1;;;;;9597:6:0;8755:10;9744:23;9736:68;;;;-1:-1:-1;;;9736:68:0;;;;;;;:::i;:::-;10266:6:::1;::::0;10245:40:::1;::::0;10282:1:::1;::::0;-1:-1:-1;;;;;10266:6:0::1;::::0;10245:40:::1;::::0;10282:1;;10245:40:::1;10296:6;:19:::0;;-1:-1:-1;;;;;;10296:19:0::1;::::0;;10175:148::o;27831:104::-;27887:13;27920:7;27913:14;;;;;:::i;29415:295::-;-1:-1:-1;;;;;29518:24:0;;8755:10;29518:24;;29510:62;;;;-1:-1:-1;;;29510:62:0;;14149:2:1;29510:62:0;;;14131:21:1;14188:2;14168:18;;;14161:30;14227:27;14207:18;;;14200:55;14272:18;;29510:62:0;13947:349:1;29510:62:0;8755:10;29585:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29585:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29585:53:0;;;;;;;;;;29654:48;;540:41:1;;;29585:42:0;;8755:10;29654:48;;513:18:1;29654:48:0;;;;;;;29415:295;;:::o;48043:94::-;9597:6;;-1:-1:-1;;;;;9597:6:0;8755:10;9744:23;9736:68;;;;-1:-1:-1;;;9736:68:0;;;;;;;:::i;:::-;48115:14:::1;::::0;;-1:-1:-1;;48097:32:0;::::1;48115:14;::::0;;::::1;48114:15;48097:32;::::0;;48043:94::o;48259:121::-;9597:6;;-1:-1:-1;;;;;9597:6:0;8755:10;9744:23;9736:68;;;;-1:-1:-1;;;9736:68:0;;;;;;;:::i;:::-;48335:8:::1;:37:::0;;-1:-1:-1;;;;;;48335:37:0::1;-1:-1:-1::0;;;;;48335:37:0;;;::::1;::::0;;;::::1;::::0;;48259:121::o;47197:338::-;47326:9;;47316:7;:19;47312:157;;;47352:5;;:37;;-1:-1:-1;;;47352:37:0;;-1:-1:-1;;;;;8867:15:1;;;47352:37:0;;;8849:34:1;8919:15;;;8899:18;;;8892:43;47352:5:0;;;;:27;;8784:18:1;;47352:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;47404:18:0;;;;;;:12;:18;;;;;:20;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;47439:16:0;;;;;;:12;:16;;;;;:18;;;;;;:::i;:::-;;;;;;47312:157;47479:48;47503:4;47509:2;47513:7;47522:4;47479:23;:48::i;:::-;47197:338;;;;:::o;28006:360::-;32427:4;32451:16;;;:7;:16;;;;;;28079:13;;-1:-1:-1;;;;;32451:16:0;28105:76;;;;-1:-1:-1;;;28105:76:0;;14503:2:1;28105:76:0;;;14485:21:1;14542:2;14522:18;;;14515:30;14581:34;14561:18;;;14554:62;-1:-1:-1;;;14632:18:1;;;14625:45;14687:19;;28105:76:0;14301:411:1;28105:76:0;28194:21;28218:10;:8;:10::i;:::-;28194:34;;28270:1;28252:7;28246:21;:25;:112;;;;;;;;;;;;;;;;;28311:7;28320:18;:7;:16;:18::i;:::-;28294:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28246:112;28239:119;28006:360;-1:-1:-1;;;28006:360:0:o;48145:106::-;9597:6;;-1:-1:-1;;;;;9597:6:0;8755:10;9744:23;9736:68;;;;-1:-1:-1;;;9736:68:0;;;;;;;:::i;:::-;48215:5:::1;:28:::0;;-1:-1:-1;;;;;;48215:28:0::1;-1:-1:-1::0;;;;;48215:28:0;;;::::1;::::0;;;::::1;::::0;;48145:106::o;10478:244::-;9597:6;;-1:-1:-1;;;;;9597:6:0;8755:10;9744:23;9736:68;;;;-1:-1:-1;;;9736:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10567:22:0;::::1;10559:73;;;::::0;-1:-1:-1;;;10559:73:0;;15394:2:1;10559:73:0::1;::::0;::::1;15376:21:1::0;15433:2;15413:18;;;15406:30;15472:34;15452:18;;;15445:62;-1:-1:-1;;;15523:18:1;;;15516:36;15569:19;;10559:73:0::1;15192:402:1::0;10559:73:0::1;10669:6;::::0;10648:38:::1;::::0;-1:-1:-1;;;;;10648:38:0;;::::1;::::0;10669:6:::1;::::0;10648:38:::1;::::0;10669:6:::1;::::0;10648:38:::1;10697:6;:17:::0;;-1:-1:-1;;;;;;10697:17:0::1;-1:-1:-1::0;;;;;10697:17:0;;;::::1;::::0;;;::::1;::::0;;10478:244::o;26730:292::-;26832:4;-1:-1:-1;;;;;;26856:40:0;;-1:-1:-1;;;26856:40:0;;:105;;-1:-1:-1;;;;;;;26913:48:0;;-1:-1:-1;;;26913:48:0;26856:105;:158;;;-1:-1:-1;;;;;;;;;;19936:40:0;;;26978:36;19827:157;36239:174;36314:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36314:29:0;-1:-1:-1;;;;;36314:29:0;;;;;;;;:24;;36368:23;36314:24;36368:14;:23::i;:::-;-1:-1:-1;;;;;36359:46:0;;;;;;;;;;;36239:174;;:::o;30012:305::-;30173:41;8755:10;30206:7;30173:18;:41::i;:::-;30165:103;;;;-1:-1:-1;;;30165:103:0;;;;;;;:::i;:::-;30281:28;30291:4;30297:2;30301:7;30281:9;:28::i;33346:110::-;33422:26;33432:2;33436:7;33422:26;;;;;;;;;;;;:9;:26::i;30610:285::-;30742:41;8755:10;30775:7;30742:18;:41::i;:::-;30734:103;;;;-1:-1:-1;;;30734:103:0;;;;;;;:::i;:::-;30848:39;30862:4;30868:2;30872:7;30881:5;30848:13;:39::i;48492:100::-;48544:13;48577:7;48570:14;;;;;:::i;6885:723::-;6941:13;7162:10;7158:53;;-1:-1:-1;;7189:10:0;;;;;;;;;;;;-1:-1:-1;;;7189:10:0;;;;;6885:723::o;7158:53::-;7236:5;7221:12;7277:78;7284:9;;7277:78;;7310:8;;;;:::i;:::-;;-1:-1:-1;7333:10:0;;-1:-1:-1;7341:2:0;7333:10;;:::i;:::-;;;7277:78;;;7365:19;7397:6;7387:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7387:17:0;;7365:39;;7415:154;7422:10;;7415:154;;7449:11;7459:1;7449:11;;:::i;:::-;;-1:-1:-1;7518:10:0;7526:2;7518:5;:10;:::i;:::-;7505:24;;:2;:24;:::i;:::-;7492:39;;7475:6;7482;7475:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7475:56:0;;;;;;;;-1:-1:-1;7546:11:0;7555:2;7546:11;;:::i;:::-;;;7415:154;;;7593:6;6885:723;-1:-1:-1;;;;6885:723:0:o;32656:348::-;32749:4;32451:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32451:16:0;32766:73;;;;-1:-1:-1;;;32766:73:0;;16723:2:1;32766:73:0;;;16705:21:1;16762:2;16742:18;;;16735:30;16801:34;16781:18;;;16774:62;-1:-1:-1;;;16852:18:1;;;16845:42;16904:19;;32766:73:0;16521:408:1;32766:73:0;32850:13;32866:23;32881:7;32866:14;:23::i;:::-;32850:39;;32919:5;-1:-1:-1;;;;;32908:16:0;:7;-1:-1:-1;;;;;32908:16:0;;:51;;;;32952:7;-1:-1:-1;;;;;32928:31:0;:20;32940:7;32928:11;:20::i;:::-;-1:-1:-1;;;;;32928:31:0;;32908:51;:87;;;-1:-1:-1;;;;;;29902:25:0;;;29878:4;29902:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32963:32;29781:164;35577:544;35702:4;-1:-1:-1;;;;;35675:31:0;:23;35690:7;35675:14;:23::i;:::-;-1:-1:-1;;;;;35675:31:0;;35667:85;;;;-1:-1:-1;;;35667:85:0;;17136:2:1;35667:85:0;;;17118:21:1;17175:2;17155:18;;;17148:30;17214:34;17194:18;;;17187:62;-1:-1:-1;;;17265:18:1;;;17258:39;17314:19;;35667:85:0;16934:405:1;35667:85:0;-1:-1:-1;;;;;35771:16:0;;35763:65;;;;-1:-1:-1;;;35763:65:0;;17546:2:1;35763:65:0;;;17528:21:1;17585:2;17565:18;;;17558:30;17624:34;17604:18;;;17597:62;-1:-1:-1;;;17675:18:1;;;17668:34;17719:19;;35763:65:0;17344:400:1;35763:65:0;35841:39;35862:4;35868:2;35872:7;35841:20;:39::i;:::-;35945:29;35962:1;35966:7;35945:8;:29::i;:::-;-1:-1:-1;;;;;35987:15:0;;;;;;:9;:15;;;;;:20;;36006:1;;35987:15;:20;;36006:1;;35987:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36018:13:0;;;;;;:9;:13;;;;;:18;;36035:1;;36018:13;:18;;36035:1;;36018:18;:::i;:::-;;;;-1:-1:-1;;36047:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36047:21:0;-1:-1:-1;;;;;36047:21:0;;;;;;;;;36086:27;;36047:16;;36086:27;;;;;;;35577:544;;;:::o;33683:250::-;33779:18;33785:2;33789:7;33779:5;:18::i;:::-;33816:54;33847:1;33851:2;33855:7;33864:5;33816:22;:54::i;:::-;33808:117;;;;-1:-1:-1;;;33808:117:0;;;;;;;:::i;31777:272::-;31891:28;31901:4;31907:2;31911:7;31891:9;:28::i;:::-;31938:48;31961:4;31967:2;31971:7;31980:5;31938:22;:48::i;:::-;31930:111;;;;-1:-1:-1;;;31930:111:0;;;;;;;:::i;40832:555::-;-1:-1:-1;;;;;41004:18:0;;41000:187;;41039:40;41071:7;42214:10;:17;;42187:24;;;;:15;:24;;;;;:44;;;42242:24;;;;;;;;;;;;42110:164;41039:40;41000:187;;;41109:2;-1:-1:-1;;;;;41101:10:0;:4;-1:-1:-1;;;;;41101:10:0;;41097:90;;41128:47;41161:4;41167:7;41128:32;:47::i;:::-;-1:-1:-1;;;;;41201:16:0;;41197:183;;41234:45;41271:7;41234:36;:45::i;41197:183::-;41307:4;-1:-1:-1;;;;;41301:10:0;:2;-1:-1:-1;;;;;41301:10:0;;41297:83;;41328:40;41356:2;41360:7;41328:27;:40::i;34269:382::-;-1:-1:-1;;;;;34349:16:0;;34341:61;;;;-1:-1:-1;;;34341:61:0;;18370:2:1;34341:61:0;;;18352:21:1;;;18389:18;;;18382:30;18448:34;18428:18;;;18421:62;18500:18;;34341:61:0;18168:356:1;34341:61:0;32427:4;32451:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32451:16:0;:30;34413:58;;;;-1:-1:-1;;;34413:58:0;;18731:2:1;34413:58:0;;;18713:21:1;18770:2;18750:18;;;18743:30;18809;18789:18;;;18782:58;18857:18;;34413:58:0;18529:352:1;34413:58:0;34484:45;34513:1;34517:2;34521:7;34484:20;:45::i;:::-;-1:-1:-1;;;;;34542:13:0;;;;;;:9;:13;;;;;:18;;34559:1;;34542:13;:18;;34559:1;;34542:18;:::i;:::-;;;;-1:-1:-1;;34571:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34571:21:0;-1:-1:-1;;;;;34571:21:0;;;;;;;;34610:33;;34571:16;;;34610:33;;34571:16;;34610:33;34269:382;;:::o;36978:843::-;37099:4;-1:-1:-1;;;;;37125:13:0;;11706:20;11745:8;37121:693;;37161:72;;-1:-1:-1;;;37161:72:0;;-1:-1:-1;;;;;37161:36:0;;;;;:72;;8755:10;;37212:4;;37218:7;;37227:5;;37161:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37161:72:0;;;;;;;;-1:-1:-1;;37161:72:0;;;;;;;;;;;;:::i;:::-;;;37157:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37407:13:0;;37403:341;;37450:60;;-1:-1:-1;;;37450:60:0;;;;;;;:::i;37403:341::-;37694:6;37688:13;37679:6;37675:2;37671:15;37664:38;37157:602;-1:-1:-1;;;;;;37284:55:0;-1:-1:-1;;;37284:55:0;;-1:-1:-1;37277:62:0;;37121:693;-1:-1:-1;37798:4:0;36978:843;;;;;;:::o;42901:988::-;43167:22;43217:1;43192:22;43209:4;43192:16;:22::i;:::-;:26;;;;:::i;:::-;43229:18;43250:26;;;:17;:26;;;;;;43167:51;;-1:-1:-1;43383:28:0;;;43379:328;;-1:-1:-1;;;;;43450:18:0;;43428:19;43450:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43501:30;;;;;;:44;;;43618:30;;:17;:30;;;;;:43;;;43379:328;-1:-1:-1;43803:26:0;;;;:17;:26;;;;;;;;43796:33;;;-1:-1:-1;;;;;43847:18:0;;;;;:12;:18;;;;;:34;;;;;;;43840:41;42901:988::o;44184:1079::-;44462:10;:17;44437:22;;44462:21;;44482:1;;44462:21;:::i;:::-;44494:18;44515:24;;;:15;:24;;;;;;44888:10;:26;;44437:46;;-1:-1:-1;44515:24:0;;44437:46;;44888:26;;;;;;:::i;:::-;;;;;;;;;44866:48;;44952:11;44927:10;44938;44927:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45032:28;;;:15;:28;;;;;;;:41;;;45204:24;;;;;45197:31;45239:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44255:1008;;;44184:1079;:::o;41688:221::-;41773:14;41790:20;41807:2;41790:16;:20::i;:::-;-1:-1:-1;;;;;41821:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41866:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41688:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;68:71;14:131;:::o;150:245::-;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2374:456::-;2451:6;2459;2467;2520:2;2508:9;2499:7;2495:23;2491:32;2488:52;;;2536:1;2533;2526:12;2488:52;2575:9;2562:23;2594:31;2619:5;2594:31;:::i;:::-;2644:5;-1:-1:-1;2701:2:1;2686:18;;2673:32;2714:33;2673:32;2714:33;:::i;:::-;2374:456;;2766:7;;-1:-1:-1;;;2820:2:1;2805:18;;;;2792:32;;2374:456::o;3058:247::-;3117:6;3170:2;3158:9;3149:7;3145:23;3141:32;3138:52;;;3186:1;3183;3176:12;3138:52;3225:9;3212:23;3244:31;3269:5;3244:31;:::i;3310:632::-;3481:2;3533:21;;;3603:13;;3506:18;;;3625:22;;;3452:4;;3481:2;3704:15;;;;3678:2;3663:18;;;3452:4;3747:169;3761:6;3758:1;3755:13;3747:169;;;3822:13;;3810:26;;3891:15;;;;3856:12;;;;3783:1;3776:9;3747:169;;;-1:-1:-1;3933:3:1;;3310:632;-1:-1:-1;;;;;;3310:632:1:o;4173:127::-;4234:10;4229:3;4225:20;4222:1;4215:31;4265:4;4262:1;4255:15;4289:4;4286:1;4279:15;4305:632;4370:5;4400:18;4441:2;4433:6;4430:14;4427:40;;;4447:18;;:::i;:::-;4522:2;4516:9;4490:2;4576:15;;-1:-1:-1;;4572:24:1;;;4598:2;4568:33;4564:42;4552:55;;;4622:18;;;4642:22;;;4619:46;4616:72;;;4668:18;;:::i;:::-;4708:10;4704:2;4697:22;4737:6;4728:15;;4767:6;4759;4752:22;4807:3;4798:6;4793:3;4789:16;4786:25;4783:45;;;4824:1;4821;4814:12;4783:45;4874:6;4869:3;4862:4;4854:6;4850:17;4837:44;4929:1;4922:4;4913:6;4905;4901:19;4897:30;4890:41;;;;4305:632;;;;;:::o;4942:451::-;5011:6;5064:2;5052:9;5043:7;5039:23;5035:32;5032:52;;;5080:1;5077;5070:12;5032:52;5120:9;5107:23;5153:18;5145:6;5142:30;5139:50;;;5185:1;5182;5175:12;5139:50;5208:22;;5261:4;5253:13;;5249:27;-1:-1:-1;5239:55:1;;5290:1;5287;5280:12;5239:55;5313:74;5379:7;5374:2;5361:16;5356:2;5352;5348:11;5313:74;:::i;5398:416::-;5463:6;5471;5524:2;5512:9;5503:7;5499:23;5495:32;5492:52;;;5540:1;5537;5530:12;5492:52;5579:9;5566:23;5598:31;5623:5;5598:31;:::i;:::-;5648:5;-1:-1:-1;5705:2:1;5690:18;;5677:32;5747:15;;5740:23;5728:36;;5718:64;;5778:1;5775;5768:12;5718:64;5801:7;5791:17;;;5398:416;;;;;:::o;5819:795::-;5914:6;5922;5930;5938;5991:3;5979:9;5970:7;5966:23;5962:33;5959:53;;;6008:1;6005;5998:12;5959:53;6047:9;6034:23;6066:31;6091:5;6066:31;:::i;:::-;6116:5;-1:-1:-1;6173:2:1;6158:18;;6145:32;6186:33;6145:32;6186:33;:::i;:::-;6238:7;-1:-1:-1;6292:2:1;6277:18;;6264:32;;-1:-1:-1;6347:2:1;6332:18;;6319:32;6374:18;6363:30;;6360:50;;;6406:1;6403;6396:12;6360:50;6429:22;;6482:4;6474:13;;6470:27;-1:-1:-1;6460:55:1;;6511:1;6508;6501:12;6460:55;6534:74;6600:7;6595:2;6582:16;6577:2;6573;6569:11;6534:74;:::i;:::-;6524:84;;;5819:795;;;;;;;:::o;6619:388::-;6687:6;6695;6748:2;6736:9;6727:7;6723:23;6719:32;6716:52;;;6764:1;6761;6754:12;6716:52;6803:9;6790:23;6822:31;6847:5;6822:31;:::i;:::-;6872:5;-1:-1:-1;6929:2:1;6914:18;;6901:32;6942:33;6901:32;6942:33;:::i;7012:380::-;7091:1;7087:12;;;;7134;;;7155:61;;7209:4;7201:6;7197:17;7187:27;;7155:61;7262:2;7254:6;7251:14;7231:18;7228:38;7225:161;;;7308:10;7303:3;7299:20;7296:1;7289:31;7343:4;7340:1;7333:15;7371:4;7368:1;7361:15;7225:161;;7012:380;;;:::o;8946:127::-;9007:10;9002:3;8998:20;8995:1;8988:31;9038:4;9035:1;9028:15;9062:4;9059:1;9052:15;9078:136;9117:3;9145:5;9135:39;;9154:18;;:::i;:::-;-1:-1:-1;;;9190:18:1;;9078:136::o;9219:135::-;9258:3;-1:-1:-1;;9279:17:1;;9276:43;;;9299:18;;:::i;:::-;-1:-1:-1;9346:1:1;9335:13;;9219:135::o;9771:356::-;9973:2;9955:21;;;9992:18;;;9985:30;10051:34;10046:2;10031:18;;10024:62;10118:2;10103:18;;9771:356::o;10132:127::-;10193:10;10188:3;10184:20;10181:1;10174:31;10224:4;10221:1;10214:15;10248:4;10245:1;10238:15;11087:184;11157:6;11210:2;11198:9;11189:7;11185:23;11181:32;11178:52;;;11226:1;11223;11216:12;11178:52;-1:-1:-1;11249:16:1;;11087:184;-1:-1:-1;11087:184:1:o;11631:251::-;11701:6;11754:2;11742:9;11733:7;11729:23;11725:32;11722:52;;;11770:1;11767;11760:12;11722:52;11802:9;11796:16;11821:31;11846:5;11821:31;:::i;13403:128::-;13443:3;13474:1;13470:6;13467:1;13464:13;13461:39;;;13480:18;;:::i;:::-;-1:-1:-1;13516:9:1;;13403:128::o;14717:470::-;14896:3;14934:6;14928:13;14950:53;14996:6;14991:3;14984:4;14976:6;14972:17;14950:53;:::i;:::-;15066:13;;15025:16;;;;15088:57;15066:13;15025:16;15122:4;15110:17;;15088:57;:::i;:::-;15161:20;;14717:470;-1:-1:-1;;;;14717:470:1:o;15599:413::-;15801:2;15783:21;;;15840:2;15820:18;;;15813:30;15879:34;15874:2;15859:18;;15852:62;-1:-1:-1;;;15945:2:1;15930:18;;15923:47;16002:3;15987:19;;15599:413::o;16017:127::-;16078:10;16073:3;16069:20;16066:1;16059:31;16109:4;16106:1;16099:15;16133:4;16130:1;16123:15;16149:120;16189:1;16215;16205:35;;16220:18;;:::i;:::-;-1:-1:-1;16254:9:1;;16149:120::o;16274:125::-;16314:4;16342:1;16339;16336:8;16333:34;;;16347:18;;:::i;:::-;-1:-1:-1;16384:9:1;;16274:125::o;16404:112::-;16436:1;16462;16452:35;;16467:18;;:::i;:::-;-1:-1:-1;16501:9:1;;16404:112::o;17749:414::-;17951:2;17933:21;;;17990:2;17970:18;;;17963:30;18029:34;18024:2;18009:18;;18002:62;-1:-1:-1;;;18095:2:1;18080:18;;18073:48;18153:3;18138:19;;17749:414::o;18886:489::-;-1:-1:-1;;;;;19155:15:1;;;19137:34;;19207:15;;19202:2;19187:18;;19180:43;19254:2;19239:18;;19232:34;;;19302:3;19297:2;19282:18;;19275:31;;;19080:4;;19323:46;;19349:19;;19341:6;19323:46;:::i;:::-;19315:54;18886:489;-1:-1:-1;;;;;;18886:489:1:o;19380:249::-;19449:6;19502:2;19490:9;19481:7;19477:23;19473:32;19470:52;;;19518:1;19515;19508:12;19470:52;19550:9;19544:16;19569:30;19593:5;19569:30;:::i;19634:127::-;19695:10;19690:3;19686:20;19683:1;19676:31;19726:4;19723:1;19716:15;19750:4;19747:1;19740:15

Swarm Source

ipfs://e38abbf5a7bf7854faa34df84d0034cef38d5804f8b5adf91c34718ca00ccd05
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.