ETH Price: $2,172.29 (+3.33%)

Token

GOBLINHOUSE (GBLHS)
 

Overview

Max Total Supply

532 GBLHS

Holders

17

Transfers

-
0

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

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:
GOBLINHOUSE

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-06-04
*/

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


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

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


// 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: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

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

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // 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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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 virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(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
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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) 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 > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: contracts/GOBLINHOUSE .sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;




/*
lalalala.sol

Contract by lalala
*/

contract GOBLINHOUSE is Ownable, ERC721A {
    uint256 constant public MAX_SUPPLY = 10000;
    uint256 public TEAM_MINT_MAX = 250;

    uint256 public publicPrice = 0.004 ether;

    uint256 constant public PUBLIC_MINT_LIMIT_TXN = 10;
    uint256 constant public PUBLIC_MINT_LIMIT = 20;

    uint256 public TOTAL_SUPPLY_TEAM;

    string public revealedURI;
    
    string public hiddenURI;
    // = "ipfs://Qmc4JDCiTxWwGreCtuRLFkWoL16zcxdFrfRRREeMCKmyfg";

    // OpenSea CONTRACT_URI - https://docs.opensea.io/docs/contract-level-metadata
    string public CONTRACT_URI = "ipfs://Qmc4JDCiTxWwGreCtuRLFkWoL16zcxdFrfRRREeMCKmyfg";

    bool public paused = true;
    bool public revealed = false;

    bool public freeSale = true;
    bool public publicSale = true;

    address constant internal DEV_ADDRESS = 0xE02017103BBe119aE20B54a8edd87e9df1E2742a;
    address public teamWallet = 0xE02017103BBe119aE20B54a8edd87e9df1E2742a;

    mapping(address => bool) public userMintedFree;
    mapping(address => uint256) public numUserMints;

    constructor() ERC721A("GOBLINHOUSE", "GBLHS") { }

    // Private Functions
    // This function is if you want to override the first Token ID# for ERC721A
    // Note: Fun fact - by overloading this method you save a small amount of gas for minting (technically just the first mint)
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function refundOverpay(uint256 price) private {
        if (msg.value > price) {
            (bool succ, ) = payable(msg.sender).call{
                value: (msg.value - price)
            }("");
            require(succ, "Transfer failed");
        }
        else if (msg.value < price) {
            revert("Not enough ETH sent");
        }
    }

   // Public Functions

    function teamMint(uint256 quantity) public payable mintCompliance(quantity) {
        require(msg.sender == teamWallet, "Team minting only");
        require(TOTAL_SUPPLY_TEAM + quantity <= TEAM_MINT_MAX, "No team mints left");
        //require(totalSupply() >= 10, "Team mints after free");

        TOTAL_SUPPLY_TEAM += quantity;

        _safeMint(msg.sender, quantity);
    }
    
    function freeMint(uint256 quantity) external payable mintCompliance(quantity) {
        require(freeSale, "Free sale inactive");
        require(msg.value == 0, "This phase is free");
        require(quantity <= 2, "Only 2 free");

        uint256 newSupply = totalSupply() + quantity;
        
        require(newSupply <= 1250, "Not enough free supply");

        require(!userMintedFree[msg.sender], "User max free limit");
        
        userMintedFree[msg.sender] = true;

        if(newSupply == 1250) {
            freeSale = false;
            publicSale = true;
        }

        _safeMint(msg.sender, quantity);
    }

    function publicMint(uint256 quantity) external payable mintCompliance(quantity) {
        require(publicSale, "Public sale inactive");
        require(quantity <= PUBLIC_MINT_LIMIT_TXN, "Quantity too high");

        uint256 price = publicPrice;
        uint256 currMints = numUserMints[msg.sender];
                
        require(currMints + quantity <= PUBLIC_MINT_LIMIT, "User max mint limit");
        
        refundOverpay(price * quantity);

        numUserMints[msg.sender] = (currMints + quantity);

        _safeMint(msg.sender, quantity);
    }

    // View Functions
    // Note: walletOfOwner is only really necessary for enumerability when staking/using on websites etc.
        // That said, it's a public view so we can keep it in.
        // This could also be optimized if someone REALLY wanted, but it's just a public view.
        // Check the pinned tweets of 0xInuarashi for more ideas on this method!
        // For now, this is just the version that existed in v1.
    function walletOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

        currentTokenId++;
        }

        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        // Note: You don't REALLY need this require statement since nothing should be querying for non-existing tokens after reveal.
            // That said, it's a public view method so gas efficiency shouldn't come into play.
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        
        if (revealed) {
            return string(abi.encodePacked(revealedURI, Strings.toString(_tokenId), ".json"));
        }
        else {
            return hiddenURI;
        }
    }

    // https://docs.opensea.io/docs/contract-level-metadata
    // https://ethereum.stackexchange.com/questions/110924/how-to-properly-implement-a-contracturi-for-on-chain-nfts
    function contractURI() public view returns (string memory) {
        return CONTRACT_URI;
    }

    // Owner Functions

    function setTeamMintMax(uint256 _teamMintMax) public onlyOwner {
        TEAM_MINT_MAX = _teamMintMax;
    }

    function setPublicPrice(uint256 _publicPrice) public onlyOwner {
        publicPrice = _publicPrice;
    }

    function setBaseURI(string memory _baseUri) public onlyOwner {
        revealedURI = _baseUri;
    }

    // Note: This method can be hidden/removed if this is a constant.
    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenURI = _hiddenMetadataUri;
    }

    function revealCollection(bool _revealed, string memory _baseUri) public onlyOwner {
        revealed = _revealed;
        revealedURI = _baseUri;
    }

    // https://docs.opensea.io/docs/contract-level-metadata
    function setContractURI(string memory _contractURI) public onlyOwner {
        CONTRACT_URI = _contractURI;
    }

    // Note: Another option is to inherit Pausable without implementing the logic yourself.
        // https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/Pausable.sol
    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setPublicEnabled(bool _state) public onlyOwner {
        publicSale = _state;
        freeSale = !_state;
    }
    function setFreeEnabled(bool _state) public onlyOwner {
        freeSale = _state;
        publicSale = !_state;
    }

    function withdraw() external payable onlyOwner {
        // Get the current funds to calculate initial percentages
        uint256 currBalance = address(this).balance;

        (bool succ, ) = payable(DEV_ADDRESS).call{
            value: (currBalance * 10000) / 10000
        }("");
        require(succ, "Dev transfer failed");
    }

    // Owner-only mint functionality to "Airdrop" mints to specific users
        // Note: These will likely end up hidden on OpenSea
    function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) {
        _safeMint(receiver, quantity);
    }

    // Modifiers

    modifier mintCompliance(uint256 quantity) {
        require(!paused, "Contract is paused");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough mints left");
        require(tx.origin == msg.sender, "No contract minting");
        _;
    }
}

Contract Security Audit

Contract ABI

