ETH Price: $2,867.54 (-10.46%)
Gas: 13 Gwei

Token

Evolved Mad Apes (EMA)
 

Overview

Max Total Supply

334 EMA

Holders

71

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
maycforever.eth
Balance
1 EMA
0x8e2f648437db509f5a62dc29d111b9fda4edd16d
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:
EvolvedMadApes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 3 of 12: EMA.sol
// SPDX-License-Identifier: MIT
//  _______     _____  _ __     _______ ____    __  __    _    ____       _    ____  _____ ____  
// | ____\ \   / / _ \| |\ \   / / ____|  _ \  |  \/  |  / \  |  _ \     / \  |  _ \| ____/ ___| 
// |  _|  \ \ / / | | | | \ \ / /|  _| | | | | | |\/| | / _ \ | | | |   / _ \ | |_) |  _| \___ \ 
// | |___  \ V /| |_| | |__\ V / | |___| |_| | | |  | |/ ___ \| |_| |  / ___ \|  __/| |___ ___) |
// |_____|  \_/  \___/|_____\_/  |_____|____/  |_|  |_/_/   \_\____/  /_/   \_\_|   |_____|____/ 

pragma solidity ^0.8.0;

import "./ERC721A.sol";
import "./Ownable.sol";

contract EvolvedMadApes is ERC721A, Ownable{
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 5555;
    uint256 public constant MAX_PUBLIC_MINT = 5;
    uint256 public constant MAX_WHITELIST_MINT = 5;
    uint256 public constant MAX_OG_MINT = 6;
    uint256 public PUBLIC_SALE_PRICE = .14 ether;
    uint256 public WHITELIST_SALE_PRICE = .12 ether;

    string private baseTokenUri;
    string public placeholderTokenUri;

    address internal immutable founders = 0x6C1Ae0Fa69EbE027F3E93b5634F7c3E86448F860;
    address internal immutable donation = 0xac647d49fC1c928f2Ce866815AaBFD14913C32a7;

    //deploy smart contract, toggle WL, toggle WL when done, toggle publicSale 
    bool public isRevealed = false;
    bool public publicSale = false;
    bool public whiteListSale = false;
    bool public pause = false;
    bool public teamMinted = false;

    mapping(address => uint256) public allowlist;

    mapping(address => uint256) public totalPublicMint;
    mapping(address => uint256) public totalWhitelistMint;

    constructor() ERC721A("Evolved Mad Apes", "EMA"){

    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Evolved Mad Apes - Cannot be called by a contract");
        _;
    }

    function mint(uint256 _quantity) external payable callerIsUser{
        require(publicSale, "Evolved Mad Apes - Not Yet Active.");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Evolved Mad Apes - Beyond Max Supply");
        require((totalPublicMint[msg.sender] +_quantity) <= MAX_PUBLIC_MINT, "Evolved Mad Apes - Already Minted Maximum Times!");
        require(msg.value >= (PUBLIC_SALE_PRICE * _quantity), "Evolved Mad Apes - Below ");
        totalPublicMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function whitelistMint(uint256 _quantity) external payable callerIsUser{
        require(whiteListSale, "Evolved Mad Apes - Whitelist Mint Is Not Active");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Evolved Mad Apes - Cannot mint beyond max supply");
        require((totalWhitelistMint[msg.sender] + _quantity)  <= MAX_WHITELIST_MINT, "Evolved Mad Apes - Already Minted Maximum Times!");
        require(msg.value >= (WHITELIST_SALE_PRICE * _quantity), "Evolved Mad Apes - Payment is below the price");
        require(allowlist[msg.sender] > 0, "Evolved Mad Apes - You are not whitelisted");
        totalWhitelistMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function SpecialMint(uint _quantity) external onlyOwner{
        teamMinted = true;
        _safeMint(msg.sender, _quantity);
    }
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenUri;
    }
   
    //return uri for certain token
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        uint256 trueId = tokenId + 1;

        if(!isRevealed){
            return placeholderTokenUri;
        }
        //string memory baseURI = _baseURI();
        return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri,trueId.toString(),".json")) : "";
    }

    /// @dev walletOf() function shouldn't be called on-chain due to gas consumption
    function walletOf() external view returns(uint256[] memory){
        address _owner = msg.sender;
        uint256 numberOfOwnedNFT = balanceOf(_owner);
        uint256[] memory ownerIds = new uint256[](numberOfOwnedNFT);

        for(uint256 index = 0; index < numberOfOwnedNFT; index++){
            ownerIds[index] = tokenOfOwnerByIndex(_owner, index);
        }

        return ownerIds;
    }

    function SetWhitelist(address[] memory addresses, uint256 numSlots) external onlyOwner
    {
        require(
            numSlots > 0,
            "MintAmount < 1 "
        );
        for (uint256 i = 0; i < addresses.length; i++) {
            allowlist[addresses[i]] = numSlots;
        }
    }
    function SetPublicPrice(uint256 price ) external onlyOwner
    {
        PUBLIC_SALE_PRICE = price;
    }
    function SetWhitelistPrice(uint256 price ) external onlyOwner
    {
        WHITELIST_SALE_PRICE = price;
    }
    function setTokenUri(string memory _baseTokenUri) external onlyOwner{
        baseTokenUri = _baseTokenUri;
    }
    function setPlaceHolderUri(string memory _placeholderTokenUri) external onlyOwner{
        placeholderTokenUri = _placeholderTokenUri;
    }

    function togglePause() external onlyOwner{
        pause = !pause;
    }

    function toggleWhiteListSale() external onlyOwner{
        whiteListSale = !whiteListSale;
    }

    function togglePublicSale() external onlyOwner{
        publicSale = !publicSale;
    }

    function toggleReveal() external onlyOwner{
        isRevealed = !isRevealed;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(founders).transfer((balance * 950) / 1000);
        payable(donation).transfer((balance * 50) / 1000);
    }
}

