ETH Price: $2,874.95 (-10.23%)
Gas: 13 Gwei

Token

Nifty Ape Nation (NAN)
 

Overview

Max Total Supply

481 NAN

Holders

226

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
starboss.eth
Balance
12 NAN
0x40f220276c3710e96b738b3a170bab673e512425
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
NiftyApeNation

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 1500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/Counters.sol
// SPDX-License-Identifier: MIT


pragma solidity ^0.8.0;

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

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

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

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

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

// File: @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: NiftyApeNation.sol


//  __    __  __   ______    __                       ______                      
// /  \  /  |/  | /      \  /  |                     /      \                     
// $$  \ $$ |$$/ /$$$$$$  |_$$ |_    __    __       /$$$$$$  |  ______    ______  
// $$$  \$$ |/  |$$ |_ $$// $$   |  /  |  /  |      $$ |__$$ | /      \  /      \ 
// $$$$  $$ |$$ |$$   |   $$$$$$/   $$ |  $$ |      $$    $$ |/$$$$$$  |/$$$$$$  |
// $$ $$ $$ |$$ |$$$$/      $$ | __ $$ |  $$ |      $$$$$$$$ |$$ |  $$ |$$    $$ |
// $$ |$$$$ |$$ |$$ |       $$ |/  |$$ \__$$ |      $$ |  $$ |$$ |__$$ |$$$$$$$$/ 
// $$ | $$$ |$$ |$$ |       $$  $$/ $$    $$ |      $$ |  $$ |$$    $$/ $$       |
// $$/   $$/ $$/ $$/         $$$$/   $$$$$$$ |      $$/   $$/ $$$$$$$/   $$$$$$$/ 
//                                  /  \__$$ |                $$ |                
//                                  $$    $$/                 $$ |                
//                                   $$$$$$/                  $$/                 
//  __    __              __      __                                              
// /  \  /  |            /  |    /  |                                             
// $$  \ $$ |  ______   _$$ |_   $$/   ______   _______                           
// $$$  \$$ | /      \ / $$   |  /  | /      \ /       \                          
// $$$$  $$ | $$$$$$  |$$$$$$/   $$ |/$$$$$$  |$$$$$$$  |                         
// $$ $$ $$ | /    $$ |  $$ | __ $$ |$$ |  $$ |$$ |  $$ |                         
// $$ |$$$$ |/$$$$$$$ |  $$ |/  |$$ |$$ \__$$ |$$ |  $$ |                         
// $$ | $$$ |$$    $$ |  $$  $$/ $$ |$$    $$/ $$ |  $$ |                         
// $$/   $$/  $$$$$$$/    $$$$/  $$/  $$$$$$/  $$/   $$/                          
//

pragma solidity 0.8.9;