API
[{"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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"CONTRACT_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_MINT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY_TEAM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numUserMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bool","name":"_revealed","type":"bool"},{"internalType":"string","name":"_baseUri","type":"string"}],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFreeEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamMintMax","type":"uint256"}],"name":"setTeamMintMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60fa600955660e35fa931a0000600a5560e0604052603560808181529062002a6c60a03980516200003991600e916020909101906200015a565b50600f80546001600160c01b03191677e02017103bbe119ae20b54a8edd87e9df1e2742a010100011790553480156200007157600080fd5b506040518060400160405280600b81526020016a474f424c494e484f55534560a81b8152506040518060400160405280600581526020016447424c485360d81b815250620000ce620000c86200010660201b60201c565b6200010a565b8151620000e39060039060208501906200015a565b508051620000f99060049060208401906200015a565b505060018055506200023d565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001689062000200565b90600052602060002090601f0160209004810192826200018c5760008555620001d7565b82601f10620001a757805160ff1916838001178555620001d7565b82800160010185558215620001d7579182015b82811115620001d7578251825591602001919060010190620001ba565b50620001e5929150620001e9565b5090565b5b80821115620001e55760008155600101620001ea565b600181811c908216806200021557607f821691505b602082108114156200023757634e487b7160e01b600052602260045260246000fd5b50919050565b61281f806200024d6000396000f3fe6080604052600436106102c95760003560e01c80636b39fca41161017557806395d89b41116100dc578063c627525511610095578063e8a3d4851161006f578063e8a3d48514610843578063e985e9c514610858578063f2fde38b146108a1578063f7e8d6ea146108c157600080fd5b8063c6275255146107e3578063c87b56dd14610803578063e0a808531461082357600080fd5b806395d89b4114610743578063a22cb46514610758578063a4b41a1514610778578063a945bf8014610798578063b88d4fde146107ae578063bceae77b146107ce57600080fd5b80637c928fe91161012e5780637c928fe91461069d57806388dedc14146106b05780638cc54e7f146106d05780638da5cb5b146106e55780639007bd7214610703578063938e3d7b1461072357600080fd5b80636b39fca4146105ef57806370a0823114610605578063715018a614610625578063763ea95f1461063a5780637aeb7242146106505780637af3a1af1461067d57600080fd5b806333bc1c5c1161023457806355f804b3116101ed5780635c975abb116101c75780635c975abb146105655780635ed3e25e1461057f5780636352211e1461059f57806364f64076146105bf57600080fd5b806355f804b31461050857806356b4f67314610528578063599270441461053d57600080fd5b806333bc1c5c146104535780633ccfd60b1461047457806342842e0e1461047c578063438b63001461049c5780634fdd43cb146104c957806351830227146104e957600080fd5b806318160ddd1161028657806318160ddd146103bf57806323b872dd146103e25780632db11544146104025780632fbba115146104155780632fecf20b1461042857806332cb6b0c1461043d57600080fd5b806301ffc9a7146102ce57806306fdde0314610303578063081812fc14610325578063095ea7b31461035d5780630f15ad8d1461037f57806316c38b3c1461039f575b600080fd5b3480156102da57600080fd5b506102ee6102e93660046123a1565b6108d6565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b50610318610928565b6040516102fa91906125c9565b34801561033157600080fd5b5061034561034036600461240c565b6109ba565b6040516001600160a01b0390911681526020016102fa565b34801561036957600080fd5b5061037d610378366004612312565b6109fe565b005b34801561038b57600080fd5b5061037d61039a36600461240c565b610ad1565b3480156103ab57600080fd5b5061037d6103ba36600461233b565b610b09565b3480156103cb57600080fd5b506103d4610b46565b6040519081526020016102fa565b3480156103ee57600080fd5b5061037d6103fd366004612235565b610b54565b61037d61041036600461240c565b610b64565b61037d61042336600461240c565b610d13565b34801561043457600080fd5b506103d4600a81565b34801561044957600080fd5b506103d461271081565b34801561045f57600080fd5b50600f546102ee906301000000900460ff1681565b61037d610e5b565b34801561048857600080fd5b5061037d610497366004612235565b610f3c565b3480156104a857600080fd5b506104bc6104b73660046121e9565b610f57565b6040516102fa9190612585565b3480156104d557600080fd5b5061037d6104e43660046123d9565b611054565b3480156104f557600080fd5b50600f546102ee90610100900460ff1681565b34801561051457600080fd5b5061037d6105233660046123d9565b611091565b34801561053457600080fd5b506103186110ce565b34801561054957600080fd5b50600f546103459064010000000090046001600160a01b031681565b34801561057157600080fd5b50600f546102ee9060ff1681565b34801561058b57600080fd5b5061037d61059a366004612355565b61115c565b3480156105ab57600080fd5b506103456105ba36600461240c565b6111ac565b3480156105cb57600080fd5b506102ee6105da3660046121e9565b60106020526000908152604090205460ff1681565b3480156105fb57600080fd5b506103d460095481565b34801561061157600080fd5b506103d46106203660046121e9565b6111b7565b34801561063157600080fd5b5061037d611206565b34801561064657600080fd5b506103d4600b5481565b34801561065c57600080fd5b506103d461066b3660046121e9565b60116020526000908152604090205481565b34801561068957600080fd5b5061037d61069836600461233b565b61123c565b61037d6106ab36600461240c565b611295565b3480156106bc57600080fd5b5061037d6106cb36600461233b565b6114d6565b3480156106dc57600080fd5b50610318611530565b3480156106f157600080fd5b506000546001600160a01b0316610345565b34801561070f57600080fd5b5061037d61071e366004612424565b61153d565b34801561072f57600080fd5b5061037d61073e3660046123d9565b6115e9565b34801561074f57600080fd5b50610318611626565b34801561076457600080fd5b5061037d6107733660046122e9565b611635565b34801561078457600080fd5b50600f546102ee9062010000900460ff1681565b3480156107a457600080fd5b506103d4600a5481565b3480156107ba57600080fd5b5061037d6107c9366004612270565b6116cb565b3480156107da57600080fd5b506103d4601481565b3480156107ef57600080fd5b5061037d6107fe36600461240c565b61170f565b34801561080f57600080fd5b5061031861081e36600461240c565b61173e565b34801561082f57600080fd5b5061037d61083e36600461233b565b611886565b34801561084f57600080fd5b506103186118ca565b34801561086457600080fd5b506102ee610873366004612203565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156108ad57600080fd5b5061037d6108bc3660046121e9565b6118d9565b3480156108cd57600080fd5b50610318611974565b60006301ffc9a760e01b6001600160e01b03198316148061090757506380ac58cd60e01b6001600160e01b03198316145b806109225750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461093790612727565b80601f016020809104026020016040519081016040528092919081815260200182805461096390612727565b80156109b05780601f10610985576101008083540402835291602001916109b0565b820191906000526020600020905b81548152906001019060200180831161099357829003601f168201915b5050505050905090565b60006109c582611981565b6109e2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610a09826119b6565b9050806001600160a01b0316836001600160a01b03161415610a3e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610a7557610a588133610873565b610a75576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b03163314610b045760405162461bcd60e51b8152600401610afb90612609565b60405180910390fd5b600955565b6000546001600160a01b03163314610b335760405162461bcd60e51b8152600401610afb90612609565b600f805460ff1916911515919091179055565b600254600154036000190190565b610b5f838383611a26565b505050565b600f54819060ff1615610b895760405162461bcd60e51b8152600401610afb9061263e565b61271081610b95610b46565b610b9f9190612699565b1115610bbd5760405162461bcd60e51b8152600401610afb9061266a565b323314610bdc5760405162461bcd60e51b8152600401610afb906125dc565b600f546301000000900460ff16610c2c5760405162461bcd60e51b81526020600482015260146024820152735075626c69632073616c6520696e61637469766560601b6044820152606401610afb565b600a821115610c715760405162461bcd60e51b81526020600482015260116024820152700a2eac2dce8d2e8f240e8dede40d0d2ced607b1b6044820152606401610afb565b600a54336000908152601160205260409020546014610c908583612699565b1115610cd45760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e081b5a5b9d081b1a5b5a5d606a1b6044820152606401610afb565b610ce6610ce185846126c5565b611bc9565b610cf08482612699565b33600081815260116020526040902091909155610d0d9085611ca8565b50505050565b600f54819060ff1615610d385760405162461bcd60e51b8152600401610afb9061263e565b61271081610d44610b46565b610d4e9190612699565b1115610d6c5760405162461bcd60e51b8152600401610afb9061266a565b323314610d8b5760405162461bcd60e51b8152600401610afb906125dc565b600f5464010000000090046001600160a01b03163314610de15760405162461bcd60e51b81526020600482015260116024820152705465616d206d696e74696e67206f6e6c7960781b6044820152606401610afb565b60095482600b54610df29190612699565b1115610e355760405162461bcd60e51b8152602060048201526012602482015271139bc81d19585b481b5a5b9d1cc81b19599d60721b6044820152606401610afb565b81600b6000828254610e479190612699565b90915550610e5790503383611ca8565b5050565b6000546001600160a01b03163314610e855760405162461bcd60e51b8152600401610afb90612609565b47600073e02017103bbe119ae20b54a8edd87e9df1e2742a612710610eaa84826126c5565b610eb491906126b1565b604051600081818185875af1925050503d8060008114610ef0576040519150601f19603f3d011682016040523d82523d6000602084013e610ef5565b606091505b5050905080610e575760405162461bcd60e51b815260206004820152601360248201527211195d881d1c985b9cd9995c8819985a5b1959606a1b6044820152606401610afb565b610b5f838383604051806020016040528060008152506116cb565b60606000610f64836111b7565b905060008167ffffffffffffffff811115610f8f57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610fb8578160200160208202803683370190505b509050600160005b8381108015610fd157506127108211155b1561104a576000610fe1836111ac565b9050866001600160a01b0316816001600160a01b03161415611037578284838151811061101e57634e487b7160e01b600052603260045260246000fd5b60209081029190910101528161103381612762565b9250505b8261104181612762565b93505050610fc0565b5090949350505050565b6000546001600160a01b0316331461107e5760405162461bcd60e51b8152600401610afb90612609565b8051610e5790600d906020840190612094565b6000546001600160a01b031633146110bb5760405162461bcd60e51b8152600401610afb90612609565b8051610e5790600c906020840190612094565b600e80546110db90612727565b80601f016020809104026020016040519081016040528092919081815260200182805461110790612727565b80156111545780601f1061112957610100808354040283529160200191611154565b820191906000526020600020905b81548152906001019060200180831161113757829003601f168201915b505050505081565b6000546001600160a01b031633146111865760405162461bcd60e51b8152600401610afb90612609565b600f805461ff001916610100841515021790558051610b5f90600c906020840190612094565b6000610922826119b6565b60006001600160a01b0382166111e0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146112305760405162461bcd60e51b8152600401610afb90612609565b61123a6000611cc2565b565b6000546001600160a01b031633146112665760405162461bcd60e51b8152600401610afb90612609565b600f805463ffff000019166301000000921580159390930262ff00001916176201000092909202919091179055565b600f54819060ff16156112ba5760405162461bcd60e51b8152600401610afb9061263e565b612710816112c6610b46565b6112d09190612699565b11156112ee5760405162461bcd60e51b8152600401610afb9061266a565b32331461130d5760405162461bcd60e51b8152600401610afb906125dc565b600f5462010000900460ff1661135a5760405162461bcd60e51b8152602060048201526012602482015271467265652073616c6520696e61637469766560701b6044820152606401610afb565b341561139d5760405162461bcd60e51b815260206004820152601260248201527154686973207068617365206973206672656560701b6044820152606401610afb565b60028211156113dc5760405162461bcd60e51b815260206004820152600b60248201526a4f6e6c792032206672656560a81b6044820152606401610afb565b6000826113e7610b46565b6113f19190612699565b90506104e281111561143e5760405162461bcd60e51b81526020600482015260166024820152754e6f7420656e6f756768206672656520737570706c7960501b6044820152606401610afb565b3360009081526010602052604090205460ff16156114945760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e08199c9959481b1a5b5a5d606a1b6044820152606401610afb565b336000908152601060205260409020805460ff191660011790556104e28114156114cc57600f805463ffff0000191663010000001790555b610b5f3384611ca8565b6000546001600160a01b031633146115005760405162461bcd60e51b8152600401610afb90612609565b600f805463ffff0000191662010000921580159390930263ff000000191617630100000092909202919091179055565b600d80546110db90612727565b6000546001600160a01b031633146115675760405162461bcd60e51b8152600401610afb90612609565b600f54829060ff161561158c5760405162461bcd60e51b8152600401610afb9061263e565b61271081611598610b46565b6115a29190612699565b11156115c05760405162461bcd60e51b8152600401610afb9061266a565b3233146115df5760405162461bcd60e51b8152600401610afb906125dc565b610b5f8284611ca8565b6000546001600160a01b031633146116135760405162461bcd60e51b8152600401610afb90612609565b8051610e5790600e906020840190612094565b60606004805461093790612727565b6001600160a01b03821633141561165f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116d6848484611a26565b6001600160a01b0383163b15610d0d576116f284848484611d12565b610d0d576040516368d2bf6b60e11b815260040160405180910390fd5b6000546001600160a01b031633146117395760405162461bcd60e51b8152600401610afb90612609565b600a55565b606061174982611981565b6117ad5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610afb565b600f54610100900460ff16156117ef57600c6117c883611e0a565b6040516020016117d992919061248e565b6040516020818303038152906040529050919050565b600d80546117fc90612727565b80601f016020809104026020016040519081016040528092919081815260200182805461182890612727565b80156118755780601f1061184a57610100808354040283529160200191611875565b820191906000526020600020905b81548152906001019060200180831161185857829003601f168201915b50505050509050919050565b919050565b6000546001600160a01b031633146118b05760405162461bcd60e51b8152600401610afb90612609565b600f80549115156101000261ff0019909216919091179055565b6060600e805461093790612727565b6000546001600160a01b031633146119035760405162461bcd60e51b8152600401610afb90612609565b6001600160a01b0381166119685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610afb565b61197181611cc2565b50565b600c80546110db90612727565b600081600111158015611995575060015482105b8015610922575050600090815260056020526040902054600160e01b161590565b60008180600111611a0d57600154811015611a0d57600081815260056020526040902054600160e01b8116611a0b575b80611a045750600019016000818152600560205260409020546119e6565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611a31826119b6565b9050836001600160a01b0316816001600160a01b031614611a645760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611a825750611a828533610873565b80611a9d575033611a92846109ba565b6001600160a01b0316145b905080611abd57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611ae457604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091529020600160e11b4260a01b861781179091558216611b815760018301600081815260056020526040902054611b7f576001548114611b7f5760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b80341115611c6257600033611bde83346126e4565b604051600081818185875af1925050503d8060008114611c1a576040519150601f19603f3d011682016040523d82523d6000602084013e611c1f565b606091505b5050905080610e575760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610afb565b803410156119715760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610afb565b610e57828260405180602001604052806000815250611f24565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d47903390899088908890600401612548565b602060405180830381600087803b158015611d6157600080fd5b505af1925050508015611d91575060408051601f3d908101601f19168201909252611d8e918101906123bd565b60015b611dec573d808015611dbf576040519150601f19603f3d011682016040523d82523d6000602084013e611dc4565b606091505b508051611de4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611e2e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e585780611e4281612762565b9150611e519050600a836126b1565b9150611e32565b60008167ffffffffffffffff811115611e8157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611eab576020820181803683370190505b5090505b8415611e0257611ec06001836126e4565b9150611ecd600a8661277d565b611ed8906030612699565b60f81b818381518110611efb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f1d600a866126b1565b9450611eaf565b6001546001600160a01b038416611f4d57604051622e076360e81b815260040160405180910390fd5b82611f6b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b15612040575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120096000878480600101955087611d12565b612026576040516368d2bf6b60e11b815260040160405180910390fd5b808210611fbe57826001541461203b57600080fd5b612085565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612041575b50600155610d0d600085838684565b8280546120a090612727565b90600052602060002090601f0160209004810192826120c25760008555612108565b82601f106120db57805160ff1916838001178555612108565b82800160010185558215612108579182015b828111156121085782518255916020019190600101906120ed565b50612114929150612118565b5090565b5b808211156121145760008155600101612119565b600067ffffffffffffffff80841115612148576121486127bd565b604051601f8501601f19908116603f01168101908282118183101715612170576121706127bd565b8160405280935085815286868601111561218957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461188157600080fd5b8035801515811461188157600080fd5b600082601f8301126121da578081fd5b611a048383356020850161212d565b6000602082840312156121fa578081fd5b611a04826121a3565b60008060408385031215612215578081fd5b61221e836121a3565b915061222c602084016121a3565b90509250929050565b600080600060608486031215612249578081fd5b612252846121a3565b9250612260602085016121a3565b9150604084013590509250925092565b60008060008060808587031215612285578081fd5b61228e856121a3565b935061229c602086016121a3565b925060408501359150606085013567ffffffffffffffff8111156122be578182fd5b8501601f810187136122ce578182fd5b6122dd8782356020840161212d565b91505092959194509250565b600080604083850312156122fb578182fd5b612304836121a3565b915061222c602084016121ba565b60008060408385031215612324578182fd5b61232d836121a3565b946020939093013593505050565b60006020828403121561234c578081fd5b611a04826121ba565b60008060408385031215612367578182fd5b612370836121ba565b9150602083013567ffffffffffffffff81111561238b578182fd5b612397858286016121ca565b9150509250929050565b6000602082840312156123b2578081fd5b8135611a04816127d3565b6000602082840312156123ce578081fd5b8151611a04816127d3565b6000602082840312156123ea578081fd5b813567ffffffffffffffff811115612400578182fd5b611e02848285016121ca565b60006020828403121561241d578081fd5b5035919050565b60008060408385031215612436578182fd5b8235915061222c602084016121a3565b6000815180845261245e8160208601602086016126fb565b601f01601f19169290920160200192915050565b600081516124848185602086016126fb565b9290920192915050565b600080845482600182811c9150808316806124aa57607f831692505b60208084108214156124ca57634e487b7160e01b87526022600452602487fd5b8180156124de57600181146124ef5761251b565b60ff1986168952848901965061251b565b60008b815260209020885b868110156125135781548b8201529085019083016124fa565b505084890196505b50505050505061253f61252e8286612472565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061257b90830184612446565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125bd578351835292840192918401916001016125a1565b50909695505050505050565b602081526000611a046020830184612446565b6020808252601390820152724e6f20636f6e7472616374206d696e74696e6760681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b602080825260159082015274139bdd08195b9bdd59da081b5a5b9d1cc81b19599d605a1b604082015260600190565b600082198211156126ac576126ac612791565b500190565b6000826126c0576126c06127a7565b500490565b60008160001904831182151516156126df576126df612791565b500290565b6000828210156126f6576126f6612791565b500390565b60005b838110156127165781810151838201526020016126fe565b83811115610d0d5750506000910152565b600181811c9082168061273b57607f821691505b6020821081141561275c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561277657612776612791565b5060010190565b60008261278c5761278c6127a7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461197157600080fdfea26469706673582212209221e37eabbdd0ee9d9288a5558df9f867cdb23c252e5f5223724badf0e94ae564736f6c63430008040033697066733a2f2f516d63344a44436954785777477265437475524c466b576f4c31367a63786446726652525245654d434b6d796667

