ETH Price: $3,355.83 (-2.85%)
Gas: 2 Gwei

Token

Extinct Dodo (EDODO)
 

Overview

Max Total Supply

106 EDODO

Holders

47

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
kadue.eth
Balance
1 EDODO
0xb7b104178014f26739955526354f6e0ea9ccb19b
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:
ExtinctDodo

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-19
*/

// SPDX-License-Identifier: MIT

/**
 * https://twitter.com/NftExtinction
 */

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


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

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

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

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

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

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

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

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

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

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

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

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




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





/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}



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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}




/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}



/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}





/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}




/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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




/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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





/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

contract ExtinctDodo is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string _baseTokenURI;
    uint256 public _reserved = 100;
    bool public _paused = true;

    // withdraw addresses
    address t1 = 0x866B48E4b94c825030f09cd100444edF92CC50eb;

    constructor(string memory baseURI) ERC721("Extinct Dodo", "EDODO")  {
        setBaseURI(baseURI);
    }

    function getNFTPrice() public view returns (uint256) {
        uint currentSupply = totalSupply();
        if (currentSupply >= 9000) {
            return 0.07 ether;
        } else if (currentSupply >= 7000) {
            return 0.06 ether;
        } else if (currentSupply >= 4000) {
            return 0.05 ether;
        } else if (currentSupply >= 1000) {
            return 0.04 ether;
        } else {
            return 0.03 ether;
        }
   }

    function mint(uint256 num) public payable {
        uint256 supply = totalSupply();
        require(!_paused,                         "Sale paused" );
        require(num < 31,                         "You can mint a maximum of 30" );
        require(supply + num < 10000 - _reserved, "Exceeds maximum supply" );
        require(msg.value >= getNFTPrice() * num,"Ether sent is not correct" );

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function walletOfOwner(address _owner) public 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 _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function giveAway(address _to, uint256 _amount) external onlyOwner() {
        require( _amount <= _reserved, "Exceeds reserved supply" );
        uint256 supply = totalSupply();
        for(uint256 i; i < _amount; i++){
            _safeMint( _to, supply + i );
        }
        _reserved -= _amount;
    }

    function pause(bool val) public onlyOwner {
        _paused = val;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 _each = address(this).balance;
        require(payable(t1).send(_each));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526064600c55600d80546001600160a81b03191674866b48e4b94c825030f09cd100444edf92cc50eb011790553480156200003d57600080fd5b506040516200258b3803806200258b833981016040819052620000609162000280565b604080518082018252600c81526b457874696e637420446f646f60a01b60208083019182528351808501909452600584526445444f444f60d81b908401528151919291620000b191600091620001c4565b508051620000c7906001906020840190620001c4565b505050620000e4620000de620000f660201b60201c565b620000fa565b620000ef816200014c565b5062000399565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001c090600b906020840190620001c4565b5050565b828054620001d2906200035c565b90600052602060002090601f016020900481019282620001f6576000855562000241565b82601f106200021157805160ff191683800117855562000241565b8280016001018555821562000241579182015b828111156200024157825182559160200191906001019062000224565b506200024f92915062000253565b5090565b5b808211156200024f576000815560010162000254565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200029457600080fd5b82516001600160401b0380821115620002ac57600080fd5b818501915085601f830112620002c157600080fd5b815181811115620002d657620002d66200026a565b604051601f8201601f19908116603f011681019083821181831017156200030157620003016200026a565b8160405282815288868487010111156200031a57600080fd5b600093505b828410156200033e57848401860151818501870152928501926200031f565b82841115620003505760008684830101525b98975050505050505050565b600181811c908216806200037157607f821691505b602082108114156200039357634e487b7160e01b600052602260045260246000fd5b50919050565b6121e280620003a96000396000f3fe6080604052600436106101b75760003560e01c80636aaa571d116100ec578063a22cb4651161008a578063ca80014411610064578063ca800144146104ac578063e985e9c5146104cc578063f2fde38b14610515578063fb107a4f1461053557600080fd5b8063a22cb4651461044c578063b88d4fde1461046c578063c87b56dd1461048c57600080fd5b8063853828b6116100c6578063853828b6146103fe5780638da5cb5b1461040657806395d89b4114610424578063a0712d681461043957600080fd5b80636aaa571d146103b357806370a08231146103c9578063715018a6146103e957600080fd5b806323b872dd11610159578063438b630011610133578063438b6300146103265780634f6ccce71461035357806355f804b3146103735780636352211e1461039357600080fd5b806323b872dd146102c65780632f745c59146102e657806342842e0e1461030657600080fd5b8063081812fc11610195578063081812fc14610235578063095ea7b31461026d57806316c61ccc1461028d57806318160ddd146102a757600080fd5b806301ffc9a7146101bc57806302329a29146101f157806306fdde0314610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611bcc565b61054a565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061021161020c366004611bfe565b610575565b005b34801561021f57600080fd5b506102286105bb565b6040516101e89190611c71565b34801561024157600080fd5b50610255610250366004611c84565b61064d565b6040516001600160a01b0390911681526020016101e8565b34801561027957600080fd5b50610211610288366004611cb4565b6106e2565b34801561029957600080fd5b50600d546101dc9060ff1681565b3480156102b357600080fd5b506008545b6040519081526020016101e8565b3480156102d257600080fd5b506102116102e1366004611cde565b6107f8565b3480156102f257600080fd5b506102b8610301366004611cb4565b610829565b34801561031257600080fd5b50610211610321366004611cde565b6108bf565b34801561033257600080fd5b50610346610341366004611d1a565b6108da565b6040516101e89190611d35565b34801561035f57600080fd5b506102b861036e366004611c84565b61097c565b34801561037f57600080fd5b5061021161038e366004611e05565b610a0f565b34801561039f57600080fd5b506102556103ae366004611c84565b610a50565b3480156103bf57600080fd5b506102b8600c5481565b3480156103d557600080fd5b506102b86103e4366004611d1a565b610ac7565b3480156103f557600080fd5b50610211610b4e565b610211610b84565b34801561041257600080fd5b50600a546001600160a01b0316610255565b34801561043057600080fd5b50610228610be8565b610211610447366004611c84565b610bf7565b34801561045857600080fd5b50610211610467366004611e4e565b610d87565b34801561047857600080fd5b50610211610487366004611e81565b610e4c565b34801561049857600080fd5b506102286104a7366004611c84565b610e84565b3480156104b857600080fd5b506102116104c7366004611cb4565b610f5f565b3480156104d857600080fd5b506101dc6104e7366004611efd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561052157600080fd5b50610211610530366004611d1a565b611030565b34801561054157600080fd5b506102b86110c8565b60006001600160e01b0319821663780e9d6360e01b148061056f575061056f82611144565b92915050565b600a546001600160a01b031633146105a85760405162461bcd60e51b815260040161059f90611f27565b60405180910390fd5b600d805460ff1916911515919091179055565b6060600080546105ca90611f5c565b80601f01602080910402602001604051908101604052809291908181526020018280546105f690611f5c565b80156106435780601f1061061857610100808354040283529160200191610643565b820191906000526020600020905b81548152906001019060200180831161062657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106c65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161059f565b506000908152600460205260409020546001600160a01b031690565b60006106ed82610a50565b9050806001600160a01b0316836001600160a01b0316141561075b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161059f565b336001600160a01b0382161480610777575061077781336104e7565b6107e95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161059f565b6107f38383611194565b505050565b6108023382611202565b61081e5760405162461bcd60e51b815260040161059f90611f97565b6107f38383836112f9565b600061083483610ac7565b82106108965760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161059f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107f383838360405180602001604052806000815250610e4c565b606060006108e783610ac7565b905060008167ffffffffffffffff81111561090457610904611d79565b60405190808252806020026020018201604052801561092d578160200160208202803683370190505b50905060005b82811015610974576109458582610829565b82828151811061095757610957611fe8565b60209081029190910101528061096c81612014565b915050610933565b509392505050565b600061098760085490565b82106109ea5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161059f565b600882815481106109fd576109fd611fe8565b90600052602060002001549050919050565b600a546001600160a01b03163314610a395760405162461bcd60e51b815260040161059f90611f27565b8051610a4c90600b906020840190611b26565b5050565b6000818152600260205260408120546001600160a01b03168061056f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161059f565b60006001600160a01b038216610b325760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161059f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b785760405162461bcd60e51b815260040161059f90611f27565b610b8260006114a4565b565b600a546001600160a01b03163314610bae5760405162461bcd60e51b815260040161059f90611f27565b600d54604051479161010090046001600160a01b0316906108fc8315029083906000818181858888f19350505050610be557600080fd5b50565b6060600180546105ca90611f5c565b6000610c0260085490565b600d5490915060ff1615610c465760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b604482015260640161059f565b601f8210610c965760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e206d696e742061206d6178696d756d206f6620333000000000604482015260640161059f565b600c54610ca59061271061202f565b610caf8383612046565b10610cf55760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b604482015260640161059f565b81610cfe6110c8565b610d08919061205e565b341015610d575760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f727265637400000000000000604482015260640161059f565b60005b828110156107f357610d7533610d708385612046565b6114f6565b80610d7f81612014565b915050610d5a565b6001600160a01b038216331415610de05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161059f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e563383611202565b610e725760405162461bcd60e51b815260040161059f90611f97565b610e7e84848484611510565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f035760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161059f565b6000610f0d611543565b90506000815111610f2d5760405180602001604052806000815250610f58565b80610f3784611552565b604051602001610f4892919061207d565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610f895760405162461bcd60e51b815260040161059f90611f27565b600c54811115610fdb5760405162461bcd60e51b815260206004820152601760248201527f4578636565647320726573657276656420737570706c79000000000000000000604482015260640161059f565b6000610fe660085490565b905060005b828110156110135761100184610d708385612046565b8061100b81612014565b915050610feb565b5081600c6000828254611026919061202f565b9091555050505050565b600a546001600160a01b0316331461105a5760405162461bcd60e51b815260040161059f90611f27565b6001600160a01b0381166110bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161059f565b610be5816114a4565b6000806110d460085490565b905061232881106110ed5766f8b0a10e47000091505090565b611b5881106111045766d529ae9e86000091505090565b610fa0811061111b5766b1a2bc2ec5000091505090565b6103e8811061113257668e1bc9bf04000091505090565b666a94d74f43000091505090565b5090565b60006001600160e01b031982166380ac58cd60e01b148061117557506001600160e01b03198216635b5e139f60e01b145b8061056f57506301ffc9a760e01b6001600160e01b031983161461056f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111c982610a50565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661127b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161059f565b600061128683610a50565b9050806001600160a01b0316846001600160a01b031614806112c15750836001600160a01b03166112b68461064d565b6001600160a01b0316145b806112f157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661130c82610a50565b6001600160a01b0316146113745760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161059f565b6001600160a01b0382166113d65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161059f565b6113e1838383611650565b6113ec600082611194565b6001600160a01b038316600090815260036020526040812080546001929061141590849061202f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611443908490612046565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a4c828260405180602001604052806000815250611708565b61151b8484846112f9565b6115278484848461173b565b610e7e5760405162461bcd60e51b815260040161059f906120ac565b6060600b80546105ca90611f5c565b6060816115765750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115a0578061158a81612014565b91506115999050600a83612114565b915061157a565b60008167ffffffffffffffff8111156115bb576115bb611d79565b6040519080825280601f01601f1916602001820160405280156115e5576020820181803683370190505b5090505b84156112f1576115fa60018361202f565b9150611607600a86612128565b611612906030612046565b60f81b81838151811061162757611627611fe8565b60200101906001600160f81b031916908160001a905350611649600a86612114565b94506115e9565b6001600160a01b0383166116ab576116a681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6116ce565b816001600160a01b0316836001600160a01b0316146116ce576116ce8382611848565b6001600160a01b0382166116e5576107f3816118e5565b826001600160a01b0316826001600160a01b0316146107f3576107f38282611994565b61171283836119d8565b61171f600084848461173b565b6107f35760405162461bcd60e51b815260040161059f906120ac565b60006001600160a01b0384163b1561183d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061177f90339089908890889060040161213c565b602060405180830381600087803b15801561179957600080fd5b505af19250505080156117c9575060408051601f3d908101601f191682019092526117c691810190612179565b60015b611823573d8080156117f7576040519150601f19603f3d011682016040523d82523d6000602084013e6117fc565b606091505b50805161181b5760405162461bcd60e51b815260040161059f906120ac565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112f1565b506001949350505050565b6000600161185584610ac7565b61185f919061202f565b6000838152600760205260409020549091508082146118b2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906118f79060019061202f565b6000838152600960205260408120546008805493945090928490811061191f5761191f611fe8565b90600052602060002001549050806008838154811061194057611940611fe8565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061197857611978612196565b6001900381819060005260206000200160009055905550505050565b600061199f83610ac7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a2e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161059f565b6000818152600260205260409020546001600160a01b031615611a935760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161059f565b611a9f60008383611650565b6001600160a01b0382166000908152600360205260408120805460019290611ac8908490612046565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b3290611f5c565b90600052602060002090601f016020900481019282611b545760008555611b9a565b82601f10611b6d57805160ff1916838001178555611b9a565b82800160010185558215611b9a579182015b82811115611b9a578251825591602001919060010190611b7f565b506111409291505b808211156111405760008155600101611ba2565b6001600160e01b031981168114610be557600080fd5b600060208284031215611bde57600080fd5b8135610f5881611bb6565b80358015158114611bf957600080fd5b919050565b600060208284031215611c1057600080fd5b610f5882611be9565b60005b83811015611c34578181015183820152602001611c1c565b83811115610e7e5750506000910152565b60008151808452611c5d816020860160208601611c19565b601f01601f19169290920160200192915050565b602081526000610f586020830184611c45565b600060208284031215611c9657600080fd5b5035919050565b80356001600160a01b0381168114611bf957600080fd5b60008060408385031215611cc757600080fd5b611cd083611c9d565b946020939093013593505050565b600080600060608486031215611cf357600080fd5b611cfc84611c9d565b9250611d0a60208501611c9d565b9150604084013590509250925092565b600060208284031215611d2c57600080fd5b610f5882611c9d565b6020808252825182820181905260009190848201906040850190845b81811015611d6d57835183529284019291840191600101611d51565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611daa57611daa611d79565b604051601f8501601f19908116603f01168101908282118183101715611dd257611dd2611d79565b81604052809350858152868686011115611deb57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e1757600080fd5b813567ffffffffffffffff811115611e2e57600080fd5b8201601f81018413611e3f57600080fd5b6112f184823560208401611d8f565b60008060408385031215611e6157600080fd5b611e6a83611c9d565b9150611e7860208401611be9565b90509250929050565b60008060008060808587031215611e9757600080fd5b611ea085611c9d565b9350611eae60208601611c9d565b925060408501359150606085013567ffffffffffffffff811115611ed157600080fd5b8501601f81018713611ee257600080fd5b611ef187823560208401611d8f565b91505092959194509250565b60008060408385031215611f1057600080fd5b611f1983611c9d565b9150611e7860208401611c9d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611f7057607f821691505b60208210811415611f9157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561202857612028611ffe565b5060010190565b60008282101561204157612041611ffe565b500390565b6000821982111561205957612059611ffe565b500190565b600081600019048311821515161561207857612078611ffe565b500290565b6000835161208f818460208801611c19565b8351908301906120a3818360208801611c19565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612123576121236120fe565b500490565b600082612137576121376120fe565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061216f90830184611c45565b9695505050505050565b60006020828403121561218b57600080fd5b8151610f5881611bb6565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220d4fcc3091c4c529804d531592c6008a7fb1141932c1ea6b1339d4bf33cedb33564736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636aaa571d116100ec578063a22cb4651161008a578063ca80014411610064578063ca800144146104ac578063e985e9c5146104cc578063f2fde38b14610515578063fb107a4f1461053557600080fd5b8063a22cb4651461044c578063b88d4fde1461046c578063c87b56dd1461048c57600080fd5b8063853828b6116100c6578063853828b6146103fe5780638da5cb5b1461040657806395d89b4114610424578063a0712d681461043957600080fd5b80636aaa571d146103b357806370a08231146103c9578063715018a6146103e957600080fd5b806323b872dd11610159578063438b630011610133578063438b6300146103265780634f6ccce71461035357806355f804b3146103735780636352211e1461039357600080fd5b806323b872dd146102c65780632f745c59146102e657806342842e0e1461030657600080fd5b8063081812fc11610195578063081812fc14610235578063095ea7b31461026d57806316c61ccc1461028d57806318160ddd146102a757600080fd5b806301ffc9a7146101bc57806302329a29146101f157806306fdde0314610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611bcc565b61054a565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061021161020c366004611bfe565b610575565b005b34801561021f57600080fd5b506102286105bb565b6040516101e89190611c71565b34801561024157600080fd5b50610255610250366004611c84565b61064d565b6040516001600160a01b0390911681526020016101e8565b34801561027957600080fd5b50610211610288366004611cb4565b6106e2565b34801561029957600080fd5b50600d546101dc9060ff1681565b3480156102b357600080fd5b506008545b6040519081526020016101e8565b3480156102d257600080fd5b506102116102e1366004611cde565b6107f8565b3480156102f257600080fd5b506102b8610301366004611cb4565b610829565b34801561031257600080fd5b50610211610321366004611cde565b6108bf565b34801561033257600080fd5b50610346610341366004611d1a565b6108da565b6040516101e89190611d35565b34801561035f57600080fd5b506102b861036e366004611c84565b61097c565b34801561037f57600080fd5b5061021161038e366004611e05565b610a0f565b34801561039f57600080fd5b506102556103ae366004611c84565b610a50565b3480156103bf57600080fd5b506102b8600c5481565b3480156103d557600080fd5b506102b86103e4366004611d1a565b610ac7565b3480156103f557600080fd5b50610211610b4e565b610211610b84565b34801561041257600080fd5b50600a546001600160a01b0316610255565b34801561043057600080fd5b50610228610be8565b610211610447366004611c84565b610bf7565b34801561045857600080fd5b50610211610467366004611e4e565b610d87565b34801561047857600080fd5b50610211610487366004611e81565b610e4c565b34801561049857600080fd5b506102286104a7366004611c84565b610e84565b3480156104b857600080fd5b506102116104c7366004611cb4565b610f5f565b3480156104d857600080fd5b506101dc6104e7366004611efd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561052157600080fd5b50610211610530366004611d1a565b611030565b34801561054157600080fd5b506102b86110c8565b60006001600160e01b0319821663780e9d6360e01b148061056f575061056f82611144565b92915050565b600a546001600160a01b031633146105a85760405162461bcd60e51b815260040161059f90611f27565b60405180910390fd5b600d805460ff1916911515919091179055565b6060600080546105ca90611f5c565b80601f01602080910402602001604051908101604052809291908181526020018280546105f690611f5c565b80156106435780601f1061061857610100808354040283529160200191610643565b820191906000526020600020905b81548152906001019060200180831161062657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106c65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161059f565b506000908152600460205260409020546001600160a01b031690565b60006106ed82610a50565b9050806001600160a01b0316836001600160a01b0316141561075b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161059f565b336001600160a01b0382161480610777575061077781336104e7565b6107e95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161059f565b6107f38383611194565b505050565b6108023382611202565b61081e5760405162461bcd60e51b815260040161059f90611f97565b6107f38383836112f9565b600061083483610ac7565b82106108965760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161059f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107f383838360405180602001604052806000815250610e4c565b606060006108e783610ac7565b905060008167ffffffffffffffff81111561090457610904611d79565b60405190808252806020026020018201604052801561092d578160200160208202803683370190505b50905060005b82811015610974576109458582610829565b82828151811061095757610957611fe8565b60209081029190910101528061096c81612014565b915050610933565b509392505050565b600061098760085490565b82106109ea5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161059f565b600882815481106109fd576109fd611fe8565b90600052602060002001549050919050565b600a546001600160a01b03163314610a395760405162461bcd60e51b815260040161059f90611f27565b8051610a4c90600b906020840190611b26565b5050565b6000818152600260205260408120546001600160a01b03168061056f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161059f565b60006001600160a01b038216610b325760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161059f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b785760405162461bcd60e51b815260040161059f90611f27565b610b8260006114a4565b565b600a546001600160a01b03163314610bae5760405162461bcd60e51b815260040161059f90611f27565b600d54604051479161010090046001600160a01b0316906108fc8315029083906000818181858888f19350505050610be557600080fd5b50565b6060600180546105ca90611f5c565b6000610c0260085490565b600d5490915060ff1615610c465760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b604482015260640161059f565b601f8210610c965760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e206d696e742061206d6178696d756d206f6620333000000000604482015260640161059f565b600c54610ca59061271061202f565b610caf8383612046565b10610cf55760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b604482015260640161059f565b81610cfe6110c8565b610d08919061205e565b341015610d575760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f727265637400000000000000604482015260640161059f565b60005b828110156107f357610d7533610d708385612046565b6114f6565b80610d7f81612014565b915050610d5a565b6001600160a01b038216331415610de05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161059f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e563383611202565b610e725760405162461bcd60e51b815260040161059f90611f97565b610e7e84848484611510565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f035760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161059f565b6000610f0d611543565b90506000815111610f2d5760405180602001604052806000815250610f58565b80610f3784611552565b604051602001610f4892919061207d565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610f895760405162461bcd60e51b815260040161059f90611f27565b600c54811115610fdb5760405162461bcd60e51b815260206004820152601760248201527f4578636565647320726573657276656420737570706c79000000000000000000604482015260640161059f565b6000610fe660085490565b905060005b828110156110135761100184610d708385612046565b8061100b81612014565b915050610feb565b5081600c6000828254611026919061202f565b9091555050505050565b600a546001600160a01b0316331461105a5760405162461bcd60e51b815260040161059f90611f27565b6001600160a01b0381166110bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161059f565b610be5816114a4565b6000806110d460085490565b905061232881106110ed5766f8b0a10e47000091505090565b611b5881106111045766d529ae9e86000091505090565b610fa0811061111b5766b1a2bc2ec5000091505090565b6103e8811061113257668e1bc9bf04000091505090565b666a94d74f43000091505090565b5090565b60006001600160e01b031982166380ac58cd60e01b148061117557506001600160e01b03198216635b5e139f60e01b145b8061056f57506301ffc9a760e01b6001600160e01b031983161461056f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111c982610a50565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661127b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161059f565b600061128683610a50565b9050806001600160a01b0316846001600160a01b031614806112c15750836001600160a01b03166112b68461064d565b6001600160a01b0316145b806112f157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661130c82610a50565b6001600160a01b0316146113745760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161059f565b6001600160a01b0382166113d65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161059f565b6113e1838383611650565b6113ec600082611194565b6001600160a01b038316600090815260036020526040812080546001929061141590849061202f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611443908490612046565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a4c828260405180602001604052806000815250611708565b61151b8484846112f9565b6115278484848461173b565b610e7e5760405162461bcd60e51b815260040161059f906120ac565b6060600b80546105ca90611f5c565b6060816115765750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115a0578061158a81612014565b91506115999050600a83612114565b915061157a565b60008167ffffffffffffffff8111156115bb576115bb611d79565b6040519080825280601f01601f1916602001820160405280156115e5576020820181803683370190505b5090505b84156112f1576115fa60018361202f565b9150611607600a86612128565b611612906030612046565b60f81b81838151811061162757611627611fe8565b60200101906001600160f81b031916908160001a905350611649600a86612114565b94506115e9565b6001600160a01b0383166116ab576116a681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6116ce565b816001600160a01b0316836001600160a01b0316146116ce576116ce8382611848565b6001600160a01b0382166116e5576107f3816118e5565b826001600160a01b0316826001600160a01b0316146107f3576107f38282611994565b61171283836119d8565b61171f600084848461173b565b6107f35760405162461bcd60e51b815260040161059f906120ac565b60006001600160a01b0384163b1561183d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061177f90339089908890889060040161213c565b602060405180830381600087803b15801561179957600080fd5b505af19250505080156117c9575060408051601f3d908101601f191682019092526117c691810190612179565b60015b611823573d8080156117f7576040519150601f19603f3d011682016040523d82523d6000602084013e6117fc565b606091505b50805161181b5760405162461bcd60e51b815260040161059f906120ac565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112f1565b506001949350505050565b6000600161185584610ac7565b61185f919061202f565b6000838152600760205260409020549091508082146118b2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906118f79060019061202f565b6000838152600960205260408120546008805493945090928490811061191f5761191f611fe8565b90600052602060002001549050806008838154811061194057611940611fe8565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061197857611978612196565b6001900381819060005260206000200160009055905550505050565b600061199f83610ac7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a2e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161059f565b6000818152600260205260409020546001600160a01b031615611a935760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161059f565b611a9f60008383611650565b6001600160a01b0382166000908152600360205260408120805460019290611ac8908490612046565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b3290611f5c565b90600052602060002090601f016020900481019282611b545760008555611b9a565b82601f10611b6d57805160ff1916838001178555611b9a565b82800160010185558215611b9a579182015b82811115611b9a578251825591602001919060010190611b7f565b506111409291505b808211156111405760008155600101611ba2565b6001600160e01b031981168114610be557600080fd5b600060208284031215611bde57600080fd5b8135610f5881611bb6565b80358015158114611bf957600080fd5b919050565b600060208284031215611c1057600080fd5b610f5882611be9565b60005b83811015611c34578181015183820152602001611c1c565b83811115610e7e5750506000910152565b60008151808452611c5d816020860160208601611c19565b601f01601f19169290920160200192915050565b602081526000610f586020830184611c45565b600060208284031215611c9657600080fd5b5035919050565b80356001600160a01b0381168114611bf957600080fd5b60008060408385031215611cc757600080fd5b611cd083611c9d565b946020939093013593505050565b600080600060608486031215611cf357600080fd5b611cfc84611c9d565b9250611d0a60208501611c9d565b9150604084013590509250925092565b600060208284031215611d2c57600080fd5b610f5882611c9d565b6020808252825182820181905260009190848201906040850190845b81811015611d6d57835183529284019291840191600101611d51565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611daa57611daa611d79565b604051601f8501601f19908116603f01168101908282118183101715611dd257611dd2611d79565b81604052809350858152868686011115611deb57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e1757600080fd5b813567ffffffffffffffff811115611e2e57600080fd5b8201601f81018413611e3f57600080fd5b6112f184823560208401611d8f565b60008060408385031215611e6157600080fd5b611e6a83611c9d565b9150611e7860208401611be9565b90509250929050565b60008060008060808587031215611e9757600080fd5b611ea085611c9d565b9350611eae60208601611c9d565b925060408501359150606085013567ffffffffffffffff811115611ed157600080fd5b8501601f81018713611ee257600080fd5b611ef187823560208401611d8f565b91505092959194509250565b60008060408385031215611f1057600080fd5b611f1983611c9d565b9150611e7860208401611c9d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611f7057607f821691505b60208210811415611f9157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561202857612028611ffe565b5060010190565b60008282101561204157612041611ffe565b500390565b6000821982111561205957612059611ffe565b500190565b600081600019048311821515161561207857612078611ffe565b500290565b6000835161208f818460208801611c19565b8351908301906120a3818360208801611c19565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612123576121236120fe565b500490565b600082612137576121376120fe565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061216f90830184611c45565b9695505050505050565b60006020828403121561218b57600080fd5b8151610f5881611bb6565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220d4fcc3091c4c529804d531592c6008a7fb1141932c1ea6b1339d4bf33cedb33564736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

41888:2521:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33548:224;;;;;;;;;;-1:-1:-1;33548:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;33548:224:0;;;;;;;;44177:74;;;;;;;;;;-1:-1:-1;44177:74:0;;;;;:::i;:::-;;:::i;:::-;;20662:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22221:221::-;;;;;;;;;;-1:-1:-1;22221:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;22221:221:0;1878:203:1;21744:411:0;;;;;;;;;;-1:-1:-1;21744:411:0;;;;;:::i;:::-;;:::i;42043:26::-;;;;;;;;;;-1:-1:-1;42043:26:0;;;;;;;;34188:113;;;;;;;;;;-1:-1:-1;34276:10:0;:17;34188:113;;;2669:25:1;;;2657:2;2642:18;34188:113:0;2523:177:1;23111:339:0;;;;;;;;;;-1:-1:-1;23111:339:0;;;;;:::i;:::-;;:::i;33856:256::-;;;;;;;;;;-1:-1:-1;33856:256:0;;;;;:::i;:::-;;:::i;23521:185::-;;;;;;;;;;-1:-1:-1;23521:185:0;;;;;:::i;:::-;;:::i;43272:342::-;;;;;;;;;;-1:-1:-1;43272:342:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;34378:233::-;;;;;;;;;;-1:-1:-1;34378:233:0;;;;;:::i;:::-;;:::i;43744:102::-;;;;;;;;;;-1:-1:-1;43744:102:0;;;;;:::i;:::-;;:::i;20356:239::-;;;;;;;;;;-1:-1:-1;20356:239:0;;;;;:::i;:::-;;:::i;42006:30::-;;;;;;;;;;;;;;;;20086:208;;;;;;;;;;-1:-1:-1;20086:208:0;;;;;:::i;:::-;;:::i;41259:94::-;;;;;;;;;;;;;:::i;44259:147::-;;;:::i;40608:87::-;;;;;;;;;;-1:-1:-1;40681:6:0;;-1:-1:-1;;;;;40681:6:0;40608:87;;20831:104;;;;;;;;;;;;;:::i;42758:506::-;;;;;;:::i;:::-;;:::i;22514:295::-;;;;;;;;;;-1:-1:-1;22514:295:0;;;;;:::i;:::-;;:::i;23777:328::-;;;;;;;;;;-1:-1:-1;23777:328:0;;;;;:::i;:::-;;:::i;21006:334::-;;;;;;;;;;-1:-1:-1;21006:334:0;;;;;:::i;:::-;;:::i;43854:315::-;;;;;;;;;;-1:-1:-1;43854:315:0;;;;;:::i;:::-;;:::i;22880:164::-;;;;;;;;;;-1:-1:-1;22880:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23001:25:0;;;22977:4;23001:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22880:164;41508:192;;;;;;;;;;-1:-1:-1;41508:192:0;;;;;:::i;:::-;;:::i;42283:467::-;;;;;;;;;;;;;:::i;33548:224::-;33650:4;-1:-1:-1;;;;;;33674:50:0;;-1:-1:-1;;;33674:50:0;;:90;;;33728:36;33752:11;33728:23;:36::i;:::-;33667:97;33548:224;-1:-1:-1;;33548:224:0:o;44177:74::-;40681:6;;-1:-1:-1;;;;;40681:6:0;15491:10;40828:23;40820:68;;;;-1:-1:-1;;;40820:68:0;;;;;;;:::i;:::-;;;;;;;;;44230:7:::1;:13:::0;;-1:-1:-1;;44230:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44177:74::o;20662:100::-;20716:13;20749:5;20742:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20662:100;:::o;22221:221::-;22297:7;25704:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25704:16:0;22317:73;;;;-1:-1:-1;;;22317:73:0;;7235:2:1;22317:73:0;;;7217:21:1;7274:2;7254:18;;;7247:30;7313:34;7293:18;;;7286:62;-1:-1:-1;;;7364:18:1;;;7357:42;7416:19;;22317:73:0;7033:408:1;22317:73:0;-1:-1:-1;22410:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22410:24:0;;22221:221::o;21744:411::-;21825:13;21841:23;21856:7;21841:14;:23::i;:::-;21825:39;;21889:5;-1:-1:-1;;;;;21883:11:0;:2;-1:-1:-1;;;;;21883:11:0;;;21875:57;;;;-1:-1:-1;;;21875:57:0;;7648:2:1;21875:57:0;;;7630:21:1;7687:2;7667:18;;;7660:30;7726:34;7706:18;;;7699:62;-1:-1:-1;;;7777:18:1;;;7770:31;7818:19;;21875:57:0;7446:397:1;21875:57:0;15491:10;-1:-1:-1;;;;;21967:21:0;;;;:62;;-1:-1:-1;21992:37:0;22009:5;15491:10;22880:164;:::i;21992:37::-;21945:168;;;;-1:-1:-1;;;21945:168:0;;8050:2:1;21945:168:0;;;8032:21:1;8089:2;8069:18;;;8062:30;8128:34;8108:18;;;8101:62;8199:26;8179:18;;;8172:54;8243:19;;21945:168:0;7848:420:1;21945:168:0;22126:21;22135:2;22139:7;22126:8;:21::i;:::-;21814:341;21744:411;;:::o;23111:339::-;23306:41;15491:10;23339:7;23306:18;:41::i;:::-;23298:103;;;;-1:-1:-1;;;23298:103:0;;;;;;;:::i;:::-;23414:28;23424:4;23430:2;23434:7;23414:9;:28::i;33856:256::-;33953:7;33989:23;34006:5;33989:16;:23::i;:::-;33981:5;:31;33973:87;;;;-1:-1:-1;;;33973:87:0;;8893:2:1;33973:87:0;;;8875:21:1;8932:2;8912:18;;;8905:30;8971:34;8951:18;;;8944:62;-1:-1:-1;;;9022:18:1;;;9015:41;9073:19;;33973:87:0;8691:407:1;33973:87:0;-1:-1:-1;;;;;;34078:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;33856:256::o;23521:185::-;23659:39;23676:4;23682:2;23686:7;23659:39;;;;;;;;;;;;:16;:39::i;43272:342::-;43331:16;43360:18;43381:17;43391:6;43381:9;:17::i;:::-;43360:38;;43411:25;43453:10;43439:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43439:25:0;;43411:53;;43479:9;43475:106;43494:10;43490:1;:14;43475:106;;;43539:30;43559:6;43567:1;43539:19;:30::i;:::-;43525:8;43534:1;43525:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;43506:3;;;;:::i;:::-;;;;43475:106;;;-1:-1:-1;43598:8:0;43272:342;-1:-1:-1;;;43272:342:0:o;34378:233::-;34453:7;34489:30;34276:10;:17;;34188:113;34489:30;34481:5;:38;34473:95;;;;-1:-1:-1;;;34473:95:0;;9709:2:1;34473:95:0;;;9691:21:1;9748:2;9728:18;;;9721:30;9787:34;9767:18;;;9760:62;-1:-1:-1;;;9838:18:1;;;9831:42;9890:19;;34473:95:0;9507:408:1;34473:95:0;34586:10;34597:5;34586:17;;;;;;;;:::i;:::-;;;;;;;;;34579:24;;34378:233;;;:::o;43744:102::-;40681:6;;-1:-1:-1;;;;;40681:6:0;15491:10;40828:23;40820:68;;;;-1:-1:-1;;;40820:68:0;;;;;;;:::i;:::-;43815:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43744:102:::0;:::o;20356:239::-;20428:7;20464:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20464:16:0;20499:19;20491:73;;;;-1:-1:-1;;;20491:73:0;;10122:2:1;20491:73:0;;;10104:21:1;10161:2;10141:18;;;10134:30;10200:34;10180:18;;;10173:62;-1:-1:-1;;;10251:18:1;;;10244:39;10300:19;;20491:73:0;9920:405:1;20086:208:0;20158:7;-1:-1:-1;;;;;20186:19:0;;20178:74;;;;-1:-1:-1;;;20178:74:0;;10532:2:1;20178:74:0;;;10514:21:1;10571:2;10551:18;;;10544:30;10610:34;10590:18;;;10583:62;-1:-1:-1;;;10661:18:1;;;10654:40;10711:19;;20178:74:0;10330:406:1;20178:74:0;-1:-1:-1;;;;;;20270:16:0;;;;;:9;:16;;;;;;;20086:208::o;41259:94::-;40681:6;;-1:-1:-1;;;;;40681:6:0;15491:10;40828:23;40820:68;;;;-1:-1:-1;;;40820:68:0;;;;;;;:::i;:::-;41324:21:::1;41342:1;41324:9;:21::i;:::-;41259:94::o:0;44259:147::-;40681:6;;-1:-1:-1;;;;;40681:6:0;15491:10;40828:23;40820:68;;;;-1:-1:-1;;;40820:68:0;;;;;;;:::i;:::-;44382:2:::1;::::0;44374:23:::1;::::0;44334:21:::1;::::0;44382:2:::1;::::0;::::1;-1:-1:-1::0;;;;;44382:2:0::1;::::0;44374:23:::1;::::0;::::1;;::::0;44334:21;;44318:13:::1;44374:23:::0;44318:13;44374:23;44334:21;44382:2;44374:23;::::1;;;;;;44366:32;;;::::0;::::1;;44307:99;44259:147::o:0;20831:104::-;20887:13;20920:7;20913:14;;;;;:::i;42758:506::-;42811:14;42828:13;34276:10;:17;;34188:113;42828:13;42861:7;;42811:30;;-1:-1:-1;42861:7:0;;42860:8;42852:57;;;;-1:-1:-1;;;42852:57:0;;10943:2:1;42852:57:0;;;10925:21:1;10982:2;10962:18;;;10955:30;-1:-1:-1;;;11001:18:1;;;10994:41;11052:18;;42852:57:0;10741:335:1;42852:57:0;42934:2;42928:3;:8;42920:74;;;;-1:-1:-1;;;42920:74:0;;11283:2:1;42920:74:0;;;11265:21:1;11322:2;11302:18;;;11295:30;11361;11341:18;;;11334:58;11409:18;;42920:74:0;11081:352:1;42920:74:0;43036:9;;43028:17;;:5;:17;:::i;:::-;43013:12;43022:3;43013:6;:12;:::i;:::-;:32;43005:68;;;;-1:-1:-1;;;43005:68:0;;11903:2:1;43005:68:0;;;11885:21:1;11942:2;11922:18;;;11915:30;-1:-1:-1;;;11961:18:1;;;11954:52;12023:18;;43005:68:0;11701:346:1;43005:68:0;43121:3;43105:13;:11;:13::i;:::-;:19;;;;:::i;:::-;43092:9;:32;;43084:70;;;;-1:-1:-1;;;43084:70:0;;12427:2:1;43084:70:0;;;12409:21:1;12466:2;12446:18;;;12439:30;12505:27;12485:18;;;12478:55;12550:18;;43084:70:0;12225:349:1;43084:70:0;43171:9;43167:90;43186:3;43182:1;:7;43167:90;;;43210:35;43221:10;43233;43242:1;43233:6;:10;:::i;:::-;43210:9;:35::i;:::-;43191:3;;;;:::i;:::-;;;;43167:90;;22514:295;-1:-1:-1;;;;;22617:24:0;;15491:10;22617:24;;22609:62;;;;-1:-1:-1;;;22609:62:0;;12781:2:1;22609:62:0;;;12763:21:1;12820:2;12800:18;;;12793:30;12859:27;12839:18;;;12832:55;12904:18;;22609:62:0;12579:349:1;22609:62:0;15491:10;22684:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;22684:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;22684:53:0;;;;;;;;;;22753:48;;540:41:1;;;22684:42:0;;15491:10;22753:48;;513:18:1;22753:48:0;;;;;;;22514:295;;:::o;23777:328::-;23952:41;15491:10;23985:7;23952:18;:41::i;:::-;23944:103;;;;-1:-1:-1;;;23944:103:0;;;;;;;:::i;:::-;24058:39;24072:4;24078:2;24082:7;24091:5;24058:13;:39::i;:::-;23777:328;;;;:::o;21006:334::-;25680:4;25704:16;;;:7;:16;;;;;;21079:13;;-1:-1:-1;;;;;25704:16:0;21105:76;;;;-1:-1:-1;;;21105:76:0;;13135:2:1;21105:76:0;;;13117:21:1;13174:2;13154:18;;;13147:30;13213:34;13193:18;;;13186:62;-1:-1:-1;;;13264:18:1;;;13257:45;13319:19;;21105:76:0;12933:411:1;21105:76:0;21194:21;21218:10;:8;:10::i;:::-;21194:34;;21270:1;21252:7;21246:21;:25;:86;;;;;;;;;;;;;;;;;21298:7;21307:18;:7;:16;:18::i;:::-;21281:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21246:86;21239:93;21006:334;-1:-1:-1;;;21006:334:0:o;43854:315::-;40681:6;;-1:-1:-1;;;;;40681:6:0;15491:10;40828:23;40820:68;;;;-1:-1:-1;;;40820:68:0;;;;;;;:::i;:::-;43954:9:::1;;43943:7;:20;;43934:58;;;::::0;-1:-1:-1;;;43934:58:0;;14026:2:1;43934:58:0::1;::::0;::::1;14008:21:1::0;14065:2;14045:18;;;14038:30;14104:25;14084:18;;;14077:53;14147:18;;43934:58:0::1;13824:347:1::0;43934:58:0::1;44003:14;44020:13;34276:10:::0;:17;;34188:113;44020:13:::1;44003:30;;44048:9;44044:87;44063:7;44059:1;:11;44044:87;;;44091:28;44102:3:::0;44107:10:::1;44116:1:::0;44107:6;:10:::1;:::i;44091:28::-;44072:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44044:87;;;;44154:7;44141:9;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;43854:315:0:o;41508:192::-;40681:6;;-1:-1:-1;;;;;40681:6:0;15491:10;40828:23;40820:68;;;;-1:-1:-1;;;40820:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41597:22:0;::::1;41589:73;;;::::0;-1:-1:-1;;;41589:73:0;;14378:2:1;41589:73:0::1;::::0;::::1;14360:21:1::0;14417:2;14397:18;;;14390:30;14456:34;14436:18;;;14429:62;-1:-1:-1;;;14507:18:1;;;14500:36;14553:19;;41589:73:0::1;14176:402:1::0;41589:73:0::1;41673:19;41683:8;41673:9;:19::i;42283:467::-:0;42327:7;42347:18;42368:13;34276:10;:17;;34188:113;42368:13;42347:34;;42413:4;42396:13;:21;42392:352;;42441:10;42434:17;;;42283:467;:::o;42392:352::-;42490:4;42473:13;:21;42469:275;;42518:10;42511:17;;;42283:467;:::o;42469:275::-;42567:4;42550:13;:21;42546:198;;42595:10;42588:17;;;42283:467;:::o;42546:198::-;42644:4;42627:13;:21;42623:121;;42672:10;42665:17;;;42283:467;:::o;42623:121::-;42722:10;42715:17;;;42283:467;:::o;42623:121::-;42336:414;42283:467;:::o;19717:305::-;19819:4;-1:-1:-1;;;;;;19856:40:0;;-1:-1:-1;;;19856:40:0;;:105;;-1:-1:-1;;;;;;;19913:48:0;;-1:-1:-1;;;19913:48:0;19856:105;:158;;;-1:-1:-1;;;;;;;;;;18429:40:0;;;19978:36;18320:157;29597:174;29672:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;29672:29:0;-1:-1:-1;;;;;29672:29:0;;;;;;;;:24;;29726:23;29672:24;29726:14;:23::i;:::-;-1:-1:-1;;;;;29717:46:0;;;;;;;;;;;29597:174;;:::o;25909:348::-;26002:4;25704:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25704:16:0;26019:73;;;;-1:-1:-1;;;26019:73:0;;14785:2:1;26019:73:0;;;14767:21:1;14824:2;14804:18;;;14797:30;14863:34;14843:18;;;14836:62;-1:-1:-1;;;14914:18:1;;;14907:42;14966:19;;26019:73:0;14583:408:1;26019:73:0;26103:13;26119:23;26134:7;26119:14;:23::i;:::-;26103:39;;26172:5;-1:-1:-1;;;;;26161:16:0;:7;-1:-1:-1;;;;;26161:16:0;;:51;;;;26205:7;-1:-1:-1;;;;;26181:31:0;:20;26193:7;26181:11;:20::i;:::-;-1:-1:-1;;;;;26181:31:0;;26161:51;:87;;;-1:-1:-1;;;;;;23001:25:0;;;22977:4;23001:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26216:32;26153:96;25909:348;-1:-1:-1;;;;25909:348:0:o;28901:578::-;29060:4;-1:-1:-1;;;;;29033:31:0;:23;29048:7;29033:14;:23::i;:::-;-1:-1:-1;;;;;29033:31:0;;29025:85;;;;-1:-1:-1;;;29025:85:0;;15198:2:1;29025:85:0;;;15180:21:1;15237:2;15217:18;;;15210:30;15276:34;15256:18;;;15249:62;-1:-1:-1;;;15327:18:1;;;15320:39;15376:19;;29025:85:0;14996:405:1;29025:85:0;-1:-1:-1;;;;;29129:16:0;;29121:65;;;;-1:-1:-1;;;29121:65:0;;15608:2:1;29121:65:0;;;15590:21:1;15647:2;15627:18;;;15620:30;15686:34;15666:18;;;15659:62;-1:-1:-1;;;15737:18:1;;;15730:34;15781:19;;29121:65:0;15406:400:1;29121:65:0;29199:39;29220:4;29226:2;29230:7;29199:20;:39::i;:::-;29303:29;29320:1;29324:7;29303:8;:29::i;:::-;-1:-1:-1;;;;;29345:15:0;;;;;;:9;:15;;;;;:20;;29364:1;;29345:15;:20;;29364:1;;29345:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29376:13:0;;;;;;:9;:13;;;;;:18;;29393:1;;29376:13;:18;;29393:1;;29376:18;:::i;:::-;;;;-1:-1:-1;;29405:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29405:21:0;-1:-1:-1;;;;;29405:21:0;;;;;;;;;29444:27;;29405:16;;29444:27;;;;;;;28901:578;;;:::o;41708:173::-;41783:6;;;-1:-1:-1;;;;;41800:17:0;;;-1:-1:-1;;;;;;41800:17:0;;;;;;;41833:40;;41783:6;;;41800:17;41783:6;;41833:40;;41764:16;;41833:40;41753:128;41708:173;:::o;26599:110::-;26675:26;26685:2;26689:7;26675:26;;;;;;;;;;;;:9;:26::i;24987:315::-;25144:28;25154:4;25160:2;25164:7;25144:9;:28::i;:::-;25191:48;25214:4;25220:2;25224:7;25233:5;25191:22;:48::i;:::-;25183:111;;;;-1:-1:-1;;;25183:111:0;;;;;;;:::i;43622:114::-;43682:13;43715;43708:20;;;;;:::i;15855:723::-;15911:13;16132:10;16128:53;;-1:-1:-1;;16159:10:0;;;;;;;;;;;;-1:-1:-1;;;16159:10:0;;;;;15855:723::o;16128:53::-;16206:5;16191:12;16247:78;16254:9;;16247:78;;16280:8;;;;:::i;:::-;;-1:-1:-1;16303:10:0;;-1:-1:-1;16311:2:0;16303:10;;:::i;:::-;;;16247:78;;;16335:19;16367:6;16357:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16357:17:0;;16335:39;;16385:154;16392:10;;16385:154;;16419:11;16429:1;16419:11;;:::i;:::-;;-1:-1:-1;16488:10:0;16496:2;16488:5;:10;:::i;:::-;16475:24;;:2;:24;:::i;:::-;16462:39;;16445:6;16452;16445:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;16445:56:0;;;;;;;;-1:-1:-1;16516:11:0;16525:2;16516:11;;:::i;:::-;;;16385:154;;35224:589;-1:-1:-1;;;;;35430:18:0;;35426:187;;35465:40;35497:7;36640:10;:17;;36613:24;;;;:15;:24;;;;;:44;;;36668:24;;;;;;;;;;;;36536:164;35465:40;35426:187;;;35535:2;-1:-1:-1;;;;;35527:10:0;:4;-1:-1:-1;;;;;35527:10:0;;35523:90;;35554:47;35587:4;35593:7;35554:32;:47::i;:::-;-1:-1:-1;;;;;35627:16:0;;35623:183;;35660:45;35697:7;35660:36;:45::i;35623:183::-;35733:4;-1:-1:-1;;;;;35727:10:0;:2;-1:-1:-1;;;;;35727:10:0;;35723:83;;35754:40;35782:2;35786:7;35754:27;:40::i;26936:321::-;27066:18;27072:2;27076:7;27066:5;:18::i;:::-;27117:54;27148:1;27152:2;27156:7;27165:5;27117:22;:54::i;:::-;27095:154;;;;-1:-1:-1;;;27095:154:0;;;;;;;:::i;30336:803::-;30491:4;-1:-1:-1;;;;;30512:13:0;;8075:20;8123:8;30508:624;;30548:72;;-1:-1:-1;;;30548:72:0;;-1:-1:-1;;;;;30548:36:0;;;;;:72;;15491:10;;30599:4;;30605:7;;30614:5;;30548:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30548:72:0;;;;;;;;-1:-1:-1;;30548:72:0;;;;;;;;;;;;:::i;:::-;;;30544:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30794:13:0;;30790:272;;30837:60;;-1:-1:-1;;;30837:60:0;;;;;;;:::i;30790:272::-;31012:6;31006:13;30997:6;30993:2;30989:15;30982:38;30544:533;-1:-1:-1;;;;;;30671:55:0;-1:-1:-1;;;30671:55:0;;-1:-1:-1;30664:62:0;;30508:624;-1:-1:-1;31116:4:0;30336:803;;;;;;:::o;37327:988::-;37593:22;37643:1;37618:22;37635:4;37618:16;:22::i;:::-;:26;;;;:::i;:::-;37655:18;37676:26;;;:17;:26;;;;;;37593:51;;-1:-1:-1;37809:28:0;;;37805:328;;-1:-1:-1;;;;;37876:18:0;;37854:19;37876:18;;;:12;:18;;;;;;;;:34;;;;;;;;;37927:30;;;;;;:44;;;38044:30;;:17;:30;;;;;:43;;;37805:328;-1:-1:-1;38229:26:0;;;;:17;:26;;;;;;;;38222:33;;;-1:-1:-1;;;;;38273:18:0;;;;;:12;:18;;;;;:34;;;;;;;38266:41;37327:988::o;38610:1079::-;38888:10;:17;38863:22;;38888:21;;38908:1;;38888:21;:::i;:::-;38920:18;38941:24;;;:15;:24;;;;;;39314:10;:26;;38863:46;;-1:-1:-1;38941:24:0;;38863:46;;39314:26;;;;;;:::i;:::-;;;;;;;;;39292:48;;39378:11;39353:10;39364;39353:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;39458:28;;;:15;:28;;;;;;;:41;;;39630:24;;;;;39623:31;39665:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;38681:1008;;;38610:1079;:::o;36114:221::-;36199:14;36216:20;36233:2;36216:16;:20::i;:::-;-1:-1:-1;;;;;36247:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36292:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36114:221:0:o;27593:382::-;-1:-1:-1;;;;;27673:16:0;;27665:61;;;;-1:-1:-1;;;27665:61:0;;17686:2:1;27665:61:0;;;17668:21:1;;;17705:18;;;17698:30;17764:34;17744:18;;;17737:62;17816:18;;27665:61:0;17484:356:1;27665:61:0;25680:4;25704:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25704:16:0;:30;27737:58;;;;-1:-1:-1;;;27737:58:0;;18047:2:1;27737:58:0;;;18029:21:1;18086:2;18066:18;;;18059:30;18125;18105:18;;;18098:58;18173:18;;27737:58:0;17845:352:1;27737:58:0;27808:45;27837:1;27841:2;27845:7;27808:20;:45::i;:::-;-1:-1:-1;;;;;27866:13:0;;;;;;:9;:13;;;;;:18;;27883:1;;27866:13;:18;;27883:1;;27866:18;:::i;:::-;;;;-1:-1:-1;;27895:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;27895:21:0;-1:-1:-1;;;;;27895:21:0;;;;;;;;27934:33;;27895:16;;;27934:33;;27895:16;;27934:33;27593:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:186::-;3097:6;3150:2;3138:9;3129:7;3125:23;3121:32;3118:52;;;3166:1;3163;3156:12;3118:52;3189:29;3208:9;3189:29;:::i;3229:632::-;3400:2;3452:21;;;3522:13;;3425:18;;;3544:22;;;3371:4;;3400:2;3623:15;;;;3597:2;3582:18;;;3371:4;3666:169;3680:6;3677:1;3674:13;3666:169;;;3741:13;;3729:26;;3810:15;;;;3775:12;;;;3702:1;3695:9;3666:169;;;-1:-1:-1;3852:3:1;;3229:632;-1:-1:-1;;;;;;3229:632:1:o;3866:127::-;3927:10;3922:3;3918:20;3915:1;3908:31;3958:4;3955:1;3948:15;3982:4;3979:1;3972:15;3998:632;4063:5;4093:18;4134:2;4126:6;4123:14;4120:40;;;4140:18;;:::i;:::-;4215:2;4209:9;4183:2;4269:15;;-1:-1:-1;;4265:24:1;;;4291:2;4261:33;4257:42;4245:55;;;4315:18;;;4335:22;;;4312:46;4309:72;;;4361:18;;:::i;:::-;4401:10;4397:2;4390:22;4430:6;4421:15;;4460:6;4452;4445:22;4500:3;4491:6;4486:3;4482:16;4479:25;4476:45;;;4517:1;4514;4507:12;4476:45;4567:6;4562:3;4555:4;4547:6;4543:17;4530:44;4622:1;4615:4;4606:6;4598;4594:19;4590:30;4583:41;;;;3998:632;;;;;:::o;4635:451::-;4704:6;4757:2;4745:9;4736:7;4732:23;4728:32;4725:52;;;4773:1;4770;4763:12;4725:52;4813:9;4800:23;4846:18;4838:6;4835:30;4832:50;;;4878:1;4875;4868:12;4832:50;4901:22;;4954:4;4946:13;;4942:27;-1:-1:-1;4932:55:1;;4983:1;4980;4973:12;4932:55;5006:74;5072:7;5067:2;5054:16;5049:2;5045;5041:11;5006:74;:::i;5091:254::-;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5304:35;5335:2;5324:9;5320:18;5304:35;:::i;:::-;5294:45;;5091:254;;;;;:::o;5350:667::-;5445:6;5453;5461;5469;5522:3;5510:9;5501:7;5497:23;5493:33;5490:53;;;5539:1;5536;5529:12;5490:53;5562:29;5581:9;5562:29;:::i;:::-;5552:39;;5610:38;5644:2;5633:9;5629:18;5610:38;:::i;:::-;5600:48;;5695:2;5684:9;5680:18;5667:32;5657:42;;5750:2;5739:9;5735:18;5722:32;5777:18;5769:6;5766:30;5763:50;;;5809:1;5806;5799:12;5763:50;5832:22;;5885:4;5877:13;;5873:27;-1:-1:-1;5863:55:1;;5914:1;5911;5904:12;5863:55;5937:74;6003:7;5998:2;5985:16;5980:2;5976;5972:11;5937:74;:::i;:::-;5927:84;;;5350:667;;;;;;;:::o;6022:260::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6190:29;6209:9;6190:29;:::i;:::-;6180:39;;6238:38;6272:2;6261:9;6257:18;6238:38;:::i;6287:356::-;6489:2;6471:21;;;6508:18;;;6501:30;6567:34;6562:2;6547:18;;6540:62;6634:2;6619:18;;6287:356::o;6648:380::-;6727:1;6723:12;;;;6770;;;6791:61;;6845:4;6837:6;6833:17;6823:27;;6791:61;6898:2;6890:6;6887:14;6867:18;6864:38;6861:161;;;6944:10;6939:3;6935:20;6932:1;6925:31;6979:4;6976:1;6969:15;7007:4;7004:1;6997:15;6861:161;;6648:380;;;:::o;8273:413::-;8475:2;8457:21;;;8514:2;8494:18;;;8487:30;8553:34;8548:2;8533:18;;8526:62;-1:-1:-1;;;8619:2:1;8604:18;;8597:47;8676:3;8661:19;;8273:413::o;9103:127::-;9164:10;9159:3;9155:20;9152:1;9145:31;9195:4;9192:1;9185:15;9219:4;9216:1;9209:15;9235:127;9296:10;9291:3;9287:20;9284:1;9277:31;9327:4;9324:1;9317:15;9351:4;9348:1;9341:15;9367:135;9406:3;-1:-1:-1;;9427:17:1;;9424:43;;;9447:18;;:::i;:::-;-1:-1:-1;9494:1:1;9483:13;;9367:135::o;11438:125::-;11478:4;11506:1;11503;11500:8;11497:34;;;11511:18;;:::i;:::-;-1:-1:-1;11548:9:1;;11438:125::o;11568:128::-;11608:3;11639:1;11635:6;11632:1;11629:13;11626:39;;;11645:18;;:::i;:::-;-1:-1:-1;11681:9:1;;11568:128::o;12052:168::-;12092:7;12158:1;12154;12150:6;12146:14;12143:1;12140:21;12135:1;12128:9;12121:17;12117:45;12114:71;;;12165:18;;:::i;:::-;-1:-1:-1;12205:9:1;;12052:168::o;13349:470::-;13528:3;13566:6;13560:13;13582:53;13628:6;13623:3;13616:4;13608:6;13604:17;13582:53;:::i;:::-;13698:13;;13657:16;;;;13720:57;13698:13;13657:16;13754:4;13742:17;;13720:57;:::i;:::-;13793:20;;13349:470;-1:-1:-1;;;;13349:470:1:o;15811:414::-;16013:2;15995:21;;;16052:2;16032:18;;;16025:30;16091:34;16086:2;16071:18;;16064:62;-1:-1:-1;;;16157:2:1;16142:18;;16135:48;16215:3;16200:19;;15811:414::o;16230:127::-;16291:10;16286:3;16282:20;16279:1;16272:31;16322:4;16319:1;16312:15;16346:4;16343:1;16336:15;16362:120;16402:1;16428;16418:35;;16433:18;;:::i;:::-;-1:-1:-1;16467:9:1;;16362:120::o;16487:112::-;16519:1;16545;16535:35;;16550:18;;:::i;:::-;-1:-1:-1;16584:9:1;;16487:112::o;16604:489::-;-1:-1:-1;;;;;16873:15:1;;;16855:34;;16925:15;;16920:2;16905:18;;16898:43;16972:2;16957:18;;16950:34;;;17020:3;17015:2;17000:18;;16993:31;;;16798:4;;17041:46;;17067:19;;17059:6;17041:46;:::i;:::-;17033:54;16604:489;-1:-1:-1;;;;;;16604:489:1:o;17098:249::-;17167:6;17220:2;17208:9;17199:7;17195:23;17191:32;17188:52;;;17236:1;17233;17226:12;17188:52;17268:9;17262:16;17287:30;17311:5;17287:30;:::i;17352:127::-;17413:10;17408:3;17404:20;17401:1;17394:31;17444:4;17441:1;17434:15;17468:4;17465:1;17458:15

Swarm Source

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