ETH Price: $3,442.65 (-0.20%)
Gas: 7 Gwei

Token

Wild Goat Gang (WGG)
 

Overview

Max Total Supply

0 WGG

Holders

2,035

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hoodiephunks.eth
Balance
1 WGG
0xBF50E820e8EC9d2903EAC753dE83E472B6de4D34
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Wild Goat Gang is a collection of 9,999 NFT's with hundreds of elements for fans who appreciate those who've achieved GOAT-status. Each artwork is original and completely hand drawn with its own color palette.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WGG

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-07
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.0 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.0 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.0 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.0 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.0 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.0 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.0 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.0 (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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/ERC721Burnable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: wgg.sol

pragma solidity ^0.8.0;






/// SPDX-License-Identifier: UNLICENSED

/*
 __      __.__.__       .___   ________              __      ________                       
/  \    /  \__|  |    __| _/  /  _____/  _________ _/  |_   /  _____/_____    ____    ____  
\   \/\/   /  |  |   / __ |  /   \  ___ /  _ \__  \\   __\ /   \  ___\__  \  /    \  / ___\ 
 \        /|  |  |__/ /_/ |  \    \_\  (  <_> ) __ \|  |   \    \_\  \/ __ \|   |  \/ /_/  >
  \__/\  / |__|____/\____ |   \______  /\____(____  /__|    \______  (____  /___|  /\___  / 
       \/                \/          \/           \/               \/     \/     \//_____/  
*/


contract WGG is ERC721Burnable, Ownable {
   
    using Strings for uint256;
    using Counters for Counters.Counter;
    
    string public baseURI;
    string public baseExtension = ".json";
    uint8 public maxTx = 3;
    uint256 public maxSupply = 10000;
    uint256 public price = 0.08 ether;
    
    bool public goatPresaleOpen = true;
    bool public goatMainsaleOpen = false;
    
    Counters.Counter private _tokenIdTracker;

    mapping (address => bool) whiteListed;
    mapping (address => uint256) walletMinted;
    
    constructor(string memory _initBaseURI) ERC721("Wild Goat Gang", "WGG")
    {
        setBaseURI(_initBaseURI);

        for(uint i=0;i<100;i++)
        {
            _tokenIdTracker.increment();
            _safeMint(0x5a065F2E2E05BBe470d8Fc6930bb23a162Ae9b96, totalToken());
        }
    }
    
    modifier isPresaleOpen
    {
         require(goatPresaleOpen == true);
         _;
    }

    modifier isMainsaleOpen
    {
         require(goatMainsaleOpen == true);
         _;
    }

    function flipPresale() public onlyOwner
    {
        goatPresaleOpen = false;
        goatMainsaleOpen = true;
    }

    function changeMaxSupply(uint256 _maxSupply) public onlyOwner
    {
        maxSupply = _maxSupply;
    }
    
    function totalToken() public view returns (uint256) {
            return _tokenIdTracker.current();
    }

    function addWhiteList(address[] memory whiteListedAddresses) public onlyOwner
    {
        for(uint256 i=0; i<whiteListedAddresses.length;i++)
        {
            whiteListed[whiteListedAddresses[i]] = true;
        }
    }

    function isAddressWhitelisted(address whitelist) public view returns(bool)
    {
        return whiteListed[whitelist];
    }


    function preSale(uint8 mintTotal) public payable isPresaleOpen
    {
        uint256 totalMinted = mintTotal + walletMinted[msg.sender];
        
        require(whiteListed[msg.sender] == true, "You are not whitelisted!");
        require(totalMinted <= maxTx, "Mint exceeds limitations");
        require(mintTotal >= 1 , "Mint Amount Incorrect");
        require(msg.value >= price * mintTotal, "Minting a Wild Goat Costs 0.08 Ether Each!");
        require(totalToken() < maxSupply, "SOLD OUT!");
       
        for(uint i=0;i<mintTotal;i++)
        {
            require(totalToken() < maxSupply, "SOLD OUT!");
            _tokenIdTracker.increment();
            _safeMint(msg.sender, totalToken());
        }
    }

    
    function mainSale(uint8 mintTotal) public payable isMainsaleOpen
    {
        uint256 totalMinted = mintTotal + walletMinted[msg.sender];

        require(totalMinted <= maxTx, "Mint exceeds limitations");
        require(mintTotal >= 1 , "Mint Amount Incorrect");
        require(msg.value >= price * mintTotal, "Minting a Wild Goat Costs 0.08 Ether Each!");
        require(totalToken() < maxSupply, "SOLD OUT!");
       
        for(uint i=0;i<mintTotal;i++)
        {
            require(totalToken() < maxSupply, "SOLD OUT!");
            _tokenIdTracker.increment();
            _safeMint(msg.sender, totalToken());
        }
    }
   
    function withdrawContractEther() external onlyOwner
    {
        address payable teamOne = payable(0x9f199f62a1aCb6877AC6C82759Df34B24A484e9C);
        address payable teamTwo = payable(0x1599f9F775451DBd03a1a951d4D93107900276A4);
        address payable teamThree = payable(0xEEe7dB024C2c629556Df7F80f528913048f12fbc);
        address payable teamFour = payable(0xD43763625605fF5894100B24Db41EB19A9c0E65e);
        
        uint256 totalSplit = (getBalance() / 4);

        teamOne.transfer(totalSplit);
        teamTwo.transfer(totalSplit);
        teamThree.transfer(totalSplit);
        teamFour.transfer(totalSplit);

    }
    function getBalance() public view returns(uint)
    {
        return address(this).balance;
    }
   
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
   
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }
   
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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":"whiteListedAddresses","type":"address[]"}],"name":"addWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"changeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goatMainsaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goatPresaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"whitelist","type":"address"}],"name":"isAddressWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint8","name":"mintTotal","type":"uint8"}],"name":"mainSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"mintTotal","type":"uint8"}],"name":"preSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawContractEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160089190620005ba565b506009805460ff19166003179055612710600a5567011c37937e080000600b55600c805461ffff191660011790553480156200006357600080fd5b5060405162002ce938038062002ce98339810160408190526200008691620006a9565b604080518082018252600e81526d57696c6420476f61742047616e6760901b60208083019182528351808501909452600384526257474760e81b908401528151919291620000d791600091620005ba565b508051620000ed906001906020840190620005ba565b5050506200010a620001046200017f60201b60201c565b62000183565b6200011581620001d5565b60005b6064811015620001775762000139600d6200024e60201b6200136b1760201c565b62000162735a065f2e2e05bbe470d8fc6930bb23a162ae9b966200015c62000257565b62000275565b806200016e8162000777565b91505062000118565b505062000876565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620002355760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b80516200024a906007906020840190620005ba565b5050565b80546001019055565b600062000270600d6200029760201b620013741760201c565b905090565b6200024a8282604051806020016040528060008152506200029b60201b60201c565b5490565b620002a7838362000313565b620002b660008484846200045b565b6200030e5760405162461bcd60e51b8152602060048201526032602482015260008051602062002cc983398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200022c565b505050565b6001600160a01b0382166200036b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016200022c565b6000818152600260205260409020546001600160a01b031615620003d25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200022c565b6001600160a01b0382166000908152600360205260408120805460019290620003fd90849062000795565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006200047c846001600160a01b0316620005b460201b620013781760201c565b15620005a857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620004b6903390899088908890600401620007b0565b6020604051808303816000875af1925050508015620004f4575060408051601f3d908101601f19168201909252620004f19181019062000806565b60015b6200058d573d80801562000525576040519150601f19603f3d011682016040523d82523d6000602084013e6200052a565b606091505b508051620005855760405162461bcd60e51b8152602060048201526032602482015260008051602062002cc983398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200022c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620005ac565b5060015b949350505050565b3b151590565b828054620005c89062000839565b90600052602060002090601f016020900481019282620005ec576000855562000637565b82601f106200060757805160ff191683800117855562000637565b8280016001018555821562000637579182015b82811115620006375782518255916020019190600101906200061a565b506200064592915062000649565b5090565b5b808211156200064557600081556001016200064a565b634e487b7160e01b600052604160045260246000fd5b60005b838110156200069357818101518382015260200162000679565b83811115620006a3576000848401525b50505050565b600060208284031215620006bc57600080fd5b81516001600160401b0380821115620006d457600080fd5b818401915084601f830112620006e957600080fd5b815181811115620006fe57620006fe62000660565b604051601f8201601f19908116603f0116810190838211818310171562000729576200072962000660565b816040528281528760208487010111156200074357600080fd5b6200075683602083016020880162000676565b979650505050505050565b634e487b7160e01b600052601160045260246000fd5b60006000198214156200078e576200078e62000761565b5060010190565b60008219821115620007ab57620007ab62000761565b500190565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620007ef8160a085016020870162000676565b601f01601f19169190910160a00195945050505050565b6000602082840312156200081957600080fd5b81516001600160e01b0319811681146200083257600080fd5b9392505050565b600181811c908216806200084e57607f821691505b602082108114156200087057634e487b7160e01b600052602260045260246000fd5b50919050565b61244380620008866000396000f3fe6080604052600436106101f75760003560e01c80636352211e1161010d578063a22cb465116100a0578063ca18e52a1161006f578063ca18e52a14610588578063d5abeb01146105a2578063e341afdf146105b8578063e985e9c5146105cb578063f2fde38b1461061457600080fd5b8063a22cb46514610513578063b88d4fde14610533578063c668286214610553578063c87b56dd1461056857600080fd5b80637437681e116100dc5780637437681e1461049e5780638da5cb5b146104ca57806395d89b41146104e8578063a035b1fe146104fd57600080fd5b80636352211e146104345780636c0360eb1461045457806370a0823114610469578063715018a61461048957600080fd5b806323b872dd1161019057806348caf7ef1161015f57806348caf7ef146103b757806355f804b3146103ca5780635c77ddab146103ea5780635e1045ec146103ff578063626be5671461041f57600080fd5b806323b872dd14610337578063404c7cdd1461035757806342842e0e1461037757806342966c681461039757600080fd5b8063081812fc116101cc578063081812fc14610289578063095ea7b3146102c157806312065fe0146102e157806313f44d10146102fe57600080fd5b80629f8812146101fc578062acf3481461023057806301ffc9a71461024757806306fdde0314610267575b600080fd5b34801561020857600080fd5b50600c5461021b90610100900460ff1681565b60405190151581526020015b60405180910390f35b34801561023c57600080fd5b50610245610634565b005b34801561025357600080fd5b5061021b610262366004611cbb565b610678565b34801561027357600080fd5b5061027c6106ca565b6040516102279190611d30565b34801561029557600080fd5b506102a96102a4366004611d43565b61075c565b6040516001600160a01b039091168152602001610227565b3480156102cd57600080fd5b506102456102dc366004611d78565b6107f1565b3480156102ed57600080fd5b50475b604051908152602001610227565b34801561030a57600080fd5b5061021b610319366004611da2565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561034357600080fd5b50610245610352366004611dbd565b610907565b34801561036357600080fd5b50610245610372366004611d43565b610939565b34801561038357600080fd5b50610245610392366004611dbd565b610968565b3480156103a357600080fd5b506102456103b2366004611d43565b610983565b6102456103c5366004611df9565b6109fd565b3480156103d657600080fd5b506102456103e5366004611ebb565b610bf0565b3480156103f657600080fd5b50610245610c31565b34801561040b57600080fd5b5061024561041a366004611f04565b610da2565b34801561042b57600080fd5b506102f0610e34565b34801561044057600080fd5b506102a961044f366004611d43565b610e44565b34801561046057600080fd5b5061027c610ebb565b34801561047557600080fd5b506102f0610484366004611da2565b610f49565b34801561049557600080fd5b50610245610fd0565b3480156104aa57600080fd5b506009546104b89060ff1681565b60405160ff9091168152602001610227565b3480156104d657600080fd5b506006546001600160a01b03166102a9565b3480156104f457600080fd5b5061027c611006565b34801561050957600080fd5b506102f0600b5481565b34801561051f57600080fd5b5061024561052e366004611fb1565b611015565b34801561053f57600080fd5b5061024561054e366004611fed565b611020565b34801561055f57600080fd5b5061027c611058565b34801561057457600080fd5b5061027c610583366004611d43565b611065565b34801561059457600080fd5b50600c5461021b9060ff1681565b3480156105ae57600080fd5b506102f0600a5481565b6102456105c6366004611df9565b611143565b3480156105d757600080fd5b5061021b6105e6366004612069565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561062057600080fd5b5061024561062f366004611da2565b6112d3565b6006546001600160a01b031633146106675760405162461bcd60e51b815260040161065e9061209c565b60405180910390fd5b600c805461ffff1916610100179055565b60006001600160e01b031982166380ac58cd60e01b14806106a957506001600160e01b03198216635b5e139f60e01b145b806106c457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106d9906120d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610705906120d1565b80156107525780601f1061072757610100808354040283529160200191610752565b820191906000526020600020905b81548152906001019060200180831161073557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107d55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161065e565b506000908152600460205260409020546001600160a01b031690565b60006107fc82610e44565b9050806001600160a01b0316836001600160a01b0316141561086a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161065e565b336001600160a01b0382161480610886575061088681336105e6565b6108f85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161065e565b610902838361137e565b505050565b610912335b826113ec565b61092e5760405162461bcd60e51b815260040161065e9061210c565b6109028383836114e3565b6006546001600160a01b031633146109635760405162461bcd60e51b815260040161065e9061209c565b600a55565b61090283838360405180602001604052806000815250611020565b61098c3361090c565b6109f15760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161065e565b6109fa81611683565b50565b600c5460ff161515600114610a1157600080fd5b336000908152600f6020526040812054610a2e9060ff8416612173565b336000908152600e602052604090205490915060ff161515600114610a955760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c6973746564210000000000000000604482015260640161065e565b60095460ff16811115610ae55760405162461bcd60e51b81526020600482015260186024820152774d696e742065786365656473206c696d69746174696f6e7360401b604482015260640161065e565b60018260ff161015610b315760405162461bcd60e51b8152602060048201526015602482015274135a5b9d08105b5bdd5b9d08125b98dbdc9c9958dd605a1b604482015260640161065e565b8160ff16600b54610b42919061218b565b341015610b615760405162461bcd60e51b815260040161065e906121aa565b600a54610b6c610e34565b10610b895760405162461bcd60e51b815260040161065e906121f4565b60005b8260ff1681101561090257600a54610ba2610e34565b10610bbf5760405162461bcd60e51b815260040161065e906121f4565b610bcd600d80546001019055565b610bde33610bd9610e34565b61171e565b80610be881612217565b915050610b8c565b6006546001600160a01b03163314610c1a5760405162461bcd60e51b815260040161065e9061209c565b8051610c2d906007906020840190611c0c565b5050565b6006546001600160a01b03163314610c5b5760405162461bcd60e51b815260040161065e9061209c565b739f199f62a1acb6877ac6c82759df34b24a484e9c731599f9f775451dbd03a1a951d4d93107900276a473eee7db024c2c629556df7f80f528913048f12fbc73d43763625605ff5894100b24db41eb19a9c0e65e6000610cbc600447612248565b6040519091506001600160a01b0386169082156108fc029083906000818181858888f19350505050158015610cf5573d6000803e3d6000fd5b506040516001600160a01b0385169082156108fc029083906000818181858888f19350505050158015610d2c573d6000803e3d6000fd5b506040516001600160a01b0384169082156108fc029083906000818181858888f19350505050158015610d63573d6000803e3d6000fd5b506040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610d9a573d6000803e3d6000fd5b505050505050565b6006546001600160a01b03163314610dcc5760405162461bcd60e51b815260040161065e9061209c565b60005b8151811015610c2d576001600e6000848481518110610df057610df061225c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e2c81612217565b915050610dcf565b6000610e3f600d5490565b905090565b6000818152600260205260408120546001600160a01b0316806106c45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161065e565b60078054610ec8906120d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef4906120d1565b8015610f415780601f10610f1657610100808354040283529160200191610f41565b820191906000526020600020905b815481529060010190602001808311610f2457829003601f168201915b505050505081565b60006001600160a01b038216610fb45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161065e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ffa5760405162461bcd60e51b815260040161065e9061209c565b6110046000611738565b565b6060600180546106d9906120d1565b610c2d33838361178a565b61102a33836113ec565b6110465760405162461bcd60e51b815260040161065e9061210c565b61105284848484611859565b50505050565b60088054610ec8906120d1565b6000818152600260205260409020546060906001600160a01b03166110e45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161065e565b60006110ee61188c565b9050600081511161110e576040518060200160405280600081525061113c565b806111188461189b565b600860405160200161112c93929190612272565b6040516020818303038152906040525b9392505050565b600c5460ff61010090910416151560011461115d57600080fd5b336000908152600f602052604081205461117a9060ff8416612173565b60095490915060ff168111156111cd5760405162461bcd60e51b81526020600482015260186024820152774d696e742065786365656473206c696d69746174696f6e7360401b604482015260640161065e565b60018260ff1610156112195760405162461bcd60e51b8152602060048201526015602482015274135a5b9d08105b5bdd5b9d08125b98dbdc9c9958dd605a1b604482015260640161065e565b8160ff16600b5461122a919061218b565b3410156112495760405162461bcd60e51b815260040161065e906121aa565b600a54611254610e34565b106112715760405162461bcd60e51b815260040161065e906121f4565b60005b8260ff1681101561090257600a5461128a610e34565b106112a75760405162461bcd60e51b815260040161065e906121f4565b6112b5600d80546001019055565b6112c133610bd9610e34565b806112cb81612217565b915050611274565b6006546001600160a01b031633146112fd5760405162461bcd60e51b815260040161065e9061209c565b6001600160a01b0381166113625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161065e565b6109fa81611738565b80546001019055565b5490565b3b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113b382610e44565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114655760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161065e565b600061147083610e44565b9050806001600160a01b0316846001600160a01b031614806114ab5750836001600160a01b03166114a08461075c565b6001600160a01b0316145b806114db57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114f682610e44565b6001600160a01b03161461155e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161065e565b6001600160a01b0382166115c05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161065e565b6115cb60008261137e565b6001600160a01b03831660009081526003602052604081208054600192906115f4908490612336565b90915550506001600160a01b0382166000908152600360205260408120805460019290611622908490612173565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061168e82610e44565b905061169b60008361137e565b6001600160a01b03811660009081526003602052604081208054600192906116c4908490612336565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b610c2d828260405180602001604052806000815250611999565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156117ec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161065e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118648484846114e3565b611870848484846119cc565b6110525760405162461bcd60e51b815260040161065e9061234d565b6060600780546106d9906120d1565b6060816118bf5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118e957806118d381612217565b91506118e29050600a83612248565b91506118c3565b60008167ffffffffffffffff81111561190457611904611e1c565b6040519080825280601f01601f19166020018201604052801561192e576020820181803683370190505b5090505b84156114db57611943600183612336565b9150611950600a8661239f565b61195b906030612173565b60f81b8183815181106119705761197061225c565b60200101906001600160f81b031916908160001a905350611992600a86612248565b9450611932565b6119a38383611aca565b6119b060008484846119cc565b6109025760405162461bcd60e51b815260040161065e9061234d565b60006001600160a01b0384163b15611abf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a109033908990889088906004016123b3565b6020604051808303816000875af1925050508015611a4b575060408051601f3d908101601f19168201909252611a48918101906123f0565b60015b611aa5573d808015611a79576040519150601f19603f3d011682016040523d82523d6000602084013e611a7e565b606091505b508051611a9d5760405162461bcd60e51b815260040161065e9061234d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114db565b506001949350505050565b6001600160a01b038216611b205760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161065e565b6000818152600260205260409020546001600160a01b031615611b855760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161065e565b6001600160a01b0382166000908152600360205260408120805460019290611bae908490612173565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c18906120d1565b90600052602060002090601f016020900481019282611c3a5760008555611c80565b82601f10611c5357805160ff1916838001178555611c80565b82800160010185558215611c80579182015b82811115611c80578251825591602001919060010190611c65565b50611c8c929150611c90565b5090565b5b80821115611c8c5760008155600101611c91565b6001600160e01b0319811681146109fa57600080fd5b600060208284031215611ccd57600080fd5b813561113c81611ca5565b60005b83811015611cf3578181015183820152602001611cdb565b838111156110525750506000910152565b60008151808452611d1c816020860160208601611cd8565b601f01601f19169290920160200192915050565b60208152600061113c6020830184611d04565b600060208284031215611d5557600080fd5b5035919050565b80356001600160a01b0381168114611d7357600080fd5b919050565b60008060408385031215611d8b57600080fd5b611d9483611d5c565b946020939093013593505050565b600060208284031215611db457600080fd5b61113c82611d5c565b600080600060608486031215611dd257600080fd5b611ddb84611d5c565b9250611de960208501611d5c565b9150604084013590509250925092565b600060208284031215611e0b57600080fd5b813560ff8116811461113c57600080fd5b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611e5b57611e5b611e1c565b604052919050565b600067ffffffffffffffff831115611e7d57611e7d611e1c565b611e90601f8401601f1916602001611e32565b9050828152838383011115611ea457600080fd5b828260208301376000602084830101529392505050565b600060208284031215611ecd57600080fd5b813567ffffffffffffffff811115611ee457600080fd5b8201601f81018413611ef557600080fd5b6114db84823560208401611e63565b60006020808385031215611f1757600080fd5b823567ffffffffffffffff80821115611f2f57600080fd5b818501915085601f830112611f4357600080fd5b813581811115611f5557611f55611e1c565b8060051b9150611f66848301611e32565b8181529183018401918481019088841115611f8057600080fd5b938501935b83851015611fa557611f9685611d5c565b82529385019390850190611f85565b98975050505050505050565b60008060408385031215611fc457600080fd5b611fcd83611d5c565b915060208301358015158114611fe257600080fd5b809150509250929050565b6000806000806080858703121561200357600080fd5b61200c85611d5c565b935061201a60208601611d5c565b925060408501359150606085013567ffffffffffffffff81111561203d57600080fd5b8501601f8101871361204e57600080fd5b61205d87823560208401611e63565b91505092959194509250565b6000806040838503121561207c57600080fd5b61208583611d5c565b915061209360208401611d5c565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806120e557607f821691505b6020821081141561210657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156121865761218661215d565b500190565b60008160001904831182151516156121a5576121a561215d565b500290565b6020808252602a908201527f4d696e74696e6720612057696c6420476f617420436f73747320302e303820456040820152697468657220456163682160b01b606082015260800190565b602080825260099082015268534f4c44204f55542160b81b604082015260600190565b600060001982141561222b5761222b61215d565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261225757612257612232565b500490565b634e487b7160e01b600052603260045260246000fd5b6000845160206122858285838a01611cd8565b8551918401916122988184848a01611cd8565b8554920191600090600181811c90808316806122b557607f831692505b8583108114156122d357634e487b7160e01b85526022600452602485fd5b8080156122e757600181146122f857612325565b60ff19851688528388019550612325565b60008b81526020902060005b8581101561231d5781548a820152908401908801612304565b505083880195505b50939b9a5050505050505050505050565b6000828210156123485761234861215d565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826123ae576123ae612232565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123e690830184611d04565b9695505050505050565b60006020828403121561240257600080fd5b815161113c81611ca556fea2646970667358221220b3a0b63b6537c21686fbd52c48d14c76850f069fafdff0a8982fa2889db90de464736f6c634300080a00334552433732313a207472616e7366657220746f206e6f6e2045524337323152650000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f63637a6c7767672e6d7970696e6174612e636c6f75642f697066732f516d51575a426f67714c764d553931424c6433596b46456e74696b3132506139625837356a75774e4436527a47612f00000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f75760003560e01c80636352211e1161010d578063a22cb465116100a0578063ca18e52a1161006f578063ca18e52a14610588578063d5abeb01146105a2578063e341afdf146105b8578063e985e9c5146105cb578063f2fde38b1461061457600080fd5b8063a22cb46514610513578063b88d4fde14610533578063c668286214610553578063c87b56dd1461056857600080fd5b80637437681e116100dc5780637437681e1461049e5780638da5cb5b146104ca57806395d89b41146104e8578063a035b1fe146104fd57600080fd5b80636352211e146104345780636c0360eb1461045457806370a0823114610469578063715018a61461048957600080fd5b806323b872dd1161019057806348caf7ef1161015f57806348caf7ef146103b757806355f804b3146103ca5780635c77ddab146103ea5780635e1045ec146103ff578063626be5671461041f57600080fd5b806323b872dd14610337578063404c7cdd1461035757806342842e0e1461037757806342966c681461039757600080fd5b8063081812fc116101cc578063081812fc14610289578063095ea7b3146102c157806312065fe0146102e157806313f44d10146102fe57600080fd5b80629f8812146101fc578062acf3481461023057806301ffc9a71461024757806306fdde0314610267575b600080fd5b34801561020857600080fd5b50600c5461021b90610100900460ff1681565b60405190151581526020015b60405180910390f35b34801561023c57600080fd5b50610245610634565b005b34801561025357600080fd5b5061021b610262366004611cbb565b610678565b34801561027357600080fd5b5061027c6106ca565b6040516102279190611d30565b34801561029557600080fd5b506102a96102a4366004611d43565b61075c565b6040516001600160a01b039091168152602001610227565b3480156102cd57600080fd5b506102456102dc366004611d78565b6107f1565b3480156102ed57600080fd5b50475b604051908152602001610227565b34801561030a57600080fd5b5061021b610319366004611da2565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561034357600080fd5b50610245610352366004611dbd565b610907565b34801561036357600080fd5b50610245610372366004611d43565b610939565b34801561038357600080fd5b50610245610392366004611dbd565b610968565b3480156103a357600080fd5b506102456103b2366004611d43565b610983565b6102456103c5366004611df9565b6109fd565b3480156103d657600080fd5b506102456103e5366004611ebb565b610bf0565b3480156103f657600080fd5b50610245610c31565b34801561040b57600080fd5b5061024561041a366004611f04565b610da2565b34801561042b57600080fd5b506102f0610e34565b34801561044057600080fd5b506102a961044f366004611d43565b610e44565b34801561046057600080fd5b5061027c610ebb565b34801561047557600080fd5b506102f0610484366004611da2565b610f49565b34801561049557600080fd5b50610245610fd0565b3480156104aa57600080fd5b506009546104b89060ff1681565b60405160ff9091168152602001610227565b3480156104d657600080fd5b506006546001600160a01b03166102a9565b3480156104f457600080fd5b5061027c611006565b34801561050957600080fd5b506102f0600b5481565b34801561051f57600080fd5b5061024561052e366004611fb1565b611015565b34801561053f57600080fd5b5061024561054e366004611fed565b611020565b34801561055f57600080fd5b5061027c611058565b34801561057457600080fd5b5061027c610583366004611d43565b611065565b34801561059457600080fd5b50600c5461021b9060ff1681565b3480156105ae57600080fd5b506102f0600a5481565b6102456105c6366004611df9565b611143565b3480156105d757600080fd5b5061021b6105e6366004612069565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561062057600080fd5b5061024561062f366004611da2565b6112d3565b6006546001600160a01b031633146106675760405162461bcd60e51b815260040161065e9061209c565b60405180910390fd5b600c805461ffff1916610100179055565b60006001600160e01b031982166380ac58cd60e01b14806106a957506001600160e01b03198216635b5e139f60e01b145b806106c457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106d9906120d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610705906120d1565b80156107525780601f1061072757610100808354040283529160200191610752565b820191906000526020600020905b81548152906001019060200180831161073557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107d55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161065e565b506000908152600460205260409020546001600160a01b031690565b60006107fc82610e44565b9050806001600160a01b0316836001600160a01b0316141561086a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161065e565b336001600160a01b0382161480610886575061088681336105e6565b6108f85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161065e565b610902838361137e565b505050565b610912335b826113ec565b61092e5760405162461bcd60e51b815260040161065e9061210c565b6109028383836114e3565b6006546001600160a01b031633146109635760405162461bcd60e51b815260040161065e9061209c565b600a55565b61090283838360405180602001604052806000815250611020565b61098c3361090c565b6109f15760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161065e565b6109fa81611683565b50565b600c5460ff161515600114610a1157600080fd5b336000908152600f6020526040812054610a2e9060ff8416612173565b336000908152600e602052604090205490915060ff161515600114610a955760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c6973746564210000000000000000604482015260640161065e565b60095460ff16811115610ae55760405162461bcd60e51b81526020600482015260186024820152774d696e742065786365656473206c696d69746174696f6e7360401b604482015260640161065e565b60018260ff161015610b315760405162461bcd60e51b8152602060048201526015602482015274135a5b9d08105b5bdd5b9d08125b98dbdc9c9958dd605a1b604482015260640161065e565b8160ff16600b54610b42919061218b565b341015610b615760405162461bcd60e51b815260040161065e906121aa565b600a54610b6c610e34565b10610b895760405162461bcd60e51b815260040161065e906121f4565b60005b8260ff1681101561090257600a54610ba2610e34565b10610bbf5760405162461bcd60e51b815260040161065e906121f4565b610bcd600d80546001019055565b610bde33610bd9610e34565b61171e565b80610be881612217565b915050610b8c565b6006546001600160a01b03163314610c1a5760405162461bcd60e51b815260040161065e9061209c565b8051610c2d906007906020840190611c0c565b5050565b6006546001600160a01b03163314610c5b5760405162461bcd60e51b815260040161065e9061209c565b739f199f62a1acb6877ac6c82759df34b24a484e9c731599f9f775451dbd03a1a951d4d93107900276a473eee7db024c2c629556df7f80f528913048f12fbc73d43763625605ff5894100b24db41eb19a9c0e65e6000610cbc600447612248565b6040519091506001600160a01b0386169082156108fc029083906000818181858888f19350505050158015610cf5573d6000803e3d6000fd5b506040516001600160a01b0385169082156108fc029083906000818181858888f19350505050158015610d2c573d6000803e3d6000fd5b506040516001600160a01b0384169082156108fc029083906000818181858888f19350505050158015610d63573d6000803e3d6000fd5b506040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610d9a573d6000803e3d6000fd5b505050505050565b6006546001600160a01b03163314610dcc5760405162461bcd60e51b815260040161065e9061209c565b60005b8151811015610c2d576001600e6000848481518110610df057610df061225c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e2c81612217565b915050610dcf565b6000610e3f600d5490565b905090565b6000818152600260205260408120546001600160a01b0316806106c45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161065e565b60078054610ec8906120d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef4906120d1565b8015610f415780601f10610f1657610100808354040283529160200191610f41565b820191906000526020600020905b815481529060010190602001808311610f2457829003601f168201915b505050505081565b60006001600160a01b038216610fb45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161065e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ffa5760405162461bcd60e51b815260040161065e9061209c565b6110046000611738565b565b6060600180546106d9906120d1565b610c2d33838361178a565b61102a33836113ec565b6110465760405162461bcd60e51b815260040161065e9061210c565b61105284848484611859565b50505050565b60088054610ec8906120d1565b6000818152600260205260409020546060906001600160a01b03166110e45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161065e565b60006110ee61188c565b9050600081511161110e576040518060200160405280600081525061113c565b806111188461189b565b600860405160200161112c93929190612272565b6040516020818303038152906040525b9392505050565b600c5460ff61010090910416151560011461115d57600080fd5b336000908152600f602052604081205461117a9060ff8416612173565b60095490915060ff168111156111cd5760405162461bcd60e51b81526020600482015260186024820152774d696e742065786365656473206c696d69746174696f6e7360401b604482015260640161065e565b60018260ff1610156112195760405162461bcd60e51b8152602060048201526015602482015274135a5b9d08105b5bdd5b9d08125b98dbdc9c9958dd605a1b604482015260640161065e565b8160ff16600b5461122a919061218b565b3410156112495760405162461bcd60e51b815260040161065e906121aa565b600a54611254610e34565b106112715760405162461bcd60e51b815260040161065e906121f4565b60005b8260ff1681101561090257600a5461128a610e34565b106112a75760405162461bcd60e51b815260040161065e906121f4565b6112b5600d80546001019055565b6112c133610bd9610e34565b806112cb81612217565b915050611274565b6006546001600160a01b031633146112fd5760405162461bcd60e51b815260040161065e9061209c565b6001600160a01b0381166113625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161065e565b6109fa81611738565b80546001019055565b5490565b3b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113b382610e44565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114655760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161065e565b600061147083610e44565b9050806001600160a01b0316846001600160a01b031614806114ab5750836001600160a01b03166114a08461075c565b6001600160a01b0316145b806114db57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114f682610e44565b6001600160a01b03161461155e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161065e565b6001600160a01b0382166115c05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161065e565b6115cb60008261137e565b6001600160a01b03831660009081526003602052604081208054600192906115f4908490612336565b90915550506001600160a01b0382166000908152600360205260408120805460019290611622908490612173565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061168e82610e44565b905061169b60008361137e565b6001600160a01b03811660009081526003602052604081208054600192906116c4908490612336565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b610c2d828260405180602001604052806000815250611999565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156117ec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161065e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118648484846114e3565b611870848484846119cc565b6110525760405162461bcd60e51b815260040161065e9061234d565b6060600780546106d9906120d1565b6060816118bf5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118e957806118d381612217565b91506118e29050600a83612248565b91506118c3565b60008167ffffffffffffffff81111561190457611904611e1c565b6040519080825280601f01601f19166020018201604052801561192e576020820181803683370190505b5090505b84156114db57611943600183612336565b9150611950600a8661239f565b61195b906030612173565b60f81b8183815181106119705761197061225c565b60200101906001600160f81b031916908160001a905350611992600a86612248565b9450611932565b6119a38383611aca565b6119b060008484846119cc565b6109025760405162461bcd60e51b815260040161065e9061234d565b60006001600160a01b0384163b15611abf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a109033908990889088906004016123b3565b6020604051808303816000875af1925050508015611a4b575060408051601f3d908101601f19168201909252611a48918101906123f0565b60015b611aa5573d808015611a79576040519150601f19603f3d011682016040523d82523d6000602084013e611a7e565b606091505b508051611a9d5760405162461bcd60e51b815260040161065e9061234d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114db565b506001949350505050565b6001600160a01b038216611b205760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161065e565b6000818152600260205260409020546001600160a01b031615611b855760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161065e565b6001600160a01b0382166000908152600360205260408120805460019290611bae908490612173565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c18906120d1565b90600052602060002090601f016020900481019282611c3a5760008555611c80565b82601f10611c5357805160ff1916838001178555611c80565b82800160010185558215611c80579182015b82811115611c80578251825591602001919060010190611c65565b50611c8c929150611c90565b5090565b5b80821115611c8c5760008155600101611c91565b6001600160e01b0319811681146109fa57600080fd5b600060208284031215611ccd57600080fd5b813561113c81611ca5565b60005b83811015611cf3578181015183820152602001611cdb565b838111156110525750506000910152565b60008151808452611d1c816020860160208601611cd8565b601f01601f19169290920160200192915050565b60208152600061113c6020830184611d04565b600060208284031215611d5557600080fd5b5035919050565b80356001600160a01b0381168114611d7357600080fd5b919050565b60008060408385031215611d8b57600080fd5b611d9483611d5c565b946020939093013593505050565b600060208284031215611db457600080fd5b61113c82611d5c565b600080600060608486031215611dd257600080fd5b611ddb84611d5c565b9250611de960208501611d5c565b9150604084013590509250925092565b600060208284031215611e0b57600080fd5b813560ff8116811461113c57600080fd5b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611e5b57611e5b611e1c565b604052919050565b600067ffffffffffffffff831115611e7d57611e7d611e1c565b611e90601f8401601f1916602001611e32565b9050828152838383011115611ea457600080fd5b828260208301376000602084830101529392505050565b600060208284031215611ecd57600080fd5b813567ffffffffffffffff811115611ee457600080fd5b8201601f81018413611ef557600080fd5b6114db84823560208401611e63565b60006020808385031215611f1757600080fd5b823567ffffffffffffffff80821115611f2f57600080fd5b818501915085601f830112611f4357600080fd5b813581811115611f5557611f55611e1c565b8060051b9150611f66848301611e32565b8181529183018401918481019088841115611f8057600080fd5b938501935b83851015611fa557611f9685611d5c565b82529385019390850190611f85565b98975050505050505050565b60008060408385031215611fc457600080fd5b611fcd83611d5c565b915060208301358015158114611fe257600080fd5b809150509250929050565b6000806000806080858703121561200357600080fd5b61200c85611d5c565b935061201a60208601611d5c565b925060408501359150606085013567ffffffffffffffff81111561203d57600080fd5b8501601f8101871361204e57600080fd5b61205d87823560208401611e63565b91505092959194509250565b6000806040838503121561207c57600080fd5b61208583611d5c565b915061209360208401611d5c565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806120e557607f821691505b6020821081141561210657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156121865761218661215d565b500190565b60008160001904831182151516156121a5576121a561215d565b500290565b6020808252602a908201527f4d696e74696e6720612057696c6420476f617420436f73747320302e303820456040820152697468657220456163682160b01b606082015260800190565b602080825260099082015268534f4c44204f55542160b81b604082015260600190565b600060001982141561222b5761222b61215d565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261225757612257612232565b500490565b634e487b7160e01b600052603260045260246000fd5b6000845160206122858285838a01611cd8565b8551918401916122988184848a01611cd8565b8554920191600090600181811c90808316806122b557607f831692505b8583108114156122d357634e487b7160e01b85526022600452602485fd5b8080156122e757600181146122f857612325565b60ff19851688528388019550612325565b60008b81526020902060005b8581101561231d5781548a820152908401908801612304565b505083880195505b50939b9a5050505050505050505050565b6000828210156123485761234861215d565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826123ae576123ae612232565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123e690830184611d04565b9695505050505050565b60006020828403121561240257600080fd5b815161113c81611ca556fea2646970667358221220b3a0b63b6537c21686fbd52c48d14c76850f069fafdff0a8982fa2889db90de464736f6c634300080a0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f63637a6c7767672e6d7970696e6174612e636c6f75642f697066732f516d51575a426f67714c764d553931424c6433596b46456e74696b3132506139625837356a75774e4436527a47612f00000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://cczlwgg.mypinata.cloud/ipfs/QmQWZBogqLvMU91BLd3YkFEntik12Pa9bX75juwND6RzGa/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000053
Arg [2] : 68747470733a2f2f63637a6c7767672e6d7970696e6174612e636c6f75642f69
Arg [3] : 7066732f516d51575a426f67714c764d553931424c6433596b46456e74696b31
Arg [4] : 32506139625837356a75774e4436527a47612f00000000000000000000000000