Deployed Bytecode

0x6080604052600436106102c95760003560e01c80636b39fca41161017557806395d89b41116100dc578063c627525511610095578063e8a3d4851161006f578063e8a3d48514610843578063e985e9c514610858578063f2fde38b146108a1578063f7e8d6ea146108c157600080fd5b8063c6275255146107e3578063c87b56dd14610803578063e0a808531461082357600080fd5b806395d89b4114610743578063a22cb46514610758578063a4b41a1514610778578063a945bf8014610798578063b88d4fde146107ae578063bceae77b146107ce57600080fd5b80637c928fe91161012e5780637c928fe91461069d57806388dedc14146106b05780638cc54e7f146106d05780638da5cb5b146106e55780639007bd7214610703578063938e3d7b1461072357600080fd5b80636b39fca4146105ef57806370a0823114610605578063715018a614610625578063763ea95f1461063a5780637aeb7242146106505780637af3a1af1461067d57600080fd5b806333bc1c5c1161023457806355f804b3116101ed5780635c975abb116101c75780635c975abb146105655780635ed3e25e1461057f5780636352211e1461059f57806364f64076146105bf57600080fd5b806355f804b31461050857806356b4f67314610528578063599270441461053d57600080fd5b806333bc1c5c146104535780633ccfd60b1461047457806342842e0e1461047c578063438b63001461049c5780634fdd43cb146104c957806351830227146104e957600080fd5b806318160ddd1161028657806318160ddd146103bf57806323b872dd146103e25780632db11544146104025780632fbba115146104155780632fecf20b1461042857806332cb6b0c1461043d57600080fd5b806301ffc9a7146102ce57806306fdde0314610303578063081812fc14610325578063095ea7b31461035d5780630f15ad8d1461037f57806316c38b3c1461039f575b600080fd5b3480156102da57600080fd5b506102ee6102e93660046123a1565b6108d6565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b50610318610928565b6040516102fa91906125c9565b34801561033157600080fd5b5061034561034036600461240c565b6109ba565b6040516001600160a01b0390911681526020016102fa565b34801561036957600080fd5b5061037d610378366004612312565b6109fe565b005b34801561038b57600080fd5b5061037d61039a36600461240c565b610ad1565b3480156103ab57600080fd5b5061037d6103ba36600461233b565b610b09565b3480156103cb57600080fd5b506103d4610b46565b6040519081526020016102fa565b3480156103ee57600080fd5b5061037d6103fd366004612235565b610b54565b61037d61041036600461240c565b610b64565b61037d61042336600461240c565b610d13565b34801561043457600080fd5b506103d4600a81565b34801561044957600080fd5b506103d461271081565b34801561045f57600080fd5b50600f546102ee906301000000900460ff1681565b61037d610e5b565b34801561048857600080fd5b5061037d610497366004612235565b610f3c565b3480156104a857600080fd5b506104bc6104b73660046121e9565b610f57565b6040516102fa9190612585565b3480156104d557600080fd5b5061037d6104e43660046123d9565b611054565b3480156104f557600080fd5b50600f546102ee90610100900460ff1681565b34801561051457600080fd5b5061037d6105233660046123d9565b611091565b34801561053457600080fd5b506103186110ce565b34801561054957600080fd5b50600f546103459064010000000090046001600160a01b031681565b34801561057157600080fd5b50600f546102ee9060ff1681565b34801561058b57600080fd5b5061037d61059a366004612355565b61115c565b3480156105ab57600080fd5b506103456105ba36600461240c565b6111ac565b3480156105cb57600080fd5b506102ee6105da3660046121e9565b60106020526000908152604090205460ff1681565b3480156105fb57600080fd5b506103d460095481565b34801561061157600080fd5b506103d46106203660046121e9565b6111b7565b34801561063157600080fd5b5061037d611206565b34801561064657600080fd5b506103d4600b5481565b34801561065c57600080fd5b506103d461066b3660046121e9565b60116020526000908152604090205481565b34801561068957600080fd5b5061037d61069836600461233b565b61123c565b61037d6106ab36600461240c565b611295565b3480156106bc57600080fd5b5061037d6106cb36600461233b565b6114d6565b3480156106dc57600080fd5b50610318611530565b3480156106f157600080fd5b506000546001600160a01b0316610345565b34801561070f57600080fd5b5061037d61071e366004612424565b61153d565b34801561072f57600080fd5b5061037d61073e3660046123d9565b6115e9565b34801561074f57600080fd5b50610318611626565b34801561076457600080fd5b5061037d6107733660046122e9565b611635565b34801561078457600080fd5b50600f546102ee9062010000900460ff1681565b3480156107a457600080fd5b506103d4600a5481565b3480156107ba57600080fd5b5061037d6107c9366004612270565b6116cb565b3480156107da57600080fd5b506103d4601481565b3480156107ef57600080fd5b5061037d6107fe36600461240c565b61170f565b34801561080f57600080fd5b5061031861081e36600461240c565b61173e565b34801561082f57600080fd5b5061037d61083e36600461233b565b611886565b34801561084f57600080fd5b506103186118ca565b34801561086457600080fd5b506102ee610873366004612203565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156108ad57600080fd5b5061037d6108bc3660046121e9565b6118d9565b3480156108cd57600080fd5b50610318611974565b60006301ffc9a760e01b6001600160e01b03198316148061090757506380ac58cd60e01b6001600160e01b03198316145b806109225750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461093790612727565b80601f016020809104026020016040519081016040528092919081815260200182805461096390612727565b80156109b05780601f10610985576101008083540402835291602001916109b0565b820191906000526020600020905b81548152906001019060200180831161099357829003601f168201915b5050505050905090565b60006109c582611981565b6109e2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610a09826119b6565b9050806001600160a01b0316836001600160a01b03161415610a3e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610a7557610a588133610873565b610a75576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b03163314610b045760405162461bcd60e51b8152600401610afb90612609565b60405180910390fd5b600955565b6000546001600160a01b03163314610b335760405162461bcd60e51b8152600401610afb90612609565b600f805460ff1916911515919091179055565b600254600154036000190190565b610b5f838383611a26565b505050565b600f54819060ff1615610b895760405162461bcd60e51b8152600401610afb9061263e565b61271081610b95610b46565b610b9f9190612699565b1115610bbd5760405162461bcd60e51b8152600401610afb9061266a565b323314610bdc5760405162461bcd60e51b8152600401610afb906125dc565b600f546301000000900460ff16610c2c5760405162461bcd60e51b81526020600482015260146024820152735075626c69632073616c6520696e61637469766560601b6044820152606401610afb565b600a821115610c715760405162461bcd60e51b81526020600482015260116024820152700a2eac2dce8d2e8f240e8dede40d0d2ced607b1b6044820152606401610afb565b600a54336000908152601160205260409020546014610c908583612699565b1115610cd45760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e081b5a5b9d081b1a5b5a5d606a1b6044820152606401610afb565b610ce6610ce185846126c5565b611bc9565b610cf08482612699565b33600081815260116020526040902091909155610d0d9085611ca8565b50505050565b600f54819060ff1615610d385760405162461bcd60e51b8152600401610afb9061263e565b61271081610d44610b46565b610d4e9190612699565b1115610d6c5760405162461bcd60e51b8152600401610afb9061266a565b323314610d8b5760405162461bcd60e51b8152600401610afb906125dc565b600f5464010000000090046001600160a01b03163314610de15760405162461bcd60e51b81526020600482015260116024820152705465616d206d696e74696e67206f6e6c7960781b6044820152606401610afb565b60095482600b54610df29190612699565b1115610e355760405162461bcd60e51b8152602060048201526012602482015271139bc81d19585b481b5a5b9d1cc81b19599d60721b6044820152606401610afb565b81600b6000828254610e479190612699565b90915550610e5790503383611ca8565b5050565b6000546001600160a01b03163314610e855760405162461bcd60e51b8152600401610afb90612609565b47600073e02017103bbe119ae20b54a8edd87e9df1e2742a612710610eaa84826126c5565b610eb491906126b1565b604051600081818185875af1925050503d8060008114610ef0576040519150601f19603f3d011682016040523d82523d6000602084013e610ef5565b606091505b5050905080610e575760405162461bcd60e51b815260206004820152601360248201527211195d881d1c985b9cd9995c8819985a5b1959606a1b6044820152606401610afb565b610b5f838383604051806020016040528060008152506116cb565b60606000610f64836111b7565b905060008167ffffffffffffffff811115610f8f57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610fb8578160200160208202803683370190505b509050600160005b8381108015610fd157506127108211155b1561104a576000610fe1836111ac565b9050866001600160a01b0316816001600160a01b03161415611037578284838151811061101e57634e487b7160e01b600052603260045260246000fd5b60209081029190910101528161103381612762565b9250505b8261104181612762565b93505050610fc0565b5090949350505050565b6000546001600160a01b0316331461107e5760405162461bcd60e51b8152600401610afb90612609565b8051610e5790600d906020840190612094565b6000546001600160a01b031633146110bb5760405162461bcd60e51b8152600401610afb90612609565b8051610e5790600c906020840190612094565b600e80546110db90612727565b80601f016020809104026020016040519081016040528092919081815260200182805461110790612727565b80156111545780601f1061112957610100808354040283529160200191611154565b820191906000526020600020905b81548152906001019060200180831161113757829003601f168201915b505050505081565b6000546001600160a01b031633146111865760405162461bcd60e51b8152600401610afb90612609565b600f805461ff001916610100841515021790558051610b5f90600c906020840190612094565b6000610922826119b6565b60006001600160a01b0382166111e0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146112305760405162461bcd60e51b8152600401610afb90612609565b61123a6000611cc2565b565b6000546001600160a01b031633146112665760405162461bcd60e51b8152600401610afb90612609565b600f805463ffff000019166301000000921580159390930262ff00001916176201000092909202919091179055565b600f54819060ff16156112ba5760405162461bcd60e51b8152600401610afb9061263e565b612710816112c6610b46565b6112d09190612699565b11156112ee5760405162461bcd60e51b8152600401610afb9061266a565b32331461130d5760405162461bcd60e51b8152600401610afb906125dc565b600f5462010000900460ff1661135a5760405162461bcd60e51b8152602060048201526012602482015271467265652073616c6520696e61637469766560701b6044820152606401610afb565b341561139d5760405162461bcd60e51b815260206004820152601260248201527154686973207068617365206973206672656560701b6044820152606401610afb565b60028211156113dc5760405162461bcd60e51b815260206004820152600b60248201526a4f6e6c792032206672656560a81b6044820152606401610afb565b6000826113e7610b46565b6113f19190612699565b90506104e281111561143e5760405162461bcd60e51b81526020600482015260166024820152754e6f7420656e6f756768206672656520737570706c7960501b6044820152606401610afb565b3360009081526010602052604090205460ff16156114945760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e08199c9959481b1a5b5a5d606a1b6044820152606401610afb565b336000908152601060205260409020805460ff191660011790556104e28114156114cc57600f805463ffff0000191663010000001790555b610b5f3384611ca8565b6000546001600160a01b031633146115005760405162461bcd60e51b8152600401610afb90612609565b600f805463ffff0000191662010000921580159390930263ff000000191617630100000092909202919091179055565b600d80546110db90612727565b6000546001600160a01b031633146115675760405162461bcd60e51b8152600401610afb90612609565b600f54829060ff161561158c5760405162461bcd60e51b8152600401610afb9061263e565b61271081611598610b46565b6115a29190612699565b11156115c05760405162461bcd60e51b8152600401610afb9061266a565b3233146115df5760405162461bcd60e51b8152600401610afb906125dc565b610b5f8284611ca8565b6000546001600160a01b031633146116135760405162461bcd60e51b8152600401610afb90612609565b8051610e5790600e906020840190612094565b60606004805461093790612727565b6001600160a01b03821633141561165f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116d6848484611a26565b6001600160a01b0383163b15610d0d576116f284848484611d12565b610d0d576040516368d2bf6b60e11b815260040160405180910390fd5b6000546001600160a01b031633146117395760405162461bcd60e51b8152600401610afb90612609565b600a55565b606061174982611981565b6117ad5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610afb565b600f54610100900460ff16156117ef57600c6117c883611e0a565b6040516020016117d992919061248e565b6040516020818303038152906040529050919050565b600d80546117fc90612727565b80601f016020809104026020016040519081016040528092919081815260200182805461182890612727565b80156118755780601f1061184a57610100808354040283529160200191611875565b820191906000526020600020905b81548152906001019060200180831161185857829003601f168201915b50505050509050919050565b919050565b6000546001600160a01b031633146118b05760405162461bcd60e51b8152600401610afb90612609565b600f80549115156101000261ff0019909216919091179055565b6060600e805461093790612727565b6000546001600160a01b031633146119035760405162461bcd60e51b8152600401610afb90612609565b6001600160a01b0381166119685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610afb565b61197181611cc2565b50565b600c80546110db90612727565b600081600111158015611995575060015482105b8015610922575050600090815260056020526040902054600160e01b161590565b60008180600111611a0d57600154811015611a0d57600081815260056020526040902054600160e01b8116611a0b575b80611a045750600019016000818152600560205260409020546119e6565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611a31826119b6565b9050836001600160a01b0316816001600160a01b031614611a645760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611a825750611a828533610873565b80611a9d575033611a92846109ba565b6001600160a01b0316145b905080611abd57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611ae457604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091529020600160e11b4260a01b861781179091558216611b815760018301600081815260056020526040902054611b7f576001548114611b7f5760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b80341115611c6257600033611bde83346126e4565b604051600081818185875af1925050503d8060008114611c1a576040519150601f19603f3d011682016040523d82523d6000602084013e611c1f565b606091505b5050905080610e575760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610afb565b803410156119715760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610afb565b610e57828260405180602001604052806000815250611f24565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d47903390899088908890600401612548565b602060405180830381600087803b158015611d6157600080fd5b505af1925050508015611d91575060408051601f3d908101601f19168201909252611d8e918101906123bd565b60015b611dec573d808015611dbf576040519150601f19603f3d011682016040523d82523d6000602084013e611dc4565b606091505b508051611de4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611e2e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e585780611e4281612762565b9150611e519050600a836126b1565b9150611e32565b60008167ffffffffffffffff811115611e8157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611eab576020820181803683370190505b5090505b8415611e0257611ec06001836126e4565b9150611ecd600a8661277d565b611ed8906030612699565b60f81b818381518110611efb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f1d600a866126b1565b9450611eaf565b6001546001600160a01b038416611f4d57604051622e076360e81b815260040160405180910390fd5b82611f6b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b15612040575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120096000878480600101955087611d12565b612026576040516368d2bf6b60e11b815260040160405180910390fd5b808210611fbe57826001541461203b57600080fd5b612085565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612041575b50600155610d0d600085838684565b8280546120a090612727565b90600052602060002090601f0160209004810192826120c25760008555612108565b82601f106120db57805160ff1916838001178555612108565b82800160010185558215612108579182015b828111156121085782518255916020019190600101906120ed565b50612114929150612118565b5090565b5b808211156121145760008155600101612119565b600067ffffffffffffffff80841115612148576121486127bd565b604051601f8501601f19908116603f01168101908282118183101715612170576121706127bd565b8160405280935085815286868601111561218957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461188157600080fd5b8035801515811461188157600080fd5b600082601f8301126121da578081fd5b611a048383356020850161212d565b6000602082840312156121fa578081fd5b611a04826121a3565b60008060408385031215612215578081fd5b61221e836121a3565b915061222c602084016121a3565b90509250929050565b600080600060608486031215612249578081fd5b612252846121a3565b9250612260602085016121a3565b9150604084013590509250925092565b60008060008060808587031215612285578081fd5b61228e856121a3565b935061229c602086016121a3565b925060408501359150606085013567ffffffffffffffff8111156122be578182fd5b8501601f810187136122ce578182fd5b6122dd8782356020840161212d565b91505092959194509250565b600080604083850312156122fb578182fd5b612304836121a3565b915061222c602084016121ba565b60008060408385031215612324578182fd5b61232d836121a3565b946020939093013593505050565b60006020828403121561234c578081fd5b611a04826121ba565b60008060408385031215612367578182fd5b612370836121ba565b9150602083013567ffffffffffffffff81111561238b578182fd5b612397858286016121ca565b9150509250929050565b6000602082840312156123b2578081fd5b8135611a04816127d3565b6000602082840312156123ce578081fd5b8151611a04816127d3565b6000602082840312156123ea578081fd5b813567ffffffffffffffff811115612400578182fd5b611e02848285016121ca565b60006020828403121561241d578081fd5b5035919050565b60008060408385031215612436578182fd5b8235915061222c602084016121a3565b6000815180845261245e8160208601602086016126fb565b601f01601f19169290920160200192915050565b600081516124848185602086016126fb565b9290920192915050565b600080845482600182811c9150808316806124aa57607f831692505b60208084108214156124ca57634e487b7160e01b87526022600452602487fd5b8180156124de57600181146124ef5761251b565b60ff1986168952848901965061251b565b60008b815260209020885b868110156125135781548b8201529085019083016124fa565b505084890196505b50505050505061253f61252e8286612472565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061257b90830184612446565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125bd578351835292840192918401916001016125a1565b50909695505050505050565b602081526000611a046020830184612446565b6020808252601390820152724e6f20636f6e7472616374206d696e74696e6760681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b602080825260159082015274139bdd08195b9bdd59da081b5a5b9d1cc81b19599d605a1b604082015260600190565b600082198211156126ac576126ac612791565b500190565b6000826126c0576126c06127a7565b500490565b60008160001904831182151516156126df576126df612791565b500290565b6000828210156126f6576126f6612791565b500390565b60005b838110156127165781810151838201526020016126fe565b83811115610d0d5750506000910152565b600181811c9082168061273b57607f821691505b6020821081141561275c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561277657612776612791565b5060010190565b60008261278c5761278c6127a7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461197157600080fdfea26469706673582212209221e37eabbdd0ee9d9288a5558df9f867cdb23c252e5f5223724badf0e94ae564736f6c63430008040033