File 1 of 12: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 2 of 12: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 4 of 12: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 5 of 12: ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error UnableDetermineTokenOwner();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        assert(false);
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert UnableDetermineTokenOwner();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) revert ApprovalCallerNotOwnerNorApproved();

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer();
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }


    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 6 of 12: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 7 of 12: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 8 of 12: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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);

    /**
     * @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 9 of 12: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 10 of 12: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 11 of 12: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 12 of 12: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","type":"error"},{"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":"MAX_OG_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"SetPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"numSlots","type":"uint256"}],"name":"SetWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"SetWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"SpecialMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WHITELIST_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_placeholderTokenUri","type":"string"}],"name":"setPlaceHolderUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteListSale","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalWhitelistMint","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":"walletOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526701f161421c8e00006008556701aa535d3d0c00006009557f6c1ae0fa69ebe027f3e93b5634f7c3e86448f8600000000000000000000000006080527fac647d49fc1c928f2ce866815aabfd14913c32a700000000000000000000000060a052600c805464ffffffffff191690553480156200007f57600080fd5b50604080518082018252601081526f45766f6c766564204d6164204170657360801b602080830191825283518085019094526003845262454d4160e81b908401528151919291620000d39160019162000162565b508051620000e990600290602084019062000162565b50505062000106620001006200010c60201b60201c565b62000110565b62000245565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001709062000208565b90600052602060002090601f016020900481019282620001945760008555620001df565b82601f10620001af57805160ff1916838001178555620001df565b82800160010185558215620001df579182015b82811115620001df578251825591602001919060010190620001c2565b50620001ed929150620001f1565b5090565b5b80821115620001ed5760008155600101620001f2565b600181811c908216806200021d57607f821691505b602082108114156200023f57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160601c61271a620002716000396000610bf301526000610b84015261271a6000f3fe6080604052600436106102935760003560e01c806383a974a21161015a578063b88d4fde116100c1578063da25869e1161007a578063da25869e1461077d578063e222c7f91461079d578063e8b5498d146107b2578063e985e9c5146107d4578063f00de9281461081d578063f2fde38b1461083257600080fd5b8063b88d4fde146106f2578063bc912e1a14610712578063be6c620214610728578063c08dfd3c1461052a578063c4ae316814610748578063c87b56dd1461075d57600080fd5b806395d89b411161011357806395d89b411461063d5780639c2ad97714610652578063a0712d6814610672578063a22cb46514610685578063a7cd52cb146106a5578063b0962c53146106d257600080fd5b806383a974a2146105945780638456cb59146105b6578063868ff4a2146105d757806386a173ee146105ea5780638bb64a8c1461060a5780638da5cb5b1461061f57600080fd5b806333bc1c5c116101fe5780635b8ad429116101b75780635b8ad429146104f55780636352211e1461050a57806365f130971461052a578063666111fb1461053f57806370a082311461055f578063715018a61461057f57600080fd5b806333bc1c5c146104525780633ccfd60b1461047157806342842e0e146104865780634cf5f7a4146104a65780634f6ccce7146104bb57806354214f69146104db57600080fd5b8063095ea7b311610250578063095ea7b31461039a57806318160ddd146103ba5780631c16521c146103cf57806323b872dd146103fc5780632f745c591461041c57806332cb6b0c1461043c57600080fd5b806301ffc9a7146102985780630345e3cb146102cd5780630675b7c61461030857806306fdde031461032a57806307e89ec01461034c578063081812fc14610362575b600080fd5b3480156102a457600080fd5b506102b86102b336600461222e565b610852565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102fa6102e8366004612008565b600f6020526000908152604090205481565b6040519081526020016102c4565b34801561031457600080fd5b50610328610323366004612268565b6108bf565b005b34801561033657600080fd5b5061033f610909565b6040516102c4919061244e565b34801561035857600080fd5b506102fa60085481565b34801561036e57600080fd5b5061038261037d3660046122b1565b61099b565b6040516001600160a01b0390911681526020016102c4565b3480156103a657600080fd5b506103286103b536600461214a565b6109e1565b3480156103c657600080fd5b506000546102fa565b3480156103db57600080fd5b506102fa6103ea366004612008565b600e6020526000908152604090205481565b34801561040857600080fd5b50610328610417366004612056565b610a6f565b34801561042857600080fd5b506102fa61043736600461214a565b610a7a565b34801561044857600080fd5b506102fa6115b381565b34801561045e57600080fd5b50600c546102b890610100900460ff1681565b34801561047d57600080fd5b50610328610b4f565b34801561049257600080fd5b506103286104a1366004612056565b610c56565b3480156104b257600080fd5b5061033f610c71565b3480156104c757600080fd5b506102fa6104d63660046122b1565b610cff565b3480156104e757600080fd5b50600c546102b89060ff1681565b34801561050157600080fd5b50610328610d26565b34801561051657600080fd5b506103826105253660046122b1565b610d64565b34801561053657600080fd5b506102fa600581565b34801561054b57600080fd5b5061032861055a3660046122b1565b610d76565b34801561056b57600080fd5b506102fa61057a366004612008565b610da5565b34801561058b57600080fd5b50610328610df3565b3480156105a057600080fd5b506105a9610e29565b6040516102c4919061240a565b3480156105c257600080fd5b50600c546102b8906301000000900460ff1681565b6103286105e53660046122b1565b610ecc565b3480156105f657600080fd5b50600c546102b89062010000900460ff1681565b34801561061657600080fd5b50610328611129565b34801561062b57600080fd5b506007546001600160a01b0316610382565b34801561064957600080fd5b5061033f611172565b34801561065e57600080fd5b5061032861066d3660046122b1565b611181565b6103286106803660046122b1565b6111ca565b34801561069157600080fd5b506103286106a036600461210e565b611374565b3480156106b157600080fd5b506102fa6106c0366004612008565b600d6020526000908152604090205481565b3480156106de57600080fd5b506103286106ed366004612268565b61140a565b3480156106fe57600080fd5b5061032861070d366004612092565b611447565b34801561071e57600080fd5b506102fa60095481565b34801561073457600080fd5b50610328610743366004612174565b611481565b34801561075457600080fd5b5061032861154f565b34801561076957600080fd5b5061033f6107783660046122b1565b61159a565b34801561078957600080fd5b506103286107983660046122b1565b611716565b3480156107a957600080fd5b50610328611745565b3480156107be57600080fd5b50600c546102b890640100000000900460ff1681565b3480156107e057600080fd5b506102b86107ef366004612023565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561082957600080fd5b506102fa600681565b34801561083e57600080fd5b5061032861084d366004612008565b61178c565b60006001600160e01b031982166380ac58cd60e01b148061088357506001600160e01b03198216635b5e139f60e01b145b8061089e57506001600160e01b0319821663780e9d6360e01b145b806108b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146108f25760405162461bcd60e51b81526004016108e9906124b1565b60405180910390fd5b805161090590600a906020840190611f04565b5050565b606060018054610918906125f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610944906125f6565b80156109915780601f1061096657610100808354040283529160200191610991565b820191906000526020600020905b81548152906001019060200180831161097457829003601f168201915b5050505050905090565b60006109a8826000541190565b6109c5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109ec82610d64565b9050806001600160a01b0316836001600160a01b03161415610a215760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a415750610a3f81336107ef565b155b15610a5f576040516367d9dca160e11b815260040160405180910390fd5b610a6a838383611824565b505050565b610a6a838383611880565b6000610a8583610da5565b8210610aa4576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610b3d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610aff57805192505b876001600160a01b0316836001600160a01b03161415610b345786841415610b2d575093506108b992505050565b6001909301925b50600101610aac565b50610b46612660565b50505092915050565b6007546001600160a01b03163314610b795760405162461bcd60e51b81526004016108e9906124b1565b476001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166108fc6103e8610bb6846103b6612594565b610bc09190612580565b6040518115909202916000818181858888f19350505050158015610be8573d6000803e3d6000fd5b506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166108fc6103e8610c24846032612594565b610c2e9190612580565b6040518115909202916000818181858888f19350505050158015610905573d6000803e3d6000fd5b610a6a83838360405180602001604052806000815250611447565b600b8054610c7e906125f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610caa906125f6565b8015610cf75780601f10610ccc57610100808354040283529160200191610cf7565b820191906000526020600020905b815481529060010190602001808311610cda57829003601f168201915b505050505081565b600080548210610d22576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610d505760405162461bcd60e51b81526004016108e9906124b1565b600c805460ff19811660ff90911615179055565b6000610d6f82611a9f565b5192915050565b6007546001600160a01b03163314610da05760405162461bcd60e51b81526004016108e9906124b1565b600955565b60006001600160a01b038216610dce576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610e1d5760405162461bcd60e51b81526004016108e9906124b1565b610e276000611b34565b565b6060336000610e3782610da5565b905060008167ffffffffffffffff811115610e5457610e546126b8565b604051908082528060200260200182016040528015610e7d578160200160208202803683370190505b50905060005b82811015610ec457610e958482610a7a565b828281518110610ea757610ea76126a2565b602090810291909101015280610ebc81612631565b915050610e83565b509392505050565b323314610eeb5760405162461bcd60e51b81526004016108e9906124e6565b600c5462010000900460ff16610f5b5760405162461bcd60e51b815260206004820152602f60248201527f45766f6c766564204d61642041706573202d2057686974656c697374204d696e60448201526e74204973204e6f742041637469766560881b60648201526084016108e9565b6115b381610f6860005490565b610f729190612568565b1115610fd95760405162461bcd60e51b815260206004820152603060248201527f45766f6c766564204d61642041706573202d2043616e6e6f74206d696e74206260448201526f65796f6e64206d617820737570706c7960801b60648201526084016108e9565b336000908152600f6020526040902054600590610ff7908390612568565b11156110155760405162461bcd60e51b81526004016108e990612461565b806009546110239190612594565b3410156110885760405162461bcd60e51b815260206004820152602d60248201527f45766f6c766564204d61642041706573202d205061796d656e7420697320626560448201526c6c6f772074686520707269636560981b60648201526084016108e9565b336000908152600d60205260409020546110f75760405162461bcd60e51b815260206004820152602a60248201527f45766f6c766564204d61642041706573202d20596f7520617265206e6f7420776044820152691a1a5d195b1a5cdd195960b21b60648201526084016108e9565b336000908152600f602052604081208054839290611116908490612568565b9091555061112690503382611b86565b50565b6007546001600160a01b031633146111535760405162461bcd60e51b81526004016108e9906124b1565b600c805462ff0000198116620100009182900460ff1615909102179055565b606060028054610918906125f6565b6007546001600160a01b031633146111ab5760405162461bcd60e51b81526004016108e9906124b1565b600c805464ff0000000019166401000000001790556111263382611b86565b3233146111e95760405162461bcd60e51b81526004016108e9906124e6565b600c54610100900460ff1661124b5760405162461bcd60e51b815260206004820152602260248201527f45766f6c766564204d61642041706573202d204e6f7420596574204163746976604482015261329760f11b60648201526084016108e9565b6115b38161125860005490565b6112629190612568565b11156112bc5760405162461bcd60e51b8152602060048201526024808201527f45766f6c766564204d61642041706573202d204265796f6e64204d617820537560448201526370706c7960e01b60648201526084016108e9565b336000908152600e60205260409020546005906112da908390612568565b11156112f85760405162461bcd60e51b81526004016108e990612461565b806008546113069190612594565b3410156113555760405162461bcd60e51b815260206004820152601960248201527f45766f6c766564204d61642041706573202d2042656c6f77200000000000000060448201526064016108e9565b336000908152600e602052604081208054839290611116908490612568565b6001600160a01b03821633141561139e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146114345760405162461bcd60e51b81526004016108e9906124b1565b805161090590600b906020840190611f04565b611452848484611880565b61145e84848484611ba0565b61147b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b031633146114ab5760405162461bcd60e51b81526004016108e9906124b1565b600081116114ed5760405162461bcd60e51b815260206004820152600f60248201526e026b4b73a20b6b7bab73a101e10189608d1b60448201526064016108e9565b60005b8251811015610a6a5781600d6000858481518110611510576115106126a2565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061154790612631565b9150506114f0565b6007546001600160a01b031633146115795760405162461bcd60e51b81526004016108e9906124b1565b600c805463ff00000019811663010000009182900460ff1615909102179055565b60606115a7826000541190565b61160b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108e9565b6000611618836001612568565b600c5490915060ff166116b857600b8054611632906125f6565b80601f016020809104026020016040519081016040528092919081815260200182805461165e906125f6565b80156116ab5780601f10611680576101008083540402835291602001916116ab565b820191906000526020600020905b81548152906001019060200180831161168e57829003601f168201915b5050505050915050919050565b6000600a80546116c7906125f6565b9050116116e3576040518060200160405280600081525061170f565b600a6116ee82611caf565b6040516020016116ff929190612312565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146117405760405162461bcd60e51b81526004016108e9906124b1565b600855565b6007546001600160a01b0316331461176f5760405162461bcd60e51b81526004016108e9906124b1565b600c805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b031633146117b65760405162461bcd60e51b81526004016108e9906124b1565b6001600160a01b03811661181b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e9565b61112681611b34565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061188b82611a9f565b80519091506000906001600160a01b0316336001600160a01b031614806118c25750336118b78461099b565b6001600160a01b0316145b806118d4575081516118d490336107ef565b9050806118f457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146119295760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661195057604051633a954ecd60e21b815260040160405180910390fd5b6119606000848460000151611824565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611a5557611a08816000541190565b15611a55578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611abe826000541190565b611adb57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b2a579392505050565b5060001901611add565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610905828260405180602001604052806000815250611dad565b60006001600160a01b0384163b15611ca357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611be49033908990889088906004016123cd565b602060405180830381600087803b158015611bfe57600080fd5b505af1925050508015611c2e575060408051601f3d908101601f19168201909252611c2b9181019061224b565b60015b611c89573d808015611c5c576040519150601f19603f3d011682016040523d82523d6000602084013e611c61565b606091505b508051611c81576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ca7565b5060015b949350505050565b606081611cd35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cfd5780611ce781612631565b9150611cf69050600a83612580565b9150611cd7565b60008167ffffffffffffffff811115611d1857611d186126b8565b6040519080825280601f01601f191660200182016040528015611d42576020820181803683370190505b5090505b8415611ca757611d576001836125b3565b9150611d64600a8661264c565b611d6f906030612568565b60f81b818381518110611d8457611d846126a2565b60200101906001600160f81b031916908160001a905350611da6600a86612580565b9450611d46565b610a6a83838360016000546001600160a01b038516611dde57604051622e076360e81b815260040160405180910390fd5b83611dfc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611efb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611ed15750611ecf6000888488611ba0565b155b15611eef576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611e7a565b50600055611a98565b828054611f10906125f6565b90600052602060002090601f016020900481019282611f325760008555611f78565b82601f10611f4b57805160ff1916838001178555611f78565b82800160010185558215611f78579182015b82811115611f78578251825591602001919060010190611f5d565b50610d229291505b80821115610d225760008155600101611f80565b600067ffffffffffffffff831115611fae57611fae6126b8565b611fc1601f8401601f1916602001612537565b9050828152838383011115611fd557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461200357600080fd5b919050565b60006020828403121561201a57600080fd5b61170f82611fec565b6000806040838503121561203657600080fd5b61203f83611fec565b915061204d60208401611fec565b90509250929050565b60008060006060848603121561206b57600080fd5b61207484611fec565b925061208260208501611fec565b9150604084013590509250925092565b600080600080608085870312156120a857600080fd5b6120b185611fec565b93506120bf60208601611fec565b925060408501359150606085013567ffffffffffffffff8111156120e257600080fd5b8501601f810187136120f357600080fd5b61210287823560208401611f94565b91505092959194509250565b6000806040838503121561212157600080fd5b61212a83611fec565b91506020830135801515811461213f57600080fd5b809150509250929050565b6000806040838503121561215d57600080fd5b61216683611fec565b946020939093013593505050565b6000806040838503121561218757600080fd5b823567ffffffffffffffff8082111561219f57600080fd5b818501915085601f8301126121b357600080fd5b81356020828211156121c7576121c76126b8565b8160051b92506121d8818401612537565b8281528181019085830185870184018b10156121f357600080fd5b600096505b8487101561221d5761220981611fec565b8352600196909601959183019183016121f8565b509997909101359750505050505050565b60006020828403121561224057600080fd5b813561170f816126ce565b60006020828403121561225d57600080fd5b815161170f816126ce565b60006020828403121561227a57600080fd5b813567ffffffffffffffff81111561229157600080fd5b8201601f810184136122a257600080fd5b611ca784823560208401611f94565b6000602082840312156122c357600080fd5b5035919050565b600081518084526122e28160208601602086016125ca565b601f01601f19169290920160200192915050565b600081516123088185602086016125ca565b9290920192915050565b600080845481600182811c91508083168061232e57607f831692505b602080841082141561234e57634e487b7160e01b86526022600452602486fd5b8180156123625760018114612373576123a0565b60ff198616895284890196506123a0565b60008b81526020902060005b868110156123985781548b82015290850190830161237f565b505084890196505b5050505050506123c46123b382866122f6565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612400908301846122ca565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561244257835183529284019291840191600101612426565b50909695505050505050565b60208152600061170f60208301846122ca565b60208082526030908201527f45766f6c766564204d61642041706573202d20416c7265616479204d696e746560408201526f64204d6178696d756d2054696d65732160801b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f45766f6c766564204d61642041706573202d2043616e6e6f742062652063616c6040820152701b195908189e48184818dbdb9d1c9858dd607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612560576125606126b8565b604052919050565b6000821982111561257b5761257b612676565b500190565b60008261258f5761258f61268c565b500490565b60008160001904831182151516156125ae576125ae612676565b500290565b6000828210156125c5576125c5612676565b500390565b60005b838110156125e55781810151838201526020016125cd565b8381111561147b5750506000910152565b600181811c9082168061260a57607f821691505b6020821081141561262b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561264557612645612676565b5060010190565b60008261265b5761265b61268c565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461112657600080fdfea2646970667358221220e3f77c3e85c40e789d3a02d866f2e8683550b173d3f7ee08df9751c8a04a02f564736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102935760003560e01c806383a974a21161015a578063b88d4fde116100c1578063da25869e1161007a578063da25869e1461077d578063e222c7f91461079d578063e8b5498d146107b2578063e985e9c5146107d4578063f00de9281461081d578063f2fde38b1461083257600080fd5b8063b88d4fde146106f2578063bc912e1a14610712578063be6c620214610728578063c08dfd3c1461052a578063c4ae316814610748578063c87b56dd1461075d57600080fd5b806395d89b411161011357806395d89b411461063d5780639c2ad97714610652578063a0712d6814610672578063a22cb46514610685578063a7cd52cb146106a5578063b0962c53146106d257600080fd5b806383a974a2146105945780638456cb59146105b6578063868ff4a2146105d757806386a173ee146105ea5780638bb64a8c1461060a5780638da5cb5b1461061f57600080fd5b806333bc1c5c116101fe5780635b8ad429116101b75780635b8ad429146104f55780636352211e1461050a57806365f130971461052a578063666111fb1461053f57806370a082311461055f578063715018a61461057f57600080fd5b806333bc1c5c146104525780633ccfd60b1461047157806342842e0e146104865780634cf5f7a4146104a65780634f6ccce7146104bb57806354214f69146104db57600080fd5b8063095ea7b311610250578063095ea7b31461039a57806318160ddd146103ba5780631c16521c146103cf57806323b872dd146103fc5780632f745c591461041c57806332cb6b0c1461043c57600080fd5b806301ffc9a7146102985780630345e3cb146102cd5780630675b7c61461030857806306fdde031461032a57806307e89ec01461034c578063081812fc14610362575b600080fd5b3480156102a457600080fd5b506102b86102b336600461222e565b610852565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102fa6102e8366004612008565b600f6020526000908152604090205481565b6040519081526020016102c4565b34801561031457600080fd5b50610328610323366004612268565b6108bf565b005b34801561033657600080fd5b5061033f610909565b6040516102c4919061244e565b34801561035857600080fd5b506102fa60085481565b34801561036e57600080fd5b5061038261037d3660046122b1565b61099b565b6040516001600160a01b0390911681526020016102c4565b3480156103a657600080fd5b506103286103b536600461214a565b6109e1565b3480156103c657600080fd5b506000546102fa565b3480156103db57600080fd5b506102fa6103ea366004612008565b600e6020526000908152604090205481565b34801561040857600080fd5b50610328610417366004612056565b610a6f565b34801561042857600080fd5b506102fa61043736600461214a565b610a7a565b34801561044857600080fd5b506102fa6115b381565b34801561045e57600080fd5b50600c546102b890610100900460ff1681565b34801561047d57600080fd5b50610328610b4f565b34801561049257600080fd5b506103286104a1366004612056565b610c56565b3480156104b257600080fd5b5061033f610c71565b3480156104c757600080fd5b506102fa6104d63660046122b1565b610cff565b3480156104e757600080fd5b50600c546102b89060ff1681565b34801561050157600080fd5b50610328610d26565b34801561051657600080fd5b506103826105253660046122b1565b610d64565b34801561053657600080fd5b506102fa600581565b34801561054b57600080fd5b5061032861055a3660046122b1565b610d76565b34801561056b57600080fd5b506102fa61057a366004612008565b610da5565b34801561058b57600080fd5b50610328610df3565b3480156105a057600080fd5b506105a9610e29565b6040516102c4919061240a565b3480156105c257600080fd5b50600c546102b8906301000000900460ff1681565b6103286105e53660046122b1565b610ecc565b3480156105f657600080fd5b50600c546102b89062010000900460ff1681565b34801561061657600080fd5b50610328611129565b34801561062b57600080fd5b506007546001600160a01b0316610382565b34801561064957600080fd5b5061033f611172565b34801561065e57600080fd5b5061032861066d3660046122b1565b611181565b6103286106803660046122b1565b6111ca565b34801561069157600080fd5b506103286106a036600461210e565b611374565b3480156106b157600080fd5b506102fa6106c0366004612008565b600d6020526000908152604090205481565b3480156106de57600080fd5b506103286106ed366004612268565b61140a565b3480156106fe57600080fd5b5061032861070d366004612092565b611447565b34801561071e57600080fd5b506102fa60095481565b34801561073457600080fd5b50610328610743366004612174565b611481565b34801561075457600080fd5b5061032861154f565b34801561076957600080fd5b5061033f6107783660046122b1565b61159a565b34801561078957600080fd5b506103286107983660046122b1565b611716565b3480156107a957600080fd5b50610328611745565b3480156107be57600080fd5b50600c546102b890640100000000900460ff1681565b3480156107e057600080fd5b506102b86107ef366004612023565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561082957600080fd5b506102fa600681565b34801561083e57600080fd5b5061032861084d366004612008565b61178c565b60006001600160e01b031982166380ac58cd60e01b148061088357506001600160e01b03198216635b5e139f60e01b145b8061089e57506001600160e01b0319821663780e9d6360e01b145b806108b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146108f25760405162461bcd60e51b81526004016108e9906124b1565b60405180910390fd5b805161090590600a906020840190611f04565b5050565b606060018054610918906125f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610944906125f6565b80156109915780601f1061096657610100808354040283529160200191610991565b820191906000526020600020905b81548152906001019060200180831161097457829003601f168201915b5050505050905090565b60006109a8826000541190565b6109c5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109ec82610d64565b9050806001600160a01b0316836001600160a01b03161415610a215760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a415750610a3f81336107ef565b155b15610a5f576040516367d9dca160e11b815260040160405180910390fd5b610a6a838383611824565b505050565b610a6a838383611880565b6000610a8583610da5565b8210610aa4576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610b3d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610aff57805192505b876001600160a01b0316836001600160a01b03161415610b345786841415610b2d575093506108b992505050565b6001909301925b50600101610aac565b50610b46612660565b50505092915050565b6007546001600160a01b03163314610b795760405162461bcd60e51b81526004016108e9906124b1565b476001600160a01b037f0000000000000000000000006c1ae0fa69ebe027f3e93b5634f7c3e86448f860166108fc6103e8610bb6846103b6612594565b610bc09190612580565b6040518115909202916000818181858888f19350505050158015610be8573d6000803e3d6000fd5b506001600160a01b037f000000000000000000000000ac647d49fc1c928f2ce866815aabfd14913c32a7166108fc6103e8610c24846032612594565b610c2e9190612580565b6040518115909202916000818181858888f19350505050158015610905573d6000803e3d6000fd5b610a6a83838360405180602001604052806000815250611447565b600b8054610c7e906125f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610caa906125f6565b8015610cf75780601f10610ccc57610100808354040283529160200191610cf7565b820191906000526020600020905b815481529060010190602001808311610cda57829003601f168201915b505050505081565b600080548210610d22576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610d505760405162461bcd60e51b81526004016108e9906124b1565b600c805460ff19811660ff90911615179055565b6000610d6f82611a9f565b5192915050565b6007546001600160a01b03163314610da05760405162461bcd60e51b81526004016108e9906124b1565b600955565b60006001600160a01b038216610dce576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610e1d5760405162461bcd60e51b81526004016108e9906124b1565b610e276000611b34565b565b6060336000610e3782610da5565b905060008167ffffffffffffffff811115610e5457610e546126b8565b604051908082528060200260200182016040528015610e7d578160200160208202803683370190505b50905060005b82811015610ec457610e958482610a7a565b828281518110610ea757610ea76126a2565b602090810291909101015280610ebc81612631565b915050610e83565b509392505050565b323314610eeb5760405162461bcd60e51b81526004016108e9906124e6565b600c5462010000900460ff16610f5b5760405162461bcd60e51b815260206004820152602f60248201527f45766f6c766564204d61642041706573202d2057686974656c697374204d696e60448201526e74204973204e6f742041637469766560881b60648201526084016108e9565b6115b381610f6860005490565b610f729190612568565b1115610fd95760405162461bcd60e51b815260206004820152603060248201527f45766f6c766564204d61642041706573202d2043616e6e6f74206d696e74206260448201526f65796f6e64206d617820737570706c7960801b60648201526084016108e9565b336000908152600f6020526040902054600590610ff7908390612568565b11156110155760405162461bcd60e51b81526004016108e990612461565b806009546110239190612594565b3410156110885760405162461bcd60e51b815260206004820152602d60248201527f45766f6c766564204d61642041706573202d205061796d656e7420697320626560448201526c6c6f772074686520707269636560981b60648201526084016108e9565b336000908152600d60205260409020546110f75760405162461bcd60e51b815260206004820152602a60248201527f45766f6c766564204d61642041706573202d20596f7520617265206e6f7420776044820152691a1a5d195b1a5cdd195960b21b60648201526084016108e9565b336000908152600f602052604081208054839290611116908490612568565b9091555061112690503382611b86565b50565b6007546001600160a01b031633146111535760405162461bcd60e51b81526004016108e9906124b1565b600c805462ff0000198116620100009182900460ff1615909102179055565b606060028054610918906125f6565b6007546001600160a01b031633146111ab5760405162461bcd60e51b81526004016108e9906124b1565b600c805464ff0000000019166401000000001790556111263382611b86565b3233146111e95760405162461bcd60e51b81526004016108e9906124e6565b600c54610100900460ff1661124b5760405162461bcd60e51b815260206004820152602260248201527f45766f6c766564204d61642041706573202d204e6f7420596574204163746976604482015261329760f11b60648201526084016108e9565b6115b38161125860005490565b6112629190612568565b11156112bc5760405162461bcd60e51b8152602060048201526024808201527f45766f6c766564204d61642041706573202d204265796f6e64204d617820537560448201526370706c7960e01b60648201526084016108e9565b336000908152600e60205260409020546005906112da908390612568565b11156112f85760405162461bcd60e51b81526004016108e990612461565b806008546113069190612594565b3410156113555760405162461bcd60e51b815260206004820152601960248201527f45766f6c766564204d61642041706573202d2042656c6f77200000000000000060448201526064016108e9565b336000908152600e602052604081208054839290611116908490612568565b6001600160a01b03821633141561139e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146114345760405162461bcd60e51b81526004016108e9906124b1565b805161090590600b906020840190611f04565b611452848484611880565b61145e84848484611ba0565b61147b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b031633146114ab5760405162461bcd60e51b81526004016108e9906124b1565b600081116114ed5760405162461bcd60e51b815260206004820152600f60248201526e026b4b73a20b6b7bab73a101e10189608d1b60448201526064016108e9565b60005b8251811015610a6a5781600d6000858481518110611510576115106126a2565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061154790612631565b9150506114f0565b6007546001600160a01b031633146115795760405162461bcd60e51b81526004016108e9906124b1565b600c805463ff00000019811663010000009182900460ff1615909102179055565b60606115a7826000541190565b61160b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108e9565b6000611618836001612568565b600c5490915060ff166116b857600b8054611632906125f6565b80601f016020809104026020016040519081016040528092919081815260200182805461165e906125f6565b80156116ab5780601f10611680576101008083540402835291602001916116ab565b820191906000526020600020905b81548152906001019060200180831161168e57829003601f168201915b5050505050915050919050565b6000600a80546116c7906125f6565b9050116116e3576040518060200160405280600081525061170f565b600a6116ee82611caf565b6040516020016116ff929190612312565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146117405760405162461bcd60e51b81526004016108e9906124b1565b600855565b6007546001600160a01b0316331461176f5760405162461bcd60e51b81526004016108e9906124b1565b600c805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b031633146117b65760405162461bcd60e51b81526004016108e9906124b1565b6001600160a01b03811661181b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e9565b61112681611b34565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061188b82611a9f565b80519091506000906001600160a01b0316336001600160a01b031614806118c25750336118b78461099b565b6001600160a01b0316145b806118d4575081516118d490336107ef565b9050806118f457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146119295760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661195057604051633a954ecd60e21b815260040160405180910390fd5b6119606000848460000151611824565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611a5557611a08816000541190565b15611a55578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611abe826000541190565b611adb57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b2a579392505050565b5060001901611add565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610905828260405180602001604052806000815250611dad565b60006001600160a01b0384163b15611ca357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611be49033908990889088906004016123cd565b602060405180830381600087803b158015611bfe57600080fd5b505af1925050508015611c2e575060408051601f3d908101601f19168201909252611c2b9181019061224b565b60015b611c89573d808015611c5c576040519150601f19603f3d011682016040523d82523d6000602084013e611c61565b606091505b508051611c81576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ca7565b5060015b949350505050565b606081611cd35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cfd5780611ce781612631565b9150611cf69050600a83612580565b9150611cd7565b60008167ffffffffffffffff811115611d1857611d186126b8565b6040519080825280601f01601f191660200182016040528015611d42576020820181803683370190505b5090505b8415611ca757611d576001836125b3565b9150611d64600a8661264c565b611d6f906030612568565b60f81b818381518110611d8457611d846126a2565b60200101906001600160f81b031916908160001a905350611da6600a86612580565b9450611d46565b610a6a83838360016000546001600160a01b038516611dde57604051622e076360e81b815260040160405180910390fd5b83611dfc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611efb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611ed15750611ecf6000888488611ba0565b155b15611eef576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611e7a565b50600055611a98565b828054611f10906125f6565b90600052602060002090601f016020900481019282611f325760008555611f78565b82601f10611f4b57805160ff1916838001178555611f78565b82800160010185558215611f78579182015b82811115611f78578251825591602001919060010190611f5d565b50610d229291505b80821115610d225760008155600101611f80565b600067ffffffffffffffff831115611fae57611fae6126b8565b611fc1601f8401601f1916602001612537565b9050828152838383011115611fd557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461200357600080fd5b919050565b60006020828403121561201a57600080fd5b61170f82611fec565b6000806040838503121561203657600080fd5b61203f83611fec565b915061204d60208401611fec565b90509250929050565b60008060006060848603121561206b57600080fd5b61207484611fec565b925061208260208501611fec565b9150604084013590509250925092565b600080600080608085870312156120a857600080fd5b6120b185611fec565b93506120bf60208601611fec565b925060408501359150606085013567ffffffffffffffff8111156120e257600080fd5b8501601f810187136120f357600080fd5b61210287823560208401611f94565b91505092959194509250565b6000806040838503121561212157600080fd5b61212a83611fec565b91506020830135801515811461213f57600080fd5b809150509250929050565b6000806040838503121561215d57600080fd5b61216683611fec565b946020939093013593505050565b6000806040838503121561218757600080fd5b823567ffffffffffffffff8082111561219f57600080fd5b818501915085601f8301126121b357600080fd5b81356020828211156121c7576121c76126b8565b8160051b92506121d8818401612537565b8281528181019085830185870184018b10156121f357600080fd5b600096505b8487101561221d5761220981611fec565b8352600196909601959183019183016121f8565b509997909101359750505050505050565b60006020828403121561224057600080fd5b813561170f816126ce565b60006020828403121561225d57600080fd5b815161170f816126ce565b60006020828403121561227a57600080fd5b813567ffffffffffffffff81111561229157600080fd5b8201601f810184136122a257600080fd5b611ca784823560208401611f94565b6000602082840312156122c357600080fd5b5035919050565b600081518084526122e28160208601602086016125ca565b601f01601f19169290920160200192915050565b600081516123088185602086016125ca565b9290920192915050565b600080845481600182811c91508083168061232e57607f831692505b602080841082141561234e57634e487b7160e01b86526022600452602486fd5b8180156123625760018114612373576123a0565b60ff198616895284890196506123a0565b60008b81526020902060005b868110156123985781548b82015290850190830161237f565b505084890196505b5050505050506123c46123b382866122f6565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612400908301846122ca565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561244257835183529284019291840191600101612426565b50909695505050505050565b60208152600061170f60208301846122ca565b60208082526030908201527f45766f6c766564204d61642041706573202d20416c7265616479204d696e746560408201526f64204d6178696d756d2054696d65732160801b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f45766f6c766564204d61642041706573202d2043616e6e6f742062652063616c6040820152701b195908189e48184818dbdb9d1c9858dd607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612560576125606126b8565b604052919050565b6000821982111561257b5761257b612676565b500190565b60008261258f5761258f61268c565b500490565b60008160001904831182151516156125ae576125ae612676565b500290565b6000828210156125c5576125c5612676565b500390565b60005b838110156125e55781810151838201526020016125cd565b8381111561147b5750506000910152565b600181811c9082168061260a57607f821691505b6020821081141561262b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561264557612645612676565b5060010190565b60008261265b5761265b61268c565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461112657600080fdfea2646970667358221220e3f77c3e85c40e789d3a02d866f2e8683550b173d3f7ee08df9751c8a04a02f564736f6c63430008070033

Deployed Bytecode Sourcemap

609:5277:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4347:372:4;;;;;;;;;;-1:-1:-1;4347:372:4;;;;;:::i;:::-;;:::i;:::-;;;8235:14:12;;8228:22;8210:41;;8198:2;8183:18;4347:372:4;;;;;;;;1625:53:2;;;;;;;;;;-1:-1:-1;1625:53:2;;;;;:::i;:::-;;;;;;;;;;;;;;;;;13815:25:12;;;13803:2;13788:18;1625:53:2;13669:177:12;5018:115:2;;;;;;;;;;-1:-1:-1;5018:115:2;;;;;:::i;:::-;;:::i;:::-;;6163:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;890:44:2:-;;;;;;;;;;;;;;;;7640:204:4;;;;;;;;;;-1:-1:-1;7640:204:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6896:32:12;;;6878:51;;6866:2;6851:18;7640:204:4;6732:203:12;7229:345:4;;;;;;;;;;-1:-1:-1;7229:345:4;;;;;:::i;:::-;;:::i;2614:101::-;;;;;;;;;;-1:-1:-1;2667:7:4;2694:13;2614:101;;1568:50:2;;;;;;;;;;-1:-1:-1;1568:50:2;;;;;:::i;:::-;;;;;;;;;;;;;;8497:170:4;;;;;;;;;;-1:-1:-1;8497:170:4;;;;;:::i;:::-;;:::i;3268:1007::-;;;;;;;;;;-1:-1:-1;3268:1007:4;;;;;:::i;:::-;;:::i;693:41:2:-;;;;;;;;;;;;730:4;693:41;;1367:30;;;;;;;;;;-1:-1:-1;1367:30:2;;;;;;;;;;;5667:216;;;;;;;;;;;;;:::i;8738:185:4:-;;;;;;;;;;-1:-1:-1;8738:185:4;;;;;:::i;:::-;;:::i;1031:33:2:-;;;;;;;;;;;;;:::i;2792:176:4:-;;;;;;;;;;-1:-1:-1;2792:176:4;;;;;:::i;:::-;;:::i;1330:30:2:-;;;;;;;;;;-1:-1:-1;1330:30:2;;;;;;;;5574:85;;;;;;;;;;;;;:::i;5972:124:4:-;;;;;;;;;;-1:-1:-1;5972:124:4;;;;;:::i;:::-;;:::i;741:43:2:-;;;;;;;;;;;;783:1;741:43;;4898:114;;;;;;;;;;-1:-1:-1;4898:114:2;;;;;:::i;:::-;;:::i;4783:206:4:-;;;;;;;;;;-1:-1:-1;4783:206:4;;;;;:::i;:::-;;:::i;1714:103:10:-;;;;;;;;;;;;;:::i;4058:406:2:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1444:25::-;;;;;;;;;;-1:-1:-1;1444:25:2;;;;;;;;;;;2466:719;;;;;;:::i;:::-;;:::i;1404:33::-;;;;;;;;;;-1:-1:-1;1404:33:2;;;;;;;;;;;5371:98;;;;;;;;;;;;;:::i;1063:87:10:-;;;;;;;;;;-1:-1:-1;1136:6:10;;-1:-1:-1;;;;;1136:6:10;1063:87;;6332:104:4;;;;;;;;;;;;;:::i;3193:134:2:-;;;;;;;;;;-1:-1:-1;3193:134:2;;;;;:::i;:::-;;:::i;1901:557::-;;;;;;:::i;:::-;;:::i;7916:279:4:-;;;;;;;;;;-1:-1:-1;7916:279:4;;;;;:::i;:::-;;:::i;1515:44:2:-;;;;;;;;;;-1:-1:-1;1515:44:2;;;;;:::i;:::-;;;;;;;;;;;;;;5139:142;;;;;;;;;;-1:-1:-1;5139:142:2;;;;;:::i;:::-;;:::i;8994:308:4:-;;;;;;;;;;-1:-1:-1;8994:308:4;;;;;:::i;:::-;;:::i;941:47:2:-;;;;;;;;;;;;;;;;4472:306;;;;;;;;;;-1:-1:-1;4472:306:2;;;;;:::i;:::-;;:::i;5289:74::-;;;;;;;;;;;;;:::i;3493:471::-;;;;;;;;;;-1:-1:-1;3493:471:2;;;;;:::i;:::-;;:::i;4784:108::-;;;;;;;;;;-1:-1:-1;4784:108:2;;;;;:::i;:::-;;:::i;5477:89::-;;;;;;;;;;;;;:::i;1476:30::-;;;;;;;;;;-1:-1:-1;1476:30:2;;;;;;;;;;;8266:164:4;;;;;;;;;;-1:-1:-1;8266:164:4;;;;;:::i;:::-;-1:-1:-1;;;;;8387:25:4;;;8363:4;8387:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;8266:164;844:39:2;;;;;;;;;;;;882:1;844:39;;1972:201:10;;;;;;;;;;-1:-1:-1;1972:201:10;;;;;:::i;:::-;;:::i;4347:372:4:-;4449:4;-1:-1:-1;;;;;;4486:40:4;;-1:-1:-1;;;4486:40:4;;:105;;-1:-1:-1;;;;;;;4543:48:4;;-1:-1:-1;;;4543:48:4;4486:105;:172;;;-1:-1:-1;;;;;;;4608:50:4;;-1:-1:-1;;;4608:50:4;4486:172;:225;;;-1:-1:-1;;;;;;;;;;963:40:3;;;4675:36:4;4466:245;4347:372;-1:-1:-1;;4347:372:4:o;5018:115:2:-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;;;;;;;;;5097:28:2;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;5018:115:::0;:::o;6163:100:4:-;6217:13;6250:5;6243:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6163:100;:::o;7640:204::-;7708:7;7733:16;7741:7;9614:4;9648:13;-1:-1:-1;9638:23:4;9557:112;7733:16;7728:64;;7758:34;;-1:-1:-1;;;7758:34:4;;;;;;;;;;;7728:64;-1:-1:-1;7812:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;7812:24:4;;7640:204::o;7229:345::-;7302:13;7318:24;7334:7;7318:15;:24::i;:::-;7302:40;;7363:5;-1:-1:-1;;;;;7357:11:4;:2;-1:-1:-1;;;;;7357:11:4;;7353:48;;;7377:24;;-1:-1:-1;;;7377:24:4;;;;;;;;;;;7353:48;736:10:1;-1:-1:-1;;;;;7418:21:4;;;;;;:63;;-1:-1:-1;7444:37:4;7461:5;736:10:1;8266:164:4;:::i;7444:37::-;7443:38;7418:63;7414:111;;;7490:35;;-1:-1:-1;;;7490:35:4;;;;;;;;;;;7414:111;7538:28;7547:2;7551:7;7560:5;7538:8;:28::i;:::-;7291:283;7229:345;;:::o;8497:170::-;8631:28;8641:4;8647:2;8651:7;8631:9;:28::i;3268:1007::-;3357:7;3390:16;3400:5;3390:9;:16::i;:::-;3381:5;:25;3377:61;;3415:23;;-1:-1:-1;;;3415:23:4;;;;;;;;;;;3377:61;3449:22;2694:13;;;3449:22;;3712:466;3732:14;3728:1;:18;3712:466;;;3772:31;3806:14;;;:11;:14;;;;;;;;;3772:48;;;;;;;;;-1:-1:-1;;;;;3772:48:4;;;;;-1:-1:-1;;;3772:48:4;;;;;;;;;;;;3843:28;3839:111;;3916:14;;;-1:-1:-1;3839:111:4;3993:5;-1:-1:-1;;;;;3972:26:4;:17;-1:-1:-1;;;;;3972:26:4;;3968:195;;;4042:5;4027:11;:20;4023:85;;;-1:-1:-1;4083:1:4;-1:-1:-1;4076:8:4;;-1:-1:-1;;;4076:8:4;4023:85;4130:13;;;;;3968:195;-1:-1:-1;3748:3:4;;3712:466;;;-1:-1:-1;4254:13:4;;:::i;:::-;3366:909;;;3268:1007;;;;:::o;5667:216:2:-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;5733:21:2::1;-1:-1:-1::0;;;;;5773:8:2::1;5765:26;:50;5810:4;5793:13;5733:21:::0;5803:3:::1;5793:13;:::i;:::-;5792:22;;;;:::i;:::-;5765:50;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;;;;5834:8:2::1;5826:26;:49;5870:4;5854:12;:7:::0;5864:2:::1;5854:12;:::i;:::-;5853:21;;;;:::i;:::-;5826:49;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;8738:185:4::0;8876:39;8893:4;8899:2;8903:7;8876:39;;;;;;;;;;;;:16;:39::i;1031:33:2:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2792:176:4:-;2859:7;2694:13;;2883:5;:22;2879:58;;2914:23;;-1:-1:-1;;;2914:23:4;;;;;;;;;;;2879:58;-1:-1:-1;2955:5:4;2792:176::o;5574:85:2:-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;5641:10:2::1;::::0;;-1:-1:-1;;5627:24:2;::::1;5641:10;::::0;;::::1;5640:11;5627:24;::::0;;5574:85::o;5972:124:4:-;6036:7;6063:20;6075:7;6063:11;:20::i;:::-;:25;;5972:124;-1:-1:-1;;5972:124:4:o;4898:114:2:-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;4976:20:2::1;:28:::0;4898:114::o;4783:206:4:-;4847:7;-1:-1:-1;;;;;4871:19:4;;4867:60;;4899:28;;-1:-1:-1;;;4899:28:4;;;;;;;;;;;4867:60;-1:-1:-1;;;;;;4953:19:4;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4953:27:4;;4783:206::o;1714:103:10:-;1136:6;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;4058:406:2:-;4100:16;4145:10;4128:14;4193:17;4145:10;4193:9;:17::i;:::-;4166:44;;4221:25;4263:16;4249:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4249:31:2;;4221:59;;4297:13;4293:136;4324:16;4316:5;:24;4293:136;;;4383:34;4403:6;4411:5;4383:19;:34::i;:::-;4365:8;4374:5;4365:15;;;;;;;;:::i;:::-;;;;;;;;;;:52;4342:7;;;;:::i;:::-;;;;4293:136;;;-1:-1:-1;4448:8:2;4058:406;-1:-1:-1;;;4058:406:2:o;2466:719::-;1796:9;1809:10;1796:23;1788:85;;;;-1:-1:-1;;;1788:85:2;;;;;;;:::i;:::-;2556:13:::1;::::0;;;::::1;;;2548:73;;;::::0;-1:-1:-1;;;2548:73:2;;8688:2:12;2548:73:2::1;::::0;::::1;8670:21:12::0;8727:2;8707:18;;;8700:30;8766:34;8746:18;;;8739:62;-1:-1:-1;;;8817:18:12;;;8810:45;8872:19;;2548:73:2::1;8486:411:12::0;2548:73:2::1;730:4;2657:9;2641:13;2667:7:4::0;2694:13;;2614:101;2641:13:2::1;:25;;;;:::i;:::-;2640:41;;2632:102;;;::::0;-1:-1:-1;;;2632:102:2;;11804:2:12;2632:102:2::1;::::0;::::1;11786:21:12::0;11843:2;11823:18;;;11816:30;11882:34;11862:18;;;11855:62;-1:-1:-1;;;11933:18:12;;;11926:46;11989:19;;2632:102:2::1;11602:412:12::0;2632:102:2::1;2773:10;2754:30;::::0;;;:18:::1;:30;::::0;;;;;836:1:::1;::::0;2754:42:::1;::::0;2787:9;;2754:42:::1;:::i;:::-;2753:67;;2745:128;;;;-1:-1:-1::0;;;2745:128:2::1;;;;;;;:::i;:::-;2929:9;2906:20;;:32;;;;:::i;:::-;2892:9;:47;;2884:105;;;::::0;-1:-1:-1;;;2884:105:2;;9511:2:12;2884:105:2::1;::::0;::::1;9493:21:12::0;9550:2;9530:18;;;9523:30;9589:34;9569:18;;;9562:62;-1:-1:-1;;;9640:18:12;;;9633:43;9693:19;;2884:105:2::1;9309:409:12::0;2884:105:2::1;3018:10;3032:1;3008:21:::0;;;:9:::1;:21;::::0;;;;;3000:80:::1;;;::::0;-1:-1:-1;;;3000:80:2;;13460:2:12;3000:80:2::1;::::0;::::1;13442:21:12::0;13499:2;13479:18;;;13472:30;13538:34;13518:18;;;13511:62;-1:-1:-1;;;13589:18:12;;;13582:40;13639:19;;3000:80:2::1;13258:406:12::0;3000:80:2::1;3110:10;3091:30;::::0;;;:18:::1;:30;::::0;;;;:43;;3125:9;;3091:30;:43:::1;::::0;3125:9;;3091:43:::1;:::i;:::-;::::0;;;-1:-1:-1;3145:32:2::1;::::0;-1:-1:-1;3155:10:2::1;3167:9:::0;3145::::1;:32::i;:::-;2466:719:::0;:::o;5371:98::-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;5448:13:2::1;::::0;;-1:-1:-1;;5431:30:2;::::1;5448:13:::0;;;;::::1;;;5447:14;5431:30:::0;;::::1;;::::0;;5371:98::o;6332:104:4:-;6388:13;6421:7;6414:14;;;;;:::i;3193:134:2:-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;3259:10:2::1;:17:::0;;-1:-1:-1;;3259:17:2::1;::::0;::::1;::::0;;3287:32:::1;3297:10;3309:9:::0;3287::::1;:32::i;1901:557::-:0;1796:9;1809:10;1796:23;1788:85;;;;-1:-1:-1;;;1788:85:2;;;;;;;:::i;:::-;1982:10:::1;::::0;::::1;::::0;::::1;;;1974:57;;;::::0;-1:-1:-1;;;1974:57:2;;10269:2:12;1974:57:2::1;::::0;::::1;10251:21:12::0;10308:2;10288:18;;;10281:30;10347:34;10327:18;;;10320:62;-1:-1:-1;;;10398:18:12;;;10391:32;10440:19;;1974:57:2::1;10067:398:12::0;1974:57:2::1;730:4;2067:9;2051:13;2667:7:4::0;2694:13;;2614:101;2051:13:2::1;:25;;;;:::i;:::-;2050:41;;2042:90;;;::::0;-1:-1:-1;;;2042:90:2;;13055:2:12;2042:90:2::1;::::0;::::1;13037:21:12::0;13094:2;13074:18;;;13067:30;13133:34;13113:18;;;13106:62;-1:-1:-1;;;13184:18:12;;;13177:34;13228:19;;2042:90:2::1;12853:400:12::0;2042:90:2::1;2168:10;2152:27;::::0;;;:15:::1;:27;::::0;;;;;783:1:::1;::::0;2152:38:::1;::::0;2181:9;;2152:38:::1;:::i;:::-;2151:59;;2143:120;;;;-1:-1:-1::0;;;2143:120:2::1;;;;;;;:::i;:::-;2316:9;2296:17;;:29;;;;:::i;:::-;2282:9;:44;;2274:82;;;::::0;-1:-1:-1;;;2274:82:2;;10672:2:12;2274:82:2::1;::::0;::::1;10654:21:12::0;10711:2;10691:18;;;10684:30;10750:27;10730:18;;;10723:55;10795:18;;2274:82:2::1;10470:349:12::0;2274:82:2::1;2383:10;2367:27;::::0;;;:15:::1;:27;::::0;;;;:40;;2398:9;;2367:27;:40:::1;::::0;2398:9;;2367:40:::1;:::i;7916:279:4:-:0;-1:-1:-1;;;;;8007:24:4;;736:10:1;8007:24:4;8003:54;;;8040:17;;-1:-1:-1;;;8040:17:4;;;;;;;;;;;8003:54;736:10:1;8070:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;8070:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;8070:53:4;;;;;;;;;;8139:48;;8210:41:12;;;8070:42:4;;736:10:1;8139:48:4;;8183:18:12;8139:48:4;;;;;;;7916:279;;:::o;5139:142:2:-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;5231:42:2;;::::1;::::0;:19:::1;::::0;:42:::1;::::0;::::1;::::0;::::1;:::i;8994:308:4:-:0;9153:28;9163:4;9169:2;9173:7;9153:9;:28::i;:::-;9197:48;9220:4;9226:2;9230:7;9239:5;9197:22;:48::i;:::-;9192:102;;9254:40;;-1:-1:-1;;;9254:40:4;;;;;;;;;;;9192:102;8994:308;;;;:::o;4472:306:2:-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;4608:1:2::1;4597:8;:12;4575:77;;;::::0;-1:-1:-1;;;4575:77:2;;9925:2:12;4575:77:2::1;::::0;::::1;9907:21:12::0;9964:2;9944:18;;;9937:30;-1:-1:-1;;;9983:18:12;;;9976:45;10038:18;;4575:77:2::1;9723:339:12::0;4575:77:2::1;4668:9;4663:108;4687:9;:16;4683:1;:20;4663:108;;;4751:8;4725:9;:23;4735:9;4745:1;4735:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;4725:23:2::1;-1:-1:-1::0;;;;;4725:23:2::1;;;;;;;;;;;;:34;;;;4705:3;;;;;:::i;:::-;;;;4663:108;;5289:74:::0;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;5350:5:2::1;::::0;;-1:-1:-1;;5341:14:2;::::1;5350:5:::0;;;;::::1;;;5349:6;5341:14:::0;;::::1;;::::0;;5289:74::o;3493:471::-;3566:13;3600:16;3608:7;9614:4:4;9648:13;-1:-1:-1;9638:23:4;9557:112;3600:16:2;3592:76;;;;-1:-1:-1;;;3592:76:2;;12221:2:12;3592:76:2;;;12203:21:12;12260:2;12240:18;;;12233:30;12299:34;12279:18;;;12272:62;-1:-1:-1;;;12350:18:12;;;12343:45;12405:19;;3592:76:2;12019:411:12;3592:76:2;3681:14;3698:11;:7;3708:1;3698:11;:::i;:::-;3726:10;;3681:28;;-1:-1:-1;3726:10:2;;3722:68;;3759:19;3752:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3493:471;;;:::o;3722:68::-;3883:1;3860:12;3854:26;;;;;:::i;:::-;;;:30;:102;;;;;;;;;;;;;;;;;3911:12;3924:17;:6;:15;:17::i;:::-;3894:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3854:102;3847:109;3493:471;-1:-1:-1;;;3493:471:2:o;4784:108::-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;4859:17:2::1;:25:::0;4784:108::o;5477:89::-;1136:6:10;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;5548:10:2::1;::::0;;-1:-1:-1;;5534:24:2;::::1;5548:10;::::0;;;::::1;;;5547:11;5534:24:::0;;::::1;;::::0;;5477:89::o;1972:201:10:-;1136:6;;-1:-1:-1;;;;;1136:6:10;736:10:1;1283:23:10;1275:68;;;;-1:-1:-1;;;1275:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;2061:22:10;::::1;2053:73;;;::::0;-1:-1:-1;;;2053:73:10;;9104:2:12;2053:73:10::1;::::0;::::1;9086:21:12::0;9143:2;9123:18;;;9116:30;9182:34;9162:18;;;9155:62;-1:-1:-1;;;9233:18:12;;;9226:36;9279:19;;2053:73:10::1;8902:402:12::0;2053:73:10::1;2137:28;2156:8;2137:18;:28::i;14322:196:4:-:0;14437:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;14437:29:4;-1:-1:-1;;;;;14437:29:4;;;;;;;;;14482:28;;14437:24;;14482:28;;;;;;;14322:196;;;:::o;12242:1962::-;12357:35;12395:20;12407:7;12395:11;:20::i;:::-;12470:18;;12357:58;;-1:-1:-1;12428:22:4;;-1:-1:-1;;;;;12454:34:4;736:10:1;-1:-1:-1;;;;;12454:34:4;;:87;;;-1:-1:-1;736:10:1;12505:20:4;12517:7;12505:11;:20::i;:::-;-1:-1:-1;;;;;12505:36:4;;12454:87;:154;;;-1:-1:-1;12575:18:4;;12558:50;;736:10:1;8266:164:4;:::i;12558:50::-;12428:181;;12627:17;12622:66;;12653:35;;-1:-1:-1;;;12653:35:4;;;;;;;;;;;12622:66;12725:4;-1:-1:-1;;;;;12703:26:4;:13;:18;;;-1:-1:-1;;;;;12703:26:4;;12699:67;;12738:28;;-1:-1:-1;;;12738:28:4;;;;;;;;;;;12699:67;-1:-1:-1;;;;;12781:16:4;;12777:52;;12806:23;;-1:-1:-1;;;12806:23:4;;;;;;;;;;;12777:52;12950:49;12967:1;12971:7;12980:13;:18;;;12950:8;:49::i;:::-;-1:-1:-1;;;;;13295:18:4;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;13295:31:4;;;-1:-1:-1;;;;;13295:31:4;;;-1:-1:-1;;13295:31:4;;;;;;;13341:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;13341:29:4;;;;;;;;;;;;;13387:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;13432:61:4;;;;-1:-1:-1;;;13477:15:4;13432:61;;;;;;13767:11;;;13797:24;;;;;:29;13767:11;;13797:29;13793:295;;13865:20;13873:11;9614:4;9648:13;-1:-1:-1;9638:23:4;9557:112;13865:20;13861:212;;;13942:18;;;13910:24;;;:11;:24;;;;;;;;:50;;14025:28;;;;13983:70;;-1:-1:-1;;;13983:70:4;-1:-1:-1;;;;;;13983:70:4;;;-1:-1:-1;;;;;13910:50:4;;;13983:70;;;;;;;13861:212;13270:829;14135:7;14131:2;-1:-1:-1;;;;;14116:27:4;14125:4;-1:-1:-1;;;;;14116:27:4;;;;;;;;;;;14154:42;12346:1858;;12242:1962;;;:::o;5406:504::-;-1:-1:-1;;;;;;;;;;;;;;;;;5506:16:4;5514:7;9614:4;9648:13;-1:-1:-1;9638:23:4;9557:112;5506:16;5501:61;;5531:31;;-1:-1:-1;;;5531:31:4;;;;;;;;;;;5501:61;5620:7;5600:245;5667:31;5701:17;;;:11;:17;;;;;;;;;5667:51;;;;;;;;;-1:-1:-1;;;;;5667:51:4;;;;;-1:-1:-1;;;5667:51:4;;;;;;;;;;;;5741:28;5737:93;;5801:9;5406:504;-1:-1:-1;;;5406:504:4:o;5737:93::-;-1:-1:-1;;;5640:6:4;5600:245;;2333:191:10;2426:6;;;-1:-1:-1;;;;;2443:17:10;;;-1:-1:-1;;;;;;2443:17:10;;;;;;;2476:40;;2426:6;;;2443:17;2426:6;;2476:40;;2407:16;;2476:40;2396:128;2333:191;:::o;9677:104:4:-;9746:27;9756:2;9760:8;9746:27;;;;;;;;;;;;:9;:27::i;15083:765::-;15238:4;-1:-1:-1;;;;;15259:13:4;;1505:19:0;:23;15255:586:4;;15295:72;;-1:-1:-1;;;15295:72:4;;-1:-1:-1;;;;;15295:36:4;;;;;:72;;736:10:1;;15346:4:4;;15352:7;;15361:5;;15295:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15295:72:4;;;;;;;;-1:-1:-1;;15295:72:4;;;;;;;;;;;;:::i;:::-;;;15291:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15541:13:4;;15537:234;;15568:40;;-1:-1:-1;;;15568:40:4;;;;;;;;;;;15537:234;15721:6;15715:13;15706:6;15702:2;15698:15;15691:38;15291:495;-1:-1:-1;;;;;;15418:55:4;-1:-1:-1;;;15418:55:4;;-1:-1:-1;15411:62:4;;15255:586;-1:-1:-1;15825:4:4;15255:586;15083:765;;;;;;:::o;342:723:11:-;398:13;619:10;615:53;;-1:-1:-1;;646:10:11;;;;;;;;;;;;-1:-1:-1;;;646:10:11;;;;;342:723::o;615:53::-;693:5;678:12;734:78;741:9;;734:78;;767:8;;;;:::i;:::-;;-1:-1:-1;790:10:11;;-1:-1:-1;798:2:11;790:10;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;844:17:11;;822:39;;872:154;879:10;;872:154;;906:11;916:1;906:11;;:::i;:::-;;-1:-1:-1;975:10:11;983:2;975:5;:10;:::i;:::-;962:24;;:2;:24;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;932:56:11;;;;;;;;-1:-1:-1;1003:11:11;1012:2;1003:11;;:::i;:::-;;;872:154;;10146:163:4;10269:32;10275:2;10279:8;10289:5;10296:4;10707:20;10730:13;-1:-1:-1;;;;;10758:16:4;;10754:48;;10783:19;;-1:-1:-1;;;10783:19:4;;;;;;;;;;;10754:48;10817:13;10813:44;;10839:18;;-1:-1:-1;;;10839:18:4;;;;;;;;;;;10813:44;-1:-1:-1;;;;;11210:16:4;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;11210:45:4;;-1:-1:-1;;;;;11210:45:4;;;;;;;;;;11270:50;;;;;;;;;;;;;;11337:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;11387:66:4;;;;-1:-1:-1;;;11437:15:4;11387:66;;;;;;;11337:25;;11522:330;11542:8;11538:1;:12;11522:330;;;11581:38;;11606:12;;-1:-1:-1;;;;;11581:38:4;;;11598:1;;11581:38;;11598:1;;11581:38;11642:4;:68;;;;;11651:59;11682:1;11686:2;11690:12;11704:5;11651:22;:59::i;:::-;11650:60;11642:68;11638:164;;;11742:40;;-1:-1:-1;;;11742:40:4;;;;;;;;;;;11638:164;11822:14;;;;;11552:3;11522:330;;;-1:-1:-1;11868:13:4;:28;11920:60;8994:308;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:12;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:12;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:12;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:12;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:12:o;2674:1033::-;2767:6;2775;2828:2;2816:9;2807:7;2803:23;2799:32;2796:52;;;2844:1;2841;2834:12;2796:52;2884:9;2871:23;2913:18;2954:2;2946:6;2943:14;2940:34;;;2970:1;2967;2960:12;2940:34;3008:6;2997:9;2993:22;2983:32;;3053:7;3046:4;3042:2;3038:13;3034:27;3024:55;;3075:1;3072;3065:12;3024:55;3111:2;3098:16;3133:4;3156:2;3152;3149:10;3146:36;;;3162:18;;:::i;:::-;3208:2;3205:1;3201:10;3191:20;;3231:28;3255:2;3251;3247:11;3231:28;:::i;:::-;3293:15;;;3324:12;;;;3356:11;;;3386;;;3382:20;;3379:33;-1:-1:-1;3376:53:12;;;3425:1;3422;3415:12;3376:53;3447:1;3438:10;;3457:169;3471:2;3468:1;3465:9;3457:169;;;3528:23;3547:3;3528:23;:::i;:::-;3516:36;;3489:1;3482:9;;;;;3572:12;;;;3604;;3457:169;;;-1:-1:-1;3645:5:12;3682:18;;;;3669:32;;-1:-1:-1;;;;;;;2674:1033:12:o;3712:245::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3878:9;3865:23;3897:30;3921:5;3897:30;:::i;3962:249::-;4031:6;4084:2;4072:9;4063:7;4059:23;4055:32;4052:52;;;4100:1;4097;4090:12;4052:52;4132:9;4126:16;4151:30;4175:5;4151:30;:::i;4216:450::-;4285:6;4338:2;4326:9;4317:7;4313:23;4309:32;4306:52;;;4354:1;4351;4344:12;4306:52;4394:9;4381:23;4427:18;4419:6;4416:30;4413:50;;;4459:1;4456;4449:12;4413:50;4482:22;;4535:4;4527:13;;4523:27;-1:-1:-1;4513:55:12;;4564:1;4561;4554:12;4513:55;4587:73;4652:7;4647:2;4634:16;4629:2;4625;4621:11;4587:73;:::i;4671:180::-;4730:6;4783:2;4771:9;4762:7;4758:23;4754:32;4751:52;;;4799:1;4796;4789:12;4751:52;-1:-1:-1;4822:23:12;;4671:180;-1:-1:-1;4671:180:12:o;4856:257::-;4897:3;4935:5;4929:12;4962:6;4957:3;4950:19;4978:63;5034:6;5027:4;5022:3;5018:14;5011:4;5004:5;5000:16;4978:63;:::i;:::-;5095:2;5074:15;-1:-1:-1;;5070:29:12;5061:39;;;;5102:4;5057:50;;4856:257;-1:-1:-1;;4856:257:12:o;5118:185::-;5160:3;5198:5;5192:12;5213:52;5258:6;5253:3;5246:4;5239:5;5235:16;5213:52;:::i;:::-;5281:16;;;;;5118:185;-1:-1:-1;;5118:185:12:o;5426:1301::-;5703:3;5732:1;5765:6;5759:13;5795:3;5817:1;5845:9;5841:2;5837:18;5827:28;;5905:2;5894:9;5890:18;5927;5917:61;;5971:4;5963:6;5959:17;5949:27;;5917:61;5997:2;6045;6037:6;6034:14;6014:18;6011:38;6008:165;;;-1:-1:-1;;;6072:33:12;;6128:4;6125:1;6118:15;6158:4;6079:3;6146:17;6008:165;6189:18;6216:104;;;;6334:1;6329:320;;;;6182:467;;6216:104;-1:-1:-1;;6249:24:12;;6237:37;;6294:16;;;;-1:-1:-1;6216:104:12;;6329:320;14204:1;14197:14;;;14241:4;14228:18;;6424:1;6438:165;6452:6;6449:1;6446:13;6438:165;;;6530:14;;6517:11;;;6510:35;6573:16;;;;6467:10;;6438:165;;;6442:3;;6632:6;6627:3;6623:16;6616:23;;6182:467;;;;;;;6665:56;6690:30;6716:3;6708:6;6690:30;:::i;:::-;-1:-1:-1;;;5368:20:12;;5413:1;5404:11;;5308:113;6665:56;6658:63;5426:1301;-1:-1:-1;;;;;5426:1301:12:o;6940:488::-;-1:-1:-1;;;;;7209:15:12;;;7191:34;;7261:15;;7256:2;7241:18;;7234:43;7308:2;7293:18;;7286:34;;;7356:3;7351:2;7336:18;;7329:31;;;7134:4;;7377:45;;7402:19;;7394:6;7377:45;:::i;:::-;7369:53;6940:488;-1:-1:-1;;;;;;6940:488:12:o;7433:632::-;7604:2;7656:21;;;7726:13;;7629:18;;;7748:22;;;7575:4;;7604:2;7827:15;;;;7801:2;7786:18;;;7575:4;7870:169;7884:6;7881:1;7878:13;7870:169;;;7945:13;;7933:26;;8014:15;;;;7979:12;;;;7906:1;7899:9;7870:169;;;-1:-1:-1;8056:3:12;;7433:632;-1:-1:-1;;;;;;7433:632:12:o;8262:219::-;8411:2;8400:9;8393:21;8374:4;8431:44;8471:2;8460:9;8456:18;8448:6;8431:44;:::i;10824:412::-;11026:2;11008:21;;;11065:2;11045:18;;;11038:30;11104:34;11099:2;11084:18;;11077:62;-1:-1:-1;;;11170:2:12;11155:18;;11148:46;11226:3;11211:19;;10824:412::o;11241:356::-;11443:2;11425:21;;;11462:18;;;11455:30;11521:34;11516:2;11501:18;;11494:62;11588:2;11573:18;;11241:356::o;12435:413::-;12637:2;12619:21;;;12676:2;12656:18;;;12649:30;12715:34;12710:2;12695:18;;12688:62;-1:-1:-1;;;12781:2:12;12766:18;;12759:47;12838:3;12823:19;;12435:413::o;13851:275::-;13922:2;13916:9;13987:2;13968:13;;-1:-1:-1;;13964:27:12;13952:40;;14022:18;14007:34;;14043:22;;;14004:62;14001:88;;;14069:18;;:::i;:::-;14105:2;14098:22;13851:275;;-1:-1:-1;13851:275:12:o;14257:128::-;14297:3;14328:1;14324:6;14321:1;14318:13;14315:39;;;14334:18;;:::i;:::-;-1:-1:-1;14370:9:12;;14257:128::o;14390:120::-;14430:1;14456;14446:35;;14461:18;;:::i;:::-;-1:-1:-1;14495:9:12;;14390:120::o;14515:168::-;14555:7;14621:1;14617;14613:6;14609:14;14606:1;14603:21;14598:1;14591:9;14584:17;14580:45;14577:71;;;14628:18;;:::i;:::-;-1:-1:-1;14668:9:12;;14515:168::o;14688:125::-;14728:4;14756:1;14753;14750:8;14747:34;;;14761:18;;:::i;:::-;-1:-1:-1;14798:9:12;;14688:125::o;14818:258::-;14890:1;14900:113;14914:6;14911:1;14908:13;14900:113;;;14990:11;;;14984:18;14971:11;;;14964:39;14936:2;14929:10;14900:113;;;15031:6;15028:1;15025:13;15022:48;;;-1:-1:-1;;15066:1:12;15048:16;;15041:27;14818:258::o;15081:380::-;15160:1;15156:12;;;;15203;;;15224:61;;15278:4;15270:6;15266:17;15256:27;;15224:61;15331:2;15323:6;15320:14;15300:18;15297:38;15294:161;;;15377:10;15372:3;15368:20;15365:1;15358:31;15412:4;15409:1;15402:15;15440:4;15437:1;15430:15;15294:161;;15081:380;;;:::o;15466:135::-;15505:3;-1:-1:-1;;15526:17:12;;15523:43;;;15546:18;;:::i;:::-;-1:-1:-1;15593:1:12;15582:13;;15466:135::o;15606:112::-;15638:1;15664;15654:35;;15669:18;;:::i;:::-;-1:-1:-1;15703:9:12;;15606:112::o;15723:127::-;15784:10;15779:3;15775:20;15772:1;15765:31;15815:4;15812:1;15805:15;15839:4;15836:1;15829:15;15855:127;15916:10;15911:3;15907:20;15904:1;15897:31;15947:4;15944:1;15937:15;15971:4;15968:1;15961:15;15987:127;16048:10;16043:3;16039:20;16036:1;16029:31;16079:4;16076:1;16069:15;16103:4;16100:1;16093:15;16119:127;16180:10;16175:3;16171:20;16168:1;16161:31;16211:4;16208:1;16201:15;16235:4;16232:1;16225:15;16251:127;16312:10;16307:3;16303:20;16300:1;16293:31;16343:4;16340:1;16333:15;16367:4;16364:1;16357:15;16383:131;-1:-1:-1;;;;;;16457:32:12;;16447:43;;16437:71;;16504:1;16501;16494:12

Swarm Source

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