contract NiftyApeNation is ERC721Enumerable, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;    

    Counters.Counter private _publicMintCounter;
    Counters.Counter private _privateMintCounter;
    
    uint8 public constant PUBLIC_MINT = 1;
    uint8 public constant PRIVATE_MINT = 2;
    
    string public baseURI;
    string public _contractURI;
    string public baseExtension = '.json';
    uint256 public maxSupply = 8888;
    uint256 public maxPublicSupply = 7904;//maximum allowed for public mint
    uint256 public privateMintCounterStart = 7904;//token Ids 7905-8888 is reserved for auctions
    uint256 public publicSaleDropSize = 888;//public sale drop batch size
    uint256 public publicSaleDropPhase = 1;//there will be 9 drops. 
    uint256 public maxMintAmount = 3;
    uint256 public pricePerPublicToken = 0.0888 ether;    

    bool public paused = true;
    bool public whitelistAllowed = false; 
    
    mapping(address => uint8) private _whitelist;
    
    //withdraw addresses 
    address actWallet = 0x4043806F2d2bd98DcdfAB0a4477528EbE1c4c0c8;
    address aiWallet  = 0x54BfF4ED1b1D677c3A3b738516DFbe7A8EaC1e8A;
    address devWallet  = 0xdD2f3cfC6310F0365E83Dd964D38a06e10Cca69E;
    address afWallet = 0x33FB4D418943C6AAF85f808EdC901fEcF1Cb51F8;

    constructor(string memory _initBaseURI, string memory _initContractURI) ERC721("Nifty Ape Nation", "NAN") {
        setBaseURI(_initBaseURI);
        setContractURI(_initContractURI);
    }

    //modifiers
    modifier publicMintCheck(uint8 numberOfTokens) {
        require(!paused, "Sales is not active");
        require(getCurrentCounterValue(PUBLIC_MINT) + numberOfTokens <= maxPublicSupply, "Purchase would exceed max public tokens!");
        require(getCurrentCounterValue(PUBLIC_MINT) + numberOfTokens <= publicSaleDropPhase * publicSaleDropSize, "Purchase would exceed this Drop's max amount!");
        require(numberOfTokens > 0 && numberOfTokens <= maxMintAmount, "Invalid amount or maximum token mint amount reached!");        
        
        require(pricePerPublicToken * numberOfTokens <= msg.value, "Ether value sent is not correct!");
        _;
    }
    
    modifier whitelistCheck(uint8 numberOfTokens){
        if(whitelistAllowed){
            require(_whitelist[msg.sender] > 0, "Address is not whitelisted or not enough quota!");
            require(numberOfTokens <= _whitelist[msg.sender], "Exceeded max available to purchase");
        }
        _;
    }

    modifier privateMintCheck(uint8 numberOfTokens) {
        require(!paused, "Contract is not active!");
        require(numberOfTokens > 0, "Invalid token amount!");
        require(totalSupply() <= maxSupply, "Max supply reached!");
        require(getCurrentCounterValue(PRIVATE_MINT) + numberOfTokens <= maxSupply, "Purchase would exceed max tokens!");     
        _;
    }
    
    
    //we override the _baseURI() method of ERC721 to return our own baseURI
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : "";
    }
    function setContractURI(string memory newuri) public onlyOwner {		
		_contractURI = newuri;
	}

	function contractURI() public view returns (string memory) {
		return _contractURI;
	}

    //public
    //Public minting
    function mintPublic(uint8 numberOfTokens) public payable whitelistCheck(numberOfTokens) publicMintCheck(numberOfTokens) {
        //whitelist checks
        if(whitelistAllowed){
            _whitelist[msg.sender] -= numberOfTokens;       
        }

        for (uint256 i = 0; i < numberOfTokens; i++) {
            incrementCurrentCounterValue(PUBLIC_MINT);
            _safeMint(msg.sender, getCurrentCounterValue(PUBLIC_MINT));
        }
    }

    //Token Ids from 7905-8888 is reserved for auctions)
    function mintPrivate(uint8 numberOfTokens) public onlyOwner privateMintCheck(numberOfTokens)  {
        for (uint256 i = 0; i < numberOfTokens; i++) {
            incrementCurrentCounterValue(PRIVATE_MINT);
            _safeMint(msg.sender, getCurrentCounterValue(PRIVATE_MINT));
        }
    }
   
    //change states
    //set BaseURI
    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    //set public sale drop size (888)
    function setPublicSaleDropSize(uint256 newDropSize) public onlyOwner {
        publicSaleDropSize = newDropSize;
    }
    
    //set public sale drop phase (1-9)
    function setPublicSaleDropPhase(uint256 newDropPhase) public onlyOwner {
        require(newDropPhase >= 1 && newDropPhase <= 9, "Drop phase cannot exceed 9.");
        publicSaleDropPhase = newDropPhase;
    }

    //set max mint amount
    function setMaxMintAmount(uint256 newMintAmount) public onlyOwner {
        maxMintAmount = newMintAmount;
    }

    //set public token price
    function setPricePerPublicToken(uint256 newPrice) public onlyOwner {
        pricePerPublicToken = newPrice;
    }

    //set pause
    function setPaused(bool newState) public onlyOwner {
        paused = newState;
    }

     //set whitelist allowed
    function setWhitelistAllowed(bool newState) public onlyOwner {
        whitelistAllowed = newState;
    }

    //Set whitelist addresses
    function setWhitelist(address[] calldata addresses, uint8 allowedMintAmount) public onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _whitelist[addresses[i]] = allowedMintAmount;
        }
    }
    
    //get curernt token counter value (mintType: PUBLIC_MINT/PRIVATE_MINT)
    function getCurrentCounterValue(uint8 mintType) public view returns (uint256){
        if(mintType == PUBLIC_MINT){
            return _publicMintCounter.current();
        }else if(mintType == PRIVATE_MINT){
            return _privateMintCounter.current() + privateMintCounterStart;//private mint counter starts from 7905 (reserved items)
        }else{
            return 0;
        }
    }
    //increment token counter value (mintType: PUBLIC_MINT/PRIVATE_MINT)
    function incrementCurrentCounterValue(uint8 mintType) private {
        if(mintType == PUBLIC_MINT){
            require(getCurrentCounterValue(PUBLIC_MINT) < maxPublicSupply, "counter can not exceed the max public supply");
            return _publicMintCounter.increment();
        }else if(mintType == PRIVATE_MINT){
            require(getCurrentCounterValue(PRIVATE_MINT) < maxSupply, "counter can not exceed the max supply");
            return _privateMintCounter.increment();
        }else{
            return;
        }
    }

    //withdraw all money to specidic wallets
    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "insufficient funds!");
        _widthdraw(actWallet, balance * 35 / 100);        
        _widthdraw(aiWallet, balance * 20 / 100);
        _widthdraw(devWallet, balance * 30 / 100);
        _widthdraw(afWallet, address(this).balance);
    }
    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initContractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PRIVATE_MINT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"mintType","type":"uint8"}],"name":"getCurrentCounterValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mintPrivate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerPublicToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateMintCounterStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleDropPhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleDropSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPricePerPublicToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDropPhase","type":"uint256"}],"name":"setPublicSaleDropPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDropSize","type":"uint256"}],"name":"setPublicSaleDropSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"allowedMintAmount","type":"uint8"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setWhitelistAllowed","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":[],"name":"whitelistAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600f9190620002d7565b506122b8601055611ee0601181905560125561037860135560016014819055600360155567013b7b21280e00006016556017805461ffff19169091179055601980546001600160a01b0319908116734043806f2d2bd98dcdfab0a4477528ebe1c4c0c817909155601a805482167354bff4ed1b1d677c3a3b738516dfbe7a8eac1e8a179055601b8054821673dd2f3cfc6310f0365e83dd964d38a06e10cca69e179055601c80549091167333fb4d418943c6aaf85f808edc901fecf1cb51f8179055348015620000f757600080fd5b5060405162003884380380620038848339810160408190526200011a916200044a565b604080518082018252601081526f2734b33a3c9020b832902730ba34b7b760811b6020808301918252835180850190945260038452622720a760e91b9084015281519192916200016d91600091620002d7565b50805162000183906001906020840190620002d7565b505050620001a06200019a620001be60201b60201c565b620001c2565b620001ab8262000214565b620001b6816200027c565b5050620004f1565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620002635760405162461bcd60e51b815260206004820181905260248201526000805160206200386483398151915260448201526064015b60405180910390fd5b80516200027890600d906020840190620002d7565b5050565b600a546001600160a01b03163314620002c75760405162461bcd60e51b815260206004820181905260248201526000805160206200386483398151915260448201526064016200025a565b80516200027890600e9060208401905b828054620002e590620004b4565b90600052602060002090601f01602090048101928262000309576000855562000354565b82601f106200032457805160ff191683800117855562000354565b8280016001018555821562000354579182015b828111156200035457825182559160200191906001019062000337565b506200036292915062000366565b5090565b5b8082111562000362576000815560010162000367565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620003a557600080fd5b81516001600160401b0380821115620003c257620003c26200037d565b604051601f8301601f19908116603f01168101908282118183101715620003ed57620003ed6200037d565b816040528381526020925086838588010111156200040a57600080fd5b600091505b838210156200042e57858201830151818301840152908201906200040f565b83821115620004405760008385830101525b9695505050505050565b600080604083850312156200045e57600080fd5b82516001600160401b03808211156200047657600080fd5b620004848683870162000393565b935060208501519150808211156200049b57600080fd5b50620004aa8582860162000393565b9150509250929050565b600181811c90821680620004c957607f821691505b60208210811415620004eb57634e487b7160e01b600052602260045260246000fd5b50919050565b61336380620005016000396000f3fe6080604052600436106103085760003560e01c8063715018a61161019a578063bc391037116100e1578063e2fe7cfa1161008a578063f2fde38b11610064578063f2fde38b14610852578063f96bc07614610872578063ffaa61c31461088757600080fd5b8063e2fe7cfa146107de578063e8a3d485146107f4578063e985e9c51461080957600080fd5b8063c6682862116100bb578063c668286214610793578063c87b56dd146107a8578063d5abeb01146107c857600080fd5b8063bc3910371461073e578063c0e727401461075e578063c56a9a0d1461077357600080fd5b8063938e3d7b116101435780639d69ffe41161011d5780639d69ffe4146106de578063a22cb465146106fe578063b88d4fde1461071e57600080fd5b8063938e3d7b1461068957806395d89b41146106a957806397495d71146106be57600080fd5b8063853828b611610174578063853828b6146106375780638da5cb5b1461064c5780639070a3801461066a57600080fd5b8063715018a6146105e55780637211e920146105fa5780637bc6f5fb1461062157600080fd5b806323b872dd1161025e57806355f804b31161020757806367dce1ed116101e157806367dce1ed1461059d5780636c0360eb146105b057806370a08231146105c557600080fd5b806355f804b3146105435780635c975abb146105635780636352211e1461057d57600080fd5b806342842e0e1161023857806342842e0e146104e357806345583260146105035780634f6ccce71461052357600080fd5b806323b872dd1461048d57806326a74d8e146104ad5780632f745c59146104c357600080fd5b8063095ea7b3116102c057806317083a631161029a57806317083a631461044257806318160ddd14610462578063239c70ae1461047757600080fd5b8063095ea7b3146103e25780630c4d12881461040257806316c38b3c1461042257600080fd5b806306fdde03116102f157806306fdde0314610366578063081812fc14610388578063088a4ed0146103c057600080fd5b80630174e1d41461030d57806301ffc9a714610336575b600080fd5b34801561031957600080fd5b5061032360165481565b6040519081526020015b60405180910390f35b34801561034257600080fd5b50610356610351366004612d07565b61089d565b604051901515815260200161032d565b34801561037257600080fd5b5061037b6108e1565b60405161032d9190612d7c565b34801561039457600080fd5b506103a86103a3366004612d8f565b610973565b6040516001600160a01b03909116815260200161032d565b3480156103cc57600080fd5b506103e06103db366004612d8f565b610a1e565b005b3480156103ee57600080fd5b506103e06103fd366004612dbf565b610a7d565b34801561040e57600080fd5b506103e061041d366004612d8f565b610baf565b34801561042e57600080fd5b506103e061043d366004612df9565b610c6c565b34801561044e57600080fd5b506103e061045d366004612df9565b610cd9565b34801561046e57600080fd5b50600854610323565b34801561048357600080fd5b5061032360155481565b34801561049957600080fd5b506103e06104a8366004612e14565b610d4d565b3480156104b957600080fd5b5061032360115481565b3480156104cf57600080fd5b506103236104de366004612dbf565b610dd4565b3480156104ef57600080fd5b506103e06104fe366004612e14565b610e7c565b34801561050f57600080fd5b506103e061051e366004612d8f565b610e97565b34801561052f57600080fd5b5061032361053e366004612d8f565b610ef6565b34801561054f57600080fd5b506103e061055e366004612edc565b610f9a565b34801561056f57600080fd5b506017546103569060ff1681565b34801561058957600080fd5b506103a8610598366004612d8f565b61100b565b6103e06105ab366004612f36565b611096565b3480156105bc57600080fd5b5061037b6114b1565b3480156105d157600080fd5b506103236105e0366004612f51565b61153f565b3480156105f157600080fd5b506103e06115d9565b34801561060657600080fd5b5061060f600281565b60405160ff909116815260200161032d565b34801561062d57600080fd5b5061032360125481565b34801561064357600080fd5b506103e061163f565b34801561065857600080fd5b50600a546001600160a01b03166103a8565b34801561067657600080fd5b5060175461035690610100900460ff1681565b34801561069557600080fd5b506103e06106a4366004612edc565b611766565b3480156106b557600080fd5b5061037b6117d3565b3480156106ca57600080fd5b506103e06106d9366004612f6c565b6117e2565b3480156106ea57600080fd5b506103e06106f9366004612d8f565b6118b0565b34801561070a57600080fd5b506103e0610719366004612ff0565b61190f565b34801561072a57600080fd5b506103e0610739366004613023565b6119d4565b34801561074a57600080fd5b506103e0610759366004612f36565b611a5c565b34801561076a57600080fd5b5061037b611c79565b34801561077f57600080fd5b5061032361078e366004612f36565b611c86565b34801561079f57600080fd5b5061037b611cc5565b3480156107b457600080fd5b5061037b6107c3366004612d8f565b611cd2565b3480156107d457600080fd5b5061032360105481565b3480156107ea57600080fd5b5061032360135481565b34801561080057600080fd5b5061037b611dbe565b34801561081557600080fd5b5061035661082436600461309f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561085e57600080fd5b506103e061086d366004612f51565b611dcd565b34801561087e57600080fd5b5061060f600181565b34801561089357600080fd5b5061032360145481565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806108db57506108db82611eac565b92915050565b6060600080546108f0906130c9565b80601f016020809104026020016040519081016040528092919081815260200182805461091c906130c9565b80156109695780601f1061093e57610100808354040283529160200191610969565b820191906000526020600020905b81548152906001019060200180831161094c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a025760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b03163314610a785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b601555565b6000610a888261100b565b9050806001600160a01b0316836001600160a01b03161415610b125760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016109f9565b336001600160a01b0382161480610b2e5750610b2e8133610824565b610ba05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109f9565b610baa8383611f47565b505050565b600a546001600160a01b03163314610c095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b60018110158015610c1b575060098111155b610c675760405162461bcd60e51b815260206004820152601b60248201527f44726f702070686173652063616e6e6f742065786365656420392e000000000060448201526064016109f9565b601455565b600a546001600160a01b03163314610cc65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b6017805460ff1916911515919091179055565b600a546001600160a01b03163314610d335760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b601780549115156101000261ff0019909216919091179055565b610d573382611fc2565b610dc95760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109f9565b610baa8383836120ca565b6000610ddf8361153f565b8210610e535760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016109f9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610baa838383604051806020016040528060008152506119d4565b600a546001600160a01b03163314610ef15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b601655565b6000610f0160085490565b8210610f755760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016109f9565b60088281548110610f8857610f88613104565b90600052602060002001549050919050565b600a546001600160a01b03163314610ff45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b805161100790600d906020840190612c58565b5050565b6000818152600260205260408120546001600160a01b0316806108db5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016109f9565b6017548190610100900460ff16156111b9573360009081526018602052604090205460ff1661112d5760405162461bcd60e51b815260206004820152602f60248201527f41646472657373206973206e6f742077686974656c6973746564206f72206e6f60448201527f7420656e6f7567682071756f746121000000000000000000000000000000000060648201526084016109f9565b3360009081526018602052604090205460ff90811690821611156111b95760405162461bcd60e51b815260206004820152602260248201527f4578636565646564206d617820617661696c61626c6520746f2070757263686160448201527f736500000000000000000000000000000000000000000000000000000000000060648201526084016109f9565b601754829060ff161561120e5760405162461bcd60e51b815260206004820152601360248201527f53616c6573206973206e6f74206163746976650000000000000000000000000060448201526064016109f9565b6011548160ff1661121f6001611c86565b6112299190613130565b111561129d5760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d6178207075626c696360448201527f20746f6b656e732100000000000000000000000000000000000000000000000060648201526084016109f9565b6013546014546112ad9190613148565b8160ff166112bb6001611c86565b6112c59190613130565b11156113395760405162461bcd60e51b815260206004820152602d60248201527f507572636861736520776f756c642065786365656420746869732044726f702760448201527f73206d617820616d6f756e74210000000000000000000000000000000000000060648201526084016109f9565b60008160ff1611801561135157506015548160ff1611155b6113c35760405162461bcd60e51b815260206004820152603460248201527f496e76616c696420616d6f756e74206f72206d6178696d756d20746f6b656e2060448201527f6d696e7420616d6f756e7420726561636865642100000000000000000000000060648201526084016109f9565b348160ff166016546113d59190613148565b11156114235760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742160448201526064016109f9565b601754610100900460ff161561146e57336000908152601860205260408120805485929061145590849060ff16613167565b92506101000a81548160ff021916908360ff1602179055505b60005b8360ff168110156114ab5761148660016122af565b611499336114946001611c86565b6123e3565b806114a38161318a565b915050611471565b50505050565b600d80546114be906130c9565b80601f01602080910402602001604051908101604052809291908181526020018280546114ea906130c9565b80156115375780601f1061150c57610100808354040283529160200191611537565b820191906000526020600020905b81548152906001019060200180831161151a57829003601f168201915b505050505081565b60006001600160a01b0382166115bd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016109f9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116335760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b61163d60006123fd565b565b600a546001600160a01b031633146116995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b47806116e75760405162461bcd60e51b815260206004820152601360248201527f696e73756666696369656e742066756e6473210000000000000000000000000060448201526064016109f9565b601954611713906001600160a01b03166064611704846023613148565b61170e91906131bb565b61245c565b601a54611730906001600160a01b03166064611704846014613148565b601b5461174d906001600160a01b0316606461170484601e613148565b601c54611763906001600160a01b03164761245c565b50565b600a546001600160a01b031633146117c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b805161100790600e906020840190612c58565b6060600180546108f0906130c9565b600a546001600160a01b0316331461183c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b60005b828110156114ab57816018600086868581811061185e5761185e613104565b90506020020160208101906118739190612f51565b6001600160a01b031681526020810191909152604001600020805460ff191660ff92909216919091179055806118a88161318a565b91505061183f565b600a546001600160a01b0316331461190a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b601355565b6001600160a01b0382163314156119685760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109f9565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6119de3383611fc2565b611a505760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109f9565b6114ab848484846124ff565b600a546001600160a01b03163314611ab65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b601754819060ff1615611b0b5760405162461bcd60e51b815260206004820152601760248201527f436f6e7472616374206973206e6f74206163746976652100000000000000000060448201526064016109f9565b60008160ff1611611b5e5760405162461bcd60e51b815260206004820152601560248201527f496e76616c696420746f6b656e20616d6f756e7421000000000000000000000060448201526064016109f9565b6010546008541115611bb25760405162461bcd60e51b815260206004820152601360248201527f4d617820737570706c792072656163686564210000000000000000000000000060448201526064016109f9565b6010548160ff16611bc36002611c86565b611bcd9190613130565b1115611c415760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f210000000000000000000000000000000000000000000000000000000000000060648201526084016109f9565b60005b8260ff16811015610baa57611c5960026122af565b611c67336114946002611c86565b80611c718161318a565b915050611c44565b600e80546114be906130c9565b600060ff821660011415611c9c57600b546108db565b60ff821660021415611cb857601254600c546108db9190613130565b506000919050565b919050565b600f80546114be906130c9565b6000818152600260205260409020546060906001600160a01b0316611d5f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016109f9565b6000611d69612588565b90506000815111611d895760405180602001604052806000815250611db7565b80611d9384612597565b600f604051602001611da7939291906131cf565b6040516020818303038152906040525b9392505050565b6060600e80546108f0906130c9565b600a546001600160a01b03163314611e275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b6001600160a01b038116611ea35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109f9565b611763816123fd565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611f0f57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108db57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146108db565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190611f898261100b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661204c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016109f9565b60006120578361100b565b9050806001600160a01b0316846001600160a01b031614806120925750836001600160a01b031661208784610973565b6001600160a01b0316145b806120c257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166120dd8261100b565b6001600160a01b0316146121595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016109f9565b6001600160a01b0382166121d45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109f9565b6121df8383836126c9565b6121ea600082611f47565b6001600160a01b0383166000908152600360205260408120805460019290612213908490613293565b90915550506001600160a01b0382166000908152600360205260408120805460019290612241908490613130565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60ff811660011415612349576011546122c86001611c86565b1061233b5760405162461bcd60e51b815260206004820152602c60248201527f636f756e7465722063616e206e6f742065786365656420746865206d6178207060448201527f75626c696320737570706c79000000000000000000000000000000000000000060648201526084016109f9565b611763600b80546001019055565b60ff811660021415611763576010546123626002611c86565b106123d55760405162461bcd60e51b815260206004820152602560248201527f636f756e7465722063616e206e6f742065786365656420746865206d6178207360448201527f7570706c7900000000000000000000000000000000000000000000000000000060648201526084016109f9565b611763600c80546001019055565b611007828260405180602001604052806000815250612781565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146124a9576040519150601f19603f3d011682016040523d82523d6000602084013e6124ae565b606091505b5050905080610baa5760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016109f9565b61250a8484846120ca565b6125168484848461280a565b6114ab5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109f9565b6060600d80546108f0906130c9565b6060816125d757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561260157806125eb8161318a565b91506125fa9050600a836131bb565b91506125db565b60008167ffffffffffffffff81111561261c5761261c612e50565b6040519080825280601f01601f191660200182016040528015612646576020820181803683370190505b5090505b84156120c25761265b600183613293565b9150612668600a866132aa565b612673906030613130565b60f81b81838151811061268857612688613104565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506126c2600a866131bb565b945061264a565b6001600160a01b0383166127245761271f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612747565b816001600160a01b0316836001600160a01b03161461274757612747838261296d565b6001600160a01b03821661275e57610baa81612a0a565b826001600160a01b0316826001600160a01b031614610baa57610baa8282612ab9565b61278b8383612afd565b612798600084848461280a565b610baa5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109f9565b60006001600160a01b0384163b1561296257604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061284e9033908990889088906004016132be565b602060405180830381600087803b15801561286857600080fd5b505af1925050508015612898575060408051601f3d908101601f19168201909252612895918101906132fa565b60015b612948573d8080156128c6576040519150601f19603f3d011682016040523d82523d6000602084013e6128cb565b606091505b5080516129405760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109f9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120c2565b506001949350505050565b6000600161297a8461153f565b6129849190613293565b6000838152600760205260409020549091508082146129d7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612a1c90600190613293565b60008381526009602052604081205460088054939450909284908110612a4457612a44613104565b906000526020600020015490508060088381548110612a6557612a65613104565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612a9d57612a9d613317565b6001900381819060005260206000200160009055905550505050565b6000612ac48361153f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612b535760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109f9565b6000818152600260205260409020546001600160a01b031615612bb85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109f9565b612bc4600083836126c9565b6001600160a01b0382166000908152600360205260408120805460019290612bed908490613130565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612c64906130c9565b90600052602060002090601f016020900481019282612c865760008555612ccc565b82601f10612c9f57805160ff1916838001178555612ccc565b82800160010185558215612ccc579182015b82811115612ccc578251825591602001919060010190612cb1565b50612cd8929150612cdc565b5090565b5b80821115612cd85760008155600101612cdd565b6001600160e01b03198116811461176357600080fd5b600060208284031215612d1957600080fd5b8135611db781612cf1565b60005b83811015612d3f578181015183820152602001612d27565b838111156114ab5750506000910152565b60008151808452612d68816020860160208601612d24565b601f01601f19169290920160200192915050565b602081526000611db76020830184612d50565b600060208284031215612da157600080fd5b5035919050565b80356001600160a01b0381168114611cc057600080fd5b60008060408385031215612dd257600080fd5b612ddb83612da8565b946020939093013593505050565b80358015158114611cc057600080fd5b600060208284031215612e0b57600080fd5b611db782612de9565b600080600060608486031215612e2957600080fd5b612e3284612da8565b9250612e4060208501612da8565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612e8157612e81612e50565b604051601f8501601f19908116603f01168101908282118183101715612ea957612ea9612e50565b81604052809350858152868686011115612ec257600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612eee57600080fd5b813567ffffffffffffffff811115612f0557600080fd5b8201601f81018413612f1657600080fd5b6120c284823560208401612e66565b803560ff81168114611cc057600080fd5b600060208284031215612f4857600080fd5b611db782612f25565b600060208284031215612f6357600080fd5b611db782612da8565b600080600060408486031215612f8157600080fd5b833567ffffffffffffffff80821115612f9957600080fd5b818601915086601f830112612fad57600080fd5b813581811115612fbc57600080fd5b8760208260051b8501011115612fd157600080fd5b602092830195509350612fe79186019050612f25565b90509250925092565b6000806040838503121561300357600080fd5b61300c83612da8565b915061301a60208401612de9565b90509250929050565b6000806000806080858703121561303957600080fd5b61304285612da8565b935061305060208601612da8565b925060408501359150606085013567ffffffffffffffff81111561307357600080fd5b8501601f8101871361308457600080fd5b61309387823560208401612e66565b91505092959194509250565b600080604083850312156130b257600080fd5b6130bb83612da8565b915061301a60208401612da8565b600181811c908216806130dd57607f821691505b602082108114156130fe57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156131435761314361311a565b500190565b60008160001904831182151516156131625761316261311a565b500290565b600060ff821660ff8416808210156131815761318161311a565b90039392505050565b600060001982141561319e5761319e61311a565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826131ca576131ca6131a5565b500490565b6000845160206131e28285838a01612d24565b8551918401916131f58184848a01612d24565b8554920191600090600181811c908083168061321257607f831692505b85831081141561323057634e487b7160e01b85526022600452602485fd5b808015613244576001811461325557613282565b60ff19851688528388019550613282565b60008b81526020902060005b8581101561327a5781548a820152908401908801613261565b505083880195505b50939b9a5050505050505050505050565b6000828210156132a5576132a561311a565b500390565b6000826132b9576132b96131a5565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526132f06080830184612d50565b9695505050505050565b60006020828403121561330c57600080fd5b8151611db781612cf1565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220a47c9b31bf0cb7676ec4874f2ca74758fd655899b14ac602b5ad0d5a3bcb078d64736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f6d657461646174612e6e696674796170656e6174696f6e2e636f6d2f6e616e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004268747470733a2f2f6d657461646174612e6e696674796170656e6174696f6e2e636f6d2f6e616e2f636f6e74726163742f6e616e5f636f6e74726163742e6a736f6e000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103085760003560e01c8063715018a61161019a578063bc391037116100e1578063e2fe7cfa1161008a578063f2fde38b11610064578063f2fde38b14610852578063f96bc07614610872578063ffaa61c31461088757600080fd5b8063e2fe7cfa146107de578063e8a3d485146107f4578063e985e9c51461080957600080fd5b8063c6682862116100bb578063c668286214610793578063c87b56dd146107a8578063d5abeb01146107c857600080fd5b8063bc3910371461073e578063c0e727401461075e578063c56a9a0d1461077357600080fd5b8063938e3d7b116101435780639d69ffe41161011d5780639d69ffe4146106de578063a22cb465146106fe578063b88d4fde1461071e57600080fd5b8063938e3d7b1461068957806395d89b41146106a957806397495d71146106be57600080fd5b8063853828b611610174578063853828b6146106375780638da5cb5b1461064c5780639070a3801461066a57600080fd5b8063715018a6146105e55780637211e920146105fa5780637bc6f5fb1461062157600080fd5b806323b872dd1161025e57806355f804b31161020757806367dce1ed116101e157806367dce1ed1461059d5780636c0360eb146105b057806370a08231146105c557600080fd5b806355f804b3146105435780635c975abb146105635780636352211e1461057d57600080fd5b806342842e0e1161023857806342842e0e146104e357806345583260146105035780634f6ccce71461052357600080fd5b806323b872dd1461048d57806326a74d8e146104ad5780632f745c59146104c357600080fd5b8063095ea7b3116102c057806317083a631161029a57806317083a631461044257806318160ddd14610462578063239c70ae1461047757600080fd5b8063095ea7b3146103e25780630c4d12881461040257806316c38b3c1461042257600080fd5b806306fdde03116102f157806306fdde0314610366578063081812fc14610388578063088a4ed0146103c057600080fd5b80630174e1d41461030d57806301ffc9a714610336575b600080fd5b34801561031957600080fd5b5061032360165481565b6040519081526020015b60405180910390f35b34801561034257600080fd5b50610356610351366004612d07565b61089d565b604051901515815260200161032d565b34801561037257600080fd5b5061037b6108e1565b60405161032d9190612d7c565b34801561039457600080fd5b506103a86103a3366004612d8f565b610973565b6040516001600160a01b03909116815260200161032d565b3480156103cc57600080fd5b506103e06103db366004612d8f565b610a1e565b005b3480156103ee57600080fd5b506103e06103fd366004612dbf565b610a7d565b34801561040e57600080fd5b506103e061041d366004612d8f565b610baf565b34801561042e57600080fd5b506103e061043d366004612df9565b610c6c565b34801561044e57600080fd5b506103e061045d366004612df9565b610cd9565b34801561046e57600080fd5b50600854610323565b34801561048357600080fd5b5061032360155481565b34801561049957600080fd5b506103e06104a8366004612e14565b610d4d565b3480156104b957600080fd5b5061032360115481565b3480156104cf57600080fd5b506103236104de366004612dbf565b610dd4565b3480156104ef57600080fd5b506103e06104fe366004612e14565b610e7c565b34801561050f57600080fd5b506103e061051e366004612d8f565b610e97565b34801561052f57600080fd5b5061032361053e366004612d8f565b610ef6565b34801561054f57600080fd5b506103e061055e366004612edc565b610f9a565b34801561056f57600080fd5b506017546103569060ff1681565b34801561058957600080fd5b506103a8610598366004612d8f565b61100b565b6103e06105ab366004612f36565b611096565b3480156105bc57600080fd5b5061037b6114b1565b3480156105d157600080fd5b506103236105e0366004612f51565b61153f565b3480156105f157600080fd5b506103e06115d9565b34801561060657600080fd5b5061060f600281565b60405160ff909116815260200161032d565b34801561062d57600080fd5b5061032360125481565b34801561064357600080fd5b506103e061163f565b34801561065857600080fd5b50600a546001600160a01b03166103a8565b34801561067657600080fd5b5060175461035690610100900460ff1681565b34801561069557600080fd5b506103e06106a4366004612edc565b611766565b3480156106b557600080fd5b5061037b6117d3565b3480156106ca57600080fd5b506103e06106d9366004612f6c565b6117e2565b3480156106ea57600080fd5b506103e06106f9366004612d8f565b6118b0565b34801561070a57600080fd5b506103e0610719366004612ff0565b61190f565b34801561072a57600080fd5b506103e0610739366004613023565b6119d4565b34801561074a57600080fd5b506103e0610759366004612f36565b611a5c565b34801561076a57600080fd5b5061037b611c79565b34801561077f57600080fd5b5061032361078e366004612f36565b611c86565b34801561079f57600080fd5b5061037b611cc5565b3480156107b457600080fd5b5061037b6107c3366004612d8f565b611cd2565b3480156107d457600080fd5b5061032360105481565b3480156107ea57600080fd5b5061032360135481565b34801561080057600080fd5b5061037b611dbe565b34801561081557600080fd5b5061035661082436600461309f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561085e57600080fd5b506103e061086d366004612f51565b611dcd565b34801561087e57600080fd5b5061060f600181565b34801561089357600080fd5b5061032360145481565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806108db57506108db82611eac565b92915050565b6060600080546108f0906130c9565b80601f016020809104026020016040519081016040528092919081815260200182805461091c906130c9565b80156109695780601f1061093e57610100808354040283529160200191610969565b820191906000526020600020905b81548152906001019060200180831161094c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a025760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b03163314610a785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b601555565b6000610a888261100b565b9050806001600160a01b0316836001600160a01b03161415610b125760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016109f9565b336001600160a01b0382161480610b2e5750610b2e8133610824565b610ba05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109f9565b610baa8383611f47565b505050565b600a546001600160a01b03163314610c095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b60018110158015610c1b575060098111155b610c675760405162461bcd60e51b815260206004820152601b60248201527f44726f702070686173652063616e6e6f742065786365656420392e000000000060448201526064016109f9565b601455565b600a546001600160a01b03163314610cc65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b6017805460ff1916911515919091179055565b600a546001600160a01b03163314610d335760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b601780549115156101000261ff0019909216919091179055565b610d573382611fc2565b610dc95760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109f9565b610baa8383836120ca565b6000610ddf8361153f565b8210610e535760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016109f9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610baa838383604051806020016040528060008152506119d4565b600a546001600160a01b03163314610ef15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b601655565b6000610f0160085490565b8210610f755760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016109f9565b60088281548110610f8857610f88613104565b90600052602060002001549050919050565b600a546001600160a01b03163314610ff45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b805161100790600d906020840190612c58565b5050565b6000818152600260205260408120546001600160a01b0316806108db5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016109f9565b6017548190610100900460ff16156111b9573360009081526018602052604090205460ff1661112d5760405162461bcd60e51b815260206004820152602f60248201527f41646472657373206973206e6f742077686974656c6973746564206f72206e6f60448201527f7420656e6f7567682071756f746121000000000000000000000000000000000060648201526084016109f9565b3360009081526018602052604090205460ff90811690821611156111b95760405162461bcd60e51b815260206004820152602260248201527f4578636565646564206d617820617661696c61626c6520746f2070757263686160448201527f736500000000000000000000000000000000000000000000000000000000000060648201526084016109f9565b601754829060ff161561120e5760405162461bcd60e51b815260206004820152601360248201527f53616c6573206973206e6f74206163746976650000000000000000000000000060448201526064016109f9565b6011548160ff1661121f6001611c86565b6112299190613130565b111561129d5760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d6178207075626c696360448201527f20746f6b656e732100000000000000000000000000000000000000000000000060648201526084016109f9565b6013546014546112ad9190613148565b8160ff166112bb6001611c86565b6112c59190613130565b11156113395760405162461bcd60e51b815260206004820152602d60248201527f507572636861736520776f756c642065786365656420746869732044726f702760448201527f73206d617820616d6f756e74210000000000000000000000000000000000000060648201526084016109f9565b60008160ff1611801561135157506015548160ff1611155b6113c35760405162461bcd60e51b815260206004820152603460248201527f496e76616c696420616d6f756e74206f72206d6178696d756d20746f6b656e2060448201527f6d696e7420616d6f756e7420726561636865642100000000000000000000000060648201526084016109f9565b348160ff166016546113d59190613148565b11156114235760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742160448201526064016109f9565b601754610100900460ff161561146e57336000908152601860205260408120805485929061145590849060ff16613167565b92506101000a81548160ff021916908360ff1602179055505b60005b8360ff168110156114ab5761148660016122af565b611499336114946001611c86565b6123e3565b806114a38161318a565b915050611471565b50505050565b600d80546114be906130c9565b80601f01602080910402602001604051908101604052809291908181526020018280546114ea906130c9565b80156115375780601f1061150c57610100808354040283529160200191611537565b820191906000526020600020905b81548152906001019060200180831161151a57829003601f168201915b505050505081565b60006001600160a01b0382166115bd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016109f9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116335760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b61163d60006123fd565b565b600a546001600160a01b031633146116995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b47806116e75760405162461bcd60e51b815260206004820152601360248201527f696e73756666696369656e742066756e6473210000000000000000000000000060448201526064016109f9565b601954611713906001600160a01b03166064611704846023613148565b61170e91906131bb565b61245c565b601a54611730906001600160a01b03166064611704846014613148565b601b5461174d906001600160a01b0316606461170484601e613148565b601c54611763906001600160a01b03164761245c565b50565b600a546001600160a01b031633146117c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b805161100790600e906020840190612c58565b6060600180546108f0906130c9565b600a546001600160a01b0316331461183c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b60005b828110156114ab57816018600086868581811061185e5761185e613104565b90506020020160208101906118739190612f51565b6001600160a01b031681526020810191909152604001600020805460ff191660ff92909216919091179055806118a88161318a565b91505061183f565b600a546001600160a01b0316331461190a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b601355565b6001600160a01b0382163314156119685760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109f9565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6119de3383611fc2565b611a505760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109f9565b6114ab848484846124ff565b600a546001600160a01b03163314611ab65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b601754819060ff1615611b0b5760405162461bcd60e51b815260206004820152601760248201527f436f6e7472616374206973206e6f74206163746976652100000000000000000060448201526064016109f9565b60008160ff1611611b5e5760405162461bcd60e51b815260206004820152601560248201527f496e76616c696420746f6b656e20616d6f756e7421000000000000000000000060448201526064016109f9565b6010546008541115611bb25760405162461bcd60e51b815260206004820152601360248201527f4d617820737570706c792072656163686564210000000000000000000000000060448201526064016109f9565b6010548160ff16611bc36002611c86565b611bcd9190613130565b1115611c415760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f210000000000000000000000000000000000000000000000000000000000000060648201526084016109f9565b60005b8260ff16811015610baa57611c5960026122af565b611c67336114946002611c86565b80611c718161318a565b915050611c44565b600e80546114be906130c9565b600060ff821660011415611c9c57600b546108db565b60ff821660021415611cb857601254600c546108db9190613130565b506000919050565b919050565b600f80546114be906130c9565b6000818152600260205260409020546060906001600160a01b0316611d5f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016109f9565b6000611d69612588565b90506000815111611d895760405180602001604052806000815250611db7565b80611d9384612597565b600f604051602001611da7939291906131cf565b6040516020818303038152906040525b9392505050565b6060600e80546108f0906130c9565b600a546001600160a01b03163314611e275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f9565b6001600160a01b038116611ea35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109f9565b611763816123fd565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611f0f57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108db57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146108db565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190611f898261100b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661204c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016109f9565b60006120578361100b565b9050806001600160a01b0316846001600160a01b031614806120925750836001600160a01b031661208784610973565b6001600160a01b0316145b806120c257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166120dd8261100b565b6001600160a01b0316146121595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016109f9565b6001600160a01b0382166121d45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109f9565b6121df8383836126c9565b6121ea600082611f47565b6001600160a01b0383166000908152600360205260408120805460019290612213908490613293565b90915550506001600160a01b0382166000908152600360205260408120805460019290612241908490613130565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60ff811660011415612349576011546122c86001611c86565b1061233b5760405162461bcd60e51b815260206004820152602c60248201527f636f756e7465722063616e206e6f742065786365656420746865206d6178207060448201527f75626c696320737570706c79000000000000000000000000000000000000000060648201526084016109f9565b611763600b80546001019055565b60ff811660021415611763576010546123626002611c86565b106123d55760405162461bcd60e51b815260206004820152602560248201527f636f756e7465722063616e206e6f742065786365656420746865206d6178207360448201527f7570706c7900000000000000000000000000000000000000000000000000000060648201526084016109f9565b611763600c80546001019055565b611007828260405180602001604052806000815250612781565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146124a9576040519150601f19603f3d011682016040523d82523d6000602084013e6124ae565b606091505b5050905080610baa5760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016109f9565b61250a8484846120ca565b6125168484848461280a565b6114ab5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109f9565b6060600d80546108f0906130c9565b6060816125d757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561260157806125eb8161318a565b91506125fa9050600a836131bb565b91506125db565b60008167ffffffffffffffff81111561261c5761261c612e50565b6040519080825280601f01601f191660200182016040528015612646576020820181803683370190505b5090505b84156120c25761265b600183613293565b9150612668600a866132aa565b612673906030613130565b60f81b81838151811061268857612688613104565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506126c2600a866131bb565b945061264a565b6001600160a01b0383166127245761271f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612747565b816001600160a01b0316836001600160a01b03161461274757612747838261296d565b6001600160a01b03821661275e57610baa81612a0a565b826001600160a01b0316826001600160a01b031614610baa57610baa8282612ab9565b61278b8383612afd565b612798600084848461280a565b610baa5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109f9565b60006001600160a01b0384163b1561296257604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061284e9033908990889088906004016132be565b602060405180830381600087803b15801561286857600080fd5b505af1925050508015612898575060408051601f3d908101601f19168201909252612895918101906132fa565b60015b612948573d8080156128c6576040519150601f19603f3d011682016040523d82523d6000602084013e6128cb565b606091505b5080516129405760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109f9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120c2565b506001949350505050565b6000600161297a8461153f565b6129849190613293565b6000838152600760205260409020549091508082146129d7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612a1c90600190613293565b60008381526009602052604081205460088054939450909284908110612a4457612a44613104565b906000526020600020015490508060088381548110612a6557612a65613104565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612a9d57612a9d613317565b6001900381819060005260206000200160009055905550505050565b6000612ac48361153f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612b535760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109f9565b6000818152600260205260409020546001600160a01b031615612bb85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109f9565b612bc4600083836126c9565b6001600160a01b0382166000908152600360205260408120805460019290612bed908490613130565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612c64906130c9565b90600052602060002090601f016020900481019282612c865760008555612ccc565b82601f10612c9f57805160ff1916838001178555612ccc565b82800160010185558215612ccc579182015b82811115612ccc578251825591602001919060010190612cb1565b50612cd8929150612cdc565b5090565b5b80821115612cd85760008155600101612cdd565b6001600160e01b03198116811461176357600080fd5b600060208284031215612d1957600080fd5b8135611db781612cf1565b60005b83811015612d3f578181015183820152602001612d27565b838111156114ab5750506000910152565b60008151808452612d68816020860160208601612d24565b601f01601f19169290920160200192915050565b602081526000611db76020830184612d50565b600060208284031215612da157600080fd5b5035919050565b80356001600160a01b0381168114611cc057600080fd5b60008060408385031215612dd257600080fd5b612ddb83612da8565b946020939093013593505050565b80358015158114611cc057600080fd5b600060208284031215612e0b57600080fd5b611db782612de9565b600080600060608486031215612e2957600080fd5b612e3284612da8565b9250612e4060208501612da8565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612e8157612e81612e50565b604051601f8501601f19908116603f01168101908282118183101715612ea957612ea9612e50565b81604052809350858152868686011115612ec257600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612eee57600080fd5b813567ffffffffffffffff811115612f0557600080fd5b8201601f81018413612f1657600080fd5b6120c284823560208401612e66565b803560ff81168114611cc057600080fd5b600060208284031215612f4857600080fd5b611db782612f25565b600060208284031215612f6357600080fd5b611db782612da8565b600080600060408486031215612f8157600080fd5b833567ffffffffffffffff80821115612f9957600080fd5b818601915086601f830112612fad57600080fd5b813581811115612fbc57600080fd5b8760208260051b8501011115612fd157600080fd5b602092830195509350612fe79186019050612f25565b90509250925092565b6000806040838503121561300357600080fd5b61300c83612da8565b915061301a60208401612de9565b90509250929050565b6000806000806080858703121561303957600080fd5b61304285612da8565b935061305060208601612da8565b925060408501359150606085013567ffffffffffffffff81111561307357600080fd5b8501601f8101871361308457600080fd5b61309387823560208401612e66565b91505092959194509250565b600080604083850312156130b257600080fd5b6130bb83612da8565b915061301a60208401612da8565b600181811c908216806130dd57607f821691505b602082108114156130fe57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156131435761314361311a565b500190565b60008160001904831182151516156131625761316261311a565b500290565b600060ff821660ff8416808210156131815761318161311a565b90039392505050565b600060001982141561319e5761319e61311a565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826131ca576131ca6131a5565b500490565b6000845160206131e28285838a01612d24565b8551918401916131f58184848a01612d24565b8554920191600090600181811c908083168061321257607f831692505b85831081141561323057634e487b7160e01b85526022600452602485fd5b808015613244576001811461325557613282565b60ff19851688528388019550613282565b60008b81526020902060005b8581101561327a5781548a820152908401908801613261565b505083880195505b50939b9a5050505050505050505050565b6000828210156132a5576132a561311a565b500390565b6000826132b9576132b96131a5565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526132f06080830184612d50565b9695505050505050565b60006020828403121561330c57600080fd5b8151611db781612cf1565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220a47c9b31bf0cb7676ec4874f2ca74758fd655899b14ac602b5ad0d5a3bcb078d64736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f6d657461646174612e6e696674796170656e6174696f6e2e636f6d2f6e616e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004268747470733a2f2f6d657461646174612e6e696674796170656e6174696f6e2e636f6d2f6e616e2f636f6e74726163742f6e616e5f636f6e74726163742e6a736f6e000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://metadata.niftyapenation.com/nan/