Deployed Bytecode Sourcemap

44044:8038:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18620:615;;;;;;;;;;-1:-1:-1;18620:615:0;;;;;:::i;:::-;;:::i;:::-;;;8826:14:1;;8819:22;8801:41;;8789:2;8774:18;18620:615:0;;;;;;;;23633:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25701:204::-;;;;;;;;;;-1:-1:-1;25701:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7484:32:1;;;7466:51;;7454:2;7439:18;25701:204:0;7421:102:1;25161:474:0;;;;;;;;;;-1:-1:-1;25161:474:0;;;;;:::i;:::-;;:::i;:::-;;49610:110;;;;;;;;;;-1:-1:-1;49610:110:0;;;;;:::i;:::-;;:::i;50714:83::-;;;;;;;;;;-1:-1:-1;50714:83:0;;;;;:::i;:::-;;:::i;17674:315::-;;;;;;;;;;;;;:::i;:::-;;;15961:25:1;;;15949:2;15934:18;17674:315:0;15916:76:1;26587:170:0;;;;;;;;;;-1:-1:-1;26587:170:0;;;;;:::i;:::-;;:::i;46970:571::-;;;;;;:::i;:::-;;:::i;45913:388::-;;;;;;:::i;:::-;;:::i;44233:50::-;;;;;;;;;;;;44281:2;44233:50;;44092:42;;;;;;;;;;;;44129:5;44092:42;;44803:29;;;;;;;;;;-1:-1:-1;44803:29:0;;;;;;;;;;;51158:343;;;:::i;26828:185::-;;;;;;;;;;-1:-1:-1;26828:185:0;;;;;:::i;:::-;;:::i;47987:689::-;;;;;;;;;;-1:-1:-1;47987:689:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50025:130::-;;;;;;;;;;-1:-1:-1;50025:130:0;;;;;:::i;:::-;;:::i;44732:28::-;;;;;;;;;;-1:-1:-1;44732:28:0;;;;;;;;;;;49844:102;;;;;;;;;;-1:-1:-1;49844:102:0;;;;;:::i;:::-;;:::i;44607:84::-;;;;;;;;;;;;;:::i;44930:70::-;;;;;;;;;;-1:-1:-1;44930:70:0;;;;;;;-1:-1:-1;;;;;44930:70:0;;;44700:25;;;;;;;;;;-1:-1:-1;44700:25:0;;;;;;;;50163:155;;;;;;;;;;-1:-1:-1;50163:155:0;;;;;:::i;:::-;;:::i;23422:144::-;;;;;;;;;;-1:-1:-1;23422:144:0;;;;;:::i;:::-;;:::i;45009:46::-;;;;;;;;;;-1:-1:-1;45009:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;44141:34;;;;;;;;;;;;;;;;19299:224;;;;;;;;;;-1:-1:-1;19299:224:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;44345:32::-;;;;;;;;;;;;;;;;45062:47;;;;;;;;;;-1:-1:-1;45062:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;50900:123;;;;;;;;;;-1:-1:-1;50900:123:0;;;;;:::i;:::-;;:::i;46313:649::-;;;;;;:::i;:::-;;:::i;51029:121::-;;;;;;;;;;-1:-1:-1;51029:121:0;;;;;:::i;:::-;;:::i;44424:23::-;;;;;;;;;;;;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4125:7:0;4152:6;-1:-1:-1;;;;;4152:6:0;4079:87;;51645:146;;;;;;;;;;-1:-1:-1;51645:146:0;;;;;:::i;:::-;;:::i;50387:115::-;;;;;;;;;;-1:-1:-1;50387:115:0;;;;;:::i;:::-;;:::i;23802:104::-;;;;;;;;;;;;;:::i;25977:308::-;;;;;;;;;;-1:-1:-1;25977:308:0;;;;;:::i;:::-;;:::i;44769:27::-;;;;;;;;;;-1:-1:-1;44769:27:0;;;;;;;;;;;44184:40;;;;;;;;;;;;;;;;27084:396;;;;;;;;;;-1:-1:-1;27084:396:0;;;;;:::i;:::-;;:::i;44290:46::-;;;;;;;;;;;;44334:2;44290:46;;49728:108;;;;;;;;;;-1:-1:-1;49728:108:0;;;;;:::i;:::-;;:::i;48684:608::-;;;;;;;;;;-1:-1:-1;48684:608:0;;;;;:::i;:::-;;:::i;50805:87::-;;;;;;;;;;-1:-1:-1;50805:87:0;;;;;:::i;:::-;;:::i;49479:97::-;;;;;;;;;;;;;:::i;26356:164::-;;;;;;;;;;-1:-1:-1;26356:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26477:25:0;;;26453:4;26477:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26356:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;44386:25::-;;;;;;;;;;;;;:::i;18620:615::-;18705:4;-1:-1:-1;;;;;;;;;19005:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19082:25:0;;;19005:102;:179;;;-1:-1:-1;;;;;;;;;;19159:25:0;;;19005:179;18985:199;18620:615;-1:-1:-1;;18620:615:0:o;23633:100::-;23687:13;23720:5;23713:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23633:100;:::o;25701:204::-;25769:7;25794:16;25802:7;25794;:16::i;:::-;25789:64;;25819:34;;-1:-1:-1;;;25819:34:0;;;;;;;;;;;25789:64;-1:-1:-1;25873:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25873:24:0;;25701:204::o;25161:474::-;25234:13;25266:27;25285:7;25266:18;:27::i;:::-;25234:61;;25316:5;-1:-1:-1;;;;;25310:11:0;:2;-1:-1:-1;;;;;25310:11:0;;25306:48;;;25330:24;;-1:-1:-1;;;25330:24:0;;;;;;;;;;;25306:48;41804:10;-1:-1:-1;;;;;25371:28:0;;;25367:175;;25419:44;25436:5;41804:10;26356:164;:::i;25419:44::-;25414:128;;25491:35;;-1:-1:-1;;;25491:35:0;;;;;;;;;;;25414:128;25554:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;25554:29:0;-1:-1:-1;;;;;25554:29:0;;;;;;;;;25599:28;;25554:24;;25599:28;;;;;;;25161:474;;;:::o;49610:110::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;49684:13:::1;:28:::0;49610:110::o;50714:83::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50774:6:::1;:15:::0;;-1:-1:-1;;50774:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50714:83::o;17674:315::-;17940:12;;45503:1;17924:13;:28;-1:-1:-1;;17924:46:0;;17674:315::o;26587:170::-;26721:28;26731:4;26737:2;26741:7;26721:9;:28::i;:::-;26587:170;;;:::o;46970:571::-;51881:6;;47040:8;;51881:6;;51880:7;51872:38;;;;-1:-1:-1;;;51872:38:0;;;;;;;:::i;:::-;44129:5;51945:8;51929:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;51921:72;;;;-1:-1:-1;;;51921:72:0;;;;;;;:::i;:::-;52012:9;52025:10;52012:23;52004:55;;;;-1:-1:-1;;;52004:55:0;;;;;;;:::i;:::-;47069:10:::1;::::0;;;::::1;;;47061:43;;;::::0;-1:-1:-1;;;47061:43:0;;13926:2:1;47061:43:0::1;::::0;::::1;13908:21:1::0;13965:2;13945:18;;;13938:30;-1:-1:-1;;;13984:18:1;;;13977:50;14044:18;;47061:43:0::1;13898:170:1::0;47061:43:0::1;44281:2;47123:8;:33;;47115:63;;;::::0;-1:-1:-1;;;47115:63:0;;14275:2:1;47115:63:0::1;::::0;::::1;14257:21:1::0;14314:2;14294:18;;;14287:30;-1:-1:-1;;;14333:18:1;;;14326:47;14390:18;;47115:63:0::1;14247:167:1::0;47115:63:0::1;47207:11;::::0;47262:10:::1;47191:13;47249:24:::0;;;:12:::1;:24;::::0;;;;;44334:2:::1;47310:20;47322:8:::0;47249:24;47310:20:::1;:::i;:::-;:41;;47302:73;;;::::0;-1:-1:-1;;;47302:73:0;;10724:2:1;47302:73:0::1;::::0;::::1;10706:21:1::0;10763:2;10743:18;;;10736:30;-1:-1:-1;;;10782:18:1;;;10775:49;10841:18;;47302:73:0::1;10696:169:1::0;47302:73:0::1;47396:31;47410:16;47418:8:::0;47410:5;:16:::1;:::i;:::-;47396:13;:31::i;:::-;47468:20;47480:8:::0;47468:9;:20:::1;:::i;:::-;47453:10;47440:24;::::0;;;:12:::1;:24;::::0;;;;:49;;;;47502:31:::1;::::0;47524:8;47502:9:::1;:31::i;:::-;52070:1;;46970:571:::0;;:::o;45913:388::-;51881:6;;45979:8;;51881:6;;51880:7;51872:38;;;;-1:-1:-1;;;51872:38:0;;;;;;;:::i;:::-;44129:5;51945:8;51929:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;51921:72;;;;-1:-1:-1;;;51921:72:0;;;;;;;:::i;:::-;52012:9;52025:10;52012:23;52004:55;;;;-1:-1:-1;;;52004:55:0;;;;;;;:::i;:::-;46022:10:::1;::::0;;;::::1;-1:-1:-1::0;;;;;46022:10:0::1;46008;:24;46000:54;;;::::0;-1:-1:-1;;;46000:54:0;;10030:2:1;46000:54:0::1;::::0;::::1;10012:21:1::0;10069:2;10049:18;;;10042:30;-1:-1:-1;;;10088:18:1;;;10081:47;10145:18;;46000:54:0::1;10002:167:1::0;46000:54:0::1;46105:13;;46093:8;46073:17;;:28;;;;:::i;:::-;:45;;46065:76;;;::::0;-1:-1:-1;;;46065:76:0;;12884:2:1;46065:76:0::1;::::0;::::1;12866:21:1::0;12923:2;12903:18;;;12896:30;-1:-1:-1;;;12942:18:1;;;12935:48;13000:18;;46065:76:0::1;12856:168:1::0;46065:76:0::1;46241:8;46220:17;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;46262:31:0::1;::::0;-1:-1:-1;46272:10:0::1;46284:8:::0;46262:9:::1;:31::i;:::-;45913:388:::0;;:::o;51158:343::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51305:21:::1;51283:19;44881:42;51426:5;51403:19;51305:21:::0;51426:5;51403:19:::1;:::i;:::-;51402:29;;;;:::i;:::-;51355:91;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51339:107;;;51465:4;51457:36;;;::::0;-1:-1:-1;;;51457:36:0;;14621:2:1;51457:36:0::1;::::0;::::1;14603:21:1::0;14660:2;14640:18;;;14633:30;-1:-1:-1;;;14679:18:1;;;14672:49;14738:18;;51457:36:0::1;14593:169:1::0;26828:185:0;26966:39;26983:4;26989:2;26993:7;26966:39;;;;;;;;;;;;:16;:39::i;47987:689::-;48047:16;48081:23;48107:17;48117:6;48107:9;:17::i;:::-;48081:43;;48135:30;48182:15;48168:30;;;;;;-1:-1:-1;;;48168:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48168:30:0;-1:-1:-1;48135:63:0;-1:-1:-1;48234:1:0;48209:22;48286:350;48311:15;48293;:33;:65;;;;;44129:5;48330:14;:28;;48293:65;48286:350;;;48375:25;48403:23;48411:14;48403:7;:23::i;:::-;48375:51;;48468:6;-1:-1:-1;;;;;48447:27:0;:17;-1:-1:-1;;;;;48447:27:0;;48443:153;;;48528:14;48495:13;48509:15;48495:30;;;;;;-1:-1:-1;;;48495:30:0;;;;;;;;;;;;;;;;;;:47;48563:17;;;;:::i;:::-;;;;48443:153;48608:16;;;;:::i;:::-;;;;48286:350;;;;-1:-1:-1;48655:13:0;;47987:689;-1:-1:-1;;;;47987:689:0:o;50025:130::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50117:30;;::::1;::::0;:9:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;49844:102::-:0;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49916:22;;::::1;::::0;:11:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;44607:84::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50163:155::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50257:8:::1;:20:::0;;-1:-1:-1;;50257:20:0::1;;::::0;::::1;;;;::::0;;50288:22;;::::1;::::0;:11:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;23422:144::-:0;23486:7;23529:27;23548:7;23529:18;:27::i;19299:224::-;19363:7;-1:-1:-1;;;;;19387:19:0;;19383:60;;19415:28;;-1:-1:-1;;;19415:28:0;;;;;;;;;;;19383:60;-1:-1:-1;;;;;;19461:25:0;;;;;:18;:25;;;;;;14638:13;19461:54;;19299:224::o;4730:103::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;50900:123::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50967:10:::1;:19:::0;;-1:-1:-1;;50997:18:0;50967:19;;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;;50997:18:0;;;;;;::::1;::::0;;;::::1;::::0;;50900:123::o;46313:649::-;51881:6;;46381:8;;51881:6;;51880:7;51872:38;;;;-1:-1:-1;;;51872:38:0;;;;;;;:::i;:::-;44129:5;51945:8;51929:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;51921:72;;;;-1:-1:-1;;;51921:72:0;;;;;;;:::i;:::-;52012:9;52025:10;52012:23;52004:55;;;;-1:-1:-1;;;52004:55:0;;;;;;;:::i;:::-;46410:8:::1;::::0;;;::::1;;;46402:39;;;::::0;-1:-1:-1;;;46402:39:0;;11072:2:1;46402:39:0::1;::::0;::::1;11054:21:1::0;11111:2;11091:18;;;11084:30;-1:-1:-1;;;11130:18:1;;;11123:48;11188:18;;46402:39:0::1;11044:168:1::0;46402:39:0::1;46460:9;:14:::0;46452:45:::1;;;::::0;-1:-1:-1;;;46452:45:0;;13231:2:1;46452:45:0::1;::::0;::::1;13213:21:1::0;13270:2;13250:18;;;13243:30;-1:-1:-1;;;13289:18:1;;;13282:48;13347:18;;46452:45:0::1;13203:168:1::0;46452:45:0::1;46528:1;46516:8;:13;;46508:37;;;::::0;-1:-1:-1;;;46508:37:0;;12128:2:1;46508:37:0::1;::::0;::::1;12110:21:1::0;12167:2;12147:18;;;12140:30;-1:-1:-1;;;12186:18:1;;;12179:41;12237:18;;46508:37:0::1;12100:161:1::0;46508:37:0::1;46558:17;46594:8;46578:13;:11;:13::i;:::-;:24;;;;:::i;:::-;46558:44;;46644:4;46631:9;:17;;46623:52;;;::::0;-1:-1:-1;;;46623:52:0;;15316:2:1;46623:52:0::1;::::0;::::1;15298:21:1::0;15355:2;15335:18;;;15328:30;-1:-1:-1;;;15374:18:1;;;15367:52;15436:18;;46623:52:0::1;15288:172:1::0;46623:52:0::1;46712:10;46697:26;::::0;;;:14:::1;:26;::::0;;;;;::::1;;46696:27;46688:59;;;::::0;-1:-1:-1;;;46688:59:0;;11780:2:1;46688:59:0::1;::::0;::::1;11762:21:1::0;11819:2;11799:18;;;11792:30;-1:-1:-1;;;11838:18:1;;;11831:49;11897:18;;46688:59:0::1;11752:169:1::0;46688:59:0::1;46783:10;46768:26;::::0;;;:14:::1;:26;::::0;;;;:33;;-1:-1:-1;;46768:33:0::1;46797:4;46768:33;::::0;;46830:4:::1;46817:17:::0;::::1;46814:97;;;46851:8;:16:::0;;-1:-1:-1;;46882:17:0;;::::1;::::0;;46814:97:::1;46923:31;46933:10;46945:8;46923:9;:31::i;51029:121::-:0;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51094:8:::1;:17:::0;;-1:-1:-1;;51122:20:0;51094:17;;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;;51122:20:0;;;;;;::::1;::::0;;;::::1;::::0;;51029:121::o;44424:23::-;;;;;;;:::i;51645:146::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51881:6:::1;::::0;51733:8;;51881:6:::1;;51880:7;51872:38;;;;-1:-1:-1::0;;;51872:38:0::1;;;;;;;:::i;:::-;44129:5;51945:8;51929:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;51921:72;;;;-1:-1:-1::0;;;51921:72:0::1;;;;;;;:::i;:::-;52012:9;52025:10;52012:23;52004:55;;;;-1:-1:-1::0;;;52004:55:0::1;;;;;;;:::i;:::-;51754:29:::2;51764:8;51774;51754:9;:29::i;50387:115::-:0;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50467:27;;::::1;::::0;:12:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;23802:104::-:0;23858:13;23891:7;23884:14;;;;;:::i;25977:308::-;-1:-1:-1;;;;;26076:31:0;;41804:10;26076:31;26072:61;;;26116:17;;-1:-1:-1;;;26116:17:0;;;;;;;;;;;26072:61;41804:10;26146:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26146:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26146:60:0;;;;;;;;;;26222:55;;8801:41:1;;;26146:49:0;;41804:10;26222:55;;8774:18:1;26222:55:0;;;;;;;25977:308;;:::o;27084:396::-;27251:28;27261:4;27267:2;27271:7;27251:9;:28::i;:::-;-1:-1:-1;;;;;27294:14:0;;;:19;27290:183;;27333:56;27364:4;27370:2;27374:7;27383:5;27333:30;:56::i;:::-;27328:145;;27417:40;;-1:-1:-1;;;27417:40:0;;;;;;;;;;;49728:108;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49802:11:::1;:26:::0;49728:108::o;48684:608::-;48750:13;49015:17;49023:8;49015:7;:17::i;:::-;49007:77;;;;-1:-1:-1;;;49007:77:0;;12468:2:1;49007:77:0;;;12450:21:1;12507:2;12487:18;;;12480:30;12546:34;12526:18;;;12519:62;-1:-1:-1;;;12597:18:1;;;12590:45;12652:19;;49007:77:0;12440:237:1;49007:77:0;49109:8;;;;;;;49105:180;;;49165:11;49178:26;49195:8;49178:16;:26::i;:::-;49148:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49134:81;;48684:608;;;:::o;49105:180::-;49264:9;49257:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48684:608;;;:::o;49105:180::-;48684:608;;;:::o;50805:87::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50867:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;50867:17:0;;::::1;::::0;;;::::1;::::0;;50805:87::o;49479:97::-;49523:13;49556:12;49549:19;;;;;:::i;4988:201::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;9279:2:1;5069:73:0::1;::::0;::::1;9261:21:1::0;9318:2;9298:18;;;9291:30;9357:34;9337:18;;;9330:62;-1:-1:-1;;;9408:18:1;;;9401:36;9454:19;;5069:73:0::1;9251:228:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;44386:25::-;;;;;;;:::i;27735:273::-;27792:4;27848:7;45503:1;27829:26;;:66;;;;;27882:13;;27872:7;:23;27829:66;:152;;;;-1:-1:-1;;27933:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27933:43:0;:48;;27735:273::o;20937:1129::-;21004:7;21039;;45503:1;21088:23;21084:915;;21141:13;;21134:4;:20;21130:869;;;21179:14;21196:23;;;:17;:23;;;;;;-1:-1:-1;;;21285:23:0;;21281:699;;21804:113;21811:11;21804:113;;-1:-1:-1;;;21882:6:0;21864:25;;;;:17;:25;;;;;;21804:113;;;21950:6;20937:1129;-1:-1:-1;;;20937:1129:0:o;21281:699::-;21130:869;;22027:31;;-1:-1:-1;;;22027:31:0;;;;;;;;;;;32974:2515;33089:27;33119;33138:7;33119:18;:27::i;:::-;33089:57;;33204:4;-1:-1:-1;;;;;33163:45:0;33179:19;-1:-1:-1;;;;;33163:45:0;;33159:86;;33217:28;;-1:-1:-1;;;33217:28:0;;;;;;;;;;;33159:86;33258:22;41804:10;-1:-1:-1;;;;;33284:27:0;;;;:87;;-1:-1:-1;33328:43:0;33345:4;41804:10;26356:164;:::i;33328:43::-;33284:147;;;-1:-1:-1;41804:10:0;33388:20;33400:7;33388:11;:20::i;:::-;-1:-1:-1;;;;;33388:43:0;;33284:147;33258:174;;33450:17;33445:66;;33476:35;;-1:-1:-1;;;33476:35:0;;;;;;;;;;;33445:66;-1:-1:-1;;;;;33526:16:0;;33522:52;;33551:23;;-1:-1:-1;;;33551:23:0;;;;;;;;;;;33522:52;33703:24;;;;:15;:24;;;;;;;;33696:31;;-1:-1:-1;;;;;;33696:31:0;;;-1:-1:-1;;;;;34095:24:0;;;;;:18;:24;;;;;34093:26;;-1:-1:-1;;34093:26:0;;;34164:22;;;;;;;34162:24;;-1:-1:-1;34162:24:0;;;34457:26;;;:17;:26;;;;;-1:-1:-1;;;34545:15:0;15292:3;34545:41;34503:84;;:128;;34457:174;;;34751:46;;34747:626;;34855:1;34845:11;;34823:19;34978:30;;;:17;:30;;;;;;34974:384;;35116:13;;35101:11;:28;35097:242;;35263:30;;;;:17;:30;;;;;:52;;;35097:242;34747:626;;35420:7;35416:2;-1:-1:-1;;;;;35401:27:0;35410:4;-1:-1:-1;;;;;35401:27:0;;;;;;;;;;;32974:2515;;;;;:::o;45520:359::-;45593:5;45581:9;:17;45577:295;;;45616:9;45639:10;45682:17;45694:5;45682:9;:17;:::i;:::-;45631:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45615:104;;;45742:4;45734:32;;;;-1:-1:-1;;;45734:32:0;;9686:2:1;45734:32:0;;;9668:21:1;9725:2;9705:18;;;9698:30;-1:-1:-1;;;9744:18:1;;;9737:45;9799:18;;45734:32:0;9658:165:1;45577:295:0;45809:5;45797:9;:17;45793:79;;;45831:29;;-1:-1:-1;;;45831:29:0;;13578:2:1;45831:29:0;;;13560:21:1;13617:2;13597:18;;;13590:30;-1:-1:-1;;;13636:18:1;;;13629:49;13695:18;;45831:29:0;13550:169:1;28092:104:0;28161:27;28171:2;28175:8;28161:27;;;;;;;;;;;;:9;:27::i;5349:191::-;5423:16;5442:6;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;5492:40;;5442:6;;;;;;;5492:40;;5423:16;5492:40;5349:191;;:::o;39186:716::-;39370:88;;-1:-1:-1;;;39370:88:0;;39349:4;;-1:-1:-1;;;;;39370:45:0;;;;;:88;;41804:10;;39437:4;;39443:7;;39452:5;;39370:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39370:88:0;;;;;;;;-1:-1:-1;;39370:88:0;;;;;;;;;;;;:::i;:::-;;;39366:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39653:13:0;;39649:235;;39699:40;;-1:-1:-1;;;39699:40:0;;;;;;;;;;;39649:235;39842:6;39836:13;39827:6;39823:2;39819:15;39812:38;39366:529;-1:-1:-1;;;;;;39529:64:0;-1:-1:-1;;;39529:64:0;;-1:-1:-1;39366:529:0;39186:716;;;;;;:::o;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;-1:-1:-1;;;867:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;-1:-1:-1;;;955:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;28569:2236;28715:13;;-1:-1:-1;;;;;28743:16:0;;28739:48;;28768:19;;-1:-1:-1;;;28768:19:0;;;;;;;;;;;28739:48;28802:13;28798:44;;28824:18;;-1:-1:-1;;;28824:18:0;;;;;;;;;;;28798:44;-1:-1:-1;;;;;29391:22:0;;;;;;:18;:22;;;;14775:2;29391:22;;;:70;;29429:31;29417:44;;29391:70;;;29704:31;;;:17;:31;;;;;29797:15;15292:3;29797:41;29755:84;;-1:-1:-1;29875:13:0;;15555:3;29860:56;29755:162;29704:213;;:31;;29998:23;;;;30042:14;:19;30038:635;;30082:313;30113:38;;30138:12;;-1:-1:-1;;;;;30113:38:0;;;30130:1;;30113:38;;30130:1;;30113:38;30179:69;30218:1;30222:2;30226:14;;;;;;30242:5;30179:30;:69::i;:::-;30174:174;;30284:40;;-1:-1:-1;;;30284:40:0;;;;;;;;;;;30174:174;30390:3;30375:12;:18;30082:313;;30476:12;30459:13;;:29;30455:43;;30490:8;;;30455:43;30038:635;;;30539:119;30570:40;;30595:14;;;;;-1:-1:-1;;;;;30570:40:0;;;30587:1;;30570:40;;30587:1;;30570:40;30653:3;30638:12;:18;30539:119;;30038:635;-1:-1:-1;30687:13:0;:28;30737:60;30766:1;30770:2;30774:12;30788:8;30737:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:229;1036:5;1089:3;1082:4;1074:6;1070:17;1066:27;1056:2;;1111:5;1104;1097:20;1056:2;1137:79;1212:3;1203:6;1190:20;1183:4;1175:6;1171:17;1137:79;:::i;1227:196::-;1286:6;1339:2;1327:9;1318:7;1314:23;1310:32;1307:2;;;1360:6;1352;1345:22;1307:2;1388:29;1407:9;1388:29;:::i;1428:270::-;1496:6;1504;1557:2;1545:9;1536:7;1532:23;1528:32;1525:2;;;1578:6;1570;1563:22;1525:2;1606:29;1625:9;1606:29;:::i;:::-;1596:39;;1654:38;1688:2;1677:9;1673:18;1654:38;:::i;:::-;1644:48;;1515:183;;;;;:::o;1703:338::-;1780:6;1788;1796;1849:2;1837:9;1828:7;1824:23;1820:32;1817:2;;;1870:6;1862;1855:22;1817:2;1898:29;1917:9;1898:29;:::i;:::-;1888:39;;1946:38;1980:2;1969:9;1965:18;1946:38;:::i;:::-;1936:48;;2031:2;2020:9;2016:18;2003:32;1993:42;;1807:234;;;;;:::o;2046:696::-;2141:6;2149;2157;2165;2218:3;2206:9;2197:7;2193:23;2189:33;2186:2;;;2240:6;2232;2225:22;2186:2;2268:29;2287:9;2268:29;:::i;:::-;2258:39;;2316:38;2350:2;2339:9;2335:18;2316:38;:::i;:::-;2306:48;;2401:2;2390:9;2386:18;2373:32;2363:42;;2456:2;2445:9;2441:18;2428:32;2483:18;2475:6;2472:30;2469:2;;;2520:6;2512;2505:22;2469:2;2548:22;;2601:4;2593:13;;2589:27;-1:-1:-1;2579:2:1;;2635:6;2627;2620:22;2579:2;2663:73;2728:7;2723:2;2710:16;2705:2;2701;2697:11;2663:73;:::i;:::-;2653:83;;;2176:566;;;;;;;:::o;2747:264::-;2812:6;2820;2873:2;2861:9;2852:7;2848:23;2844:32;2841:2;;;2894:6;2886;2879:22;2841:2;2922:29;2941:9;2922:29;:::i;:::-;2912:39;;2970:35;3001:2;2990:9;2986:18;2970:35;:::i;3016:264::-;3084:6;3092;3145:2;3133:9;3124:7;3120:23;3116:32;3113:2;;;3166:6;3158;3151:22;3113:2;3194:29;3213:9;3194:29;:::i;:::-;3184:39;3270:2;3255:18;;;;3242:32;;-1:-1:-1;;;3103:177:1:o;3285:190::-;3341:6;3394:2;3382:9;3373:7;3369:23;3365:32;3362:2;;;3415:6;3407;3400:22;3362:2;3443:26;3459:9;3443:26;:::i;3480:410::-;3555:6;3563;3616:2;3604:9;3595:7;3591:23;3587:32;3584:2;;;3637:6;3629;3622:22;3584:2;3665:26;3681:9;3665:26;:::i;:::-;3655:36;;3742:2;3731:9;3727:18;3714:32;3769:18;3761:6;3758:30;3755:2;;;3806:6;3798;3791:22;3755:2;3834:50;3876:7;3867:6;3856:9;3852:22;3834:50;:::i;:::-;3824:60;;;3574:316;;;;;:::o;3895:255::-;3953:6;4006:2;3994:9;3985:7;3981:23;3977:32;3974:2;;;4027:6;4019;4012:22;3974:2;4071:9;4058:23;4090:30;4114:5;4090:30;:::i;4155:259::-;4224:6;4277:2;4265:9;4256:7;4252:23;4248:32;4245:2;;;4298:6;4290;4283:22;4245:2;4335:9;4329:16;4354:30;4378:5;4354:30;:::i;4419:342::-;4488:6;4541:2;4529:9;4520:7;4516:23;4512:32;4509:2;;;4562:6;4554;4547:22;4509:2;4607:9;4594:23;4640:18;4632:6;4629:30;4626:2;;;4677:6;4669;4662:22;4626:2;4705:50;4747:7;4738:6;4727:9;4723:22;4705:50;:::i;4766:190::-;4825:6;4878:2;4866:9;4857:7;4853:23;4849:32;4846:2;;;4899:6;4891;4884:22;4846:2;-1:-1:-1;4927:23:1;;4836:120;-1:-1:-1;4836:120:1:o;4961:264::-;5029:6;5037;5090:2;5078:9;5069:7;5065:23;5061:32;5058:2;;;5111:6;5103;5096:22;5058:2;5152:9;5139:23;5129:33;;5181:38;5215:2;5204:9;5200:18;5181:38;:::i;5230:257::-;5271:3;5309:5;5303:12;5336:6;5331:3;5324:19;5352:63;5408:6;5401:4;5396:3;5392:14;5385:4;5378:5;5374:16;5352:63;:::i;:::-;5469:2;5448:15;-1:-1:-1;;5444:29:1;5435:39;;;;5476:4;5431:50;;5279:208;-1:-1:-1;;5279:208:1:o;5492:185::-;5534:3;5572:5;5566:12;5587:52;5632:6;5627:3;5620:4;5613:5;5609:16;5587:52;:::i;:::-;5655:16;;;;;5542:135;-1:-1:-1;;5542:135:1:o;5800:1305::-;6077:3;6106;6141:6;6135:13;6171:3;6193:1;6221:9;6217:2;6213:18;6203:28;;6281:2;6270:9;6266:18;6303;6293:2;;6347:4;6339:6;6335:17;6325:27;;6293:2;6373;6421;6413:6;6410:14;6390:18;6387:38;6384:2;;;-1:-1:-1;;;6448:33:1;;6504:4;6501:1;6494:15;6534:4;6455:3;6522:17;6384:2;6565:18;6592:104;;;;6710:1;6705:322;;;;6558:469;;6592:104;-1:-1:-1;;6625:24:1;;6613:37;;6670:16;;;;-1:-1:-1;6592:104:1;;6705:322;16044:4;16063:17;;;16113:4;16097:21;;6800:3;6816:165;6830:6;6827:1;6824:13;6816:165;;;6908:14;;6895:11;;;6888:35;6951:16;;;;6845:10;;6816:165;;;6820:3;;7010:6;7005:3;7001:16;6994:23;;6558:469;;;;;;;7043:56;7068:30;7094:3;7086:6;7068:30;:::i;:::-;-1:-1:-1;;;5742:20:1;;5787:1;5778:11;;5732:63;7043:56;7036:63;6085:1020;-1:-1:-1;;;;;6085:1020:1:o;7528:488::-;-1:-1:-1;;;;;7797:15:1;;;7779:34;;7849:15;;7844:2;7829:18;;7822:43;7896:2;7881:18;;7874:34;;;7944:3;7939:2;7924:18;;7917:31;;;7722:4;;7965:45;;7990:19;;7982:6;7965:45;:::i;:::-;7957:53;7731:285;-1:-1:-1;;;;;;7731:285:1:o;8021:635::-;8192:2;8244:21;;;8314:13;;8217:18;;;8336:22;;;8163:4;;8192:2;8415:15;;;;8389:2;8374:18;;;8163:4;8461:169;8475:6;8472:1;8469:13;8461:169;;;8536:13;;8524:26;;8605:15;;;;8570:12;;;;8497:1;8490:9;8461:169;;;-1:-1:-1;8647:3:1;;8172:484;-1:-1:-1;;;;;;8172:484:1:o;8853:219::-;9002:2;8991:9;8984:21;8965:4;9022:44;9062:2;9051:9;9047:18;9039:6;9022:44;:::i;10174:343::-;10376:2;10358:21;;;10415:2;10395:18;;;10388:30;-1:-1:-1;;;10449:2:1;10434:18;;10427:49;10508:2;10493:18;;10348:169::o;11217:356::-;11419:2;11401:21;;;11438:18;;;11431:30;11497:34;11492:2;11477:18;;11470:62;11564:2;11549:18;;11391:182::o;14767:342::-;14969:2;14951:21;;;15008:2;14988:18;;;14981:30;-1:-1:-1;;;15042:2:1;15027:18;;15020:48;15100:2;15085:18;;14941:168::o;15465:345::-;15667:2;15649:21;;;15706:2;15686:18;;;15679:30;-1:-1:-1;;;15740:2:1;15725:18;;15718:51;15801:2;15786:18;;15639:171::o;16129:128::-;16169:3;16200:1;16196:6;16193:1;16190:13;16187:2;;;16206:18;;:::i;:::-;-1:-1:-1;16242:9:1;;16177:80::o;16262:120::-;16302:1;16328;16318:2;;16333:18;;:::i;:::-;-1:-1:-1;16367:9:1;;16308:74::o;16387:168::-;16427:7;16493:1;16489;16485:6;16481:14;16478:1;16475:21;16470:1;16463:9;16456:17;16452:45;16449:2;;;16500:18;;:::i;:::-;-1:-1:-1;16540:9:1;;16439:116::o;16560:125::-;16600:4;16628:1;16625;16622:8;16619:2;;;16633:18;;:::i;:::-;-1:-1:-1;16670:9:1;;16609:76::o;16690:258::-;16762:1;16772:113;16786:6;16783:1;16780:13;16772:113;;;16862:11;;;16856:18;16843:11;;;16836:39;16808:2;16801:10;16772:113;;;16903:6;16900:1;16897:13;16894:2;;;-1:-1:-1;;16938:1:1;16920:16;;16913:27;16743:205::o;16953:380::-;17032:1;17028:12;;;;17075;;;17096:2;;17150:4;17142:6;17138:17;17128:27;;17096:2;17203;17195:6;17192:14;17172:18;17169:38;17166:2;;;17249:10;17244:3;17240:20;17237:1;17230:31;17284:4;17281:1;17274:15;17312:4;17309:1;17302:15;17166:2;;17008:325;;;:::o;17338:135::-;17377:3;-1:-1:-1;;17398:17:1;;17395:2;;;17418:18;;:::i;:::-;-1:-1:-1;17465:1:1;17454:13;;17385:88::o;17478:112::-;17510:1;17536;17526:2;;17541:18;;:::i;:::-;-1:-1:-1;17575:9:1;;17516:74::o;17595:127::-;17656:10;17651:3;17647:20;17644:1;17637:31;17687:4;17684:1;17677:15;17711:4;17708:1;17701:15;17727:127;17788:10;17783:3;17779:20;17776:1;17769:31;17819:4;17816:1;17809:15;17843:4;17840:1;17833:15;17859:127;17920:10;17915:3;17911:20;17908:1;17901:31;17951:4;17948:1;17941:15;17975:4;17972:1;17965:15;17991:131;-1:-1:-1;;;;;;18065:32:1;;18055:43;;18045:2;;18112:1;18109;18102:12

Swarm Source

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