Deployed Bytecode Sourcemap

39747:4602:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40106:36;;;;;;;;;;-1:-1:-1;40106:36:0;;;;;;;;;;;;;;179:14:1;;172:22;154:41;;142:2;127:18;40106:36:0;;;;;;;;40819:121;;;;;;;;;;;;;:::i;:::-;;23207:305;;;;;;;;;;-1:-1:-1;23207:305:0;;;;;:::i;:::-;;:::i;24152:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25711:221::-;;;;;;;;;;-1:-1:-1;25711:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;25711:221:0;1528:203:1;25234:411:0;;;;;;;;;;-1:-1:-1;25234:411:0;;;;;:::i;:::-;;:::i;43626:100::-;;;;;;;;;;-1:-1:-1;43697:21:0;43626:100;;;2319:25:1;;;2307:2;2292:18;43626:100:0;2173:177:1;41423:128:0;;;;;;;;;;-1:-1:-1;41423:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;41521:22:0;41492:4;41521:22;;;:11;:22;;;;;;;;;41423:128;26461:339;;;;;;;;;;-1:-1:-1;26461:339:0;;;;;:::i;:::-;;:::i;40948:108::-;;;;;;;;;;-1:-1:-1;40948:108:0;;;;;:::i;:::-;;:::i;26871:185::-;;;;;;;;;;-1:-1:-1;26871:185:0;;;;;:::i;:::-;;:::i;36236:245::-;;;;;;;;;;-1:-1:-1;36236:245:0;;;;;:::i;:::-;;:::i;41561:738::-;;;;;;:::i;:::-;;:::i;43856:104::-;;;;;;;;;;-1:-1:-1;43856:104:0;;;;;:::i;:::-;;:::i;42977:643::-;;;;;;;;;;;;;:::i;41183:232::-;;;;;;;;;;-1:-1:-1;41183:232:0;;;;;:::i;:::-;;:::i;41068:107::-;;;;;;;;;;;;;:::i;23846:239::-;;;;;;;;;;-1:-1:-1;23846:239:0;;;;;:::i;:::-;;:::i;39879:21::-;;;;;;;;;;;;;:::i;23576:208::-;;;;;;;;;;-1:-1:-1;23576:208:0;;;;;:::i;:::-;;:::i;38254:103::-;;;;;;;;;;;;;:::i;39951:22::-;;;;;;;;;;-1:-1:-1;39951:22:0;;;;;;;;;;;5562:4:1;5550:17;;;5532:36;;5520:2;5505:18;39951:22:0;5390:184:1;37603:87:0;;;;;;;;;;-1:-1:-1;37676:6:0;;-1:-1:-1;;;;;37676:6:0;37603:87;;24321:104;;;;;;;;;;;;;:::i;40019:33::-;;;;;;;;;;;;;;;;26004:155;;;;;;;;;;-1:-1:-1;26004:155:0;;;;;:::i;:::-;;:::i;27127:328::-;;;;;;;;;;-1:-1:-1;27127:328:0;;;;;:::i;:::-;;:::i;39907:37::-;;;;;;;;;;;;;:::i;43971:375::-;;;;;;;;;;-1:-1:-1;43971:375:0;;;;;:::i;:::-;;:::i;40065:34::-;;;;;;;;;;-1:-1:-1;40065:34:0;;;;;;;;39980:32;;;;;;;;;;;;;;;;42313:653;;;;;;:::i;:::-;;:::i;26230:164::-;;;;;;;;;;-1:-1:-1;26230:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26351:25:0;;;26327:4;26351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26230:164;38512:201;;;;;;;;;;-1:-1:-1;38512:201:0;;;;;:::i;:::-;;:::i;40819:121::-;37676:6;;-1:-1:-1;;;;;37676:6:0;21628:10;37823:23;37815:68;;;;-1:-1:-1;;;37815:68:0;;;;;;;:::i;:::-;;;;;;;;;40875:15:::1;:23:::0;;-1:-1:-1;;40909:23:0;40875::::1;40909;::::0;;40819:121::o;23207:305::-;23309:4;-1:-1:-1;;;;;;23346:40:0;;-1:-1:-1;;;23346:40:0;;:105;;-1:-1:-1;;;;;;;23403:48:0;;-1:-1:-1;;;23403:48:0;23346:105;:158;;;-1:-1:-1;;;;;;;;;;13462:40:0;;;23468:36;23326:178;23207:305;-1:-1:-1;;23207:305:0:o;24152:100::-;24206:13;24239:5;24232:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24152:100;:::o;25711:221::-;25787:7;29054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29054:16:0;25807:73;;;;-1:-1:-1;;;25807:73:0;;7816:2:1;25807:73:0;;;7798:21:1;7855:2;7835:18;;;7828:30;7894:34;7874:18;;;7867:62;-1:-1:-1;;;7945:18:1;;;7938:42;7997:19;;25807:73:0;7614:408:1;25807:73:0;-1:-1:-1;25900:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25900:24:0;;25711:221::o;25234:411::-;25315:13;25331:23;25346:7;25331:14;:23::i;:::-;25315:39;;25379:5;-1:-1:-1;;;;;25373:11:0;:2;-1:-1:-1;;;;;25373:11:0;;;25365:57;;;;-1:-1:-1;;;25365:57:0;;8229:2:1;25365:57:0;;;8211:21:1;8268:2;8248:18;;;8241:30;8307:34;8287:18;;;8280:62;-1:-1:-1;;;8358:18:1;;;8351:31;8399:19;;25365:57:0;8027:397:1;25365:57:0;21628:10;-1:-1:-1;;;;;25457:21:0;;;;:62;;-1:-1:-1;25482:37:0;25499:5;21628:10;26230:164;:::i;25482:37::-;25435:168;;;;-1:-1:-1;;;25435:168:0;;8631:2:1;25435:168:0;;;8613:21:1;8670:2;8650:18;;;8643:30;8709:34;8689:18;;;8682:62;8780:26;8760:18;;;8753:54;8824:19;;25435:168:0;8429:420:1;25435:168:0;25616:21;25625:2;25629:7;25616:8;:21::i;:::-;25304:341;25234:411;;:::o;26461:339::-;26656:41;21628:10;26675:12;26689:7;26656:18;:41::i;:::-;26648:103;;;;-1:-1:-1;;;26648:103:0;;;;;;;:::i;:::-;26764:28;26774:4;26780:2;26784:7;26764:9;:28::i;40948:108::-;37676:6;;-1:-1:-1;;;;;37676:6:0;21628:10;37823:23;37815:68;;;;-1:-1:-1;;;37815:68:0;;;;;;;:::i;:::-;41026:9:::1;:22:::0;40948:108::o;26871:185::-;27009:39;27026:4;27032:2;27036:7;27009:39;;;;;;;;;;;;:16;:39::i;36236:245::-;36354:41;21628:10;36373:12;21548:98;36354:41;36346:102;;;;-1:-1:-1;;;36346:102:0;;9474:2:1;36346:102:0;;;9456:21:1;9513:2;9493:18;;;9486:30;9552:34;9532:18;;;9525:62;-1:-1:-1;;;9603:18:1;;;9596:46;9659:19;;36346:102:0;9272:412:1;36346:102:0;36459:14;36465:7;36459:5;:14::i;:::-;36236:245;:::o;41561:738::-;40663:15;;;;:23;;:15;:23;40655:32;;;;;;41687:10:::1;41640:19;41674:24:::0;;;:12:::1;:24;::::0;;;;;41662:36:::1;::::0;::::1;::::0;::::1;;:::i;:::-;41739:10;41727:23;::::0;;;:11:::1;:23;::::0;;;;;41640:58;;-1:-1:-1;41727:23:0::1;;:31;;:23:::0;:31:::1;41719:68;;;::::0;-1:-1:-1;;;41719:68:0;;10156:2:1;41719:68:0::1;::::0;::::1;10138:21:1::0;10195:2;10175:18;;;10168:30;10234:26;10214:18;;;10207:54;10278:18;;41719:68:0::1;9954:348:1::0;41719:68:0::1;41821:5;::::0;::::1;;41806:20:::0;::::1;;41798:57;;;::::0;-1:-1:-1;;;41798:57:0;;10509:2:1;41798:57:0::1;::::0;::::1;10491:21:1::0;10548:2;10528:18;;;10521:30;-1:-1:-1;;;10567:18:1;;;10560:54;10631:18;;41798:57:0::1;10307:348:1::0;41798:57:0::1;41887:1;41874:9;:14;;;;41866:49;;;::::0;-1:-1:-1;;;41866:49:0;;10862:2:1;41866:49:0::1;::::0;::::1;10844:21:1::0;10901:2;10881:18;;;10874:30;-1:-1:-1;;;10920:18:1;;;10913:51;10981:18;;41866:49:0::1;10660:345:1::0;41866:49:0::1;41955:9;41947:17;;:5;;:17;;;;:::i;:::-;41934:9;:30;;41926:85;;;;-1:-1:-1::0;;;41926:85:0::1;;;;;;;:::i;:::-;42045:9;;42030:12;:10;:12::i;:::-;:24;42022:46;;;;-1:-1:-1::0;;;42022:46:0::1;;;;;;;:::i;:::-;42092:6;42088:204;42103:9;42101:11;;:1;:11;42088:204;;;42165:9;;42150:12;:10;:12::i;:::-;:24;42142:46;;;;-1:-1:-1::0;;;42142:46:0::1;;;;;;;:::i;:::-;42203:27;:15;20434:19:::0;;20452:1;20434:19;;;20345:127;42203:27:::1;42245:35;42255:10;42267:12;:10;:12::i;:::-;42245:9;:35::i;:::-;42113:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42088:204;;43856:104:::0;37676:6;;-1:-1:-1;;;;;37676:6:0;21628:10;37823:23;37815:68;;;;-1:-1:-1;;;37815:68:0;;;;;;;:::i;:::-;43931:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43856:104:::0;:::o;42977:643::-;37676:6;;-1:-1:-1;;;;;37676:6:0;21628:10;37823:23;37815:68;;;;-1:-1:-1;;;37815:68:0;;;;;;;:::i;:::-;43079:42:::1;43167;43257;43346;43045:23;43432:16;43447:1;43697:21:::0;43432:16:::1;:::i;:::-;43462:28;::::0;43410:39;;-1:-1:-1;;;;;;43462:16:0;::::1;::::0;:28;::::1;;;::::0;43410:39;;43462:28:::1;::::0;;;43410:39;43462:16;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;43501:28:0::1;::::0;-1:-1:-1;;;;;43501:16:0;::::1;::::0;:28;::::1;;;::::0;43518:10;;43501:28:::1;::::0;;;43518:10;43501:16;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;43540:30:0::1;::::0;-1:-1:-1;;;;;43540:18:0;::::1;::::0;:30;::::1;;;::::0;43559:10;;43540:30:::1;::::0;;;43559:10;43540:18;:30;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;43581:29:0::1;::::0;-1:-1:-1;;;;;43581:17:0;::::1;::::0;:29;::::1;;;::::0;43599:10;;43581:29:::1;::::0;;;43599:10;43581:17;:29;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;43034:586;;;;;42977:643::o:0;41183:232::-;37676:6;;-1:-1:-1;;;;;37676:6:0;21628:10;37823:23;37815:68;;;;-1:-1:-1;;;37815:68:0;;;;;;;:::i;:::-;41281:9:::1;41277:131;41296:20;:27;41294:1;:29;41277:131;;;41392:4;41353:11;:36;41365:20;41386:1;41365:23;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;41353:36:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;41353:36:0;:43;;-1:-1:-1;;41353:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41324:3;::::1;::::0;::::1;:::i;:::-;;;;41277:131;;41068:107:::0;41111:7;41142:25;:15;20315:14;;20223:114;41142:25;41135:32;;41068:107;:::o;23846:239::-;23918:7;23954:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23954:16:0;23989:19;23981:73;;;;-1:-1:-1;;;23981:73:0;;12662:2:1;23981:73:0;;;12644:21:1;12701:2;12681:18;;;12674:30;12740:34;12720:18;;;12713:62;-1:-1:-1;;;12791:18:1;;;12784:39;12840:19;;23981:73:0;12460:405:1;39879:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23576:208::-;23648:7;-1:-1:-1;;;;;23676:19:0;;23668:74;;;;-1:-1:-1;;;23668:74:0;;13072:2:1;23668:74:0;;;13054:21:1;13111:2;13091:18;;;13084:30;13150:34;13130:18;;;13123:62;-1:-1:-1;;;13201:18:1;;;13194:40;13251:19;;23668:74:0;12870:406:1;23668:74:0;-1:-1:-1;;;;;;23760:16:0;;;;;:9;:16;;;;;;;23576:208::o;38254:103::-;37676:6;;-1:-1:-1;;;;;37676:6:0;21628:10;37823:23;37815:68;;;;-1:-1:-1;;;37815:68:0;;;;;;;:::i;:::-;38319:30:::1;38346:1;38319:18;:30::i;:::-;38254:103::o:0;24321:104::-;24377:13;24410:7;24403:14;;;;;:::i;26004:155::-;26099:52;21628:10;26132:8;26142;26099:18;:52::i;27127:328::-;27302:41;21628:10;27335:7;27302:18;:41::i;:::-;27294:103;;;;-1:-1:-1;;;27294:103:0;;;;;;;:::i;:::-;27408:39;27422:4;27428:2;27432:7;27441:5;27408:13;:39::i;:::-;27127:328;;;;:::o;39907:37::-;;;;;;;:::i;43971:375::-;29030:4;29054:16;;;:7;:16;;;;;;44044:13;;-1:-1:-1;;;;;29054:16:0;44075:76;;;;-1:-1:-1;;;44075:76:0;;13483:2:1;44075:76:0;;;13465:21:1;13522:2;13502:18;;;13495:30;13561:34;13541:18;;;13534:62;-1:-1:-1;;;13612:18:1;;;13605:45;13667:19;;44075:76:0;13281:411:1;44075:76:0;44164:28;44195:10;:8;:10::i;:::-;44164:41;;44254:1;44229:14;44223:28;:32;:115;;;;;;;;;;;;;;;;;44282:14;44298:18;:7;:16;:18::i;:::-;44318:13;44265:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44223:115;44216:122;43971:375;-1:-1:-1;;;43971:375:0:o;42313:653::-;40765:16;;;;;;;;:24;;:16;:24;40757:33;;;;;;42441:10:::1;42394:19;42428:24:::0;;;:12:::1;:24;::::0;;;;;42416:36:::1;::::0;::::1;::::0;::::1;;:::i;:::-;42488:5;::::0;42394:58;;-1:-1:-1;42488:5:0::1;;42473:20:::0;::::1;;42465:57;;;::::0;-1:-1:-1;;;42465:57:0;;10509:2:1;42465:57:0::1;::::0;::::1;10491:21:1::0;10548:2;10528:18;;;10521:30;-1:-1:-1;;;10567:18:1;;;10560:54;10631:18;;42465:57:0::1;10307:348:1::0;42465:57:0::1;42554:1;42541:9;:14;;;;42533:49;;;::::0;-1:-1:-1;;;42533:49:0;;10862:2:1;42533:49:0::1;::::0;::::1;10844:21:1::0;10901:2;10881:18;;;10874:30;-1:-1:-1;;;10920:18:1;;;10913:51;10981:18;;42533:49:0::1;10660:345:1::0;42533:49:0::1;42622:9;42614:17;;:5;;:17;;;;:::i;:::-;42601:9;:30;;42593:85;;;;-1:-1:-1::0;;;42593:85:0::1;;;;;;;:::i;:::-;42712:9;;42697:12;:10;:12::i;:::-;:24;42689:46;;;;-1:-1:-1::0;;;42689:46:0::1;;;;;;;:::i;:::-;42759:6;42755:204;42770:9;42768:11;;:1;:11;42755:204;;;42832:9;;42817:12;:10;:12::i;:::-;:24;42809:46;;;;-1:-1:-1::0;;;42809:46:0::1;;;;;;;:::i;:::-;42870:27;:15;20434:19:::0;;20452:1;20434:19;;;20345:127;42870:27:::1;42912:35;42922:10;42934:12;:10;:12::i;42912:35::-;42780:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42755:204;;38512:201:::0;37676:6;;-1:-1:-1;;;;;37676:6:0;21628:10;37823:23;37815:68;;;;-1:-1:-1;;;37815:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38601:22:0;::::1;38593:73;;;::::0;-1:-1:-1;;;38593:73:0;;15557:2:1;38593:73:0::1;::::0;::::1;15539:21:1::0;15596:2;15576:18;;;15569:30;15635:34;15615:18;;;15608:62;-1:-1:-1;;;15686:18:1;;;15679:36;15732:19;;38593:73:0::1;15355:402:1::0;38593:73:0::1;38677:28;38696:8;38677:18;:28::i;20345:127::-:0;20434:19;;20452:1;20434:19;;;20345:127::o;20223:114::-;20315:14;;20223:114::o;3050:387::-;3373:20;3421:8;;;3050:387::o;32947:174::-;33022:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33022:29:0;-1:-1:-1;;;;;33022:29:0;;;;;;;;:24;;33076:23;33022:24;33076:14;:23::i;:::-;-1:-1:-1;;;;;33067:46:0;;;;;;;;;;;32947:174;;:::o;29259:348::-;29352:4;29054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29054:16:0;29369:73;;;;-1:-1:-1;;;29369:73:0;;15964:2:1;29369:73:0;;;15946:21:1;16003:2;15983:18;;;15976:30;16042:34;16022:18;;;16015:62;-1:-1:-1;;;16093:18:1;;;16086:42;16145:19;;29369:73:0;15762:408:1;29369:73:0;29453:13;29469:23;29484:7;29469:14;:23::i;:::-;29453:39;;29522:5;-1:-1:-1;;;;;29511:16:0;:7;-1:-1:-1;;;;;29511:16:0;;:51;;;;29555:7;-1:-1:-1;;;;;29531:31:0;:20;29543:7;29531:11;:20::i;:::-;-1:-1:-1;;;;;29531:31:0;;29511:51;:87;;;-1:-1:-1;;;;;;26351:25:0;;;26327:4;26351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29566:32;29503:96;29259:348;-1:-1:-1;;;;29259:348:0:o;32251:578::-;32410:4;-1:-1:-1;;;;;32383:31:0;:23;32398:7;32383:14;:23::i;:::-;-1:-1:-1;;;;;32383:31:0;;32375:85;;;;-1:-1:-1;;;32375:85:0;;16377:2:1;32375:85:0;;;16359:21:1;16416:2;16396:18;;;16389:30;16455:34;16435:18;;;16428:62;-1:-1:-1;;;16506:18:1;;;16499:39;16555:19;;32375:85:0;16175:405:1;32375:85:0;-1:-1:-1;;;;;32479:16:0;;32471:65;;;;-1:-1:-1;;;32471:65:0;;16787:2:1;32471:65:0;;;16769:21:1;16826:2;16806:18;;;16799:30;16865:34;16845:18;;;16838:62;-1:-1:-1;;;16916:18:1;;;16909:34;16960:19;;32471:65:0;16585:400:1;32471:65:0;32653:29;32670:1;32674:7;32653:8;:29::i;:::-;-1:-1:-1;;;;;32695:15:0;;;;;;:9;:15;;;;;:20;;32714:1;;32695:15;:20;;32714:1;;32695:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32726:13:0;;;;;;:9;:13;;;;;:18;;32743:1;;32726:13;:18;;32743:1;;32726:18;:::i;:::-;;;;-1:-1:-1;;32755:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32755:21:0;-1:-1:-1;;;;;32755:21:0;;;;;;;;;32794:27;;32755:16;;32794:27;;;;;;;32251:578;;;:::o;31554:360::-;31614:13;31630:23;31645:7;31630:14;:23::i;:::-;31614:39;;31755:29;31772:1;31776:7;31755:8;:29::i;:::-;-1:-1:-1;;;;;31797:16:0;;;;;;:9;:16;;;;;:21;;31817:1;;31797:16;:21;;31817:1;;31797:21;:::i;:::-;;;;-1:-1:-1;;31836:16:0;;;;:7;:16;;;;;;31829:23;;-1:-1:-1;;;;;;31829:23:0;;;31870:36;31844:7;;31836:16;-1:-1:-1;;;;;31870:36:0;;;;;31836:16;;31870:36;31603:311;31554:360;:::o;29949:110::-;30025:26;30035:2;30039:7;30025:26;;;;;;;;;;;;:9;:26::i;38873:191::-;38966:6;;;-1:-1:-1;;;;;38983:17:0;;;-1:-1:-1;;;;;;38983:17:0;;;;;;;39016:40;;38966:6;;;38983:17;38966:6;;39016:40;;38947:16;;39016:40;38936:128;38873:191;:::o;33263:315::-;33418:8;-1:-1:-1;;;;;33409:17:0;:5;-1:-1:-1;;;;;33409:17:0;;;33401:55;;;;-1:-1:-1;;;33401:55:0;;17322:2:1;33401:55:0;;;17304:21:1;17361:2;17341:18;;;17334:30;17400:27;17380:18;;;17373:55;17445:18;;33401:55:0;17120:349:1;33401:55:0;-1:-1:-1;;;;;33467:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;33467:46:0;;;;;;;;;;33529:41;;154::1;;;33529::0;;127:18:1;33529:41:0;;;;;;;33263:315;;;:::o;28337:::-;28494:28;28504:4;28510:2;28514:7;28494:9;:28::i;:::-;28541:48;28564:4;28570:2;28574:7;28583:5;28541:22;:48::i;:::-;28533:111;;;;-1:-1:-1;;;28533:111:0;;;;;;;:::i;43737:108::-;43797:13;43830:7;43823:14;;;;;:::i;418:723::-;474:13;695:10;691:53;;-1:-1:-1;;722:10:0;;;;;;;;;;;;-1:-1:-1;;;722:10:0;;;;;418:723::o;691:53::-;769:5;754:12;810:78;817:9;;810:78;;843:8;;;;:::i;:::-;;-1:-1:-1;866:10:0;;-1:-1:-1;874:2:0;866:10;;:::i;:::-;;;810:78;;;898:19;930:6;920:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;920:17:0;;898:39;;948:154;955:10;;948:154;;982:11;992:1;982:11;;:::i;:::-;;-1:-1:-1;1051:10:0;1059:2;1051:5;:10;:::i;:::-;1038:24;;:2;:24;:::i;:::-;1025:39;;1008:6;1015;1008:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1008:56:0;;;;;;;;-1:-1:-1;1079:11:0;1088:2;1079:11;;:::i;:::-;;;948:154;;30286:321;30416:18;30422:2;30426:7;30416:5;:18::i;:::-;30467:54;30498:1;30502:2;30506:7;30515:5;30467:22;:54::i;:::-;30445:154;;;;-1:-1:-1;;;30445:154:0;;;;;;;:::i;34143:799::-;34298:4;-1:-1:-1;;;;;34319:13:0;;3373:20;3421:8;34315:620;;34355:72;;-1:-1:-1;;;34355:72:0;;-1:-1:-1;;;;;34355:36:0;;;;;:72;;21628:10;;34406:4;;34412:7;;34421:5;;34355:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34355:72:0;;;;;;;;-1:-1:-1;;34355:72:0;;;;;;;;;;;;:::i;:::-;;;34351:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34597:13:0;;34593:272;;34640:60;;-1:-1:-1;;;34640:60:0;;;;;;;:::i;34593:272::-;34815:6;34809:13;34800:6;34796:2;34792:15;34785:38;34351:529;-1:-1:-1;;;;;;34478:51:0;-1:-1:-1;;;34478:51:0;;-1:-1:-1;34471:58:0;;34315:620;-1:-1:-1;34919:4:0;34143:799;;;;;;:::o;30943:382::-;-1:-1:-1;;;;;31023:16:0;;31015:61;;;;-1:-1:-1;;;31015:61:0;;18960:2:1;31015:61:0;;;18942:21:1;;;18979:18;;;18972:30;19038:34;19018:18;;;19011:62;19090:18;;31015:61:0;18758:356:1;31015:61:0;29030:4;29054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29054:16:0;:30;31087:58;;;;-1:-1:-1;;;31087:58:0;;19321:2:1;31087:58:0;;;19303:21:1;19360:2;19340:18;;;19333:30;19399;19379:18;;;19372:58;19447:18;;31087:58:0;19119:352:1;31087:58:0;-1:-1:-1;;;;;31216:13:0;;;;;;:9;:13;;;;;:18;;31233:1;;31216:13;:18;;31233:1;;31216:18;:::i;:::-;;;;-1:-1:-1;;31245:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31245:21:0;-1:-1:-1;;;;;31245:21:0;;;;;;;;31284:33;;31245:16;;;31284:33;;31245:16;;31284:33;30943:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;206:131:1;-1:-1:-1;;;;;;280:32:1;;270:43;;260:71;;327:1;324;317:12;342:245;400:6;453:2;441:9;432:7;428:23;424:32;421:52;;;469:1;466;459:12;421:52;508:9;495:23;527:30;551:5;527:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:186::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2506:29;2525:9;2506:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:269::-;2936:6;2989:2;2977:9;2968:7;2964:23;2960:32;2957:52;;;3005:1;3002;2995:12;2957:52;3044:9;3031:23;3094:4;3087:5;3083:16;3076:5;3073:27;3063:55;;3114:1;3111;3104:12;3153:127;3214:10;3209:3;3205:20;3202:1;3195:31;3245:4;3242:1;3235:15;3269:4;3266:1;3259:15;3285:275;3356:2;3350:9;3421:2;3402:13;;-1:-1:-1;;3398:27:1;3386:40;;3456:18;3441:34;;3477:22;;;3438:62;3435:88;;;3503:18;;:::i;:::-;3539:2;3532:22;3285:275;;-1:-1:-1;3285:275:1:o;3565:407::-;3630:5;3664:18;3656:6;3653:30;3650:56;;;3686:18;;:::i;:::-;3724:57;3769:2;3748:15;;-1:-1:-1;;3744:29:1;3775:4;3740:40;3724:57;:::i;:::-;3715:66;;3804:6;3797:5;3790:21;3844:3;3835:6;3830:3;3826:16;3823:25;3820:45;;;3861:1;3858;3851:12;3820:45;3910:6;3905:3;3898:4;3891:5;3887:16;3874:43;3964:1;3957:4;3948:6;3941:5;3937:18;3933:29;3926:40;3565:407;;;;;:::o;3977:451::-;4046:6;4099:2;4087:9;4078:7;4074:23;4070:32;4067:52;;;4115:1;4112;4105:12;4067:52;4155:9;4142:23;4188:18;4180:6;4177:30;4174:50;;;4220:1;4217;4210:12;4174:50;4243:22;;4296:4;4288:13;;4284:27;-1:-1:-1;4274:55:1;;4325:1;4322;4315:12;4274:55;4348:74;4414:7;4409:2;4396:16;4391:2;4387;4383:11;4348:74;:::i;4433:952::-;4517:6;4548:2;4591;4579:9;4570:7;4566:23;4562:32;4559:52;;;4607:1;4604;4597:12;4559:52;4647:9;4634:23;4676:18;4717:2;4709:6;4706:14;4703:34;;;4733:1;4730;4723:12;4703:34;4771:6;4760:9;4756:22;4746:32;;4816:7;4809:4;4805:2;4801:13;4797:27;4787:55;;4838:1;4835;4828:12;4787:55;4874:2;4861:16;4896:2;4892;4889:10;4886:36;;;4902:18;;:::i;:::-;4948:2;4945:1;4941:10;4931:20;;4971:28;4995:2;4991;4987:11;4971:28;:::i;:::-;5033:15;;;5103:11;;;5099:20;;;5064:12;;;;5131:19;;;5128:39;;;5163:1;5160;5153:12;5128:39;5187:11;;;;5207:148;5223:6;5218:3;5215:15;5207:148;;;5289:23;5308:3;5289:23;:::i;:::-;5277:36;;5240:12;;;;5333;;;;5207:148;;;5374:5;4433:952;-1:-1:-1;;;;;;;;4433:952:1:o;5579:347::-;5644:6;5652;5705:2;5693:9;5684:7;5680:23;5676:32;5673:52;;;5721:1;5718;5711:12;5673:52;5744:29;5763:9;5744:29;:::i;:::-;5734:39;;5823:2;5812:9;5808:18;5795:32;5870:5;5863:13;5856:21;5849:5;5846:32;5836:60;;5892:1;5889;5882:12;5836:60;5915:5;5905:15;;;5579:347;;;;;:::o;5931:667::-;6026:6;6034;6042;6050;6103:3;6091:9;6082:7;6078:23;6074:33;6071:53;;;6120:1;6117;6110:12;6071:53;6143:29;6162:9;6143:29;:::i;:::-;6133:39;;6191:38;6225:2;6214:9;6210:18;6191:38;:::i;:::-;6181:48;;6276:2;6265:9;6261:18;6248:32;6238:42;;6331:2;6320:9;6316:18;6303:32;6358:18;6350:6;6347:30;6344:50;;;6390:1;6387;6380:12;6344:50;6413:22;;6466:4;6458:13;;6454:27;-1:-1:-1;6444:55:1;;6495:1;6492;6485:12;6444:55;6518:74;6584:7;6579:2;6566:16;6561:2;6557;6553:11;6518:74;:::i;:::-;6508:84;;;5931:667;;;;;;;:::o;6603:260::-;6671:6;6679;6732:2;6720:9;6711:7;6707:23;6703:32;6700:52;;;6748:1;6745;6738:12;6700:52;6771:29;6790:9;6771:29;:::i;:::-;6761:39;;6819:38;6853:2;6842:9;6838:18;6819:38;:::i;:::-;6809:48;;6603:260;;;;;:::o;6868:356::-;7070:2;7052:21;;;7089:18;;;7082:30;7148:34;7143:2;7128:18;;7121:62;7215:2;7200:18;;6868:356::o;7229:380::-;7308:1;7304:12;;;;7351;;;7372:61;;7426:4;7418:6;7414:17;7404:27;;7372:61;7479:2;7471:6;7468:14;7448:18;7445:38;7442:161;;;7525:10;7520:3;7516:20;7513:1;7506:31;7560:4;7557:1;7550:15;7588:4;7585:1;7578:15;7442:161;;7229:380;;;:::o;8854:413::-;9056:2;9038:21;;;9095:2;9075:18;;;9068:30;9134:34;9129:2;9114:18;;9107:62;-1:-1:-1;;;9200:2:1;9185:18;;9178:47;9257:3;9242:19;;8854:413::o;9689:127::-;9750:10;9745:3;9741:20;9738:1;9731:31;9781:4;9778:1;9771:15;9805:4;9802:1;9795:15;9821:128;9861:3;9892:1;9888:6;9885:1;9882:13;9879:39;;;9898:18;;:::i;:::-;-1:-1:-1;9934:9:1;;9821:128::o;11010:168::-;11050:7;11116:1;11112;11108:6;11104:14;11101:1;11098:21;11093:1;11086:9;11079:17;11075:45;11072:71;;;11123:18;;:::i;:::-;-1:-1:-1;11163:9:1;;11010:168::o;11183:406::-;11385:2;11367:21;;;11424:2;11404:18;;;11397:30;11463:34;11458:2;11443:18;;11436:62;-1:-1:-1;;;11529:2:1;11514:18;;11507:40;11579:3;11564:19;;11183:406::o;11594:332::-;11796:2;11778:21;;;11835:1;11815:18;;;11808:29;-1:-1:-1;;;11868:2:1;11853:18;;11846:39;11917:2;11902:18;;11594:332::o;11931:135::-;11970:3;-1:-1:-1;;11991:17:1;;11988:43;;;12011:18;;:::i;:::-;-1:-1:-1;12058:1:1;12047:13;;11931:135::o;12071:127::-;12132:10;12127:3;12123:20;12120:1;12113:31;12163:4;12160:1;12153:15;12187:4;12184:1;12177:15;12203:120;12243:1;12269;12259:35;;12274:18;;:::i;:::-;-1:-1:-1;12308:9:1;;12203:120::o;12328:127::-;12389:10;12384:3;12380:20;12377:1;12370:31;12420:4;12417:1;12410:15;12444:4;12441:1;12434:15;13823:1527;14047:3;14085:6;14079:13;14111:4;14124:51;14168:6;14163:3;14158:2;14150:6;14146:15;14124:51;:::i;:::-;14238:13;;14197:16;;;;14260:55;14238:13;14197:16;14282:15;;;14260:55;:::i;:::-;14404:13;;14337:20;;;14377:1;;14464;14486:18;;;;14539;;;;14566:93;;14644:4;14634:8;14630:19;14618:31;;14566:93;14707:2;14697:8;14694:16;14674:18;14671:40;14668:167;;;-1:-1:-1;;;14734:33:1;;14790:4;14787:1;14780:15;14820:4;14741:3;14808:17;14668:167;14851:18;14878:110;;;;15002:1;14997:328;;;;14844:481;;14878:110;-1:-1:-1;;14913:24:1;;14899:39;;14958:20;;;;-1:-1:-1;14878:110:1;;14997:328;13770:1;13763:14;;;13807:4;13794:18;;15092:1;15106:169;15120:8;15117:1;15114:15;15106:169;;;15202:14;;15187:13;;;15180:37;15245:16;;;;15137:10;;15106:169;;;15110:3;;15306:8;15299:5;15295:20;15288:27;;14844:481;-1:-1:-1;15341:3:1;;13823:1527;-1:-1:-1;;;;;;;;;;;13823:1527:1:o;16990:125::-;17030:4;17058:1;17055;17052:8;17049:34;;;17063:18;;:::i;:::-;-1:-1:-1;17100:9:1;;16990:125::o;17474:414::-;17676:2;17658:21;;;17715:2;17695:18;;;17688:30;17754:34;17749:2;17734:18;;17727:62;-1:-1:-1;;;17820:2:1;17805:18;;17798:48;17878:3;17863:19;;17474:414::o;17893:112::-;17925:1;17951;17941:35;;17956:18;;:::i;:::-;-1:-1:-1;17990:9:1;;17893:112::o;18010:489::-;-1:-1:-1;;;;;18279:15:1;;;18261:34;;18331:15;;18326:2;18311:18;;18304:43;18378:2;18363:18;;18356:34;;;18426:3;18421:2;18406:18;;18399:31;;;18204:4;;18447:46;;18473:19;;18465:6;18447:46;:::i;:::-;18439:54;18010:489;-1:-1:-1;;;;;;18010:489:1:o;18504:249::-;18573:6;18626:2;18614:9;18605:7;18601:23;18597:32;18594:52;;;18642:1;18639;18632:12;18594:52;18674:9;18668:16;18693:30;18717:5;18693:30;:::i

Swarm Source

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