ETH Price: $2,408.23 (+1.44%)

Token

WAAITT (WAAITT)
 

Overview

Max Total Supply

0 WAAITT

Holders

103

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
8 WAAITT
0x2fa54083dbaaec74915dc764a8de1df01b7e8e71
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

IBCDAO a community-funded DAO working towards creating passive income opportunities by investing in Metaverse, PlaytoEarn & NFTs.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WAAITT

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-24
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Strings.sol
pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

pragma solidity ^0.8.5;

contract WAAITT is ERC721, Ownable {
    using Strings for uint256;
    uint256 public cost = 0.25 ether;
    uint256 public maxSupply = 1250;
    uint256 public maxMintAmount = 84;
    uint256 public tokenCount = 0;
    bool public paused = false;
    string public baseURI;
    bool public presaleActive = true;
    bool public mainsaleActive;
    address[] public whitelistedAddresses;

    mapping(address => uint256) public addressMintedBalance;

    constructor(string memory _initBaseURI) ERC721("WAAITT", "WAAITT") {
        baseURI = _initBaseURI;
    }

    function isWhitelisted(address _user) public view returns (bool) {
        for (uint256 i = 0; i < whitelistedAddresses.length; i++) {
            if (whitelistedAddresses[i] == _user) {
                return true;
            }
        }
        return false;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: Token ID does not exist");
        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(baseURI, "/", tokenId.toString(), ".json")
                )
                : "";
    }

    function presaleMint(uint256 _amount) external payable {
        require(!paused, "the contract is paused");
        require(presaleActive, "WAAITT - Presale is not active.");
        require(tokenCount + _amount <= 750, "WAAITT - Free NFT exceeded");
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];
        require(
            ownerMintedCount + _amount <= maxMintAmount,
            "max NFT per address exceeded"
        );
        require(
            isWhitelisted(_msgSender()),
            "WAAITT - Presale Only for Whitelist users."
        );
        require(_amount <= maxMintAmount);

        for (uint256 i = 1; i <= _amount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, ++tokenCount);
        }
    }

    function mint(uint256 _amount) external payable {
        require(!paused, "WAAITT - The Contract is Paused");
        require(mainsaleActive, "WAAITT::mint: Mint is not active.");
        require(
            tokenCount + _amount <= maxSupply,
            "WAAITT - max NFT limit exceeded"
        );
        if (msg.sender != owner()) {
            require(_amount <= maxMintAmount);
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(
                ownerMintedCount + _amount <= maxMintAmount,
                "max NFT per address exceeded"
            );
            require(
                msg.value >= cost * _amount,
                "WAAITT::mint: insufficient ethers"
            );
        }
        for (uint256 i = 1; i <= _amount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, ++tokenCount);
        }
    }

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function toggleSale() external onlyOwner {
        presaleActive = !presaleActive;
        mainsaleActive = !mainsaleActive;
    }

    function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner {
        maxMintAmount = _maxMintAmount;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

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

    function pause() public onlyOwner {
        paused = !paused;
    }

    function whitelistUsers(address[] calldata _users) public onlyOwner {
        delete whitelistedAddresses;
        whitelistedAddresses = _users;
    }

    function withdraw() public onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainsaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","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":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenCount","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":[{"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":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526703782dace9d900006007556104e260085560546009556000600a55600b805460ff19908116909155600d805490911660011790553480156200004657600080fd5b50604051620027663803806200276683398101604081905262000069916200020c565b60408051808201825260068082526515d05052551560d21b602080840182815285518087019096529285528401528151919291620000aa9160009162000150565b508051620000c090600190602084019062000150565b505050620000dd620000d7620000fa60201b60201c565b620000fe565b8051620000f290600c90602084019062000150565b505062000324565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015e90620002e8565b90600052602060002090601f016020900481019282620001825760008555620001cd565b82601f106200019d57805160ff1916838001178555620001cd565b82800160010185558215620001cd579182015b82811115620001cd578251825591602001919060010190620001b0565b50620001db929150620001df565b5090565b5b80821115620001db5760008155600101620001e0565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200022057600080fd5b82516001600160401b03808211156200023857600080fd5b818501915085601f8301126200024d57600080fd5b815181811115620002625762000262620001f6565b604051601f8201601f19908116603f011681019083821181831017156200028d576200028d620001f6565b816040528281528886848701011115620002a657600080fd5b600093505b82841015620002ca5784840186015181850187015292850192620002ab565b82841115620002dc5760008684830101525b98975050505050505050565b600181811c90821680620002fd57607f821691505b6020821081036200031e57634e487b7160e01b600052602260045260246000fd5b50919050565b61243280620003346000396000f3fe60806040526004361061021a5760003560e01c80636c0360eb11610123578063a0712d68116100ab578063c9b298f11161006f578063c9b298f1146105ef578063d5abeb0114610602578063e985e9c514610618578063edec5f2714610661578063f2fde38b1461068157600080fd5b8063a0712d681461055c578063a22cb4651461056f578063b88d4fde1461058f578063ba4e5c49146105af578063c87b56dd146105cf57600080fd5b80637d8966e4116100f25780637d8966e4146104e95780638456cb59146104fe5780638da5cb5b1461051357806395d89b41146105315780639f181b5e1461054657600080fd5b80636c0360eb1461047f5780636f8b44b01461049457806370a08231146104b4578063715018a6146104d457600080fd5b806323b872dd116101a657806344a0d68a1161017557806344a0d68a146103eb57806353135ca01461040b57806355f804b3146104255780635c975abb146104455780636352211e1461045f57600080fd5b806323b872dd146103765780633af32abf146103965780633ccfd60b146103b657806342842e0e146103cb57600080fd5b8063088a4ed0116101ed578063088a4ed0146102cd578063095ea7b3146102ef57806313faede61461030f57806318cae26914610333578063239c70ae1461036057600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063087224fb146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611d5f565b6106a1565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106f3565b60405161024b9190611ddb565b34801561028257600080fd5b50610296610291366004611dee565b610785565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b50600d5461023f90610100900460ff1681565b3480156102d957600080fd5b506102ed6102e8366004611dee565b61081f565b005b3480156102fb57600080fd5b506102ed61030a366004611e23565b61084e565b34801561031b57600080fd5b5061032560075481565b60405190815260200161024b565b34801561033f57600080fd5b5061032561034e366004611e4d565b600f6020526000908152604090205481565b34801561036c57600080fd5b5061032560095481565b34801561038257600080fd5b506102ed610391366004611e68565b610963565b3480156103a257600080fd5b5061023f6103b1366004611e4d565b610994565b3480156103c257600080fd5b506102ed6109fd565b3480156103d757600080fd5b506102ed6103e6366004611e68565b610a9b565b3480156103f757600080fd5b506102ed610406366004611dee565b610ab6565b34801561041757600080fd5b50600d5461023f9060ff1681565b34801561043157600080fd5b506102ed610440366004611f30565b610ae5565b34801561045157600080fd5b50600b5461023f9060ff1681565b34801561046b57600080fd5b5061029661047a366004611dee565b610b26565b34801561048b57600080fd5b50610269610b9d565b3480156104a057600080fd5b506102ed6104af366004611dee565b610c2b565b3480156104c057600080fd5b506103256104cf366004611e4d565b610c5a565b3480156104e057600080fd5b506102ed610ce1565b3480156104f557600080fd5b506102ed610d17565b34801561050a57600080fd5b506102ed610d75565b34801561051f57600080fd5b506006546001600160a01b0316610296565b34801561053d57600080fd5b50610269610db3565b34801561055257600080fd5b50610325600a5481565b6102ed61056a366004611dee565b610dc2565b34801561057b57600080fd5b506102ed61058a366004611f79565b611023565b34801561059b57600080fd5b506102ed6105aa366004611fb5565b6110e7565b3480156105bb57600080fd5b506102966105ca366004611dee565b61111f565b3480156105db57600080fd5b506102696105ea366004611dee565b611149565b6102ed6105fd366004611dee565b61121c565b34801561060e57600080fd5b5061032560085481565b34801561062457600080fd5b5061023f610633366004612031565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066d57600080fd5b506102ed61067c366004612064565b61144a565b34801561068d57600080fd5b506102ed61069c366004611e4d565b61148c565b60006001600160e01b031982166380ac58cd60e01b14806106d257506001600160e01b03198216635b5e139f60e01b145b806106ed57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610702906120d9565b80601f016020809104026020016040519081016040528092919081815260200182805461072e906120d9565b801561077b5780601f106107505761010080835404028352916020019161077b565b820191906000526020600020905b81548152906001019060200180831161075e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108035760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6006546001600160a01b031633146108495760405162461bcd60e51b81526004016107fa90612113565b600955565b600061085982610b26565b9050806001600160a01b0316836001600160a01b0316036108c65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107fa565b336001600160a01b03821614806108e257506108e28133610633565b6109545760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107fa565b61095e8383611524565b505050565b61096d3382611592565b6109895760405162461bcd60e51b81526004016107fa90612148565b61095e838383611689565b6000805b600e548110156109f457826001600160a01b0316600e82815481106109bf576109bf612199565b6000918252602090912001546001600160a01b0316036109e25750600192915050565b806109ec816121c5565b915050610998565b50600092915050565b6006546001600160a01b03163314610a275760405162461bcd60e51b81526004016107fa90612113565b6000610a3b6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a85576040519150601f19603f3d011682016040523d82523d6000602084013e610a8a565b606091505b5050905080610a9857600080fd5b50565b61095e838383604051806020016040528060008152506110e7565b6006546001600160a01b03163314610ae05760405162461bcd60e51b81526004016107fa90612113565b600755565b6006546001600160a01b03163314610b0f5760405162461bcd60e51b81526004016107fa90612113565b8051610b2290600c906020840190611c3f565b5050565b6000818152600260205260408120546001600160a01b0316806106ed5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107fa565b600c8054610baa906120d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd6906120d9565b8015610c235780601f10610bf857610100808354040283529160200191610c23565b820191906000526020600020905b815481529060010190602001808311610c0657829003601f168201915b505050505081565b6006546001600160a01b03163314610c555760405162461bcd60e51b81526004016107fa90612113565b600855565b60006001600160a01b038216610cc55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107fa565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d0b5760405162461bcd60e51b81526004016107fa90612113565b610d156000611829565b565b6006546001600160a01b03163314610d415760405162461bcd60e51b81526004016107fa90612113565b600d805461010060ff19821660ff80841615918217839004161590910261ff001990911661ffff1990921691909117179055565b6006546001600160a01b03163314610d9f5760405162461bcd60e51b81526004016107fa90612113565b600b805460ff19811660ff90911615179055565b606060018054610702906120d9565b600b5460ff1615610e155760405162461bcd60e51b815260206004820152601f60248201527f574141495454202d2054686520436f6e7472616374206973205061757365640060448201526064016107fa565b600d54610100900460ff16610e765760405162461bcd60e51b815260206004820152602160248201527f5741414954543a3a6d696e743a204d696e74206973206e6f74206163746976656044820152601760f91b60648201526084016107fa565b60085481600a54610e8791906121de565b1115610ed55760405162461bcd60e51b815260206004820152601f60248201527f574141495454202d206d6178204e4654206c696d69742065786365656465640060448201526064016107fa565b6006546001600160a01b03163314610fca57600954811115610ef657600080fd5b336000908152600f6020526040902054600954610f1383836121de565b1115610f615760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016107fa565b81600754610f6f91906121f6565b341015610fc85760405162461bcd60e51b815260206004820152602160248201527f5741414954543a3a6d696e743a20696e73756666696369656e742065746865726044820152607360f81b60648201526084016107fa565b505b60015b818111610b2257336000908152600f60205260408120805491610fef836121c5565b919050555061101133600a60008154611007906121c5565b918290555061187b565b8061101b816121c5565b915050610fcd565b336001600160a01b0383160361107b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107fa565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110f13383611592565b61110d5760405162461bcd60e51b81526004016107fa90612148565b61111984848484611895565b50505050565b600e818154811061112f57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260409020546060906001600160a01b03166111c05760405162461bcd60e51b815260206004820152602760248201527f4552433732314d657461646174613a20546f6b656e20494420646f6573206e6f6044820152661d08195e1a5cdd60ca1b60648201526084016107fa565b6000600c80546111cf906120d9565b9050116111eb57604051806020016040528060008152506106ed565b600c6111f6836118c8565b604051602001611207929190612231565b60405160208183030381529060405292915050565b600b5460ff16156112685760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016107fa565b600d5460ff166112ba5760405162461bcd60e51b815260206004820152601f60248201527f574141495454202d2050726573616c65206973206e6f74206163746976652e0060448201526064016107fa565b6102ee81600a546112cb91906121de565b11156113195760405162461bcd60e51b815260206004820152601a60248201527f574141495454202d2046726565204e465420657863656564656400000000000060448201526064016107fa565b336000908152600f602052604090205460095461133683836121de565b11156113845760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016107fa565b61138d33610994565b6113ec5760405162461bcd60e51b815260206004820152602a60248201527f574141495454202d2050726573616c65204f6e6c7920666f722057686974656c60448201526934b9ba103ab9b2b9399760b11b60648201526084016107fa565b6009548211156113fb57600080fd5b60015b82811161095e57336000908152600f60205260408120805491611420836121c5565b919050555061143833600a60008154611007906121c5565b80611442816121c5565b9150506113fe565b6006546001600160a01b031633146114745760405162461bcd60e51b81526004016107fa90612113565b611480600e6000611cc3565b61095e600e8383611ce1565b6006546001600160a01b031633146114b65760405162461bcd60e51b81526004016107fa90612113565b6001600160a01b03811661151b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fa565b610a9881611829565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061155982610b26565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661160b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107fa565b600061161683610b26565b9050806001600160a01b0316846001600160a01b031614806116515750836001600160a01b031661164684610785565b6001600160a01b0316145b8061168157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661169c82610b26565b6001600160a01b0316146117045760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107fa565b6001600160a01b0382166117665760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107fa565b611771600082611524565b6001600160a01b038316600090815260036020526040812080546001929061179a9084906122fb565b90915550506001600160a01b03821660009081526003602052604081208054600192906117c89084906121de565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b228282604051806020016040528060008152506119c9565b6118a0848484611689565b6118ac848484846119fc565b6111195760405162461bcd60e51b81526004016107fa90612312565b6060816000036118ef5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119195780611903816121c5565b91506119129050600a8361237a565b91506118f3565b60008167ffffffffffffffff81111561193457611934611ea4565b6040519080825280601f01601f19166020018201604052801561195e576020820181803683370190505b5090505b8415611681576119736001836122fb565b9150611980600a8661238e565b61198b9060306121de565b60f81b8183815181106119a0576119a0612199565b60200101906001600160f81b031916908160001a9053506119c2600a8661237a565b9450611962565b6119d38383611afd565b6119e060008484846119fc565b61095e5760405162461bcd60e51b81526004016107fa90612312565b60006001600160a01b0384163b15611af257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a409033908990889088906004016123a2565b6020604051808303816000875af1925050508015611a7b575060408051601f3d908101601f19168201909252611a78918101906123df565b60015b611ad8573d808015611aa9576040519150601f19603f3d011682016040523d82523d6000602084013e611aae565b606091505b508051600003611ad05760405162461bcd60e51b81526004016107fa90612312565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611681565b506001949350505050565b6001600160a01b038216611b535760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107fa565b6000818152600260205260409020546001600160a01b031615611bb85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107fa565b6001600160a01b0382166000908152600360205260408120805460019290611be19084906121de565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c4b906120d9565b90600052602060002090601f016020900481019282611c6d5760008555611cb3565b82601f10611c8657805160ff1916838001178555611cb3565b82800160010185558215611cb3579182015b82811115611cb3578251825591602001919060010190611c98565b50611cbf929150611d34565b5090565b5080546000825590600052602060002090810190610a989190611d34565b828054828255906000526020600020908101928215611cb3579160200282015b82811115611cb35781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611d01565b5b80821115611cbf5760008155600101611d35565b6001600160e01b031981168114610a9857600080fd5b600060208284031215611d7157600080fd5b8135611d7c81611d49565b9392505050565b60005b83811015611d9e578181015183820152602001611d86565b838111156111195750506000910152565b60008151808452611dc7816020860160208601611d83565b601f01601f19169290920160200192915050565b602081526000611d7c6020830184611daf565b600060208284031215611e0057600080fd5b5035919050565b80356001600160a01b0381168114611e1e57600080fd5b919050565b60008060408385031215611e3657600080fd5b611e3f83611e07565b946020939093013593505050565b600060208284031215611e5f57600080fd5b611d7c82611e07565b600080600060608486031215611e7d57600080fd5b611e8684611e07565b9250611e9460208501611e07565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ed557611ed5611ea4565b604051601f8501601f19908116603f01168101908282118183101715611efd57611efd611ea4565b81604052809350858152868686011115611f1657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f4257600080fd5b813567ffffffffffffffff811115611f5957600080fd5b8201601f81018413611f6a57600080fd5b61168184823560208401611eba565b60008060408385031215611f8c57600080fd5b611f9583611e07565b915060208301358015158114611faa57600080fd5b809150509250929050565b60008060008060808587031215611fcb57600080fd5b611fd485611e07565b9350611fe260208601611e07565b925060408501359150606085013567ffffffffffffffff81111561200557600080fd5b8501601f8101871361201657600080fd5b61202587823560208401611eba565b91505092959194509250565b6000806040838503121561204457600080fd5b61204d83611e07565b915061205b60208401611e07565b90509250929050565b6000806020838503121561207757600080fd5b823567ffffffffffffffff8082111561208f57600080fd5b818501915085601f8301126120a357600080fd5b8135818111156120b257600080fd5b8660208260051b85010111156120c757600080fd5b60209290920196919550909350505050565b600181811c908216806120ed57607f821691505b60208210810361210d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016121d7576121d76121af565b5060010190565b600082198211156121f1576121f16121af565b500190565b6000816000190483118215151615612210576122106121af565b500290565b60008151612227818560208601611d83565b9290920192915050565b600080845481600182811c91508083168061224d57607f831692505b6020808410820361226c57634e487b7160e01b86526022600452602486fd5b8180156122805760018114612291576122be565b60ff198616895284890196506122be565b60008b81526020902060005b868110156122b65781548b82015290850190830161229d565b505084890196505b5050505050506122f26122e16122db83602f60f81b815260010190565b86612215565b64173539b7b760d91b815260050190565b95945050505050565b60008282101561230d5761230d6121af565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261238957612389612364565b500490565b60008261239d5761239d612364565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123d590830184611daf565b9695505050505050565b6000602082840312156123f157600080fd5b8151611d7c81611d4956fea26469706673582212202c95552e62de9e98e15c34cc9ec3c591ef0a975f9a09b7e0d6aba5ea82f7caa364736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5764533172687a744d4c346172654b434c3932547435654276376635396762327057313372736947473857720000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636c0360eb11610123578063a0712d68116100ab578063c9b298f11161006f578063c9b298f1146105ef578063d5abeb0114610602578063e985e9c514610618578063edec5f2714610661578063f2fde38b1461068157600080fd5b8063a0712d681461055c578063a22cb4651461056f578063b88d4fde1461058f578063ba4e5c49146105af578063c87b56dd146105cf57600080fd5b80637d8966e4116100f25780637d8966e4146104e95780638456cb59146104fe5780638da5cb5b1461051357806395d89b41146105315780639f181b5e1461054657600080fd5b80636c0360eb1461047f5780636f8b44b01461049457806370a08231146104b4578063715018a6146104d457600080fd5b806323b872dd116101a657806344a0d68a1161017557806344a0d68a146103eb57806353135ca01461040b57806355f804b3146104255780635c975abb146104455780636352211e1461045f57600080fd5b806323b872dd146103765780633af32abf146103965780633ccfd60b146103b657806342842e0e146103cb57600080fd5b8063088a4ed0116101ed578063088a4ed0146102cd578063095ea7b3146102ef57806313faede61461030f57806318cae26914610333578063239c70ae1461036057600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063087224fb146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611d5f565b6106a1565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106f3565b60405161024b9190611ddb565b34801561028257600080fd5b50610296610291366004611dee565b610785565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b50600d5461023f90610100900460ff1681565b3480156102d957600080fd5b506102ed6102e8366004611dee565b61081f565b005b3480156102fb57600080fd5b506102ed61030a366004611e23565b61084e565b34801561031b57600080fd5b5061032560075481565b60405190815260200161024b565b34801561033f57600080fd5b5061032561034e366004611e4d565b600f6020526000908152604090205481565b34801561036c57600080fd5b5061032560095481565b34801561038257600080fd5b506102ed610391366004611e68565b610963565b3480156103a257600080fd5b5061023f6103b1366004611e4d565b610994565b3480156103c257600080fd5b506102ed6109fd565b3480156103d757600080fd5b506102ed6103e6366004611e68565b610a9b565b3480156103f757600080fd5b506102ed610406366004611dee565b610ab6565b34801561041757600080fd5b50600d5461023f9060ff1681565b34801561043157600080fd5b506102ed610440366004611f30565b610ae5565b34801561045157600080fd5b50600b5461023f9060ff1681565b34801561046b57600080fd5b5061029661047a366004611dee565b610b26565b34801561048b57600080fd5b50610269610b9d565b3480156104a057600080fd5b506102ed6104af366004611dee565b610c2b565b3480156104c057600080fd5b506103256104cf366004611e4d565b610c5a565b3480156104e057600080fd5b506102ed610ce1565b3480156104f557600080fd5b506102ed610d17565b34801561050a57600080fd5b506102ed610d75565b34801561051f57600080fd5b506006546001600160a01b0316610296565b34801561053d57600080fd5b50610269610db3565b34801561055257600080fd5b50610325600a5481565b6102ed61056a366004611dee565b610dc2565b34801561057b57600080fd5b506102ed61058a366004611f79565b611023565b34801561059b57600080fd5b506102ed6105aa366004611fb5565b6110e7565b3480156105bb57600080fd5b506102966105ca366004611dee565b61111f565b3480156105db57600080fd5b506102696105ea366004611dee565b611149565b6102ed6105fd366004611dee565b61121c565b34801561060e57600080fd5b5061032560085481565b34801561062457600080fd5b5061023f610633366004612031565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066d57600080fd5b506102ed61067c366004612064565b61144a565b34801561068d57600080fd5b506102ed61069c366004611e4d565b61148c565b60006001600160e01b031982166380ac58cd60e01b14806106d257506001600160e01b03198216635b5e139f60e01b145b806106ed57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610702906120d9565b80601f016020809104026020016040519081016040528092919081815260200182805461072e906120d9565b801561077b5780601f106107505761010080835404028352916020019161077b565b820191906000526020600020905b81548152906001019060200180831161075e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108035760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6006546001600160a01b031633146108495760405162461bcd60e51b81526004016107fa90612113565b600955565b600061085982610b26565b9050806001600160a01b0316836001600160a01b0316036108c65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107fa565b336001600160a01b03821614806108e257506108e28133610633565b6109545760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107fa565b61095e8383611524565b505050565b61096d3382611592565b6109895760405162461bcd60e51b81526004016107fa90612148565b61095e838383611689565b6000805b600e548110156109f457826001600160a01b0316600e82815481106109bf576109bf612199565b6000918252602090912001546001600160a01b0316036109e25750600192915050565b806109ec816121c5565b915050610998565b50600092915050565b6006546001600160a01b03163314610a275760405162461bcd60e51b81526004016107fa90612113565b6000610a3b6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a85576040519150601f19603f3d011682016040523d82523d6000602084013e610a8a565b606091505b5050905080610a9857600080fd5b50565b61095e838383604051806020016040528060008152506110e7565b6006546001600160a01b03163314610ae05760405162461bcd60e51b81526004016107fa90612113565b600755565b6006546001600160a01b03163314610b0f5760405162461bcd60e51b81526004016107fa90612113565b8051610b2290600c906020840190611c3f565b5050565b6000818152600260205260408120546001600160a01b0316806106ed5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107fa565b600c8054610baa906120d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd6906120d9565b8015610c235780601f10610bf857610100808354040283529160200191610c23565b820191906000526020600020905b815481529060010190602001808311610c0657829003601f168201915b505050505081565b6006546001600160a01b03163314610c555760405162461bcd60e51b81526004016107fa90612113565b600855565b60006001600160a01b038216610cc55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107fa565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d0b5760405162461bcd60e51b81526004016107fa90612113565b610d156000611829565b565b6006546001600160a01b03163314610d415760405162461bcd60e51b81526004016107fa90612113565b600d805461010060ff19821660ff80841615918217839004161590910261ff001990911661ffff1990921691909117179055565b6006546001600160a01b03163314610d9f5760405162461bcd60e51b81526004016107fa90612113565b600b805460ff19811660ff90911615179055565b606060018054610702906120d9565b600b5460ff1615610e155760405162461bcd60e51b815260206004820152601f60248201527f574141495454202d2054686520436f6e7472616374206973205061757365640060448201526064016107fa565b600d54610100900460ff16610e765760405162461bcd60e51b815260206004820152602160248201527f5741414954543a3a6d696e743a204d696e74206973206e6f74206163746976656044820152601760f91b60648201526084016107fa565b60085481600a54610e8791906121de565b1115610ed55760405162461bcd60e51b815260206004820152601f60248201527f574141495454202d206d6178204e4654206c696d69742065786365656465640060448201526064016107fa565b6006546001600160a01b03163314610fca57600954811115610ef657600080fd5b336000908152600f6020526040902054600954610f1383836121de565b1115610f615760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016107fa565b81600754610f6f91906121f6565b341015610fc85760405162461bcd60e51b815260206004820152602160248201527f5741414954543a3a6d696e743a20696e73756666696369656e742065746865726044820152607360f81b60648201526084016107fa565b505b60015b818111610b2257336000908152600f60205260408120805491610fef836121c5565b919050555061101133600a60008154611007906121c5565b918290555061187b565b8061101b816121c5565b915050610fcd565b336001600160a01b0383160361107b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107fa565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110f13383611592565b61110d5760405162461bcd60e51b81526004016107fa90612148565b61111984848484611895565b50505050565b600e818154811061112f57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260409020546060906001600160a01b03166111c05760405162461bcd60e51b815260206004820152602760248201527f4552433732314d657461646174613a20546f6b656e20494420646f6573206e6f6044820152661d08195e1a5cdd60ca1b60648201526084016107fa565b6000600c80546111cf906120d9565b9050116111eb57604051806020016040528060008152506106ed565b600c6111f6836118c8565b604051602001611207929190612231565b60405160208183030381529060405292915050565b600b5460ff16156112685760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016107fa565b600d5460ff166112ba5760405162461bcd60e51b815260206004820152601f60248201527f574141495454202d2050726573616c65206973206e6f74206163746976652e0060448201526064016107fa565b6102ee81600a546112cb91906121de565b11156113195760405162461bcd60e51b815260206004820152601a60248201527f574141495454202d2046726565204e465420657863656564656400000000000060448201526064016107fa565b336000908152600f602052604090205460095461133683836121de565b11156113845760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016107fa565b61138d33610994565b6113ec5760405162461bcd60e51b815260206004820152602a60248201527f574141495454202d2050726573616c65204f6e6c7920666f722057686974656c60448201526934b9ba103ab9b2b9399760b11b60648201526084016107fa565b6009548211156113fb57600080fd5b60015b82811161095e57336000908152600f60205260408120805491611420836121c5565b919050555061143833600a60008154611007906121c5565b80611442816121c5565b9150506113fe565b6006546001600160a01b031633146114745760405162461bcd60e51b81526004016107fa90612113565b611480600e6000611cc3565b61095e600e8383611ce1565b6006546001600160a01b031633146114b65760405162461bcd60e51b81526004016107fa90612113565b6001600160a01b03811661151b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fa565b610a9881611829565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061155982610b26565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661160b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107fa565b600061161683610b26565b9050806001600160a01b0316846001600160a01b031614806116515750836001600160a01b031661164684610785565b6001600160a01b0316145b8061168157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661169c82610b26565b6001600160a01b0316146117045760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107fa565b6001600160a01b0382166117665760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107fa565b611771600082611524565b6001600160a01b038316600090815260036020526040812080546001929061179a9084906122fb565b90915550506001600160a01b03821660009081526003602052604081208054600192906117c89084906121de565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b228282604051806020016040528060008152506119c9565b6118a0848484611689565b6118ac848484846119fc565b6111195760405162461bcd60e51b81526004016107fa90612312565b6060816000036118ef5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119195780611903816121c5565b91506119129050600a8361237a565b91506118f3565b60008167ffffffffffffffff81111561193457611934611ea4565b6040519080825280601f01601f19166020018201604052801561195e576020820181803683370190505b5090505b8415611681576119736001836122fb565b9150611980600a8661238e565b61198b9060306121de565b60f81b8183815181106119a0576119a0612199565b60200101906001600160f81b031916908160001a9053506119c2600a8661237a565b9450611962565b6119d38383611afd565b6119e060008484846119fc565b61095e5760405162461bcd60e51b81526004016107fa90612312565b60006001600160a01b0384163b15611af257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a409033908990889088906004016123a2565b6020604051808303816000875af1925050508015611a7b575060408051601f3d908101601f19168201909252611a78918101906123df565b60015b611ad8573d808015611aa9576040519150601f19603f3d011682016040523d82523d6000602084013e611aae565b606091505b508051600003611ad05760405162461bcd60e51b81526004016107fa90612312565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611681565b506001949350505050565b6001600160a01b038216611b535760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107fa565b6000818152600260205260409020546001600160a01b031615611bb85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107fa565b6001600160a01b0382166000908152600360205260408120805460019290611be19084906121de565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c4b906120d9565b90600052602060002090601f016020900481019282611c6d5760008555611cb3565b82601f10611c8657805160ff1916838001178555611cb3565b82800160010185558215611cb3579182015b82811115611cb3578251825591602001919060010190611c98565b50611cbf929150611d34565b5090565b5080546000825590600052602060002090810190610a989190611d34565b828054828255906000526020600020908101928215611cb3579160200282015b82811115611cb35781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611d01565b5b80821115611cbf5760008155600101611d35565b6001600160e01b031981168114610a9857600080fd5b600060208284031215611d7157600080fd5b8135611d7c81611d49565b9392505050565b60005b83811015611d9e578181015183820152602001611d86565b838111156111195750506000910152565b60008151808452611dc7816020860160208601611d83565b601f01601f19169290920160200192915050565b602081526000611d7c6020830184611daf565b600060208284031215611e0057600080fd5b5035919050565b80356001600160a01b0381168114611e1e57600080fd5b919050565b60008060408385031215611e3657600080fd5b611e3f83611e07565b946020939093013593505050565b600060208284031215611e5f57600080fd5b611d7c82611e07565b600080600060608486031215611e7d57600080fd5b611e8684611e07565b9250611e9460208501611e07565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ed557611ed5611ea4565b604051601f8501601f19908116603f01168101908282118183101715611efd57611efd611ea4565b81604052809350858152868686011115611f1657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f4257600080fd5b813567ffffffffffffffff811115611f5957600080fd5b8201601f81018413611f6a57600080fd5b61168184823560208401611eba565b60008060408385031215611f8c57600080fd5b611f9583611e07565b915060208301358015158114611faa57600080fd5b809150509250929050565b60008060008060808587031215611fcb57600080fd5b611fd485611e07565b9350611fe260208601611e07565b925060408501359150606085013567ffffffffffffffff81111561200557600080fd5b8501601f8101871361201657600080fd5b61202587823560208401611eba565b91505092959194509250565b6000806040838503121561204457600080fd5b61204d83611e07565b915061205b60208401611e07565b90509250929050565b6000806020838503121561207757600080fd5b823567ffffffffffffffff8082111561208f57600080fd5b818501915085601f8301126120a357600080fd5b8135818111156120b257600080fd5b8660208260051b85010111156120c757600080fd5b60209290920196919550909350505050565b600181811c908216806120ed57607f821691505b60208210810361210d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016121d7576121d76121af565b5060010190565b600082198211156121f1576121f16121af565b500190565b6000816000190483118215151615612210576122106121af565b500290565b60008151612227818560208601611d83565b9290920192915050565b600080845481600182811c91508083168061224d57607f831692505b6020808410820361226c57634e487b7160e01b86526022600452602486fd5b8180156122805760018114612291576122be565b60ff198616895284890196506122be565b60008b81526020902060005b868110156122b65781548b82015290850190830161229d565b505084890196505b5050505050506122f26122e16122db83602f60f81b815260010190565b86612215565b64173539b7b760d91b815260050190565b95945050505050565b60008282101561230d5761230d6121af565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261238957612389612364565b500490565b60008261239d5761239d612364565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123d590830184611daf565b9695505050505050565b6000602082840312156123f157600080fd5b8151611d7c81611d4956fea26469706673582212202c95552e62de9e98e15c34cc9ec3c591ef0a975f9a09b7e0d6aba5ea82f7caa364736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5764533172687a744d4c346172654b434c3932547435654276376635396762327057313372736947473857720000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmWdS1rhztML4areKCL92Tt5eBv7f59gb2pW13rsiGG8Wr

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [2] : 697066733a2f2f516d5764533172687a744d4c346172654b434c393254743565
Arg [3] : 4276376635396762327057313372736947473857720000000000000000000000


Deployed Bytecode Sourcemap

36771:4014:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23661:355;;;;;;;;;;-1:-1:-1;23661:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23661:355:0;;;;;;;;24830:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26523:308::-;;;;;;;;;;-1:-1:-1;26523:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;26523:308:0;1550:203:1;37098:26:0;;;;;;;;;;-1:-1:-1;37098:26:0;;;;;;;;;;;40058:116;;;;;;;;;;-1:-1:-1;40058:116:0;;;;;:::i;:::-;;:::i;:::-;;26046:411;;;;;;;;;;-1:-1:-1;26046:411:0;;;;;:::i;:::-;;:::i;36845:32::-;;;;;;;;;;;;;;;;;;;2341:25:1;;;2329:2;2314:18;36845:32:0;2195:177:1;37177:55:0;;;;;;;;;;-1:-1:-1;37177:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;36922:33;;;;;;;;;;;;;;;;27582:376;;;;;;;;;;-1:-1:-1;27582:376:0;;;;;:::i;:::-;;:::i;37357:274::-;;;;;;;;;;-1:-1:-1;37357:274:0;;;;;:::i;:::-;;:::i;40635:147::-;;;;;;;;;;;;;:::i;28029:185::-;;;;;;;;;;-1:-1:-1;28029:185:0;;;;;:::i;:::-;;:::i;39823:86::-;;;;;;;;;;-1:-1:-1;39823:86:0;;;;;:::i;:::-;;:::i;37059:32::-;;;;;;;;;;-1:-1:-1;37059:32:0;;;;;;;;40290:98;;;;;;;;;;-1:-1:-1;40290:98:0;;;;;:::i;:::-;;:::i;36998:26::-;;;;;;;;;;-1:-1:-1;36998:26:0;;;;;;;;24437:326;;;;;;;;;;-1:-1:-1;24437:326:0;;;;;:::i;:::-;;:::i;37031:21::-;;;;;;;;;;;;;:::i;40182:100::-;;;;;;;;;;-1:-1:-1;40182:100:0;;;;;:::i;:::-;;:::i;24080:295::-;;;;;;;;;;-1:-1:-1;24080:295:0;;;;;:::i;:::-;;:::i;4634:94::-;;;;;;;;;;;;;:::i;39917:133::-;;;;;;;;;;;;;:::i;40396:69::-;;;;;;;;;;;;;:::i;3983:87::-;;;;;;;;;;-1:-1:-1;4056:6:0;;-1:-1:-1;;;;;4056:6:0;3983:87;;24999:104;;;;;;;;;;;;;:::i;36962:29::-;;;;;;;;;;;;;;;;38867:930;;;;;;:::i;:::-;;:::i;26903:327::-;;;;;;;;;;-1:-1:-1;26903:327:0;;;;;:::i;:::-;;:::i;28285:365::-;;;;;;;;;;-1:-1:-1;28285:365:0;;;;;:::i;:::-;;:::i;37131:37::-;;;;;;;;;;-1:-1:-1;37131:37:0;;;;;:::i;:::-;;:::i;37639:413::-;;;;;;;;;;-1:-1:-1;37639:413:0;;;;;:::i;:::-;;:::i;38060:799::-;;;;;;:::i;:::-;;:::i;36884:31::-;;;;;;;;;;;;;;;;27301:214;;;;;;;;;;-1:-1:-1;27301:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;27472:25:0;;;27443:4;27472:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27301:214;40473:154;;;;;;;;;;-1:-1:-1;40473:154:0;;;;;:::i;:::-;;:::i;4883:229::-;;;;;;;;;;-1:-1:-1;4883:229:0;;;;;:::i;:::-;;:::i;23661:355::-;23808:4;-1:-1:-1;;;;;;23850:40:0;;-1:-1:-1;;;23850:40:0;;:105;;-1:-1:-1;;;;;;;23907:48:0;;-1:-1:-1;;;23907:48:0;23850:105;:158;;;-1:-1:-1;;;;;;;;;;16614:40:0;;;23972:36;23830:178;23661:355;-1:-1:-1;;23661:355:0:o;24830:100::-;24884:13;24917:5;24910:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24830:100;:::o;26523:308::-;26644:7;30286:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30286:16:0;26669:110;;;;-1:-1:-1;;;26669:110:0;;6622:2:1;26669:110:0;;;6604:21:1;6661:2;6641:18;;;6634:30;6700:34;6680:18;;;6673:62;-1:-1:-1;;;6751:18:1;;;6744:42;6803:19;;26669:110:0;;;;;;;;;-1:-1:-1;26799:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26799:24:0;;26523:308::o;40058:116::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;40136:13:::1;:30:::0;40058:116::o;26046:411::-;26127:13;26143:23;26158:7;26143:14;:23::i;:::-;26127:39;;26191:5;-1:-1:-1;;;;;26185:11:0;:2;-1:-1:-1;;;;;26185:11:0;;26177:57;;;;-1:-1:-1;;;26177:57:0;;7396:2:1;26177:57:0;;;7378:21:1;7435:2;7415:18;;;7408:30;7474:34;7454:18;;;7447:62;-1:-1:-1;;;7525:18:1;;;7518:31;7566:19;;26177:57:0;7194:397:1;26177:57:0;2832:10;-1:-1:-1;;;;;26269:21:0;;;;:62;;-1:-1:-1;26294:37:0;26311:5;2832:10;27301:214;:::i;26294:37::-;26247:168;;;;-1:-1:-1;;;26247:168:0;;7798:2:1;26247:168:0;;;7780:21:1;7837:2;7817:18;;;7810:30;7876:34;7856:18;;;7849:62;7947:26;7927:18;;;7920:54;7991:19;;26247:168:0;7596:420:1;26247:168:0;26428:21;26437:2;26441:7;26428:8;:21::i;:::-;26116:341;26046:411;;:::o;27582:376::-;27791:41;2832:10;27824:7;27791:18;:41::i;:::-;27769:140;;;;-1:-1:-1;;;27769:140:0;;;;;;;:::i;:::-;27922:28;27932:4;27938:2;27942:7;27922:9;:28::i;37357:274::-;37416:4;;37433:168;37457:20;:27;37453:31;;37433:168;;;37537:5;-1:-1:-1;;;;;37510:32:0;:20;37531:1;37510:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;37510:23:0;:32;37506:84;;-1:-1:-1;37570:4:0;;37357:274;-1:-1:-1;;37357:274:0:o;37506:84::-;37486:3;;;;:::i;:::-;;;;37433:168;;;-1:-1:-1;37618:5:0;;37357:274;-1:-1:-1;;37357:274:0:o;40635:147::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;40684:7:::1;40705;4056:6:::0;;-1:-1:-1;;;;;4056:6:0;;3983:87;40705:7:::1;-1:-1:-1::0;;;;;40697:21:0::1;40726;40697:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40683:69;;;40771:2;40763:11;;;::::0;::::1;;40672:110;40635:147::o:0;28029:185::-;28167:39;28184:4;28190:2;28194:7;28167:39;;;;;;;;;;;;:16;:39::i;39823:86::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;39886:4:::1;:15:::0;39823:86::o;40290:98::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;40362:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40290:98:::0;:::o;24437:326::-;24554:7;24595:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24595:16:0;;24622:110;;;;-1:-1:-1;;;24622:110:0;;9255:2:1;24622:110:0;;;9237:21:1;9294:2;9274:18;;;9267:30;9333:34;9313:18;;;9306:62;-1:-1:-1;;;9384:18:1;;;9377:39;9433:19;;24622:110:0;9053:405:1;37031:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40182:100::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;40252:9:::1;:22:::0;40182:100::o;24080:295::-;24197:7;-1:-1:-1;;;;;24244:19:0;;24222:111;;;;-1:-1:-1;;;24222:111:0;;9665:2:1;24222:111:0;;;9647:21:1;9704:2;9684:18;;;9677:30;9743:34;9723:18;;;9716:62;-1:-1:-1;;;9794:18:1;;;9787:40;9844:19;;24222:111:0;9463:406:1;24222:111:0;-1:-1:-1;;;;;;24351:16:0;;;;;:9;:16;;;;;;;24080:295::o;4634:94::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;4699:21:::1;4717:1;4699:9;:21::i;:::-;4634:94::o:0;39917:133::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;39986:13:::1;::::0;;::::1;-1:-1:-1::0;;39969:30:0;::::1;39986:13;::::0;;::::1;39985:14;39969:30:::0;;::::1;40028:14:::0;;::::1;;40027:15;40010:32:::0;;::::1;-1:-1:-1::0;;40010:32:0;;;-1:-1:-1;;40010:32:0;;;;;;;::::1;::::0;;39917:133::o;40396:69::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;40451:6:::1;::::0;;-1:-1:-1;;40441:16:0;::::1;40451:6;::::0;;::::1;40450:7;40441:16;::::0;;40396:69::o;24999:104::-;25055:13;25088:7;25081:14;;;;;:::i;38867:930::-;38935:6;;;;38934:7;38926:51;;;;-1:-1:-1;;;38926:51:0;;10076:2:1;38926:51:0;;;10058:21:1;10115:2;10095:18;;;10088:30;10154:33;10134:18;;;10127:61;10205:18;;38926:51:0;9874:355:1;38926:51:0;38996:14;;;;;;;38988:60;;;;-1:-1:-1;;;38988:60:0;;10436:2:1;38988:60:0;;;10418:21:1;10475:2;10455:18;;;10448:30;10514:34;10494:18;;;10487:62;-1:-1:-1;;;10565:18:1;;;10558:31;10606:19;;38988:60:0;10234:397:1;38988:60:0;39105:9;;39094:7;39081:10;;:20;;;;:::i;:::-;:33;;39059:114;;;;-1:-1:-1;;;39059:114:0;;10971:2:1;39059:114:0;;;10953:21:1;11010:2;10990:18;;;10983:30;11049:33;11029:18;;;11022:61;11100:18;;39059:114:0;10769:355:1;39059:114:0;4056:6;;-1:-1:-1;;;;;4056:6:0;39188:10;:21;39184:446;;39245:13;;39234:7;:24;;39226:33;;;;;;39322:10;39274:24;39301:32;;;:20;:32;;;;;;39404:13;;39374:26;39393:7;39301:32;39374:26;:::i;:::-;:43;;39348:133;;;;-1:-1:-1;;;39348:133:0;;11331:2:1;39348:133:0;;;11313:21:1;11370:2;11350:18;;;11343:30;11409;11389:18;;;11382:58;11457:18;;39348:133:0;11129:352:1;39348:133:0;39542:7;39535:4;;:14;;;;:::i;:::-;39522:9;:27;;39496:122;;;;-1:-1:-1;;;39496:122:0;;11861:2:1;39496:122:0;;;11843:21:1;11900:2;11880:18;;;11873:30;11939:34;11919:18;;;11912:62;-1:-1:-1;;;11990:18:1;;;11983:31;12031:19;;39496:122:0;11659:397:1;39496:122:0;39211:419;39184:446;39657:1;39640:150;39665:7;39660:1;:12;39640:150;;39715:10;39694:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;39743:35;39753:10;39767;;39765:12;;;;;:::i;:::-;;;;;-1:-1:-1;39743:9:0;:35::i;:::-;39674:3;;;;:::i;:::-;;;;39640:150;;26903:327;2832:10;-1:-1:-1;;;;;27038:24:0;;;27030:62;;;;-1:-1:-1;;;27030:62:0;;12263:2:1;27030:62:0;;;12245:21:1;12302:2;12282:18;;;12275:30;12341:27;12321:18;;;12314:55;12386:18;;27030:62:0;12061:349:1;27030:62:0;2832:10;27105:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27105:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27105:53:0;;;;;;;;;;27174:48;;540:41:1;;;27105:42:0;;2832:10;27174:48;;513:18:1;27174:48:0;;;;;;;26903:327;;:::o;28285:365::-;28474:41;2832:10;28507:7;28474:18;:41::i;:::-;28452:140;;;;-1:-1:-1;;;28452:140:0;;;;;;;:::i;:::-;28603:39;28617:4;28623:2;28627:7;28636:5;28603:13;:39::i;:::-;28285:365;;;;:::o;37131:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37131:37:0;;-1:-1:-1;37131:37:0;:::o;37639:413::-;30262:4;30286:16;;;:7;:16;;;;;;37740:13;;-1:-1:-1;;;;;30286:16:0;37771:68;;;;-1:-1:-1;;;37771:68:0;;12617:2:1;37771:68:0;;;12599:21:1;12656:2;12636:18;;;12629:30;12695:34;12675:18;;;12668:62;-1:-1:-1;;;12746:18:1;;;12739:37;12793:19;;37771:68:0;12415:403:1;37771:68:0;37894:1;37876:7;37870:21;;;;;:::i;:::-;;;:25;:174;;;;;;;;;;;;;;;;;37961:7;37975:18;:7;:16;:18::i;:::-;37944:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37850:194;37639:413;-1:-1:-1;;37639:413:0:o;38060:799::-;38135:6;;;;38134:7;38126:42;;;;-1:-1:-1;;;38126:42:0;;15016:2:1;38126:42:0;;;14998:21:1;15055:2;15035:18;;;15028:30;-1:-1:-1;;;15074:18:1;;;15067:52;15136:18;;38126:42:0;14814:346:1;38126:42:0;38187:13;;;;38179:57;;;;-1:-1:-1;;;38179:57:0;;15367:2:1;38179:57:0;;;15349:21:1;15406:2;15386:18;;;15379:30;15445:33;15425:18;;;15418:61;15496:18;;38179:57:0;15165:355:1;38179:57:0;38279:3;38268:7;38255:10;;:20;;;;:::i;:::-;:27;;38247:66;;;;-1:-1:-1;;;38247:66:0;;15727:2:1;38247:66:0;;;15709:21:1;15766:2;15746:18;;;15739:30;15805:28;15785:18;;;15778:56;15851:18;;38247:66:0;15525:350:1;38247:66:0;38372:10;38324:24;38351:32;;;:20;:32;;;;;;38446:13;;38416:26;38435:7;38351:32;38416:26;:::i;:::-;:43;;38394:121;;;;-1:-1:-1;;;38394:121:0;;11331:2:1;38394:121:0;;;11313:21:1;11370:2;11350:18;;;11343:30;11409;11389:18;;;11382:58;11457:18;;38394:121:0;11129:352:1;38394:121:0;38548:27;2832:10;37357:274;:::i;38548:27::-;38526:119;;;;-1:-1:-1;;;38526:119:0;;16082:2:1;38526:119:0;;;16064:21:1;16121:2;16101:18;;;16094:30;16160:34;16140:18;;;16133:62;-1:-1:-1;;;16211:18:1;;;16204:40;16261:19;;38526:119:0;15880:406:1;38526:119:0;38675:13;;38664:7;:24;;38656:33;;;;;;38719:1;38702:150;38727:7;38722:1;:12;38702:150;;38777:10;38756:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;38805:35;38815:10;38829;;38827:12;;;;;:::i;38805:35::-;38736:3;;;;:::i;:::-;;;;38702:150;;40473:154;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;40552:27:::1;40559:20;;40552:27;:::i;:::-;40590:29;:20;40613:6:::0;;40590:29:::1;:::i;4883:229::-:0;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4986:22:0;::::1;4964:110;;;::::0;-1:-1:-1;;;4964:110:0;;16493:2:1;4964:110:0::1;::::0;::::1;16475:21:1::0;16532:2;16512:18;;;16505:30;16571:34;16551:18;;;16544:62;-1:-1:-1;;;16622:18:1;;;16615:36;16668:19;;4964:110:0::1;16291:402:1::0;4964:110:0::1;5085:19;5095:8;5085:9;:19::i;34320:174::-:0;34395:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34395:29:0;-1:-1:-1;;;;;34395:29:0;;;;;;;;:24;;34449:23;34395:24;34449:14;:23::i;:::-;-1:-1:-1;;;;;34440:46:0;;;;;;;;;;;34320:174;;:::o;30491:452::-;30620:4;30286:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30286:16:0;30642:110;;;;-1:-1:-1;;;30642:110:0;;16900:2:1;30642:110:0;;;16882:21:1;16939:2;16919:18;;;16912:30;16978:34;16958:18;;;16951:62;-1:-1:-1;;;17029:18:1;;;17022:42;17081:19;;30642:110:0;16698:408:1;30642:110:0;30763:13;30779:23;30794:7;30779:14;:23::i;:::-;30763:39;;30832:5;-1:-1:-1;;;;;30821:16:0;:7;-1:-1:-1;;;;;30821:16:0;;:64;;;;30878:7;-1:-1:-1;;;;;30854:31:0;:20;30866:7;30854:11;:20::i;:::-;-1:-1:-1;;;;;30854:31:0;;30821:64;:113;;;-1:-1:-1;;;;;;27472:25:0;;;27443:4;27472:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30902:32;30813:122;30491:452;-1:-1:-1;;;;30491:452:0:o;33587:615::-;33760:4;-1:-1:-1;;;;;33733:31:0;:23;33748:7;33733:14;:23::i;:::-;-1:-1:-1;;;;;33733:31:0;;33711:122;;;;-1:-1:-1;;;33711:122:0;;17313:2:1;33711:122:0;;;17295:21:1;17352:2;17332:18;;;17325:30;17391:34;17371:18;;;17364:62;-1:-1:-1;;;17442:18:1;;;17435:39;17491:19;;33711:122:0;17111:405:1;33711:122:0;-1:-1:-1;;;;;33852:16:0;;33844:65;;;;-1:-1:-1;;;33844:65:0;;17723:2:1;33844:65:0;;;17705:21:1;17762:2;17742:18;;;17735:30;17801:34;17781:18;;;17774:62;-1:-1:-1;;;17852:18:1;;;17845:34;17896:19;;33844:65:0;17521:400:1;33844:65:0;34026:29;34043:1;34047:7;34026:8;:29::i;:::-;-1:-1:-1;;;;;34068:15:0;;;;;;:9;:15;;;;;:20;;34087:1;;34068:15;:20;;34087:1;;34068:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34099:13:0;;;;;;:9;:13;;;;;:18;;34116:1;;34099:13;:18;;34116:1;;34099:18;:::i;:::-;;;;-1:-1:-1;;34128:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34128:21:0;-1:-1:-1;;;;;34128:21:0;;;;;;;;;34167:27;;34128:16;;34167:27;;;;;;;33587:615;;;:::o;5120:173::-;5195:6;;;-1:-1:-1;;;;;5212:17:0;;;-1:-1:-1;;;;;;5212:17:0;;;;;;;5245:40;;5195:6;;;5212:17;5195:6;;5245:40;;5176:16;;5245:40;5165:128;5120:173;:::o;31285:110::-;31361:26;31371:2;31375:7;31361:26;;;;;;;;;;;;:9;:26::i;29532:352::-;29689:28;29699:4;29705:2;29709:7;29689:9;:28::i;:::-;29750:48;29773:4;29779:2;29783:7;29792:5;29750:22;:48::i;:::-;29728:148;;;;-1:-1:-1;;;29728:148:0;;;;;;;:::i;340:723::-;396:13;617:5;626:1;617:10;613:53;;-1:-1:-1;;644:10:0;;;;;;;;;;;;-1:-1:-1;;;644:10:0;;;;;340:723::o;613:53::-;691:5;676:12;732:78;739:9;;732:78;;765:8;;;;:::i;:::-;;-1:-1:-1;788:10:0;;-1:-1:-1;796:2:0;788:10;;:::i;:::-;;;732:78;;;820:19;852:6;842:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;842:17:0;;820:39;;870:154;877:10;;870:154;;904:11;914:1;904:11;;:::i;:::-;;-1:-1:-1;973:10:0;981:2;973:5;:10;:::i;:::-;960:24;;:2;:24;:::i;:::-;947:39;;930:6;937;930:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;930:56:0;;;;;;;;-1:-1:-1;1001:11:0;1010:2;1001:11;;:::i;:::-;;;870:154;;31622:321;31752:18;31758:2;31762:7;31752:5;:18::i;:::-;31803:54;31834:1;31838:2;31842:7;31851:5;31803:22;:54::i;:::-;31781:154;;;;-1:-1:-1;;;31781:154:0;;;;;;;:::i;35059:980::-;35214:4;-1:-1:-1;;;;;35235:13:0;;6385:20;6433:8;35231:801;;35288:175;;-1:-1:-1;;;35288:175:0;;-1:-1:-1;;;;;35288:36:0;;;;;:175;;2832:10;;35382:4;;35409:7;;35439:5;;35288:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35288:175:0;;;;;;;;-1:-1:-1;;35288:175:0;;;;;;;;;;;;:::i;:::-;;;35267:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35646:6;:13;35663:1;35646:18;35642:320;;35689:108;;-1:-1:-1;;;35689:108:0;;;;;;;:::i;35642:320::-;35912:6;35906:13;35897:6;35893:2;35889:15;35882:38;35267:710;-1:-1:-1;;;;;;35527:51:0;-1:-1:-1;;;35527:51:0;;-1:-1:-1;35520:58:0;;35231:801;-1:-1:-1;36016:4:0;35059:980;;;;;;:::o;32279:382::-;-1:-1:-1;;;;;32359:16:0;;32351:61;;;;-1:-1:-1;;;32351:61:0;;19810:2:1;32351:61:0;;;19792:21:1;;;19829:18;;;19822:30;19888:34;19868:18;;;19861:62;19940:18;;32351:61:0;19608:356:1;32351:61:0;30262:4;30286:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30286:16:0;:30;32423:58;;;;-1:-1:-1;;;32423:58:0;;20171:2:1;32423:58:0;;;20153:21:1;20210:2;20190:18;;;20183:30;20249;20229:18;;;20222:58;20297:18;;32423:58:0;19969:352:1;32423:58:0;-1:-1:-1;;;;;32552:13:0;;;;;;:9;:13;;;;;:18;;32569:1;;32552:13;:18;;32569:1;;32552:18;:::i;:::-;;;;-1:-1:-1;;32581:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32581:21:0;-1:-1:-1;;;;;32581:21:0;;;;;;;;32620:33;;32581:16;;;32620:33;;32581:16;;32620:33;32279:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:186::-;2436:6;2489:2;2477:9;2468:7;2464:23;2460:32;2457:52;;;2505:1;2502;2495:12;2457:52;2528:29;2547:9;2528:29;:::i;2568:328::-;2645:6;2653;2661;2714:2;2702:9;2693:7;2689:23;2685:32;2682:52;;;2730:1;2727;2720:12;2682:52;2753:29;2772:9;2753:29;:::i;:::-;2743:39;;2801:38;2835:2;2824:9;2820:18;2801:38;:::i;:::-;2791:48;;2886:2;2875:9;2871:18;2858:32;2848:42;;2568:328;;;;;:::o;2901:127::-;2962:10;2957:3;2953:20;2950:1;2943:31;2993:4;2990:1;2983:15;3017:4;3014:1;3007:15;3033:632;3098:5;3128:18;3169:2;3161:6;3158:14;3155:40;;;3175:18;;:::i;:::-;3250:2;3244:9;3218:2;3304:15;;-1:-1:-1;;3300:24:1;;;3326:2;3296:33;3292:42;3280:55;;;3350:18;;;3370:22;;;3347:46;3344:72;;;3396:18;;:::i;:::-;3436:10;3432:2;3425:22;3465:6;3456:15;;3495:6;3487;3480:22;3535:3;3526:6;3521:3;3517:16;3514:25;3511:45;;;3552:1;3549;3542:12;3511:45;3602:6;3597:3;3590:4;3582:6;3578:17;3565:44;3657:1;3650:4;3641:6;3633;3629:19;3625:30;3618:41;;;;3033:632;;;;;:::o;3670:451::-;3739:6;3792:2;3780:9;3771:7;3767:23;3763:32;3760:52;;;3808:1;3805;3798:12;3760:52;3848:9;3835:23;3881:18;3873:6;3870:30;3867:50;;;3913:1;3910;3903:12;3867:50;3936:22;;3989:4;3981:13;;3977:27;-1:-1:-1;3967:55:1;;4018:1;4015;4008:12;3967:55;4041:74;4107:7;4102:2;4089:16;4084:2;4080;4076:11;4041:74;:::i;4126:347::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4291:29;4310:9;4291:29;:::i;:::-;4281:39;;4370:2;4359:9;4355:18;4342:32;4417:5;4410:13;4403:21;4396:5;4393:32;4383:60;;4439:1;4436;4429:12;4383:60;4462:5;4452:15;;;4126:347;;;;;:::o;4478:667::-;4573:6;4581;4589;4597;4650:3;4638:9;4629:7;4625:23;4621:33;4618:53;;;4667:1;4664;4657:12;4618:53;4690:29;4709:9;4690:29;:::i;:::-;4680:39;;4738:38;4772:2;4761:9;4757:18;4738:38;:::i;:::-;4728:48;;4823:2;4812:9;4808:18;4795:32;4785:42;;4878:2;4867:9;4863:18;4850:32;4905:18;4897:6;4894:30;4891:50;;;4937:1;4934;4927:12;4891:50;4960:22;;5013:4;5005:13;;5001:27;-1:-1:-1;4991:55:1;;5042:1;5039;5032:12;4991:55;5065:74;5131:7;5126:2;5113:16;5108:2;5104;5100:11;5065:74;:::i;:::-;5055:84;;;4478:667;;;;;;;:::o;5150:260::-;5218:6;5226;5279:2;5267:9;5258:7;5254:23;5250:32;5247:52;;;5295:1;5292;5285:12;5247:52;5318:29;5337:9;5318:29;:::i;:::-;5308:39;;5366:38;5400:2;5389:9;5385:18;5366:38;:::i;:::-;5356:48;;5150:260;;;;;:::o;5415:615::-;5501:6;5509;5562:2;5550:9;5541:7;5537:23;5533:32;5530:52;;;5578:1;5575;5568:12;5530:52;5618:9;5605:23;5647:18;5688:2;5680:6;5677:14;5674:34;;;5704:1;5701;5694:12;5674:34;5742:6;5731:9;5727:22;5717:32;;5787:7;5780:4;5776:2;5772:13;5768:27;5758:55;;5809:1;5806;5799:12;5758:55;5849:2;5836:16;5875:2;5867:6;5864:14;5861:34;;;5891:1;5888;5881:12;5861:34;5944:7;5939:2;5929:6;5926:1;5922:14;5918:2;5914:23;5910:32;5907:45;5904:65;;;5965:1;5962;5955:12;5904:65;5996:2;5988:11;;;;;6018:6;;-1:-1:-1;5415:615:1;;-1:-1:-1;;;;5415:615:1:o;6035:380::-;6114:1;6110:12;;;;6157;;;6178:61;;6232:4;6224:6;6220:17;6210:27;;6178:61;6285:2;6277:6;6274:14;6254:18;6251:38;6248:161;;6331:10;6326:3;6322:20;6319:1;6312:31;6366:4;6363:1;6356:15;6394:4;6391:1;6384:15;6248:161;;6035:380;;;:::o;6833:356::-;7035:2;7017:21;;;7054:18;;;7047:30;7113:34;7108:2;7093:18;;7086:62;7180:2;7165:18;;6833:356::o;8021:413::-;8223:2;8205:21;;;8262:2;8242:18;;;8235:30;8301:34;8296:2;8281:18;;8274:62;-1:-1:-1;;;8367:2:1;8352:18;;8345:47;8424:3;8409:19;;8021:413::o;8439:127::-;8500:10;8495:3;8491:20;8488:1;8481:31;8531:4;8528:1;8521:15;8555:4;8552:1;8545:15;8571:127;8632:10;8627:3;8623:20;8620:1;8613:31;8663:4;8660:1;8653:15;8687:4;8684:1;8677:15;8703:135;8742:3;8763:17;;;8760:43;;8783:18;;:::i;:::-;-1:-1:-1;8830:1:1;8819:13;;8703:135::o;10636:128::-;10676:3;10707:1;10703:6;10700:1;10697:13;10694:39;;;10713:18;;:::i;:::-;-1:-1:-1;10749:9:1;;10636:128::o;11486:168::-;11526:7;11592:1;11588;11584:6;11580:14;11577:1;11574:21;11569:1;11562:9;11555:17;11551:45;11548:71;;;11599:18;;:::i;:::-;-1:-1:-1;11639:9:1;;11486:168::o;13068:185::-;13110:3;13148:5;13142:12;13163:52;13208:6;13203:3;13196:4;13189:5;13185:16;13163:52;:::i;:::-;13231:16;;;;;13068:185;-1:-1:-1;;13068:185:1:o;13376:1433::-;13754:3;13783:1;13816:6;13810:13;13846:3;13868:1;13896:9;13892:2;13888:18;13878:28;;13956:2;13945:9;13941:18;13978;13968:61;;14022:4;14014:6;14010:17;14000:27;;13968:61;14048:2;14096;14088:6;14085:14;14065:18;14062:38;14059:165;;-1:-1:-1;;;14123:33:1;;14179:4;14176:1;14169:15;14209:4;14130:3;14197:17;14059:165;14240:18;14267:104;;;;14385:1;14380:320;;;;14233:467;;14267:104;-1:-1:-1;;14300:24:1;;14288:37;;14345:16;;;;-1:-1:-1;14267:104:1;;14380:320;12896:1;12889:14;;;12933:4;12920:18;;14475:1;14489:165;14503:6;14500:1;14497:13;14489:165;;;14581:14;;14568:11;;;14561:35;14624:16;;;;14518:10;;14489:165;;;14493:3;;14683:6;14678:3;14674:16;14667:23;;14233:467;;;;;;;14716:87;14741:61;14767:34;14797:3;-1:-1:-1;;;13014:16:1;;13055:1;13046:11;;12949:114;14767:34;14759:6;14741:61;:::i;:::-;-1:-1:-1;;;13318:20:1;;13363:1;13354:11;;13258:113;14716:87;14709:94;13376:1433;-1:-1:-1;;;;;13376:1433:1:o;17926:125::-;17966:4;17994:1;17991;17988:8;17985:34;;;17999:18;;:::i;:::-;-1:-1:-1;18036:9:1;;17926:125::o;18056:414::-;18258:2;18240:21;;;18297:2;18277:18;;;18270:30;18336:34;18331:2;18316:18;;18309:62;-1:-1:-1;;;18402:2:1;18387:18;;18380:48;18460:3;18445:19;;18056:414::o;18475:127::-;18536:10;18531:3;18527:20;18524:1;18517:31;18567:4;18564:1;18557:15;18591:4;18588:1;18581:15;18607:120;18647:1;18673;18663:35;;18678:18;;:::i;:::-;-1:-1:-1;18712:9:1;;18607:120::o;18732:112::-;18764:1;18790;18780:35;;18795:18;;:::i;:::-;-1:-1:-1;18829:9:1;;18732:112::o;18849:500::-;-1:-1:-1;;;;;19118:15:1;;;19100:34;;19170:15;;19165:2;19150:18;;19143:43;19217:2;19202:18;;19195:34;;;19265:3;19260:2;19245:18;;19238:31;;;19043:4;;19286:57;;19323:19;;19315:6;19286:57;:::i;:::-;19278:65;18849:500;-1:-1:-1;;;;;;18849:500:1:o;19354:249::-;19423:6;19476:2;19464:9;19455:7;19451:23;19447:32;19444:52;;;19492:1;19489;19482:12;19444:52;19524:9;19518:16;19543:30;19567:5;19543:30;:::i

Swarm Source

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