ETH Price: $3,482.93 (+3.31%)
Gas: 3 Gwei

Token

Ranchy Rednecks (RRS)
 

Overview

Max Total Supply

1,000 RRS

Holders

549

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
thadream.eth
Balance
1 RRS
0x35566a5b3adb28dd3fbc64434c87af09382e7e83
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Ranchy Redneck's is a collection of 1,000 randomly generated art pieces. CREATED BY A 13 YEAR OLD NAMED NICK! We are here to give you a good minting experience love you all!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RanchyRednecks

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: verified-sources/0x2F8978510827FfE24d1098203DD2c85ca3a0cEbd/sources/contracts/Redneck.sol

// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.0 <0.9.0;

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

    string public baseURI;
    string public notRevealedUri;
    uint256 public constant MAX_SUPPLY = 1000;
    uint256 public cost = 0.05 ether;
    uint256 public maxMintAmount = 3;
    bool public isPaused = true;
    bool public isRevealed = false;
    bool public isOnlyWhitelisted = true;
    address public dev = 0x51D8f89Fae2e82c4bAcF6Ec270f36624bc9C6D1E;
    address public art = 0x0282d4Dfb211C890a358B38893e8d66786f5a756;
    address public hip = 0xB6e6Ba7a8a8F57f918F7F192ef3EaBe2d48E0351;
    address[] public whitelistedAddresses;
    mapping(address => uint256) public addressMintedBalance;

    event NewRedneckMinted(address sender, uint256 tokenId);

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initNotRevealedUri
    ) ERC721(_name, _symbol) {
        setNotRevealedURI(_initNotRevealedUri);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function mint(uint256 _mintAmount) public payable {
        require(!isPaused);
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmount || msg.sender == owner());
        require(
            addressMintedBalance[msg.sender] + _mintAmount <= maxMintAmount ||
                msg.sender == owner()
        );
        require(totalSupply() + _mintAmount <= MAX_SUPPLY);

        if (msg.sender != owner()) {
            if (isOnlyWhitelisted) {
                require(isWhitelisted(msg.sender));
            }
            require(msg.value >= cost * _mintAmount);
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            uint256 id = totalSupply() + 1;
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, id);
            emit NewRedneckMinted(msg.sender, id);
        }
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId));

        if (!isRevealed) {
            return notRevealedUri;
        }

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

    function setIsRevealed(bool _status) public onlyOwner {
        if (_status) require(bytes(baseURI).length > 0);
        isRevealed = _status;
    }

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

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

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

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

    function setIsPaused(bool _state) public onlyOwner {
        isPaused = _state;
    }

    function setIsOnlyWhitelisted(bool _state) public onlyOwner {
        isOnlyWhitelisted = _state;
    }

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

    function withdraw() public payable onlyOwner {
        uint256 balance = address(this).balance;
        (bool successA, ) = payable(dev).call{value: (balance / 100) * 15}("");
        (bool successB, ) = payable(art).call{value: (balance / 100) * 25}("");
        (bool successC, ) = payable(hip).call{value: (balance / 100) * 30}("");
        (bool successD, ) = payable(msg.sender).call{
            value: (balance / 100) * 30
        }("");
        require(successA && successB && successC && successD);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","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":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NewRedneckMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"art","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dev","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hip","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOnlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setIsOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setIsPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setIsRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"setWhitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266b1a2bc2ec50000600d556003600e55600f805462010000600160ff199092169190911762ffff001916176301000000600160b81b0319167651d8f89fae2e82c4bacf6ec270f36624bc9c6d1e00000017905560108054730282d4dfb211c890a358b38893e8d66786f5a7566001600160a01b0319918216179091556011805473b6e6ba7a8a8f57f918f7f192ef3eabe2d48e03519216919091179055348015620000ae57600080fd5b5060405162002eba38038062002eba833981016040819052620000d19162000357565b825183908390620000ea906000906020850190620001fe565b50805162000100906001906020840190620001fe565b5050506200011d620001176200013160201b60201c565b62000135565b620001288162000187565b5050506200046c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200019162000131565b6001600160a01b0316620001a4620001ef565b6001600160a01b031614620001d65760405162461bcd60e51b8152600401620001cd90620003e4565b60405180910390fd5b8051620001eb90600c906020840190620001fe565b5050565b600a546001600160a01b031690565b8280546200020c9062000419565b90600052602060002090601f0160209004810192826200023057600085556200027b565b82601f106200024b57805160ff19168380011785556200027b565b828001600101855582156200027b579182015b828111156200027b5782518255916020019190600101906200025e565b50620002899291506200028d565b5090565b5b808211156200028957600081556001016200028e565b600082601f830112620002b5578081fd5b81516001600160401b0380821115620002d257620002d262000456565b604051601f8301601f19908116603f01168101908282118183101715620002fd57620002fd62000456565b8160405283815260209250868385880101111562000319578485fd5b8491505b838210156200033c57858201830151818301840152908201906200031d565b838211156200034d57848385830101525b9695505050505050565b6000806000606084860312156200036c578283fd5b83516001600160401b038082111562000383578485fd5b6200039187838801620002a4565b94506020860151915080821115620003a7578384fd5b620003b587838801620002a4565b93506040860151915080821115620003cb578283fd5b50620003da86828701620002a4565b9150509250925092565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200042e57607f821691505b602082108114156200045057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612a3e806200047c6000396000f3fe60806040526004361061025c5760003560e01c806349a5980a116101445780639c7cbec6116100b6578063ba4e5c491161007a578063ba4e5c491461066b578063c87b56dd1461068b578063e54b57dd146106ab578063e985e9c5146106cb578063f2c4ce1e146106eb578063f2fde38b1461070b5761025c565b80639c7cbec6146105ee578063a0712d6814610603578063a22cb46514610616578063b187bd2614610636578063b88d4fde1461064b5761025c565b80636c0360eb116101085780636c0360eb1461056557806370a082311461057a578063715018a61461059a5780638da5cb5b146105af57806391cca3db146105c457806395d89b41146105d95761025c565b806349a5980a146104d05780634f6ccce7146104f057806354214f691461051057806355f804b3146105255780636352211e146105455761025c565b806323b872dd116101dd57806332cb6b0c116101a157806332cb6b0c1461043e578063370ea142146104535780633af32abf146104685780633ccfd60b1461048857806342842e0e1461049057806344a0d68a146104b05761025c565b806323b872dd146103a9578063240976bf146103c95780632beab4b7146103e95780632f745c5914610409578063301bd28e146104295761025c565b8063095ea7b311610224578063095ea7b31461031d57806313faede61461033d57806318160ddd1461035f57806318cae26914610374578063239c70ae146103945761025c565b806301ffc9a71461026157806306fdde0314610297578063081812fc146102b9578063081c8c44146102e6578063088a4ed0146102fb575b600080fd5b34801561026d57600080fd5b5061028161027c366004612275565b61072b565b60405161028e91906123e3565b60405180910390f35b3480156102a357600080fd5b506102ac610758565b60405161028e91906123ee565b3480156102c557600080fd5b506102d96102d43660046122f3565b6107ea565b60405161028e9190612379565b3480156102f257600080fd5b506102ac610836565b34801561030757600080fd5b5061031b6103163660046122f3565b6108c4565b005b34801561032957600080fd5b5061031b6103383660046121c3565b610908565b34801561034957600080fd5b506103526109a0565b60405161028e91906128af565b34801561036b57600080fd5b506103526109a6565b34801561038057600080fd5b5061035261038f36600461209a565b6109ac565b3480156103a057600080fd5b506103526109be565b3480156103b557600080fd5b5061031b6103c43660046120e6565b6109c4565b3480156103d557600080fd5b5061031b6103e436600461225b565b6109fc565b3480156103f557600080fd5b5061031b6104043660046121ec565b610a4e565b34801561041557600080fd5b506103526104243660046121c3565b610aa5565b34801561043557600080fd5b506102d9610af7565b34801561044a57600080fd5b50610352610b06565b34801561045f57600080fd5b506102d9610b0c565b34801561047457600080fd5b5061028161048336600461209a565b610b1b565b61031b610b94565b34801561049c57600080fd5b5061031b6104ab3660046120e6565b610ddc565b3480156104bc57600080fd5b5061031b6104cb3660046122f3565b610df7565b3480156104dc57600080fd5b5061031b6104eb36600461225b565b610e3b565b3480156104fc57600080fd5b5061035261050b3660046122f3565b610eb5565b34801561051c57600080fd5b50610281610f10565b34801561053157600080fd5b5061031b6105403660046122ad565b610f1e565b34801561055157600080fd5b506102d96105603660046122f3565b610f74565b34801561057157600080fd5b506102ac610fa9565b34801561058657600080fd5b5061035261059536600461209a565b610fb6565b3480156105a657600080fd5b5061031b610ffa565b3480156105bb57600080fd5b506102d9611045565b3480156105d057600080fd5b506102d9611054565b3480156105e557600080fd5b506102ac61106a565b3480156105fa57600080fd5b50610281611079565b61031b6106113660046122f3565b611088565b34801561062257600080fd5b5061031b61063136600461219a565b611239565b34801561064257600080fd5b50610281611307565b34801561065757600080fd5b5061031b610666366004612121565b611310565b34801561067757600080fd5b506102d96106863660046122f3565b61134f565b34801561069757600080fd5b506102ac6106a63660046122f3565b611379565b3480156106b757600080fd5b5061031b6106c636600461225b565b61148a565b3480156106d757600080fd5b506102816106e63660046120b4565b6114e5565b3480156106f757600080fd5b5061031b6107063660046122ad565b611513565b34801561071757600080fd5b5061031b61072636600461209a565b611565565b60006001600160e01b0319821663780e9d6360e01b14806107505750610750826115d6565b90505b919050565b60606000805461076790612946565b80601f016020809104026020016040519081016040528092919081815260200182805461079390612946565b80156107e05780601f106107b5576101008083540402835291602001916107e0565b820191906000526020600020905b8154815290600101906020018083116107c357829003601f168201915b5050505050905090565b60006107f582611616565b61081a5760405162461bcd60e51b815260040161081190612707565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600c805461084390612946565b80601f016020809104026020016040519081016040528092919081815260200182805461086f90612946565b80156108bc5780601f10610891576101008083540402835291602001916108bc565b820191906000526020600020905b81548152906001019060200180831161089f57829003601f168201915b505050505081565b6108cc611633565b6001600160a01b03166108dd611045565b6001600160a01b0316146109035760405162461bcd60e51b815260040161081190612753565b600e55565b600061091382610f74565b9050806001600160a01b0316836001600160a01b031614156109475760405162461bcd60e51b8152600401610811906127d1565b806001600160a01b0316610959611633565b6001600160a01b031614806109755750610975816106e6611633565b6109915760405162461bcd60e51b8152600401610811906125e2565b61099b8383611637565b505050565b600d5481565b60085490565b60136020526000908152604090205481565b600e5481565b6109d56109cf611633565b826116a5565b6109f15760405162461bcd60e51b815260040161081190612812565b61099b83838361172a565b610a04611633565b6001600160a01b0316610a15611045565b6001600160a01b031614610a3b5760405162461bcd60e51b815260040161081190612753565b600f805460ff1916911515919091179055565b610a56611633565b6001600160a01b0316610a67611045565b6001600160a01b031614610a8d5760405162461bcd60e51b815260040161081190612753565b610a9960126000611ef3565b61099b60128383611f11565b6000610ab083610fb6565b8210610ace5760405162461bcd60e51b815260040161081190612401565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6010546001600160a01b031681565b6103e881565b6011546001600160a01b031681565b6000805b601254811015610b8b57826001600160a01b031660128281548110610b5457634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610b79576001915050610753565b80610b8381612981565b915050610b1f565b50600092915050565b610b9c611633565b6001600160a01b0316610bad611045565b6001600160a01b031614610bd35760405162461bcd60e51b815260040161081190612753565b600f544790600090630100000090046001600160a01b0316610bf66064846128d0565b610c0190600f6128e4565b604051610c0d90612376565b60006040518083038185875af1925050503d8060008114610c4a576040519150601f19603f3d011682016040523d82523d6000602084013e610c4f565b606091505b50506010549091506000906001600160a01b0316610c6e6064856128d0565b610c799060196128e4565b604051610c8590612376565b60006040518083038185875af1925050503d8060008114610cc2576040519150601f19603f3d011682016040523d82523d6000602084013e610cc7565b606091505b50506011549091506000906001600160a01b0316610ce66064866128d0565b610cf190601e6128e4565b604051610cfd90612376565b60006040518083038185875af1925050503d8060008114610d3a576040519150601f19603f3d011682016040523d82523d6000602084013e610d3f565b606091505b509091506000905033610d536064876128d0565b610d5e90601e6128e4565b604051610d6a90612376565b60006040518083038185875af1925050503d8060008114610da7576040519150601f19603f3d011682016040523d82523d6000602084013e610dac565b606091505b50509050838015610dba5750825b8015610dc35750815b8015610dcc5750805b610dd557600080fd5b5050505050565b61099b83838360405180602001604052806000815250611310565b610dff611633565b6001600160a01b0316610e10611045565b6001600160a01b031614610e365760405162461bcd60e51b815260040161081190612753565b600d55565b610e43611633565b6001600160a01b0316610e54611045565b6001600160a01b031614610e7a5760405162461bcd60e51b815260040161081190612753565b8015610e9b576000600b8054610e8f90612946565b905011610e9b57600080fd5b600f80549115156101000261ff0019909216919091179055565b6000610ebf6109a6565b8210610edd5760405162461bcd60e51b815260040161081190612863565b60088281548110610efe57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600f54610100900460ff1681565b610f26611633565b6001600160a01b0316610f37611045565b6001600160a01b031614610f5d5760405162461bcd60e51b815260040161081190612753565b8051610f7090600b906020840190611f74565b5050565b6000818152600260205260408120546001600160a01b0316806107505760405162461bcd60e51b815260040161081190612689565b600b805461084390612946565b60006001600160a01b038216610fde5760405162461bcd60e51b81526004016108119061263f565b506001600160a01b031660009081526003602052604090205490565b611002611633565b6001600160a01b0316611013611045565b6001600160a01b0316146110395760405162461bcd60e51b815260040161081190612753565b6110436000611857565b565b600a546001600160a01b031690565b600f54630100000090046001600160a01b031681565b60606001805461076790612946565b600f5462010000900460ff1681565b600f5460ff161561109857600080fd5b600081116110a557600080fd5b600e54811115806110ce57506110b9611045565b6001600160a01b0316336001600160a01b0316145b6110d757600080fd5b600e54336000908152601360205260409020546110f59083906128b8565b11158061111a5750611105611045565b6001600160a01b0316336001600160a01b0316145b61112357600080fd5b6103e88161112f6109a6565b61113991906128b8565b111561114457600080fd5b61114c611045565b6001600160a01b0316336001600160a01b0316146111a157600f5462010000900460ff16156111875761117e33610b1b565b61118757600080fd5b80600d5461119591906128e4565b3410156111a157600080fd5b60015b818111610f705760006111b56109a6565b6111c09060016128b8565b3360009081526013602052604081208054929350906111de83612981565b91905055506111ed33826118a9565b7fbc7a84f8a0ed38996634eb7c5add3bac216865d2128e656715b8848f1b153162338260405161121e9291906123ca565b60405180910390a1508061123181612981565b9150506111a4565b611241611633565b6001600160a01b0316826001600160a01b031614156112725760405162461bcd60e51b81526004016108119061255f565b806005600061127f611633565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556112c3611633565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112fb91906123e3565b60405180910390a35050565b600f5460ff1681565b61132161131b611633565b836116a5565b61133d5760405162461bcd60e51b815260040161081190612812565b611349848484846118c3565b50505050565b6012818154811061135f57600080fd5b6000918252602090912001546001600160a01b0316905081565b606061138482611616565b61138d57600080fd5b600f54610100900460ff1661142e57600c80546113a990612946565b80601f01602080910402602001604051908101604052809291908181526020018280546113d590612946565b80156114225780601f106113f757610100808354040283529160200191611422565b820191906000526020600020905b81548152906001019060200180831161140557829003601f168201915b50505050509050610753565b60006114386118f6565b905060008151116114585760405180602001604052806000815250611483565b8061146284611905565b604051602001611473929190612337565b6040516020818303038152906040525b9392505050565b611492611633565b6001600160a01b03166114a3611045565b6001600160a01b0316146114c95760405162461bcd60e51b815260040161081190612753565b600f8054911515620100000262ff000019909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61151b611633565b6001600160a01b031661152c611045565b6001600160a01b0316146115525760405162461bcd60e51b815260040161081190612753565b8051610f7090600c906020840190611f74565b61156d611633565b6001600160a01b031661157e611045565b6001600160a01b0316146115a45760405162461bcd60e51b815260040161081190612753565b6001600160a01b0381166115ca5760405162461bcd60e51b81526004016108119061249e565b6115d381611857565b50565b60006001600160e01b031982166380ac58cd60e01b148061160757506001600160e01b03198216635b5e139f60e01b145b80610750575061075082611a20565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061166c82610f74565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116b082611616565b6116cc5760405162461bcd60e51b815260040161081190612596565b60006116d783610f74565b9050806001600160a01b0316846001600160a01b031614806117125750836001600160a01b0316611707846107ea565b6001600160a01b0316145b80611722575061172281856114e5565b949350505050565b826001600160a01b031661173d82610f74565b6001600160a01b0316146117635760405162461bcd60e51b815260040161081190612788565b6001600160a01b0382166117895760405162461bcd60e51b81526004016108119061251b565b611794838383611a39565b61179f600082611637565b6001600160a01b03831660009081526003602052604081208054600192906117c8908490612903565b90915550506001600160a01b03821660009081526003602052604081208054600192906117f69084906128b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f70828260405180602001604052806000815250611ac2565b6118ce84848461172a565b6118da84848484611af5565b6113495760405162461bcd60e51b81526004016108119061244c565b6060600b805461076790612946565b60608161192a57506040805180820190915260018152600360fc1b6020820152610753565b8160005b8115611954578061193e81612981565b915061194d9050600a836128d0565b915061192e565b60008167ffffffffffffffff81111561197d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156119a7576020820181803683370190505b5090505b8415611722576119bc600183612903565b91506119c9600a8661299c565b6119d49060306128b8565b60f81b8183815181106119f757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a19600a866128d0565b94506119ab565b6001600160e01b031981166301ffc9a760e01b14919050565b611a4483838361099b565b6001600160a01b038316611a6057611a5b81611c10565b611a83565b816001600160a01b0316836001600160a01b031614611a8357611a838382611c54565b6001600160a01b038216611a9f57611a9a81611cf1565b61099b565b826001600160a01b0316826001600160a01b03161461099b5761099b8282611dca565b611acc8383611e0e565b611ad96000848484611af5565b61099b5760405162461bcd60e51b81526004016108119061244c565b6000611b09846001600160a01b0316611eed565b15611c0557836001600160a01b031663150b7a02611b25611633565b8786866040518563ffffffff1660e01b8152600401611b47949392919061238d565b602060405180830381600087803b158015611b6157600080fd5b505af1925050508015611b91575060408051601f3d908101601f19168201909252611b8e91810190612291565b60015b611beb573d808015611bbf576040519150601f19603f3d011682016040523d82523d6000602084013e611bc4565b606091505b508051611be35760405162461bcd60e51b81526004016108119061244c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611722565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611c6184610fb6565b611c6b9190612903565b600083815260076020526040902054909150808214611cbe576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d0390600190612903565b60008381526009602052604081205460088054939450909284908110611d3957634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611d6857634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611dae57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611dd583610fb6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e345760405162461bcd60e51b8152600401610811906126d2565b611e3d81611616565b15611e5a5760405162461bcd60e51b8152600401610811906124e4565b611e6660008383611a39565b6001600160a01b0382166000908152600360205260408120805460019290611e8f9084906128b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b50805460008255906000526020600020908101906115d39190611fe8565b828054828255906000526020600020908101928215611f64579160200282015b82811115611f645781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611f31565b50611f70929150611fe8565b5090565b828054611f8090612946565b90600052602060002090601f016020900481019282611fa25760008555611f64565b82601f10611fbb57805160ff1916838001178555611f64565b82800160010185558215611f64579182015b82811115611f64578251825591602001919060010190611fcd565b5b80821115611f705760008155600101611fe9565b600067ffffffffffffffff80841115612018576120186129dc565b604051601f8501601f19908116603f01168101908282118183101715612040576120406129dc565b8160405280935085815286868601111561205957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461075357600080fd5b8035801515811461075357600080fd5b6000602082840312156120ab578081fd5b61148382612073565b600080604083850312156120c6578081fd5b6120cf83612073565b91506120dd60208401612073565b90509250929050565b6000806000606084860312156120fa578081fd5b61210384612073565b925061211160208501612073565b9150604084013590509250925092565b60008060008060808587031215612136578081fd5b61213f85612073565b935061214d60208601612073565b925060408501359150606085013567ffffffffffffffff81111561216f578182fd5b8501601f8101871361217f578182fd5b61218e87823560208401611ffd565b91505092959194509250565b600080604083850312156121ac578182fd5b6121b583612073565b91506120dd6020840161208a565b600080604083850312156121d5578182fd5b6121de83612073565b946020939093013593505050565b600080602083850312156121fe578182fd5b823567ffffffffffffffff80821115612215578384fd5b818501915085601f830112612228578384fd5b813581811115612236578485fd5b8660208083028501011115612249578485fd5b60209290920196919550909350505050565b60006020828403121561226c578081fd5b6114838261208a565b600060208284031215612286578081fd5b8135611483816129f2565b6000602082840312156122a2578081fd5b8151611483816129f2565b6000602082840312156122be578081fd5b813567ffffffffffffffff8111156122d4578182fd5b8201601f810184136122e4578182fd5b61172284823560208401611ffd565b600060208284031215612304578081fd5b5035919050565b6000815180845261232381602086016020860161291a565b601f01601f19169290920160200192915050565b6000835161234981846020880161291a565b83519083019061235d81836020880161291a565b64173539b7b760d91b9101908152600501949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123c09083018461230b565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b600060208252611483602083018461230b565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b600082198211156128cb576128cb6129b0565b500190565b6000826128df576128df6129c6565b500490565b60008160001904831182151516156128fe576128fe6129b0565b500290565b600082821015612915576129156129b0565b500390565b60005b8381101561293557818101518382015260200161291d565b838111156113495750506000910152565b60028104600182168061295a57607f821691505b6020821081141561297b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612995576129956129b0565b5060010190565b6000826129ab576129ab6129c6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115d357600080fdfea26469706673582212206569d821c75f2bdb10c1574118fd93e28e4d21546cde48ad2ee55076a8388ebc64736f6c63430008010033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f52616e636879205265646e65636b730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000352525300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d654644416870787553394669567a79577554634141523553696b416e5336706b42375a56723166616a4875570000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c806349a5980a116101445780639c7cbec6116100b6578063ba4e5c491161007a578063ba4e5c491461066b578063c87b56dd1461068b578063e54b57dd146106ab578063e985e9c5146106cb578063f2c4ce1e146106eb578063f2fde38b1461070b5761025c565b80639c7cbec6146105ee578063a0712d6814610603578063a22cb46514610616578063b187bd2614610636578063b88d4fde1461064b5761025c565b80636c0360eb116101085780636c0360eb1461056557806370a082311461057a578063715018a61461059a5780638da5cb5b146105af57806391cca3db146105c457806395d89b41146105d95761025c565b806349a5980a146104d05780634f6ccce7146104f057806354214f691461051057806355f804b3146105255780636352211e146105455761025c565b806323b872dd116101dd57806332cb6b0c116101a157806332cb6b0c1461043e578063370ea142146104535780633af32abf146104685780633ccfd60b1461048857806342842e0e1461049057806344a0d68a146104b05761025c565b806323b872dd146103a9578063240976bf146103c95780632beab4b7146103e95780632f745c5914610409578063301bd28e146104295761025c565b8063095ea7b311610224578063095ea7b31461031d57806313faede61461033d57806318160ddd1461035f57806318cae26914610374578063239c70ae146103945761025c565b806301ffc9a71461026157806306fdde0314610297578063081812fc146102b9578063081c8c44146102e6578063088a4ed0146102fb575b600080fd5b34801561026d57600080fd5b5061028161027c366004612275565b61072b565b60405161028e91906123e3565b60405180910390f35b3480156102a357600080fd5b506102ac610758565b60405161028e91906123ee565b3480156102c557600080fd5b506102d96102d43660046122f3565b6107ea565b60405161028e9190612379565b3480156102f257600080fd5b506102ac610836565b34801561030757600080fd5b5061031b6103163660046122f3565b6108c4565b005b34801561032957600080fd5b5061031b6103383660046121c3565b610908565b34801561034957600080fd5b506103526109a0565b60405161028e91906128af565b34801561036b57600080fd5b506103526109a6565b34801561038057600080fd5b5061035261038f36600461209a565b6109ac565b3480156103a057600080fd5b506103526109be565b3480156103b557600080fd5b5061031b6103c43660046120e6565b6109c4565b3480156103d557600080fd5b5061031b6103e436600461225b565b6109fc565b3480156103f557600080fd5b5061031b6104043660046121ec565b610a4e565b34801561041557600080fd5b506103526104243660046121c3565b610aa5565b34801561043557600080fd5b506102d9610af7565b34801561044a57600080fd5b50610352610b06565b34801561045f57600080fd5b506102d9610b0c565b34801561047457600080fd5b5061028161048336600461209a565b610b1b565b61031b610b94565b34801561049c57600080fd5b5061031b6104ab3660046120e6565b610ddc565b3480156104bc57600080fd5b5061031b6104cb3660046122f3565b610df7565b3480156104dc57600080fd5b5061031b6104eb36600461225b565b610e3b565b3480156104fc57600080fd5b5061035261050b3660046122f3565b610eb5565b34801561051c57600080fd5b50610281610f10565b34801561053157600080fd5b5061031b6105403660046122ad565b610f1e565b34801561055157600080fd5b506102d96105603660046122f3565b610f74565b34801561057157600080fd5b506102ac610fa9565b34801561058657600080fd5b5061035261059536600461209a565b610fb6565b3480156105a657600080fd5b5061031b610ffa565b3480156105bb57600080fd5b506102d9611045565b3480156105d057600080fd5b506102d9611054565b3480156105e557600080fd5b506102ac61106a565b3480156105fa57600080fd5b50610281611079565b61031b6106113660046122f3565b611088565b34801561062257600080fd5b5061031b61063136600461219a565b611239565b34801561064257600080fd5b50610281611307565b34801561065757600080fd5b5061031b610666366004612121565b611310565b34801561067757600080fd5b506102d96106863660046122f3565b61134f565b34801561069757600080fd5b506102ac6106a63660046122f3565b611379565b3480156106b757600080fd5b5061031b6106c636600461225b565b61148a565b3480156106d757600080fd5b506102816106e63660046120b4565b6114e5565b3480156106f757600080fd5b5061031b6107063660046122ad565b611513565b34801561071757600080fd5b5061031b61072636600461209a565b611565565b60006001600160e01b0319821663780e9d6360e01b14806107505750610750826115d6565b90505b919050565b60606000805461076790612946565b80601f016020809104026020016040519081016040528092919081815260200182805461079390612946565b80156107e05780601f106107b5576101008083540402835291602001916107e0565b820191906000526020600020905b8154815290600101906020018083116107c357829003601f168201915b5050505050905090565b60006107f582611616565b61081a5760405162461bcd60e51b815260040161081190612707565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600c805461084390612946565b80601f016020809104026020016040519081016040528092919081815260200182805461086f90612946565b80156108bc5780601f10610891576101008083540402835291602001916108bc565b820191906000526020600020905b81548152906001019060200180831161089f57829003601f168201915b505050505081565b6108cc611633565b6001600160a01b03166108dd611045565b6001600160a01b0316146109035760405162461bcd60e51b815260040161081190612753565b600e55565b600061091382610f74565b9050806001600160a01b0316836001600160a01b031614156109475760405162461bcd60e51b8152600401610811906127d1565b806001600160a01b0316610959611633565b6001600160a01b031614806109755750610975816106e6611633565b6109915760405162461bcd60e51b8152600401610811906125e2565b61099b8383611637565b505050565b600d5481565b60085490565b60136020526000908152604090205481565b600e5481565b6109d56109cf611633565b826116a5565b6109f15760405162461bcd60e51b815260040161081190612812565b61099b83838361172a565b610a04611633565b6001600160a01b0316610a15611045565b6001600160a01b031614610a3b5760405162461bcd60e51b815260040161081190612753565b600f805460ff1916911515919091179055565b610a56611633565b6001600160a01b0316610a67611045565b6001600160a01b031614610a8d5760405162461bcd60e51b815260040161081190612753565b610a9960126000611ef3565b61099b60128383611f11565b6000610ab083610fb6565b8210610ace5760405162461bcd60e51b815260040161081190612401565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6010546001600160a01b031681565b6103e881565b6011546001600160a01b031681565b6000805b601254811015610b8b57826001600160a01b031660128281548110610b5457634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610b79576001915050610753565b80610b8381612981565b915050610b1f565b50600092915050565b610b9c611633565b6001600160a01b0316610bad611045565b6001600160a01b031614610bd35760405162461bcd60e51b815260040161081190612753565b600f544790600090630100000090046001600160a01b0316610bf66064846128d0565b610c0190600f6128e4565b604051610c0d90612376565b60006040518083038185875af1925050503d8060008114610c4a576040519150601f19603f3d011682016040523d82523d6000602084013e610c4f565b606091505b50506010549091506000906001600160a01b0316610c6e6064856128d0565b610c799060196128e4565b604051610c8590612376565b60006040518083038185875af1925050503d8060008114610cc2576040519150601f19603f3d011682016040523d82523d6000602084013e610cc7565b606091505b50506011549091506000906001600160a01b0316610ce66064866128d0565b610cf190601e6128e4565b604051610cfd90612376565b60006040518083038185875af1925050503d8060008114610d3a576040519150601f19603f3d011682016040523d82523d6000602084013e610d3f565b606091505b509091506000905033610d536064876128d0565b610d5e90601e6128e4565b604051610d6a90612376565b60006040518083038185875af1925050503d8060008114610da7576040519150601f19603f3d011682016040523d82523d6000602084013e610dac565b606091505b50509050838015610dba5750825b8015610dc35750815b8015610dcc5750805b610dd557600080fd5b5050505050565b61099b83838360405180602001604052806000815250611310565b610dff611633565b6001600160a01b0316610e10611045565b6001600160a01b031614610e365760405162461bcd60e51b815260040161081190612753565b600d55565b610e43611633565b6001600160a01b0316610e54611045565b6001600160a01b031614610e7a5760405162461bcd60e51b815260040161081190612753565b8015610e9b576000600b8054610e8f90612946565b905011610e9b57600080fd5b600f80549115156101000261ff0019909216919091179055565b6000610ebf6109a6565b8210610edd5760405162461bcd60e51b815260040161081190612863565b60088281548110610efe57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600f54610100900460ff1681565b610f26611633565b6001600160a01b0316610f37611045565b6001600160a01b031614610f5d5760405162461bcd60e51b815260040161081190612753565b8051610f7090600b906020840190611f74565b5050565b6000818152600260205260408120546001600160a01b0316806107505760405162461bcd60e51b815260040161081190612689565b600b805461084390612946565b60006001600160a01b038216610fde5760405162461bcd60e51b81526004016108119061263f565b506001600160a01b031660009081526003602052604090205490565b611002611633565b6001600160a01b0316611013611045565b6001600160a01b0316146110395760405162461bcd60e51b815260040161081190612753565b6110436000611857565b565b600a546001600160a01b031690565b600f54630100000090046001600160a01b031681565b60606001805461076790612946565b600f5462010000900460ff1681565b600f5460ff161561109857600080fd5b600081116110a557600080fd5b600e54811115806110ce57506110b9611045565b6001600160a01b0316336001600160a01b0316145b6110d757600080fd5b600e54336000908152601360205260409020546110f59083906128b8565b11158061111a5750611105611045565b6001600160a01b0316336001600160a01b0316145b61112357600080fd5b6103e88161112f6109a6565b61113991906128b8565b111561114457600080fd5b61114c611045565b6001600160a01b0316336001600160a01b0316146111a157600f5462010000900460ff16156111875761117e33610b1b565b61118757600080fd5b80600d5461119591906128e4565b3410156111a157600080fd5b60015b818111610f705760006111b56109a6565b6111c09060016128b8565b3360009081526013602052604081208054929350906111de83612981565b91905055506111ed33826118a9565b7fbc7a84f8a0ed38996634eb7c5add3bac216865d2128e656715b8848f1b153162338260405161121e9291906123ca565b60405180910390a1508061123181612981565b9150506111a4565b611241611633565b6001600160a01b0316826001600160a01b031614156112725760405162461bcd60e51b81526004016108119061255f565b806005600061127f611633565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556112c3611633565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112fb91906123e3565b60405180910390a35050565b600f5460ff1681565b61132161131b611633565b836116a5565b61133d5760405162461bcd60e51b815260040161081190612812565b611349848484846118c3565b50505050565b6012818154811061135f57600080fd5b6000918252602090912001546001600160a01b0316905081565b606061138482611616565b61138d57600080fd5b600f54610100900460ff1661142e57600c80546113a990612946565b80601f01602080910402602001604051908101604052809291908181526020018280546113d590612946565b80156114225780601f106113f757610100808354040283529160200191611422565b820191906000526020600020905b81548152906001019060200180831161140557829003601f168201915b50505050509050610753565b60006114386118f6565b905060008151116114585760405180602001604052806000815250611483565b8061146284611905565b604051602001611473929190612337565b6040516020818303038152906040525b9392505050565b611492611633565b6001600160a01b03166114a3611045565b6001600160a01b0316146114c95760405162461bcd60e51b815260040161081190612753565b600f8054911515620100000262ff000019909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61151b611633565b6001600160a01b031661152c611045565b6001600160a01b0316146115525760405162461bcd60e51b815260040161081190612753565b8051610f7090600c906020840190611f74565b61156d611633565b6001600160a01b031661157e611045565b6001600160a01b0316146115a45760405162461bcd60e51b815260040161081190612753565b6001600160a01b0381166115ca5760405162461bcd60e51b81526004016108119061249e565b6115d381611857565b50565b60006001600160e01b031982166380ac58cd60e01b148061160757506001600160e01b03198216635b5e139f60e01b145b80610750575061075082611a20565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061166c82610f74565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116b082611616565b6116cc5760405162461bcd60e51b815260040161081190612596565b60006116d783610f74565b9050806001600160a01b0316846001600160a01b031614806117125750836001600160a01b0316611707846107ea565b6001600160a01b0316145b80611722575061172281856114e5565b949350505050565b826001600160a01b031661173d82610f74565b6001600160a01b0316146117635760405162461bcd60e51b815260040161081190612788565b6001600160a01b0382166117895760405162461bcd60e51b81526004016108119061251b565b611794838383611a39565b61179f600082611637565b6001600160a01b03831660009081526003602052604081208054600192906117c8908490612903565b90915550506001600160a01b03821660009081526003602052604081208054600192906117f69084906128b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f70828260405180602001604052806000815250611ac2565b6118ce84848461172a565b6118da84848484611af5565b6113495760405162461bcd60e51b81526004016108119061244c565b6060600b805461076790612946565b60608161192a57506040805180820190915260018152600360fc1b6020820152610753565b8160005b8115611954578061193e81612981565b915061194d9050600a836128d0565b915061192e565b60008167ffffffffffffffff81111561197d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156119a7576020820181803683370190505b5090505b8415611722576119bc600183612903565b91506119c9600a8661299c565b6119d49060306128b8565b60f81b8183815181106119f757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a19600a866128d0565b94506119ab565b6001600160e01b031981166301ffc9a760e01b14919050565b611a4483838361099b565b6001600160a01b038316611a6057611a5b81611c10565b611a83565b816001600160a01b0316836001600160a01b031614611a8357611a838382611c54565b6001600160a01b038216611a9f57611a9a81611cf1565b61099b565b826001600160a01b0316826001600160a01b03161461099b5761099b8282611dca565b611acc8383611e0e565b611ad96000848484611af5565b61099b5760405162461bcd60e51b81526004016108119061244c565b6000611b09846001600160a01b0316611eed565b15611c0557836001600160a01b031663150b7a02611b25611633565b8786866040518563ffffffff1660e01b8152600401611b47949392919061238d565b602060405180830381600087803b158015611b6157600080fd5b505af1925050508015611b91575060408051601f3d908101601f19168201909252611b8e91810190612291565b60015b611beb573d808015611bbf576040519150601f19603f3d011682016040523d82523d6000602084013e611bc4565b606091505b508051611be35760405162461bcd60e51b81526004016108119061244c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611722565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611c6184610fb6565b611c6b9190612903565b600083815260076020526040902054909150808214611cbe576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d0390600190612903565b60008381526009602052604081205460088054939450909284908110611d3957634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611d6857634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611dae57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611dd583610fb6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e345760405162461bcd60e51b8152600401610811906126d2565b611e3d81611616565b15611e5a5760405162461bcd60e51b8152600401610811906124e4565b611e6660008383611a39565b6001600160a01b0382166000908152600360205260408120805460019290611e8f9084906128b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b50805460008255906000526020600020908101906115d39190611fe8565b828054828255906000526020600020908101928215611f64579160200282015b82811115611f645781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611f31565b50611f70929150611fe8565b5090565b828054611f8090612946565b90600052602060002090601f016020900481019282611fa25760008555611f64565b82601f10611fbb57805160ff1916838001178555611f64565b82800160010185558215611f64579182015b82811115611f64578251825591602001919060010190611fcd565b5b80821115611f705760008155600101611fe9565b600067ffffffffffffffff80841115612018576120186129dc565b604051601f8501601f19908116603f01168101908282118183101715612040576120406129dc565b8160405280935085815286868601111561205957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461075357600080fd5b8035801515811461075357600080fd5b6000602082840312156120ab578081fd5b61148382612073565b600080604083850312156120c6578081fd5b6120cf83612073565b91506120dd60208401612073565b90509250929050565b6000806000606084860312156120fa578081fd5b61210384612073565b925061211160208501612073565b9150604084013590509250925092565b60008060008060808587031215612136578081fd5b61213f85612073565b935061214d60208601612073565b925060408501359150606085013567ffffffffffffffff81111561216f578182fd5b8501601f8101871361217f578182fd5b61218e87823560208401611ffd565b91505092959194509250565b600080604083850312156121ac578182fd5b6121b583612073565b91506120dd6020840161208a565b600080604083850312156121d5578182fd5b6121de83612073565b946020939093013593505050565b600080602083850312156121fe578182fd5b823567ffffffffffffffff80821115612215578384fd5b818501915085601f830112612228578384fd5b813581811115612236578485fd5b8660208083028501011115612249578485fd5b60209290920196919550909350505050565b60006020828403121561226c578081fd5b6114838261208a565b600060208284031215612286578081fd5b8135611483816129f2565b6000602082840312156122a2578081fd5b8151611483816129f2565b6000602082840312156122be578081fd5b813567ffffffffffffffff8111156122d4578182fd5b8201601f810184136122e4578182fd5b61172284823560208401611ffd565b600060208284031215612304578081fd5b5035919050565b6000815180845261232381602086016020860161291a565b601f01601f19169290920160200192915050565b6000835161234981846020880161291a565b83519083019061235d81836020880161291a565b64173539b7b760d91b9101908152600501949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123c09083018461230b565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b600060208252611483602083018461230b565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b600082198211156128cb576128cb6129b0565b500190565b6000826128df576128df6129c6565b500490565b60008160001904831182151516156128fe576128fe6129b0565b500290565b600082821015612915576129156129b0565b500390565b60005b8381101561293557818101518382015260200161291d565b838111156113495750506000910152565b60028104600182168061295a57607f821691505b6020821081141561297b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612995576129956129b0565b5060010190565b6000826129ab576129ab6129c6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115d357600080fdfea26469706673582212206569d821c75f2bdb10c1574118fd93e28e4d21546cde48ad2ee55076a8388ebc64736f6c63430008010033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f52616e636879205265646e65636b730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000352525300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d654644416870787553394669567a79577554634141523553696b416e5336706b42375a56723166616a4875570000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Ranchy Rednecks
Arg [1] : _symbol (string): RRS
Arg [2] : _initNotRevealedUri (string): ipfs://QmeFDAhpxuS9FiVzyWuTcAAR5SikAnS6pkB7ZVr1fajHuW

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 52616e636879205265646e65636b730000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5252530000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [8] : 697066733a2f2f516d654644416870787553394669567a795775546341415235
Arg [9] : 53696b416e5336706b42375a56723166616a4875570000000000000000000000


Deployed Bytecode Sourcemap

45234:4428:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38645:300;;;;;;;;;;-1:-1:-1;38645:300:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25809:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27502:308::-;;;;;;;;;;-1:-1:-1;27502:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45356:28::-;;;;;;;;;;;;;:::i;48388:122::-;;;;;;;;;;-1:-1:-1;48388:122:0;;;;;:::i;:::-;;:::i;:::-;;27025:411;;;;;;;;;;-1:-1:-1;27025:411:0;;;;;:::i;:::-;;:::i;45439:32::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39448:113::-;;;;;;;;;;;;;:::i;45885:55::-;;;;;;;;;;-1:-1:-1;45885:55:0;;;;;:::i;:::-;;:::i;45478:32::-;;;;;;;;;;;;;:::i;28561:376::-;;;;;;;;;;-1:-1:-1;28561:376:0;;;;;:::i;:::-;;:::i;48764:87::-;;;;;;;;;;-1:-1:-1;48764:87:0;;;;;:::i;:::-;;:::i;48972:157::-;;;;;;;;;;-1:-1:-1;48972:157:0;;;;;:::i;:::-;;:::i;39029:343::-;;;;;;;;;;-1:-1:-1;39029:343:0;;;;;:::i;:::-;;:::i;45701:63::-;;;;;;;;;;;;;:::i;45391:41::-;;;;;;;;;;;;;:::i;45771:63::-;;;;;;;;;;;;;:::i;47220:274::-;;;;;;;;;;-1:-1:-1;47220:274:0;;;;;:::i;:::-;;:::i;49137:522::-;;;:::i;29008:185::-;;;;;;;;;;-1:-1:-1;29008:185:0;;;;;:::i;:::-;;:::i;48294:86::-;;;;;;;;;;-1:-1:-1;48294:86:0;;;;;:::i;:::-;;:::i;48135:151::-;;;;;;;;;;-1:-1:-1;48135:151:0;;;;;:::i;:::-;;:::i;39638:320::-;;;;;;;;;;-1:-1:-1;39638:320:0;;;;;:::i;:::-;;:::i;45551:30::-;;;;;;;;;;;;;:::i;48652:104::-;;;;;;;;;;-1:-1:-1;48652:104:0;;;;;:::i;:::-;;:::i;25416:326::-;;;;;;;;;;-1:-1:-1;25416:326:0;;;;;:::i;:::-;;:::i;45328:21::-;;;;;;;;;;;;;:::i;25059:295::-;;;;;;;;;;-1:-1:-1;25059:295:0;;;;;:::i;:::-;;:::i;4601:94::-;;;;;;;;;;;;;:::i;3950:87::-;;;;;;;;;;;;;:::i;45631:63::-;;;;;;;;;;;;;:::i;25978:104::-;;;;;;;;;;;;;:::i;45588:36::-;;;;;;;;;;;;;:::i;46342:870::-;;;;;;:::i;:::-;;:::i;27882:327::-;;;;;;;;;;-1:-1:-1;27882:327:0;;;;;:::i;:::-;;:::i;45517:27::-;;;;;;;;;;;;;:::i;29264:365::-;;;;;;;;;;-1:-1:-1;29264:365:0;;;;;:::i;:::-;;:::i;45841:37::-;;;;;;;;;;-1:-1:-1;45841:37:0;;;;;:::i;:::-;;:::i;47502:625::-;;;;;;;;;;-1:-1:-1;47502:625:0;;;;;:::i;:::-;;:::i;48859:105::-;;;;;;;;;;-1:-1:-1;48859:105:0;;;;;:::i;:::-;;:::i;28280:214::-;;;;;;;;;;-1:-1:-1;28280:214:0;;;;;:::i;:::-;;:::i;48518:126::-;;;;;;;;;;-1:-1:-1;48518:126:0;;;;;:::i;:::-;;:::i;4850:229::-;;;;;;;;;;-1:-1:-1;4850:229:0;;;;;:::i;:::-;;:::i;38645:300::-;38792:4;-1:-1:-1;;;;;;38834:50:0;;-1:-1:-1;;;38834:50:0;;:103;;;38901:36;38925:11;38901:23;:36::i;:::-;38814:123;;38645:300;;;;:::o;25809:100::-;25863:13;25896:5;25889:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25809:100;:::o;27502:308::-;27623:7;27670:16;27678:7;27670;:16::i;:::-;27648:110;;;;-1:-1:-1;;;27648:110:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;27778:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27778:24:0;;27502:308::o;45356:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48388:122::-;4181:12;:10;:12::i;:::-;-1:-1:-1;;;;;4170:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4170:23:0;;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;48469:13:::1;:33:::0;48388:122::o;27025:411::-;27106:13;27122:23;27137:7;27122:14;:23::i;:::-;27106:39;;27170:5;-1:-1:-1;;;;;27164:11:0;:2;-1:-1:-1;;;;;27164:11:0;;;27156:57;;;;-1:-1:-1;;;27156:57:0;;;;;;;:::i;:::-;27264:5;-1:-1:-1;;;;;27248:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;27248:21:0;;:62;;;;27273:37;27290:5;27297:12;:10;:12::i;27273:37::-;27226:168;;;;-1:-1:-1;;;27226:168:0;;;;;;;:::i;:::-;27407:21;27416:2;27420:7;27407:8;:21::i;:::-;27025:411;;;:::o;45439:32::-;;;;:::o;39448:113::-;39536:10;:17;39448:113;:::o;45885:55::-;;;;;;;;;;;;;:::o;45478:32::-;;;;:::o;28561:376::-;28770:41;28789:12;:10;:12::i;:::-;28803:7;28770:18;:41::i;:::-;28748:140;;;;-1:-1:-1;;;28748:140:0;;;;;;;:::i;:::-;28901:28;28911:4;28917:2;28921:7;28901:9;:28::i;48764:87::-;4181:12;:10;:12::i;:::-;-1:-1:-1;;;;;4170:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4170:23:0;;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;48826:8:::1;:17:::0;;-1:-1:-1;;48826:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48764:87::o;48972:157::-;4181:12;:10;:12::i;:::-;-1:-1:-1;;;;;4170:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4170:23:0;;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;49054:27:::1;49061:20;;49054:27;:::i;:::-;49092:29;:20;49115:6:::0;;49092:29:::1;:::i;39029:343::-:0;39171:7;39226:23;39243:5;39226:16;:23::i;:::-;39218:5;:31;39196:124;;;;-1:-1:-1;;;39196:124:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;39338:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39029:343::o;45701:63::-;;;-1:-1:-1;;;;;45701:63:0;;:::o;45391:41::-;45428:4;45391:41;:::o;45771:63::-;;;-1:-1:-1;;;;;45771:63:0;;:::o;47220:274::-;47279:4;;47296:168;47320:20;:27;47316:31;;47296:168;;;47400:5;-1:-1:-1;;;;;47373:32:0;:20;47394:1;47373:23;;;;;;-1:-1:-1;;;47373:23:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47373:23:0;:32;47369:84;;;47433:4;47426:11;;;;;47369:84;47349:3;;;;:::i;:::-;;;;47296:168;;;-1:-1:-1;47481:5:0;;47220:274;-1:-1:-1;;47220:274:0:o;49137:522::-;4181:12;:10;:12::i;:::-;-1:-1:-1;;;;;4170:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4170:23:0;;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;49271:3:::1;::::0;49211:21:::1;::::0;49193:15:::1;::::0;49271:3;;::::1;-1:-1:-1::0;;;;;49271:3:0::1;49289:13;49299:3;49211:21:::0;49289:13:::1;:::i;:::-;49288:20;::::0;49306:2:::1;49288:20;:::i;:::-;49263:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;49352:3:0::1;::::0;49243:70;;-1:-1:-1;49325:13:0::1;::::0;-1:-1:-1;;;;;49352:3:0::1;49370:13;49380:3;49370:7:::0;:13:::1;:::i;:::-;49369:20;::::0;49387:2:::1;49369:20;:::i;:::-;49344:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;49433:3:0::1;::::0;49324:70;;-1:-1:-1;49406:13:0::1;::::0;-1:-1:-1;;;;;49433:3:0::1;49451:13;49461:3;49451:7:::0;:13:::1;:::i;:::-;49450:20;::::0;49468:2:::1;49450:20;:::i;:::-;49425:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;49405:70:0;;-1:-1:-1;49487:13:0::1;::::0;-1:-1:-1;49514:10:0::1;49553:13;49563:3;49553:7:::0;:13:::1;:::i;:::-;49552:20;::::0;49570:2:::1;49552:20;:::i;:::-;49506:81;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49486:101;;;49606:8;:20;;;;;49618:8;49606:20;:32;;;;;49630:8;49606:32;:44;;;;;49642:8;49606:44;49598:53;;;::::0;::::1;;4241:1;;;;;49137:522::o:0;29008:185::-;29146:39;29163:4;29169:2;29173:7;29146:39;;;;;;;;;;;;:16;:39::i;48294:86::-;4181:12;:10;:12::i;:::-;-1:-1:-1;;;;;4170:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4170:23:0;;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;48357:4:::1;:15:::0;48294:86::o;48135:151::-;4181:12;:10;:12::i;:::-;-1:-1:-1;;;;;4170:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4170:23:0;;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;48204:7:::1;48200:47;;;48245:1;48227:7;48221:21;;;;;:::i;:::-;;;:25;48213:34;;;::::0;::::1;;48258:10;:20:::0;;;::::1;;;;-1:-1:-1::0;;48258:20:0;;::::1;::::0;;;::::1;::::0;;48135:151::o;39638:320::-;39758:7;39813:30;:28;:30::i;:::-;39805:5;:38;39783:132;;;;-1:-1:-1;;;39783:132:0;;;;;;;:::i;:::-;39933:10;39944:5;39933:17;;;;;;-1:-1:-1;;;39933:17:0;;;;;;;;;;;;;;;;;39926:24;;39638:320;;;:::o;45551:30::-;;;;;;;;;:::o;48652:104::-;4181:12;:10;:12::i;:::-;-1:-1:-1;;;;;4170:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4170:23:0;;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;48727:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48652:104:::0;:::o;25416:326::-;25533:7;25574:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25574:16:0;25623:19;25601:110;;;;-1:-1:-1;;;25601:110:0;;;;;;;:::i;45328:21::-;;;;;;;:::i;25059:295::-;25176:7;-1:-1:-1;;;;;25223:19:0;;25201:111;;;;-1:-1:-1;;;25201:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;25330:16:0;;;;;:9;:16;;;;;;;25059:295::o;4601:94::-;4181:12;:10;:12::i;:::-;-1:-1:-1;;;;;4170:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4170:23:0;;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;4666:21:::1;4684:1;4666:9;:21::i;:::-;4601:94::o:0;3950:87::-;4023:6;;-1:-1:-1;;;;;4023:6:0;3950:87;:::o;45631:63::-;;;;;;-1:-1:-1;;;;;45631:63:0;;:::o;25978:104::-;26034:13;26067:7;26060:14;;;;;:::i;45588:36::-;;;;;;;;;:::o;46342:870::-;46412:8;;;;46411:9;46403:18;;;;;;46454:1;46440:11;:15;46432:24;;;;;;46490:13;;46475:11;:28;;:53;;;;46521:7;:5;:7::i;:::-;-1:-1:-1;;;;;46507:21:0;:10;-1:-1:-1;;;;;46507:21:0;;46475:53;46467:62;;;;;;46612:13;;46583:10;46562:32;;;;:20;:32;;;;;;:46;;46597:11;;46562:46;:::i;:::-;:63;;:105;;;;46660:7;:5;:7::i;:::-;-1:-1:-1;;;;;46646:21:0;:10;-1:-1:-1;;;;;46646:21:0;;46562:105;46540:138;;;;;;45428:4;46713:11;46697:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:41;;46689:50;;;;;;46770:7;:5;:7::i;:::-;-1:-1:-1;;;;;46756:21:0;:10;-1:-1:-1;;;;;46756:21:0;;46752:200;;46798:17;;;;;;;46794:92;;;46844:25;46858:10;46844:13;:25::i;:::-;46836:34;;;;;;46928:11;46921:4;;:18;;;;:::i;:::-;46908:9;:31;;46900:40;;;;;;46981:1;46964:241;46989:11;46984:1;:16;46964:241;;47022:10;47035:13;:11;:13::i;:::-;:17;;47051:1;47035:17;:::i;:::-;47088:10;47067:32;;;;:20;:32;;;;;:34;;47022:30;;-1:-1:-1;47067:32:0;:34;;;:::i;:::-;;;;;;47116:25;47126:10;47138:2;47116:9;:25::i;:::-;47161:32;47178:10;47190:2;47161:32;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;47002:3:0;;;;:::i;:::-;;;;46964:241;;27882:327;28029:12;:10;:12::i;:::-;-1:-1:-1;;;;;28017:24:0;:8;-1:-1:-1;;;;;28017:24:0;;;28009:62;;;;-1:-1:-1;;;28009:62:0;;;;;;;:::i;:::-;28129:8;28084:18;:32;28103:12;:10;:12::i;:::-;-1:-1:-1;;;;;28084:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;28084:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;28084:53:0;;;;;;;;;;;28168:12;:10;:12::i;:::-;-1:-1:-1;;;;;28153:48:0;;28192:8;28153:48;;;;;;:::i;:::-;;;;;;;;27882:327;;:::o;45517:27::-;;;;;;:::o;29264:365::-;29453:41;29472:12;:10;:12::i;:::-;29486:7;29453:18;:41::i;:::-;29431:140;;;;-1:-1:-1;;;29431:140:0;;;;;;;:::i;:::-;29582:39;29596:4;29602:2;29606:7;29615:5;29582:13;:39::i;:::-;29264:365;;;;:::o;45841:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45841:37:0;;-1:-1:-1;45841:37:0;:::o;47502:625::-;47620:13;47659:16;47667:7;47659;:16::i;:::-;47651:25;;;;;;47694:10;;;;;;;47689:65;;47728:14;47721:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47689:65;47766:28;47797:10;:8;:10::i;:::-;47766:41;;47869:1;47844:14;47838:28;:32;:281;;;;;;;;;;;;;;;;;47962:14;48003:18;:7;:16;:18::i;:::-;47919:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47838:281;47818:301;47502:625;-1:-1:-1;;;47502:625:0:o;48859:105::-;4181:12;:10;:12::i;:::-;-1:-1:-1;;;;;4170:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4170:23:0;;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;48930:17:::1;:26:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;48930:26:0;;::::1;::::0;;;::::1;::::0;;48859:105::o;28280:214::-;-1:-1:-1;;;;;28451:25:0;;;28422:4;28451:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28280:214::o;48518:126::-;4181:12;:10;:12::i;:::-;-1:-1:-1;;;;;4170:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4170:23:0;;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;48604:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;4850:229::-:0;4181:12;:10;:12::i;:::-;-1:-1:-1;;;;;4170:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4170:23:0;;4162:68;;;;-1:-1:-1;;;4162:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4953:22:0;::::1;4931:110;;;;-1:-1:-1::0;;;4931:110:0::1;;;;;;;:::i;:::-;5052:19;5062:8;5052:9;:19::i;:::-;4850:229:::0;:::o;24640:355::-;24787:4;-1:-1:-1;;;;;;24829:40:0;;-1:-1:-1;;;24829:40:0;;:105;;-1:-1:-1;;;;;;;24886:48:0;;-1:-1:-1;;;24886:48:0;24829:105;:158;;;;24951:36;24975:11;24951:23;:36::i;31176:127::-;31241:4;31265:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31265:16:0;:30;;;31176:127::o;2719:98::-;2799:10;2719:98;:::o;35299:174::-;35374:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35374:29:0;-1:-1:-1;;;;;35374:29:0;;;;;;;;:24;;35428:23;35374:24;35428:14;:23::i;:::-;-1:-1:-1;;;;;35419:46:0;;;;;;;;;;;35299:174;;:::o;31470:452::-;31599:4;31643:16;31651:7;31643;:16::i;:::-;31621:110;;;;-1:-1:-1;;;31621:110:0;;;;;;;:::i;:::-;31742:13;31758:23;31773:7;31758:14;:23::i;:::-;31742:39;;31811:5;-1:-1:-1;;;;;31800:16:0;:7;-1:-1:-1;;;;;31800:16:0;;:64;;;;31857:7;-1:-1:-1;;;;;31833:31:0;:20;31845:7;31833:11;:20::i;:::-;-1:-1:-1;;;;;31833:31:0;;31800:64;:113;;;;31881:32;31898:5;31905:7;31881:16;:32::i;:::-;31792:122;31470:452;-1:-1:-1;;;;31470:452:0:o;34566:615::-;34739:4;-1:-1:-1;;;;;34712:31:0;:23;34727:7;34712:14;:23::i;:::-;-1:-1:-1;;;;;34712:31:0;;34690:122;;;;-1:-1:-1;;;34690:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34831:16:0;;34823:65;;;;-1:-1:-1;;;34823:65:0;;;;;;;:::i;:::-;34901:39;34922:4;34928:2;34932:7;34901:20;:39::i;:::-;35005:29;35022:1;35026:7;35005:8;:29::i;:::-;-1:-1:-1;;;;;35047:15:0;;;;;;:9;:15;;;;;:20;;35066:1;;35047:15;:20;;35066:1;;35047:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35078:13:0;;;;;;:9;:13;;;;;:18;;35095:1;;35078:13;:18;;35095:1;;35078:18;:::i;:::-;;;;-1:-1:-1;;35107:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35107:21:0;-1:-1:-1;;;;;35107:21:0;;;;;;;;;35146:27;;35107:16;;35146:27;;;;;;;34566:615;;;:::o;5087:173::-;5162:6;;;-1:-1:-1;;;;;5179:17:0;;;-1:-1:-1;;;;;;5179:17:0;;;;;;;5212:40;;5162:6;;;5179:17;5162:6;;5212:40;;5143:16;;5212:40;5087:173;;:::o;32264:110::-;32340:26;32350:2;32354:7;32340:26;;;;;;;;;;;;:9;:26::i;30511:352::-;30668:28;30678:4;30684:2;30688:7;30668:9;:28::i;:::-;30729:48;30752:4;30758:2;30762:7;30771:5;30729:22;:48::i;:::-;30707:148;;;;-1:-1:-1;;;30707:148:0;;;;;;;:::i;46226:108::-;46286:13;46319:7;46312:14;;;;;:::i;307:723::-;363:13;584:10;580:53;;-1:-1:-1;611:10:0;;;;;;;;;;;;-1:-1:-1;;;611:10:0;;;;;;580:53;658:5;643:12;699:78;706:9;;699:78;;732:8;;;;:::i;:::-;;-1:-1:-1;755:10:0;;-1:-1:-1;763:2:0;755:10;;:::i;:::-;;;699:78;;;787:19;819:6;809:17;;;;;;-1:-1:-1;;;809:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;809:17:0;;787:39;;837:154;844:10;;837:154;;871:11;881:1;871:11;;:::i;:::-;;-1:-1:-1;940:10:0;948:2;940:5;:10;:::i;:::-;927:24;;:2;:24;:::i;:::-;914:39;;897:6;904;897:14;;;;;;-1:-1:-1;;;897:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;897:56:0;;;;;;;;-1:-1:-1;968:11:0;977:2;968:11;;:::i;:::-;;;837:154;;16422:207;-1:-1:-1;;;;;;16581:40:0;;-1:-1:-1;;;16581:40:0;16422:207;;;:::o;40571:589::-;40715:45;40742:4;40748:2;40752:7;40715:26;:45::i;:::-;-1:-1:-1;;;;;40777:18:0;;40773:187;;40812:40;40844:7;40812:31;:40::i;:::-;40773:187;;;40882:2;-1:-1:-1;;;;;40874:10:0;:4;-1:-1:-1;;;;;40874:10:0;;40870:90;;40901:47;40934:4;40940:7;40901:32;:47::i;:::-;-1:-1:-1;;;;;40974:16:0;;40970:183;;41007:45;41044:7;41007:36;:45::i;:::-;40970:183;;;41080:4;-1:-1:-1;;;;;41074:10:0;:2;-1:-1:-1;;;;;41074:10:0;;41070:83;;41101:40;41129:2;41133:7;41101:27;:40::i;32601:321::-;32731:18;32737:2;32741:7;32731:5;:18::i;:::-;32782:54;32813:1;32817:2;32821:7;32830:5;32782:22;:54::i;:::-;32760:154;;;;-1:-1:-1;;;32760:154:0;;;;;;;:::i;36038:980::-;36193:4;36214:15;:2;-1:-1:-1;;;;;36214:13:0;;:15::i;:::-;36210:801;;;36283:2;-1:-1:-1;;;;;36267:36:0;;36326:12;:10;:12::i;:::-;36361:4;36388:7;36418:5;36267:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36267:175:0;;;;;;;;-1:-1:-1;;36267:175:0;;;;;;;;;;;;:::i;:::-;;;36246:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36625:13:0;;36621:320;;36668:108;;-1:-1:-1;;;36668:108:0;;;;;;;:::i;36621:320::-;36891:6;36885:13;36876:6;36872:2;36868:15;36861:38;36246:710;-1:-1:-1;;;;;;36506:51:0;-1:-1:-1;;;36506:51:0;;-1:-1:-1;36499:58:0;;36210:801;-1:-1:-1;36995:4:0;36038:980;;;;;;:::o;41883:164::-;41987:10;:17;;41960:24;;;;:15;:24;;;;;:44;;;42015:24;;;;;;;;;;;;41883:164::o;42674:1002::-;42954:22;43004:1;42979:22;42996:4;42979:16;:22::i;:::-;:26;;;;:::i;:::-;43016:18;43037:26;;;:17;:26;;;;;;42954:51;;-1:-1:-1;43170:28:0;;;43166:328;;-1:-1:-1;;;;;43237:18:0;;43215:19;43237:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43288:30;;;;;;:44;;;43405:30;;:17;:30;;;;;:43;;;43166:328;-1:-1:-1;43590:26:0;;;;:17;:26;;;;;;;;43583:33;;;-1:-1:-1;;;;;43634:18:0;;;;;:12;:18;;;;;:34;;;;;;;43627:41;42674:1002::o;43971:1079::-;44249:10;:17;44224:22;;44249:21;;44269:1;;44249:21;:::i;:::-;44281:18;44302:24;;;:15;:24;;;;;;44675:10;:26;;44224:46;;-1:-1:-1;44302:24:0;;44224:46;;44675:26;;;;-1:-1:-1;;;44675:26:0;;;;;;;;;;;;;;;;;44653:48;;44739:11;44714:10;44725;44714:22;;;;;;-1:-1:-1;;;44714:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;44819:28;;;:15;:28;;;;;;;:41;;;44991:24;;;;;44984:31;45026:10;:16;;;;;-1:-1:-1;;;45026:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;43971:1079;;;;:::o;41461:221::-;41546:14;41563:20;41580:2;41563:16;:20::i;:::-;-1:-1:-1;;;;;41594:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41639:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41461:221:0:o;33258:382::-;-1:-1:-1;;;;;33338:16:0;;33330:61;;;;-1:-1:-1;;;33330:61:0;;;;;;;:::i;:::-;33411:16;33419:7;33411;:16::i;:::-;33410:17;33402:58;;;;-1:-1:-1;;;33402:58:0;;;;;;;:::i;:::-;33473:45;33502:1;33506:2;33510:7;33473:20;:45::i;:::-;-1:-1:-1;;;;;33531:13:0;;;;;;:9;:13;;;;;:18;;33548:1;;33531:13;:18;;33548:1;;33531:18;:::i;:::-;;;;-1:-1:-1;;33560:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33560:21:0;-1:-1:-1;;;;;33560:21:0;;;;;;;;33599:33;;33560:16;;;33599:33;;33560:16;;33599:33;33258:382;;:::o;6029:387::-;6352:20;6400:8;;;6029:387::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:633:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;232:2;226:9;200:2;286:15;;-1:-1:-1;;282:24:1;;;308:2;278:33;274:42;262:55;;;332:18;;;352:22;;;329:46;326:2;;;378:18;;:::i;:::-;418:10;414:2;407:22;447:6;438:15;;477:6;469;462:22;517:3;508:6;503:3;499:16;496:25;493:2;;;534:1;531;524:12;493:2;584:6;579:3;572:4;564:6;560:17;547:44;639:1;632:4;623:6;615;611:19;607:30;600:41;;;;90:557;;;;;:::o;652:175::-;722:20;;-1:-1:-1;;;;;771:31:1;;761:42;;751:2;;817:1;814;807:12;832:162;899:20;;955:13;;948:21;938:32;;928:2;;984:1;981;974:12;999:198;;1111:2;1099:9;1090:7;1086:23;1082:32;1079:2;;;1132:6;1124;1117:22;1079:2;1160:31;1181:9;1160:31;:::i;1202:274::-;;;1331:2;1319:9;1310:7;1306:23;1302:32;1299:2;;;1352:6;1344;1337:22;1299:2;1380:31;1401:9;1380:31;:::i;:::-;1370:41;;1430:40;1466:2;1455:9;1451:18;1430:40;:::i;:::-;1420:50;;1289:187;;;;;:::o;1481:342::-;;;;1627:2;1615:9;1606:7;1602:23;1598:32;1595:2;;;1648:6;1640;1633:22;1595:2;1676:31;1697:9;1676:31;:::i;:::-;1666:41;;1726:40;1762:2;1751:9;1747:18;1726:40;:::i;:::-;1716:50;;1813:2;1802:9;1798:18;1785:32;1775:42;;1585:238;;;;;:::o;1828:702::-;;;;;2000:3;1988:9;1979:7;1975:23;1971:33;1968:2;;;2022:6;2014;2007:22;1968:2;2050:31;2071:9;2050:31;:::i;:::-;2040:41;;2100:40;2136:2;2125:9;2121:18;2100:40;:::i;:::-;2090:50;;2187:2;2176:9;2172:18;2159:32;2149:42;;2242:2;2231:9;2227:18;2214:32;2269:18;2261:6;2258:30;2255:2;;;2306:6;2298;2291:22;2255:2;2334:22;;2387:4;2379:13;;2375:27;-1:-1:-1;2365:2:1;;2421:6;2413;2406:22;2365:2;2449:75;2516:7;2511:2;2498:16;2493:2;2489;2485:11;2449:75;:::i;:::-;2439:85;;;1958:572;;;;;;;:::o;2535:268::-;;;2661:2;2649:9;2640:7;2636:23;2632:32;2629:2;;;2682:6;2674;2667:22;2629:2;2710:31;2731:9;2710:31;:::i;:::-;2700:41;;2760:37;2793:2;2782:9;2778:18;2760:37;:::i;2808:266::-;;;2937:2;2925:9;2916:7;2912:23;2908:32;2905:2;;;2958:6;2950;2943:22;2905:2;2986:31;3007:9;2986:31;:::i;:::-;2976:41;3064:2;3049:18;;;;3036:32;;-1:-1:-1;;;2895:179:1:o;3079:666::-;;;3226:2;3214:9;3205:7;3201:23;3197:32;3194:2;;;3247:6;3239;3232:22;3194:2;3292:9;3279:23;3321:18;3362:2;3354:6;3351:14;3348:2;;;3383:6;3375;3368:22;3348:2;3426:6;3415:9;3411:22;3401:32;;3471:7;3464:4;3460:2;3456:13;3452:27;3442:2;;3498:6;3490;3483:22;3442:2;3543;3530:16;3569:2;3561:6;3558:14;3555:2;;;3590:6;3582;3575:22;3555:2;3649:7;3644:2;3638;3630:6;3626:15;3622:2;3618:24;3614:33;3611:46;3608:2;;;3675:6;3667;3660:22;3608:2;3711;3703:11;;;;;3733:6;;-1:-1:-1;3184:561:1;;-1:-1:-1;;;;3184:561:1:o;3750:192::-;;3859:2;3847:9;3838:7;3834:23;3830:32;3827:2;;;3880:6;3872;3865:22;3827:2;3908:28;3926:9;3908:28;:::i;3947:257::-;;4058:2;4046:9;4037:7;4033:23;4029:32;4026:2;;;4079:6;4071;4064:22;4026:2;4123:9;4110:23;4142:32;4168:5;4142:32;:::i;4209:261::-;;4331:2;4319:9;4310:7;4306:23;4302:32;4299:2;;;4352:6;4344;4337:22;4299:2;4389:9;4383:16;4408:32;4434:5;4408:32;:::i;4475:482::-;;4597:2;4585:9;4576:7;4572:23;4568:32;4565:2;;;4618:6;4610;4603:22;4565:2;4663:9;4650:23;4696:18;4688:6;4685:30;4682:2;;;4733:6;4725;4718:22;4682:2;4761:22;;4814:4;4806:13;;4802:27;-1:-1:-1;4792:2:1;;4848:6;4840;4833:22;4792:2;4876:75;4943:7;4938:2;4925:16;4920:2;4916;4912:11;4876:75;:::i;4962:190::-;;5074:2;5062:9;5053:7;5049:23;5045:32;5042:2;;;5095:6;5087;5080:22;5042:2;-1:-1:-1;5123:23:1;;5032:120;-1:-1:-1;5032:120:1:o;5157:259::-;;5238:5;5232:12;5265:6;5260:3;5253:19;5281:63;5337:6;5330:4;5325:3;5321:14;5314:4;5307:5;5303:16;5281:63;:::i;:::-;5398:2;5377:15;-1:-1:-1;;5373:29:1;5364:39;;;;5405:4;5360:50;;5208:208;-1:-1:-1;;5208:208:1:o;5421:637::-;;5739:6;5733:13;5755:53;5801:6;5796:3;5789:4;5781:6;5777:17;5755:53;:::i;:::-;5871:13;;5830:16;;;;5893:57;5871:13;5830:16;5927:4;5915:17;;5893:57;:::i;:::-;-1:-1:-1;;;5972:20:1;;6001:22;;;6050:1;6039:13;;5709:349;-1:-1:-1;;;;5709:349:1:o;6063:205::-;6263:3;6254:14::o;6273:203::-;-1:-1:-1;;;;;6437:32:1;;;;6419:51;;6407:2;6392:18;;6374:102::o;6481:490::-;-1:-1:-1;;;;;6750:15:1;;;6732:34;;6802:15;;6797:2;6782:18;;6775:43;6849:2;6834:18;;6827:34;;;6897:3;6892:2;6877:18;;6870:31;;;6481:490;;6918:47;;6945:19;;6937:6;6918:47;:::i;:::-;6910:55;6684:287;-1:-1:-1;;;;;;6684:287:1:o;6976:274::-;-1:-1:-1;;;;;7168:32:1;;;;7150:51;;7232:2;7217:18;;7210:34;7138:2;7123:18;;7105:145::o;7255:187::-;7420:14;;7413:22;7395:41;;7383:2;7368:18;;7350:92::o;7447:221::-;;7596:2;7585:9;7578:21;7616:46;7658:2;7647:9;7643:18;7635:6;7616:46;:::i;7673:407::-;7875:2;7857:21;;;7914:2;7894:18;;;7887:30;7953:34;7948:2;7933:18;;7926:62;-1:-1:-1;;;8019:2:1;8004:18;;7997:41;8070:3;8055:19;;7847:233::o;8085:414::-;8287:2;8269:21;;;8326:2;8306:18;;;8299:30;8365:34;8360:2;8345:18;;8338:62;-1:-1:-1;;;8431:2:1;8416:18;;8409:48;8489:3;8474:19;;8259:240::o;8504:402::-;8706:2;8688:21;;;8745:2;8725:18;;;8718:30;8784:34;8779:2;8764:18;;8757:62;-1:-1:-1;;;8850:2:1;8835:18;;8828:36;8896:3;8881:19;;8678:228::o;8911:352::-;9113:2;9095:21;;;9152:2;9132:18;;;9125:30;9191;9186:2;9171:18;;9164:58;9254:2;9239:18;;9085:178::o;9268:400::-;9470:2;9452:21;;;9509:2;9489:18;;;9482:30;9548:34;9543:2;9528:18;;9521:62;-1:-1:-1;;;9614:2:1;9599:18;;9592:34;9658:3;9643:19;;9442:226::o;9673:349::-;9875:2;9857:21;;;9914:2;9894:18;;;9887:30;9953:27;9948:2;9933:18;;9926:55;10013:2;9998:18;;9847:175::o;10027:408::-;10229:2;10211:21;;;10268:2;10248:18;;;10241:30;10307:34;10302:2;10287:18;;10280:62;-1:-1:-1;;;10373:2:1;10358:18;;10351:42;10425:3;10410:19;;10201:234::o;10440:420::-;10642:2;10624:21;;;10681:2;10661:18;;;10654:30;10720:34;10715:2;10700:18;;10693:62;10791:26;10786:2;10771:18;;10764:54;10850:3;10835:19;;10614:246::o;10865:406::-;11067:2;11049:21;;;11106:2;11086:18;;;11079:30;11145:34;11140:2;11125:18;;11118:62;-1:-1:-1;;;11211:2:1;11196:18;;11189:40;11261:3;11246:19;;11039:232::o;11276:405::-;11478:2;11460:21;;;11517:2;11497:18;;;11490:30;11556:34;11551:2;11536:18;;11529:62;-1:-1:-1;;;11622:2:1;11607:18;;11600:39;11671:3;11656:19;;11450:231::o;11686:356::-;11888:2;11870:21;;;11907:18;;;11900:30;11966:34;11961:2;11946:18;;11939:62;12033:2;12018:18;;11860:182::o;12047:408::-;12249:2;12231:21;;;12288:2;12268:18;;;12261:30;12327:34;12322:2;12307:18;;12300:62;-1:-1:-1;;;12393:2:1;12378:18;;12371:42;12445:3;12430:19;;12221:234::o;12460:356::-;12662:2;12644:21;;;12681:18;;;12674:30;12740:34;12735:2;12720:18;;12713:62;12807:2;12792:18;;12634:182::o;12821:405::-;13023:2;13005:21;;;13062:2;13042:18;;;13035:30;13101:34;13096:2;13081:18;;13074:62;-1:-1:-1;;;13167:2:1;13152:18;;13145:39;13216:3;13201:19;;12995:231::o;13231:397::-;13433:2;13415:21;;;13472:2;13452:18;;;13445:30;13511:34;13506:2;13491:18;;13484:62;-1:-1:-1;;;13577:2:1;13562:18;;13555:31;13618:3;13603:19;;13405:223::o;13633:413::-;13835:2;13817:21;;;13874:2;13854:18;;;13847:30;13913:34;13908:2;13893:18;;13886:62;-1:-1:-1;;;13979:2:1;13964:18;;13957:47;14036:3;14021:19;;13807:239::o;14051:408::-;14253:2;14235:21;;;14292:2;14272:18;;;14265:30;14331:34;14326:2;14311:18;;14304:62;-1:-1:-1;;;14397:2:1;14382:18;;14375:42;14449:3;14434:19;;14225:234::o;14464:177::-;14610:25;;;14598:2;14583:18;;14565:76::o;14646:128::-;;14717:1;14713:6;14710:1;14707:13;14704:2;;;14723:18;;:::i;:::-;-1:-1:-1;14759:9:1;;14694:80::o;14779:120::-;;14845:1;14835:2;;14850:18;;:::i;:::-;-1:-1:-1;14884:9:1;;14825:74::o;14904:168::-;;15010:1;15006;15002:6;14998:14;14995:1;14992:21;14987:1;14980:9;14973:17;14969:45;14966:2;;;15017:18;;:::i;:::-;-1:-1:-1;15057:9:1;;14956:116::o;15077:125::-;;15145:1;15142;15139:8;15136:2;;;15150:18;;:::i;:::-;-1:-1:-1;15187:9:1;;15126:76::o;15207:258::-;15279:1;15289:113;15303:6;15300:1;15297:13;15289:113;;;15379:11;;;15373:18;15360:11;;;15353:39;15325:2;15318:10;15289:113;;;15420:6;15417:1;15414:13;15411:2;;;-1:-1:-1;;15455:1:1;15437:16;;15430:27;15260:205::o;15470:380::-;15555:1;15545:12;;15602:1;15592:12;;;15613:2;;15667:4;15659:6;15655:17;15645:27;;15613:2;15720;15712:6;15709:14;15689:18;15686:38;15683:2;;;15766:10;15761:3;15757:20;15754:1;15747:31;15801:4;15798:1;15791:15;15829:4;15826:1;15819:15;15683:2;;15525:325;;;:::o;15855:135::-;;-1:-1:-1;;15915:17:1;;15912:2;;;15935:18;;:::i;:::-;-1:-1:-1;15982:1:1;15971:13;;15902:88::o;15995:112::-;;16053:1;16043:2;;16058:18;;:::i;:::-;-1:-1:-1;16092:9:1;;16033:74::o;16112:127::-;16173:10;16168:3;16164:20;16161:1;16154:31;16204:4;16201:1;16194:15;16228:4;16225:1;16218:15;16244:127;16305:10;16300:3;16296:20;16293:1;16286:31;16336:4;16333:1;16326:15;16360:4;16357:1;16350:15;16376:127;16437:10;16432:3;16428:20;16425:1;16418:31;16468:4;16465:1;16458:15;16492:4;16489:1;16482:15;16508:133;-1:-1:-1;;;;;;16584:32:1;;16574:43;;16564:2;;16631:1;16628;16621:12

Swarm Source

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