Arg [1] : _initContractURI (string): https://metadata.niftyapenation.com/nan/contract/nan_contract.json

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [3] : 68747470733a2f2f6d657461646174612e6e696674796170656e6174696f6e2e
Arg [4] : 636f6d2f6e616e2f000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [6] : 68747470733a2f2f6d657461646174612e6e696674796170656e6174696f6e2e
Arg [7] : 636f6d2f6e616e2f636f6e74726163742f6e616e5f636f6e74726163742e6a73
Arg [8] : 6f6e000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46393:7714:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47237:49;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;47237:49:0;;;;;;;;38408:224;;;;;;;;;;-1:-1:-1;38408:224:0;;;;;:::i;:::-;;:::i;:::-;;;793:14:1;;786:22;768:41;;756:2;741:18;38408:224:0;628:187:1;26300:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27859:221::-;;;;;;;;;;-1:-1:-1;27859:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1920:55:1;;;1902:74;;1890:2;1875:18;27859:221:0;1756:226:1;51587:114:0;;;;;;;;;;-1:-1:-1;51587:114:0;;;;;:::i;:::-;;:::i;:::-;;27382:411;;;;;;;;;;-1:-1:-1;27382:411:0;;;;;:::i;:::-;;:::i;51339:213::-;;;;;;;;;;-1:-1:-1;51339:213:0;;;;;:::i;:::-;;:::i;51880:87::-;;;;;;;;;;-1:-1:-1;51880:87:0;;;;;:::i;:::-;;:::i;52005:107::-;;;;;;;;;;-1:-1:-1;52005:107:0;;;;;:::i;:::-;;:::i;39048:113::-;;;;;;;;;;-1:-1:-1;39136:10:0;:17;39048:113;;47198:32;;;;;;;;;;;;;;;;28749:339;;;;;;;;;;-1:-1:-1;28749:339:0;;;;;:::i;:::-;;:::i;46878:37::-;;;;;;;;;;;;;;;;38716:256;;;;;;;;;;-1:-1:-1;38716:256:0;;;;;:::i;:::-;;:::i;29159:185::-;;;;;;;;;;-1:-1:-1;29159:185:0;;;;;:::i;:::-;;:::i;51739:116::-;;;;;;;;;;-1:-1:-1;51739:116:0;;;;;:::i;:::-;;:::i;39238:233::-;;;;;;;;;;-1:-1:-1;39238:233:0;;;;;:::i;:::-;;:::i;51032:88::-;;;;;;;;;;-1:-1:-1;51032:88:0;;;;;:::i;:::-;;:::i;47299:25::-;;;;;;;;;;-1:-1:-1;47299:25:0;;;;;;;;25994:239;;;;;;;;;;-1:-1:-1;25994:239:0;;;;;:::i;:::-;;:::i;50157:458::-;;;;;;:::i;:::-;;:::i;46735:21::-;;;;;;;;;;;;;:::i;25724:208::-;;;;;;;;;;-1:-1:-1;25724:208:0;;;;;:::i;:::-;;:::i;5999:94::-;;;;;;;;;;;;;:::i;46684:38::-;;;;;;;;;;;;46721:1;46684:38;;;;;5123:4:1;5111:17;;;5093:36;;5081:2;5066:18;46684:38:0;4951:184:1;46955:45:0;;;;;;;;;;;;;;;;53548:369;;;;;;;;;;;;;:::i;5348:87::-;;;;;;;;;;-1:-1:-1;5421:6:0;;-1:-1:-1;;;;;5421:6:0;5348:87;;47331:36;;;;;;;;;;-1:-1:-1;47331:36:0;;;;;;;;;;;49924:96;;;;;;;;;;-1:-1:-1;49924:96:0;;;;;:::i;:::-;;:::i;26469:104::-;;;;;;;;;;;;;:::i;52151:230::-;;;;;;;;;;-1:-1:-1;52151:230:0;;;;;:::i;:::-;;:::i;51167:120::-;;;;;;;;;;-1:-1:-1;51167:120:0;;;;;:::i;:::-;;:::i;28152:295::-;;;;;;;;;;-1:-1:-1;28152:295:0;;;;;:::i;:::-;;:::i;29415:328::-;;;;;;;;;;-1:-1:-1;29415:328:0;;;;;:::i;:::-;;:::i;50681:300::-;;;;;;;;;;-1:-1:-1;50681:300:0;;;;;:::i;:::-;;:::i;46763:26::-;;;;;;;;;;;;;:::i;52469:401::-;;;;;;;;;;-1:-1:-1;52469:401:0;;;;;:::i;:::-;;:::i;46796:37::-;;;;;;;;;;;;;:::i;49550:368::-;;;;;;;;;;-1:-1:-1;49550:368:0;;;;;:::i;:::-;;:::i;46840:31::-;;;;;;;;;;;;;;;;47053:39;;;;;;;;;;;;;;;;50025:88;;;;;;;;;;;;;:::i;28518:164::-;;;;;;;;;;-1:-1:-1;28518:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28639:25:0;;;28615:4;28639:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28518:164;6248:192;;;;;;;;;;-1:-1:-1;6248:192:0;;;;;:::i;:::-;;:::i;46640:37::-;;;;;;;;;;;;46676:1;46640:37;;47128:38;;;;;;;;;;;;;;;;38408:224;38510:4;-1:-1:-1;;;;;;38534:50:0;;38549:35;38534:50;;:90;;;38588:36;38612:11;38588:23;:36::i;:::-;38527:97;38408:224;-1:-1:-1;;38408:224:0:o;26300:100::-;26354:13;26387:5;26380:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26300:100;:::o;27859:221::-;27935:7;31342:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31342:16:0;27955:73;;;;-1:-1:-1;;;27955:73:0;;7676:2:1;27955:73:0;;;7658:21:1;7715:2;7695:18;;;7688:30;7754:34;7734:18;;;7727:62;7825:14;7805:18;;;7798:42;7857:19;;27955:73:0;;;;;;;;;-1:-1:-1;28048:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28048:24:0;;27859:221::o;51587:114::-;5421:6;;-1:-1:-1;;;;;5421:6:0;4216:10;5568:23;5560:68;;;;-1:-1:-1;;;5560:68:0;;8089:2:1;5560:68:0;;;8071:21:1;;;8108:18;;;8101:30;8167:34;8147:18;;;8140:62;8219:18;;5560:68:0;7887:356:1;5560:68:0;51664:13:::1;:29:::0;51587:114::o;27382:411::-;27463:13;27479:23;27494:7;27479:14;:23::i;:::-;27463:39;;27527:5;-1:-1:-1;;;;;27521:11:0;:2;-1:-1:-1;;;;;27521:11:0;;;27513:57;;;;-1:-1:-1;;;27513:57:0;;8450:2:1;27513:57:0;;;8432:21:1;8489:2;8469:18;;;8462:30;8528:34;8508:18;;;8501:62;8599:3;8579:18;;;8572:31;8620:19;;27513:57:0;8248:397:1;27513:57:0;4216:10;-1:-1:-1;;;;;27605:21:0;;;;:62;;-1:-1:-1;27630:37:0;27647:5;4216:10;28518:164;:::i;27630:37::-;27583:168;;;;-1:-1:-1;;;27583:168:0;;8852:2:1;27583:168:0;;;8834:21:1;8891:2;8871:18;;;8864:30;8930:34;8910:18;;;8903:62;9001:26;8981:18;;;8974:54;9045:19;;27583:168:0;8650:420:1;27583:168:0;27764:21;27773:2;27777:7;27764:8;:21::i;:::-;27452:341;27382:411;;:::o;51339:213::-;5421:6;;-1:-1:-1;;;;;5421:6:0;4216:10;5568:23;5560:68;;;;-1:-1:-1;;;5560:68:0;;8089:2:1;5560:68:0;;;8071:21:1;;;8108:18;;;8101:30;8167:34;8147:18;;;8140:62;8219:18;;5560:68:0;7887:356:1;5560:68:0;51445:1:::1;51429:12;:17;;:38;;;;;51466:1;51450:12;:17;;51429:38;51421:78;;;::::0;-1:-1:-1;;;51421:78:0;;9277:2:1;51421:78:0::1;::::0;::::1;9259:21:1::0;9316:2;9296:18;;;9289:30;9355:29;9335:18;;;9328:57;9402:18;;51421:78:0::1;9075:351:1::0;51421:78:0::1;51510:19;:34:::0;51339:213::o;51880:87::-;5421:6;;-1:-1:-1;;;;;5421:6:0;4216:10;5568:23;5560:68;;;;-1:-1:-1;;;5560:68:0;;8089:2:1;5560:68:0;;;8071:21:1;;;8108:18;;;8101:30;8167:34;8147:18;;;8140:62;8219:18;;5560:68:0;7887:356:1;5560:68:0;51942:6:::1;:17:::0;;-1:-1:-1;;51942:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51880:87::o;52005:107::-;5421:6;;-1:-1:-1;;;;;5421:6:0;4216:10;5568:23;5560:68;;;;-1:-1:-1;;;5560:68:0;;8089:2:1;5560:68:0;;;8071:21:1;;;8108:18;;;8101:30;8167:34;8147:18;;;8140:62;8219:18;;5560:68:0;7887:356:1;5560:68:0;52077:16:::1;:27:::0;;;::::1;;;;-1:-1:-1::0;;52077:27:0;;::::1;::::0;;;::::1;::::0;;52005:107::o;28749:339::-;28944:41;4216:10;28977:7;28944:18;:41::i;:::-;28936:103;;;;-1:-1:-1;;;28936:103:0;;9633:2:1;28936:103:0;;;9615:21:1;9672:2;9652:18;;;9645:30;9711:34;9691:18;;;9684:62;9782:19;9762:18;;;9755:47;9819:19;;28936:103:0;9431:413:1;28936:103:0;29052:28;29062:4;29068:2;29072:7;29052:9;:28::i;38716:256::-;38813:7;38849:23;38866:5;38849:16;:23::i;:::-;38841:5;:31;38833:87;;;;-1:-1:-1;;;38833:87:0;;10051:2:1;38833:87:0;;;10033:21:1;10090:2;10070:18;;;10063:30;10129:34;10109:18;;;10102:62;10200:13;10180:18;;;10173:41;10231:19;;38833:87:0;9849:407:1;38833:87:0;-1:-1:-1;;;;;;38938:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38716:256::o;29159:185::-;29297:39;29314:4;29320:2;29324:7;29297:39;;;;;;;;;;;;:16;:39::i;51739:116::-;5421:6;;-1:-1:-1;;;;;5421:6:0;4216:10;5568:23;5560:68;;;;-1:-1:-1;;;5560:68:0;;8089:2:1;5560:68:0;;;8071:21:1;;;8108:18;;;8101:30;8167:34;8147:18;;;8140:62;8219:18;;5560:68:0;7887:356:1;5560:68:0;51817:19:::1;:30:::0;51739:116::o;39238:233::-;39313:7;39349:30;39136:10;:17;;39048:113;39349:30;39341:5;:38;39333:95;;;;-1:-1:-1;;;39333:95:0;;10463:2:1;39333:95:0;;;10445:21:1;10502:2;10482:18;;;10475:30;10541:34;10521:18;;;10514:62;10612:14;10592:18;;;10585:42;10644:19;;39333:95:0;10261:408:1;39333:95:0;39446:10;39457:5;39446:17;;;;;;;;:::i;:::-;;;;;;;;;39439:24;;39238:233;;;:::o;51032:88::-;5421:6;;-1:-1:-1;;;;;5421:6:0;4216:10;5568:23;5560:68;;;;-1:-1:-1;;;5560:68:0;;8089:2:1;5560:68:0;;;8071:21:1;;;8108:18;;;8101:30;8167:34;8147:18;;;8140:62;8219:18;;5560:68:0;7887:356:1;5560:68:0;51099:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51032:88:::0;:::o;25994:239::-;26066:7;26102:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26102:16:0;26137:19;26129:73;;;;-1:-1:-1;;;26129:73:0;;11065:2:1;26129:73:0;;;11047:21:1;11104:2;11084:18;;;11077:30;11143:34;11123:18;;;11116:62;11214:11;11194:18;;;11187:39;11243:19;;26129:73:0;10863:405:1;50157:458:0;48700:16;;50229:14;;48700:16;;;;;48697:235;;;48751:10;48765:1;48740:22;;;:10;:22;;;;;;;;48732:86;;;;-1:-1:-1;;;48732:86:0;;11475:2:1;48732:86:0;;;11457:21:1;11514:2;11494:18;;;11487:30;11553:34;11533:18;;;11526:62;11624:17;11604:18;;;11597:45;11659:19;;48732:86:0;11273:411:1;48732:86:0;48870:10;48859:22;;;;:10;:22;;;;;;;;;;48841:40;;;;;48833:87;;;;-1:-1:-1;;;48833:87:0;;11891:2:1;48833:87:0;;;11873:21:1;11930:2;11910:18;;;11903:30;11969:34;11949:18;;;11942:62;12040:4;12020:18;;;12013:32;12062:19;;48833:87:0;11689:398:1;48833:87:0;48027:6:::1;::::0;50261:14;;48027:6:::1;;48026:7;48018:39;;;::::0;-1:-1:-1;;;48018:39:0;;12294:2:1;48018:39:0::1;::::0;::::1;12276:21:1::0;12333:2;12313:18;;;12306:30;12372:21;12352:18;;;12345:49;12411:18;;48018:39:0::1;12092:343:1::0;48018:39:0::1;48132:15;;48114:14;48076:52;;:35;46676:1;48076:22;:35::i;:::-;:52;;;;:::i;:::-;:71;;48068:124;;;::::0;-1:-1:-1;;;48068:124:0;;12964:2:1;48068:124:0::1;::::0;::::1;12946:21:1::0;13003:2;12983:18;;;12976:30;13042:34;13022:18;;;13015:62;13113:10;13093:18;;;13086:38;13141:19;;48068:124:0::1;12762:404:1::0;48068:124:0::1;48289:18;;48267:19;;:40;;;;:::i;:::-;48249:14;48211:52;;:35;46676:1;48211:22;:35::i;:::-;:52;;;;:::i;:::-;:96;;48203:154;;;::::0;-1:-1:-1;;;48203:154:0;;13546:2:1;48203:154:0::1;::::0;::::1;13528:21:1::0;13585:2;13565:18;;;13558:30;13624:34;13604:18;;;13597:62;13695:15;13675:18;;;13668:43;13728:19;;48203:154:0::1;13344:409:1::0;48203:154:0::1;48393:1;48376:14;:18;;;:53;;;;;48416:13;;48398:14;:31;;;;48376:53;48368:118;;;::::0;-1:-1:-1;;;48368:118:0;;13960:2:1;48368:118:0::1;::::0;::::1;13942:21:1::0;13999:2;13979:18;;;13972:30;14038:34;14018:18;;;14011:62;14109:22;14089:18;;;14082:50;14149:19;;48368:118:0::1;13758:416:1::0;48368:118:0::1;48563:9;48545:14;48523:36;;:19;;:36;;;;:::i;:::-;:49;;48515:94;;;::::0;-1:-1:-1;;;48515:94:0;;14381:2:1;48515:94:0::1;::::0;::::1;14363:21:1::0;;;14400:18;;;14393:30;14459:34;14439:18;;;14432:62;14511:18;;48515:94:0::1;14179:356:1::0;48515:94:0::1;50319:16:::2;::::0;::::2;::::0;::::2;;;50316:94;;;50362:10;50351:22;::::0;;;:10:::2;:22;::::0;;;;:40;;50377:14;;50351:22;:40:::2;::::0;50377:14;;50351:40:::2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50316:94;50427:9;50422:186;50446:14;50442:18;;:1;:18;50422:186;;;50482:41;46676:1;50482:28;:41::i;:::-;50538:58;50548:10;50560:35;46676:1;50560:22;:35::i;:::-;50538:9;:58::i;:::-;50462:3:::0;::::2;::::0;::::2;:::i;:::-;;;;50422:186;;;;48942:1:::1;50157:458:::0;;:::o;46735:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25724:208::-;25796:7;-1:-1:-1;;;;;25824:19:0;;25816:74;;;;-1:-1:-1;;;25816:74:0;;15082:2:1;25816:74:0;;;15064:21:1;15121:2;15101:18;;;15094:30;15160:34;15140:18;;;15133:62;15231:12;15211:18;;;15204:40;15261:19;;25816:74:0;14880:406:1;25816:74:0;-1:-1:-1;;;;;;25908:16:0;;;;;:9;:16;;;;;;;25724:208::o;5999:94::-;5421:6;;-1:-1:-1;;;;;5421:6:0;4216:10;5568:23;5560:68;;;;-1:-1:-1;;;5560:68:0;;8089:2:1;5560:68:0;;;8071:21:1;;;8108:18;;;8101:30;8167:34;8147:18;;;8140:62;8219:18;;5560:68:0;7887:356:1;5560:68:0;6064:21:::1;6082:1;6064:9;:21::i;:::-;5999:94::o:0;53548:369::-;5421:6;;-1:-1:-1;;;;;5421:6:0;4216:10;5568:23;5560:68;;;;-1:-1:-1;;;5560:68:0;;8089:2:1;5560:68:0;;;8071:21:1;;;8108:18;;;8101:30;8167:34;8147:18;;;8140:62;8219:18;;5560:68:0;7887:356:1;5560:68:0;53617:21:::1;53657:11:::0;53649:43:::1;;;::::0;-1:-1:-1;;;53649:43:0;;15493:2:1;53649:43:0::1;::::0;::::1;15475:21:1::0;15532:2;15512:18;;;15505:30;15571:21;15551:18;;;15544:49;15610:18;;53649:43:0::1;15291:343:1::0;53649:43:0::1;53714:9;::::0;53703:41:::1;::::0;-1:-1:-1;;;;;53714:9:0::1;53740:3;53725:12;:7:::0;53735:2:::1;53725:12;:::i;:::-;:18;;;;:::i;:::-;53703:10;:41::i;:::-;53774:8;::::0;53763:40:::1;::::0;-1:-1:-1;;;;;53774:8:0::1;53799:3;53784:12;:7:::0;53794:2:::1;53784:12;:::i;53763:40::-;53825:9;::::0;53814:41:::1;::::0;-1:-1:-1;;;;;53825:9:0::1;53851:3;53836:12;:7:::0;53846:2:::1;53836:12;:::i;53814:41::-;53877:8;::::0;53866:43:::1;::::0;-1:-1:-1;;;;;53877:8:0::1;53887:21;53866:10;:43::i;:::-;53588:329;53548:369::o:0;49924:96::-;5421:6;;-1:-1:-1;;;;;5421:6:0;4216:10;5568:23;5560:68;;;;-1:-1:-1;;;5560:68:0;;8089:2:1;5560:68:0;;;8071:21:1;;;8108:18;;;8101:30;8167:34;8147:18;;;8140:62;8219:18;;5560:68:0;7887:356:1;5560:68:0;49994:21;;::::1;::::0;:12:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;26469:104::-:0;26525:13;26558:7;26551:14;;;;;:::i;52151:230::-;5421:6;;-1:-1:-1;;;;;5421:6:0;4216:10;5568:23;5560:68;;;;-1:-1:-1;;;5560:68:0;;8089:2:1;5560:68:0;;;8071:21:1;;;8108:18;;;8101:30;8167:34;8147:18;;;8140:62;8219:18;;5560:68:0;7887:356:1;5560:68:0;52261:9:::1;52256:118;52276:20:::0;;::::1;52256:118;;;52345:17;52318:10;:24;52329:9;;52339:1;52329:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;52318:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;52318:24:0;:44;;-1:-1:-1;;52318:44:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;52298:3;::::1;::::0;::::1;:::i;:::-;;;;52256:118;;51167:120:::0;5421:6;;-1:-1:-1;;;;;5421:6:0;4216:10;5568:23;5560:68;;;;-1:-1:-1;;;5560:68:0;;8089:2:1;5560:68:0;;;8071:21:1;;;8108:18;;;8101:30;8167:34;8147:18;;;8140:62;8219:18;;5560:68:0;7887:356:1;5560:68:0;51247:18:::1;:32:::0;51167:120::o;28152:295::-;-1:-1:-1;;;;;28255:24:0;;4216:10;28255:24;;28247:62;;;;-1:-1:-1;;;28247:62:0;;16155:2:1;28247:62:0;;;16137:21:1;16194:2;16174:18;;;16167:30;16233:27;16213:18;;;16206:55;16278:18;;28247:62:0;15953:349:1;28247:62:0;4216:10;28322:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28322:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28322:53:0;;;;;;;;;;28391:48;;768:41:1;;;28322:42:0;;4216:10;28391:48;;741:18:1;28391:48:0;;;;;;;28152:295;;:::o;29415:328::-;29590:41;4216:10;29623:7;29590:18;:41::i;:::-;29582:103;;;;-1:-1:-1;;;29582:103:0;;9633:2:1;29582:103:0;;;9615:21:1;9672:2;9652:18;;;9645:30;9711:34;9691:18;;;9684:62;9782:19;9762:18;;;9755:47;9819:19;;29582:103:0;9431:413:1;29582:103:0;29696:39;29710:4;29716:2;29720:7;29729:5;29696:13;:39::i;50681:300::-;5421:6;;-1:-1:-1;;;;;5421:6:0;4216:10;5568:23;5560:68;;;;-1:-1:-1;;;5560:68:0;;8089:2:1;5560:68:0;;;8071:21:1;;;8108:18;;;8101:30;8167:34;8147:18;;;8140:62;8219:18;;5560:68:0;7887:356:1;5560:68:0;49027:6:::1;::::0;50758:14;;49027:6:::1;;49026:7;49018:43;;;::::0;-1:-1:-1;;;49018:43:0;;16509:2:1;49018:43:0::1;::::0;::::1;16491:21:1::0;16548:2;16528:18;;;16521:30;16587:25;16567:18;;;16560:53;16630:18;;49018:43:0::1;16307:347:1::0;49018:43:0::1;49097:1;49080:14;:18;;;49072:52;;;::::0;-1:-1:-1;;;49072:52:0;;16861:2:1;49072:52:0::1;::::0;::::1;16843:21:1::0;16900:2;16880:18;;;16873:30;16939:23;16919:18;;;16912:51;16980:18;;49072:52:0::1;16659:345:1::0;49072:52:0::1;49160:9;::::0;39136:10;:17;49143:26:::1;;49135:58;;;::::0;-1:-1:-1;;;49135:58:0;;17211:2:1;49135:58:0::1;::::0;::::1;17193:21:1::0;17250:2;17230:18;;;17223:30;17289:21;17269:18;;;17262:49;17328:18;;49135:58:0::1;17009:343:1::0;49135:58:0::1;49269:9;;49251:14;49212:53;;:36;46721:1;49212:22;:36::i;:::-;:53;;;;:::i;:::-;:66;;49204:112;;;::::0;-1:-1:-1;;;49204:112:0;;17559:2:1;49204:112:0::1;::::0;::::1;17541:21:1::0;17598:2;17578:18;;;17571:30;17637:34;17617:18;;;17610:62;17708:3;17688:18;;;17681:31;17729:19;;49204:112:0::1;17357:397:1::0;49204:112:0::1;50791:9:::2;50786:188;50810:14;50806:18;;:1;:18;50786:188;;;50846:42;46721:1;50846:28;:42::i;:::-;50903:59;50913:10;50925:36;46721:1;50925:22;:36::i;50903:59::-;50826:3:::0;::::2;::::0;::::2;:::i;:::-;;;;50786:188;;46763:26:::0;;;;;;;:::i;52469:401::-;52538:7;52560:23;;;46676:1;52560:23;52557:306;;;52606:18;940:14;52606:28;848:114;52557:306;52654:24;;;46721:1;52654:24;52651:212;;;52733:23;;52701:19;940:14;52701:55;;;;:::i;52651:212::-;-1:-1:-1;52850:1:0;;52469:401;-1:-1:-1;52469:401:0:o;52651:212::-;52469:401;;;:::o;46796:37::-;;;;;;;:::i;49550:368::-;31318:4;31342:16;;;:7;:16;;;;;;49623:13;;-1:-1:-1;;;;;31342:16:0;49649:76;;;;-1:-1:-1;;;49649:76:0;;17961:2:1;49649:76:0;;;17943:21:1;18000:2;17980:18;;;17973:30;18039:34;18019:18;;;18012:62;18110:17;18090:18;;;18083:45;18145:19;;49649:76:0;17759:411:1;49649:76:0;49736:28;49767:10;:8;:10::i;:::-;49736:41;;49826:1;49801:14;49795:28;:32;:115;;;;;;;;;;;;;;;;;49854:14;49870:18;:7;:16;:18::i;:::-;49890:13;49837:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49795:115;49788:122;49550:368;-1:-1:-1;;;49550:368:0:o;50025:88::-;50069:13;50096:12;50089:19;;;;;:::i;6248:192::-;5421:6;;-1:-1:-1;;;;;5421:6:0;4216:10;5568:23;5560:68;;;;-1:-1:-1;;;5560:68:0;;8089:2:1;5560:68:0;;;8071:21:1;;;8108:18;;;8101:30;8167:34;8147:18;;;8140:62;8219:18;;5560:68:0;7887:356:1;5560:68:0;-1:-1:-1;;;;;6337:22:0;::::1;6329:73;;;::::0;-1:-1:-1;;;6329:73:0;;20092:2:1;6329:73:0::1;::::0;::::1;20074:21:1::0;20131:2;20111:18;;;20104:30;20170:34;20150:18;;;20143:62;20241:8;20221:18;;;20214:36;20267:19;;6329:73:0::1;19890:402:1::0;6329:73:0::1;6413:19;6423:8;6413:9;:19::i;25355:305::-:0;25457:4;-1:-1:-1;;;;;;25494:40:0;;25509:25;25494:40;;:105;;-1:-1:-1;;;;;;;25551:48:0;;25566:33;25551:48;25494:105;:158;;;-1:-1:-1;17458:25:0;-1:-1:-1;;;;;;17443:40:0;;;25616:36;17334:157;35235:174;35310:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;35310:29:0;-1:-1:-1;;;;;35310:29:0;;;;;;;;:24;;35364:23;35310:24;35364:14;:23::i;:::-;-1:-1:-1;;;;;35355:46:0;;;;;;;;;;;35235:174;;:::o;31547:348::-;31640:4;31342:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31342:16:0;31657:73;;;;-1:-1:-1;;;31657:73:0;;20499:2:1;31657:73:0;;;20481:21:1;20538:2;20518:18;;;20511:30;20577:34;20557:18;;;20550:62;20648:14;20628:18;;;20621:42;20680:19;;31657:73:0;20297:408:1;31657:73:0;31741:13;31757:23;31772:7;31757:14;:23::i;:::-;31741:39;;31810:5;-1:-1:-1;;;;;31799:16:0;:7;-1:-1:-1;;;;;31799:16:0;;:51;;;;31843:7;-1:-1:-1;;;;;31819:31:0;:20;31831:7;31819:11;:20::i;:::-;-1:-1:-1;;;;;31819:31:0;;31799:51;:87;;;-1:-1:-1;;;;;;28639:25:0;;;28615:4;28639:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31854:32;31791:96;31547:348;-1:-1:-1;;;;31547:348:0:o;34539:578::-;34698:4;-1:-1:-1;;;;;34671:31:0;:23;34686:7;34671:14;:23::i;:::-;-1:-1:-1;;;;;34671:31:0;;34663:85;;;;-1:-1:-1;;;34663:85:0;;20912:2:1;34663:85:0;;;20894:21:1;20951:2;20931:18;;;20924:30;20990:34;20970:18;;;20963:62;21061:11;21041:18;;;21034:39;21090:19;;34663:85:0;20710:405:1;34663:85:0;-1:-1:-1;;;;;34767:16:0;;34759:65;;;;-1:-1:-1;;;34759:65:0;;21322:2:1;34759:65:0;;;21304:21:1;21361:2;21341:18;;;21334:30;21400:34;21380:18;;;21373:62;21471:6;21451:18;;;21444:34;21495:19;;34759:65:0;21120:400:1;34759:65:0;34837:39;34858:4;34864:2;34868:7;34837:20;:39::i;:::-;34941:29;34958:1;34962:7;34941:8;:29::i;:::-;-1:-1:-1;;;;;34983:15:0;;;;;;:9;:15;;;;;:20;;35002:1;;34983:15;:20;;35002:1;;34983:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35014:13:0;;;;;;:9;:13;;;;;:18;;35031:1;;35014:13;:18;;35031:1;;35014:18;:::i;:::-;;;;-1:-1:-1;;35043:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;35043:21:0;-1:-1:-1;;;;;35043:21:0;;;;;;;;;35082:27;;35043:16;;35082:27;;;;;;;34539:578;;;:::o;52950:544::-;53026:23;;;46676:1;53026:23;53023:464;;;53111:15;;53073:35;46676:1;53073:22;:35::i;:::-;:53;53065:110;;;;-1:-1:-1;;;53065:110:0;;21857:2:1;53065:110:0;;;21839:21:1;21896:2;21876:18;;;21869:30;21935:34;21915:18;;;21908:62;22006:14;21986:18;;;21979:42;22038:19;;53065:110:0;21655:408:1;53065:110:0;53197:30;:18;1059:19;;1077:1;1059:19;;;970:127;53023:464;53247:24;;;46721:1;53247:24;53244:243;;;53334:9;;53295:36;46721:1;53295:22;:36::i;:::-;:48;53287:98;;;;-1:-1:-1;;;53287:98:0;;22270:2:1;53287:98:0;;;22252:21:1;22309:2;22289:18;;;22282:30;22348:34;22328:18;;;22321:62;22419:7;22399:18;;;22392:35;22444:19;;53287:98:0;22068:401:1;53287:98:0;53407:31;:19;1059;;1077:1;1059:19;;;970:127;32237:110;32313:26;32323:2;32327:7;32313:26;;;;;;;;;;;;:9;:26::i;6448:173::-;6523:6;;;-1:-1:-1;;;;;6540:17:0;;;-1:-1:-1;;6540:17:0;;;;;;;6573:40;;6523:6;;;6540:17;6523:6;;6573:40;;6504:16;;6573:40;6493:128;6448:173;:::o;53923:181::-;53998:12;54016:8;-1:-1:-1;;;;;54016:13:0;54037:7;54016:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53997:52;;;54068:7;54060:36;;;;-1:-1:-1;;;54060:36:0;;22886:2:1;54060:36:0;;;22868:21:1;22925:2;22905:18;;;22898:30;22964:18;22944;;;22937:46;23000:18;;54060:36:0;22684:340:1;30625:315:0;30782:28;30792:4;30798:2;30802:7;30782:9;:28::i;:::-;30829:48;30852:4;30858:2;30862:7;30871:5;30829:22;:48::i;:::-;30821:111;;;;-1:-1:-1;;;30821:111:0;;23231:2:1;30821:111:0;;;23213:21:1;23270:2;23250:18;;;23243:30;23309:34;23289:18;;;23282:62;23380:20;23360:18;;;23353:48;23418:19;;30821:111:0;23029:414:1;49436:108:0;49496:13;49529:7;49522:14;;;;;:::i;1752:723::-;1808:13;2029:10;2025:53;;-1:-1:-1;;2056:10:0;;;;;;;;;;;;;;;;;;1752:723::o;2025:53::-;2103:5;2088:12;2144:78;2151:9;;2144:78;;2177:8;;;;:::i;:::-;;-1:-1:-1;2200:10:0;;-1:-1:-1;2208:2:0;2200:10;;:::i;:::-;;;2144:78;;;2232:19;2264:6;2254:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2254:17:0;;2232:39;;2282:154;2289:10;;2282:154;;2316:11;2326:1;2316:11;;:::i;:::-;;-1:-1:-1;2385:10:0;2393:2;2385:5;:10;:::i;:::-;2372:24;;:2;:24;:::i;:::-;2359:39;;2342:6;2349;2342:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;2413:11:0;2422:2;2413:11;;:::i;:::-;;;2282:154;;40084:589;-1:-1:-1;;;;;40290:18:0;;40286:187;;40325:40;40357:7;41500:10;:17;;41473:24;;;;:15;:24;;;;;:44;;;41528:24;;;;;;;;;;;;41396:164;40325:40;40286:187;;;40395:2;-1:-1:-1;;;;;40387:10:0;:4;-1:-1:-1;;;;;40387:10:0;;40383:90;;40414:47;40447:4;40453:7;40414:32;:47::i;:::-;-1:-1:-1;;;;;40487:16:0;;40483:183;;40520:45;40557:7;40520:36;:45::i;40483:183::-;40593:4;-1:-1:-1;;;;;40587:10:0;:2;-1:-1:-1;;;;;40587:10:0;;40583:83;;40614:40;40642:2;40646:7;40614:27;:40::i;32574:321::-;32704:18;32710:2;32714:7;32704:5;:18::i;:::-;32755:54;32786:1;32790:2;32794:7;32803:5;32755:22;:54::i;:::-;32733:154;;;;-1:-1:-1;;;32733:154:0;;23231:2:1;32733:154:0;;;23213:21:1;23270:2;23250:18;;;23243:30;23309:34;23289:18;;;23282:62;23380:20;23360:18;;;23353:48;23418:19;;32733:154:0;23029:414:1;35974:799:0;36129:4;-1:-1:-1;;;;;36150:13:0;;7717:20;7765:8;36146:620;;36186:72;;-1:-1:-1;;;36186:72:0;;-1:-1:-1;;;;;36186:36:0;;;;;:72;;4216:10;;36237:4;;36243:7;;36252:5;;36186:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36186:72:0;;;;;;;;-1:-1:-1;;36186:72:0;;;;;;;;;;;;:::i;:::-;;;36182:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36428:13:0;;36424:272;;36471:60;;-1:-1:-1;;;36471:60:0;;23231:2:1;36471:60:0;;;23213:21:1;23270:2;23250:18;;;23243:30;23309:34;23289:18;;;23282:62;23380:20;23360:18;;;23353:48;23418:19;;36471:60:0;23029:414:1;36424:272:0;36646:6;36640:13;36631:6;36627:2;36623:15;36616:38;36182:529;-1:-1:-1;;;;;;36309:51:0;-1:-1:-1;;;36309:51:0;;-1:-1:-1;36302:58:0;;36146:620;-1:-1:-1;36750:4:0;35974:799;;;;;;:::o;42187:988::-;42453:22;42503:1;42478:22;42495:4;42478:16;:22::i;:::-;:26;;;;:::i;:::-;42515:18;42536:26;;;:17;:26;;;;;;42453:51;;-1:-1:-1;42669:28:0;;;42665:328;;-1:-1:-1;;;;;42736:18:0;;42714:19;42736:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42787:30;;;;;;:44;;;42904:30;;:17;:30;;;;;:43;;;42665:328;-1:-1:-1;43089:26:0;;;;:17;:26;;;;;;;;43082:33;;;-1:-1:-1;;;;;43133:18:0;;;;;:12;:18;;;;;:34;;;;;;;43126:41;42187:988::o;43470:1079::-;43748:10;:17;43723:22;;43748:21;;43768:1;;43748:21;:::i;:::-;43780:18;43801:24;;;:15;:24;;;;;;44174:10;:26;;43723:46;;-1:-1:-1;43801:24:0;;43723:46;;44174:26;;;;;;:::i;:::-;;;;;;;;;44152:48;;44238:11;44213:10;44224;44213:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44318:28;;;:15;:28;;;;;;;:41;;;44490:24;;;;;44483:31;44525:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43541:1008;;;43470:1079;:::o;40974:221::-;41059:14;41076:20;41093:2;41076:16;:20::i;:::-;-1:-1:-1;;;;;41107:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41152:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40974:221:0:o;33231:382::-;-1:-1:-1;;;;;33311:16:0;;33303:61;;;;-1:-1:-1;;;33303:61:0;;24727:2:1;33303:61:0;;;24709:21:1;;;24746:18;;;24739:30;24805:34;24785:18;;;24778:62;24857:18;;33303:61:0;24525:356:1;33303:61:0;31318:4;31342:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31342:16:0;:30;33375:58;;;;-1:-1:-1;;;33375:58:0;;25088:2:1;33375:58:0;;;25070:21:1;25127:2;25107:18;;;25100:30;25166;25146:18;;;25139:58;25214:18;;33375:58:0;24886:352:1;33375:58:0;33446:45;33475:1;33479:2;33483:7;33446:20;:45::i;:::-;-1:-1:-1;;;;;33504:13:0;;;;;;:9;:13;;;;;:18;;33521:1;;33504:13;:18;;33521:1;;33504:18;:::i;:::-;;;;-1:-1:-1;;33533:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;33533:21:0;-1:-1:-1;;;;;33533:21:0;;;;;;;;33572:33;;33533:16;;;33572:33;;33533:16;;33572:33;33231:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;196:177:1;-1:-1:-1;;;;;;274:5:1;270:78;263:5;260:89;250:117;;363:1;360;353:12;378:245;436:6;489:2;477:9;468:7;464:23;460:32;457:52;;;505:1;502;495:12;457:52;544:9;531:23;563:30;587:5;563:30;:::i;820:258::-;892:1;902:113;916:6;913:1;910:13;902:113;;;992:11;;;986:18;973:11;;;966:39;938:2;931:10;902:113;;;1033:6;1030:1;1027:13;1024:48;;;-1:-1:-1;;1068:1:1;1050:16;;1043:27;820:258::o;1083:::-;1125:3;1163:5;1157:12;1190:6;1185:3;1178:19;1206:63;1262:6;1255:4;1250:3;1246:14;1239:4;1232:5;1228:16;1206:63;:::i;:::-;1323:2;1302:15;-1:-1:-1;;1298:29:1;1289:39;;;;1330:4;1285:50;;1083:258;-1:-1:-1;;1083:258:1:o;1346:220::-;1495:2;1484:9;1477:21;1458:4;1515:45;1556:2;1545:9;1541:18;1533:6;1515:45;:::i;1571:180::-;1630:6;1683:2;1671:9;1662:7;1658:23;1654:32;1651:52;;;1699:1;1696;1689:12;1651:52;-1:-1:-1;1722:23:1;;1571:180;-1:-1:-1;1571:180:1:o;1987:196::-;2055:20;;-1:-1:-1;;;;;2104:54:1;;2094:65;;2084:93;;2173:1;2170;2163:12;2188:254;2256:6;2264;2317:2;2305:9;2296:7;2292:23;2288:32;2285:52;;;2333:1;2330;2323:12;2285:52;2356:29;2375:9;2356:29;:::i;:::-;2346:39;2432:2;2417:18;;;;2404:32;;-1:-1:-1;;;2188:254:1:o;2447:160::-;2512:20;;2568:13;;2561:21;2551:32;;2541:60;;2597:1;2594;2587:12;2612:180;2668:6;2721:2;2709:9;2700:7;2696:23;2692:32;2689:52;;;2737:1;2734;2727:12;2689:52;2760:26;2776:9;2760:26;:::i;2797:328::-;2874:6;2882;2890;2943:2;2931:9;2922:7;2918:23;2914:32;2911:52;;;2959:1;2956;2949:12;2911:52;2982:29;3001:9;2982:29;:::i;:::-;2972:39;;3030:38;3064:2;3053:9;3049:18;3030:38;:::i;:::-;3020:48;;3115:2;3104:9;3100:18;3087:32;3077:42;;2797:328;;;;;:::o;3130:184::-;-1:-1:-1;;;3179:1:1;3172:88;3279:4;3276:1;3269:15;3303:4;3300:1;3293:15;3319:632;3384:5;3414:18;3455:2;3447:6;3444:14;3441:40;;;3461:18;;:::i;:::-;3536:2;3530:9;3504:2;3590:15;;-1:-1:-1;;3586:24:1;;;3612:2;3582:33;3578:42;3566:55;;;3636:18;;;3656:22;;;3633:46;3630:72;;;3682:18;;:::i;:::-;3722:10;3718:2;3711:22;3751:6;3742:15;;3781:6;3773;3766:22;3821:3;3812:6;3807:3;3803:16;3800:25;3797:45;;;3838:1;3835;3828:12;3797:45;3888:6;3883:3;3876:4;3868:6;3864:17;3851:44;3943:1;3936:4;3927:6;3919;3915:19;3911:30;3904:41;;;;3319:632;;;;;:::o;3956:451::-;4025:6;4078:2;4066:9;4057:7;4053:23;4049:32;4046:52;;;4094:1;4091;4084:12;4046:52;4134:9;4121:23;4167:18;4159:6;4156:30;4153:50;;;4199:1;4196;4189:12;4153:50;4222:22;;4275:4;4267:13;;4263:27;-1:-1:-1;4253:55:1;;4304:1;4301;4294:12;4253:55;4327:74;4393:7;4388:2;4375:16;4370:2;4366;4362:11;4327:74;:::i;4412:156::-;4478:20;;4538:4;4527:16;;4517:27;;4507:55;;4558:1;4555;4548:12;4573:182;4630:6;4683:2;4671:9;4662:7;4658:23;4654:32;4651:52;;;4699:1;4696;4689:12;4651:52;4722:27;4739:9;4722:27;:::i;4760:186::-;4819:6;4872:2;4860:9;4851:7;4847:23;4843:32;4840:52;;;4888:1;4885;4878:12;4840:52;4911:29;4930:9;4911:29;:::i;5140:691::-;5233:6;5241;5249;5302:2;5290:9;5281:7;5277:23;5273:32;5270:52;;;5318:1;5315;5308:12;5270:52;5358:9;5345:23;5387:18;5428:2;5420:6;5417:14;5414:34;;;5444:1;5441;5434:12;5414:34;5482:6;5471:9;5467:22;5457:32;;5527:7;5520:4;5516:2;5512:13;5508:27;5498:55;;5549:1;5546;5539:12;5498:55;5589:2;5576:16;5615:2;5607:6;5604:14;5601:34;;;5631:1;5628;5621:12;5601:34;5686:7;5679:4;5669:6;5666:1;5662:14;5658:2;5654:23;5650:34;5647:47;5644:67;;;5707:1;5704;5697:12;5644:67;5738:4;5730:13;;;;-1:-1:-1;5762:6:1;-1:-1:-1;5787:38:1;;5804:20;;;-1:-1:-1;5787:38:1;:::i;:::-;5777:48;;5140:691;;;;;:::o;5836:254::-;5901:6;5909;5962:2;5950:9;5941:7;5937:23;5933:32;5930:52;;;5978:1;5975;5968:12;5930:52;6001:29;6020:9;6001:29;:::i;:::-;5991:39;;6049:35;6080:2;6069:9;6065:18;6049:35;:::i;:::-;6039:45;;5836:254;;;;;:::o;6095:667::-;6190:6;6198;6206;6214;6267:3;6255:9;6246:7;6242:23;6238:33;6235:53;;;6284:1;6281;6274:12;6235:53;6307:29;6326:9;6307:29;:::i;:::-;6297:39;;6355:38;6389:2;6378:9;6374:18;6355:38;:::i;:::-;6345:48;;6440:2;6429:9;6425:18;6412:32;6402:42;;6495:2;6484:9;6480:18;6467:32;6522:18;6514:6;6511:30;6508:50;;;6554:1;6551;6544:12;6508:50;6577:22;;6630:4;6622:13;;6618:27;-1:-1:-1;6608:55:1;;6659:1;6656;6649:12;6608:55;6682:74;6748:7;6743:2;6730:16;6725:2;6721;6717:11;6682:74;:::i;:::-;6672:84;;;6095:667;;;;;;;:::o;6767:260::-;6835:6;6843;6896:2;6884:9;6875:7;6871:23;6867:32;6864:52;;;6912:1;6909;6902:12;6864:52;6935:29;6954:9;6935:29;:::i;:::-;6925:39;;6983:38;7017:2;7006:9;7002:18;6983:38;:::i;7032:437::-;7111:1;7107:12;;;;7154;;;7175:61;;7229:4;7221:6;7217:17;7207:27;;7175:61;7282:2;7274:6;7271:14;7251:18;7248:38;7245:218;;;-1:-1:-1;;;7316:1:1;7309:88;7420:4;7417:1;7410:15;7448:4;7445:1;7438:15;7245:218;;7032:437;;;:::o;10674:184::-;-1:-1:-1;;;10723:1:1;10716:88;10823:4;10820:1;10813:15;10847:4;10844:1;10837:15;12440:184;-1:-1:-1;;;12489:1:1;12482:88;12589:4;12586:1;12579:15;12613:4;12610:1;12603:15;12629:128;12669:3;12700:1;12696:6;12693:1;12690:13;12687:39;;;12706:18;;:::i;:::-;-1:-1:-1;12742:9:1;;12629:128::o;13171:168::-;13211:7;13277:1;13273;13269:6;13265:14;13262:1;13259:21;13254:1;13247:9;13240:17;13236:45;13233:71;;;13284:18;;:::i;:::-;-1:-1:-1;13324:9:1;;13171:168::o;14540:195::-;14578:4;14615;14612:1;14608:12;14647:4;14644:1;14640:12;14672:3;14667;14664:12;14661:38;;;14679:18;;:::i;:::-;14716:13;;;14540:195;-1:-1:-1;;;14540:195:1:o;14740:135::-;14779:3;-1:-1:-1;;14800:17:1;;14797:43;;;14820:18;;:::i;:::-;-1:-1:-1;14867:1:1;14856:13;;14740:135::o;15639:184::-;-1:-1:-1;;;15688:1:1;15681:88;15788:4;15785:1;15778:15;15812:4;15809:1;15802:15;15828:120;15868:1;15894;15884:35;;15899:18;;:::i;:::-;-1:-1:-1;15933:9:1;;15828:120::o;18301:1584::-;18525:3;18563:6;18557:13;18589:4;18602:51;18646:6;18641:3;18636:2;18628:6;18624:15;18602:51;:::i;:::-;18716:13;;18675:16;;;;18738:55;18716:13;18675:16;18760:15;;;18738:55;:::i;:::-;18882:13;;18815:20;;;18855:1;;18942;18964:18;;;;19017;;;;19044:93;;19122:4;19112:8;19108:19;19096:31;;19044:93;19185:2;19175:8;19172:16;19152:18;19149:40;19146:224;;;-1:-1:-1;;;19219:3:1;19212:90;19325:4;19322:1;19315:15;19355:4;19350:3;19343:17;19146:224;19386:18;19413:110;;;;19537:1;19532:328;;;;19379:481;;19413:110;-1:-1:-1;;19448:24:1;;19434:39;;19493:20;;;;-1:-1:-1;19413:110:1;;19532:328;18248:1;18241:14;;;18285:4;18272:18;;19627:1;19641:169;19655:8;19652:1;19649:15;19641:169;;;19737:14;;19722:13;;;19715:37;19780:16;;;;19672:10;;19641:169;;;19645:3;;19841:8;19834:5;19830:20;19823:27;;19379:481;-1:-1:-1;19876:3:1;;18301:1584;-1:-1:-1;;;;;;;;;;;18301:1584:1:o;21525:125::-;21565:4;21593:1;21590;21587:8;21584:34;;;21598:18;;:::i;:::-;-1:-1:-1;21635:9:1;;21525:125::o;23448:112::-;23480:1;23506;23496:35;;23511:18;;:::i;:::-;-1:-1:-1;23545:9:1;;23448:112::o;23565:512::-;23759:4;-1:-1:-1;;;;;23869:2:1;23861:6;23857:15;23846:9;23839:34;23921:2;23913:6;23909:15;23904:2;23893:9;23889:18;23882:43;;23961:6;23956:2;23945:9;23941:18;23934:34;24004:3;23999:2;23988:9;23984:18;23977:31;24025:46;24066:3;24055:9;24051:19;24043:6;24025:46;:::i;:::-;24017:54;23565:512;-1:-1:-1;;;;;;23565:512:1:o;24082:249::-;24151:6;24204:2;24192:9;24183:7;24179:23;24175:32;24172:52;;;24220:1;24217;24210:12;24172:52;24252:9;24246:16;24271:30;24295:5;24271:30;:::i;24336:184::-;-1:-1:-1;;;24385:1:1;24378:88;24485:4;24482:1;24475:15;24509:4;24506:1;24499:15

Swarm Source

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