ETH Price: $3,601.70 (+4.06%)
 

Overview

Max Total Supply

116 WoFGB

Holders

98

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
wajdi.eth
Balance
1 WoFGB
0x36b95d4b0233cb14a420e16a386c7150eaa1ab55
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:
WoFGameBall

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-06
*/

/**
 *Submitted for verification at Etherscan.io on 2022-06-05
*/

// SPDX-License-Identifier: MIT

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/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 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/WoFERC721A.sol








pragma solidity ^0.8.4;

contract WoFGameBall is ERC721A, Ownable, Pausable {
    using Strings for uint256; 

    string public baseURI =
        "https://gateway.pinata.cloud/ipfs/QmaJTL39g4H29ECYZ52kE8cL2NVtU7xNmDfHftz7MAnB1M/";
    string public baseExtension = ".json";
    uint256 public cost = 0 ether;
    uint256 public maxSupply = 444;
    uint256 public maxMintPerAddress = 1;  

    bytes32 public root; 

    mapping(address => uint256) public addressMintedBalance;

    constructor(bytes32 _root) ERC721A("WoF Game Ball", "WoFGB") {
        root = _root;
        _safeMint(msg.sender, 50);
    }

    function _startTokenId() internal override view virtual returns (uint256) {
        return 1;
    }

    fallback() external payable {}

    receive() external payable {}

    function setRoot(bytes32 _root) public onlyOwner {
        root = _root;
    }

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

    function setBaseURI(string memory _baseuri) external onlyOwner {
        baseURI = _baseuri;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

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

    function getNFTPrice() external view returns(uint256) {
        return cost;
    }

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function withdraw() external onlyOwner whenNotPaused returns(uint256){
        uint balance = address(this).balance;
        require(balance > 0, "NFT: No ether left to withdraw");

        (bool success, ) = payable(owner()).call{ value: balance } ("");
        require(success, "NFT: Transfer failed.");
        return balance;
    }

    function lastTokenID() external view returns(uint256) {
        return totalSupply();
    }

    function mint(uint256 _mintAmount, bytes32[] memory proof) public payable whenNotPaused {
      uint256 supply = totalSupply();
      require(_mintAmount > 0);
      require(supply + _mintAmount <= maxSupply);
      if (msg.sender != owner()) {
        require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "Not a part of Allowlist");
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];
        require(ownerMintedCount + _mintAmount <= maxMintPerAddress, "max NFT per address exceeded");
        require(msg.value >= cost * _mintAmount, "insufficient funds");
      }

      addressMintedBalance[msg.sender] = addressMintedBalance[msg.sender] + _mintAmount;
      _safeMint(msg.sender, _mintAmount);
    }

    function isValid(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        return MerkleProof.verify(proof, root, leaf);
    }

    function _maxSupply() external view returns(uint256) {
        return maxSupply;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTokenID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseuri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setNFTPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

61010060405260516080818152906200260660a03980516200002a916009916020909101906200041e565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005991600a916200041e565b506000600b556101bc600c556001600d553480156200007757600080fd5b5060405162002677380380620026778339810160408190526200009a91620004c4565b604080518082018252600d81526c15dbd18811d85b594810985b1b609a1b6020808301918252835180850190945260058452642bb7a323a160d91b908401528151919291620000ec916002916200041e565b508051620001029060039060208401906200041e565b505060016000555062000115336200013b565b6008805460ff60a01b19169055600e819055620001343360326200018d565b50620005c9565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001af828260405180602001604052806000815250620001b360201b60201c565b5050565b6000546001600160a01b038416620001dd57604051622e076360e81b815260040160405180910390fd5b82620001fc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15620002c8575b60405182906001600160a01b0388169060009060008051602062002657833981519152908290a460018201916200028d906000908890876200031d565b620002ab576040516368d2bf6b60e11b815260040160405180910390fd5b80821062000250578260005414620002c257600080fd5b620002fd565b5b6040516001830192906001600160a01b0388169060009060008051602062002657833981519152908290a4808210620002c9575b50600090815562000317908583866001600160e01b038516565b50505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200035490339089908890889060040162000511565b602060405180830381600087803b1580156200036f57600080fd5b505af1925050508015620003a2575060408051601f3d908101601f191682019092526200039f91810190620004de565b60015b62000401573d808015620003d3576040519150601f19603f3d011682016040523d82523d6000602084013e620003d8565b606091505b508051620003f9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b8280546200042c906200058c565b90600052602060002090601f0160209004810192826200045057600085556200049b565b82601f106200046b57805160ff19168380011785556200049b565b828001600101855582156200049b579182015b828111156200049b5782518255916020019190600101906200047e565b50620004a9929150620004ad565b5090565b5b80821115620004a95760008155600101620004ae565b600060208284031215620004d757600080fd5b5051919050565b600060208284031215620004f157600080fd5b81516001600160e01b0319811681146200050a57600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620005605785810182015185820160a00152810162000542565b828111156200057357600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600181811c90821680620005a157607f821691505b60208210811415620005c357634e487b7160e01b600052602260045260246000fd5b50919050565b61202d80620005d96000396000f3fe6080604052600436106102065760003560e01c806370a0823111610117578063ba41b0c6116100a5578063dab5f3401161006c578063dab5f340146105c5578063e985e9c5146105e5578063ebf0c7171461062e578063f2fde38b14610644578063fb107a4f1461066457005b8063ba41b0c614610547578063c66828621461055a578063c87b56dd1461056f578063d5abeb011461058f578063da3ef23f146105a557005b80638da5cb5b116100e95780638da5cb5b146104b457806395d89b41146104d2578063a22cb465146104e7578063b88d4fde14610507578063b8a20ed01461052757005b806370a082311461044a578063715018a61461046a57806381530b681461047f5780638456cb591461049f57005b80633521bd7e1161019457806355f804b31161016657806355f804b3146103c0578063572849c4146103e05780635c975abb146103f65780636352211e146104155780636c0360eb1461043557005b80633521bd7e146103615780633ccfd60b146103765780633f4ba83a1461038b57806342842e0e146103a057005b806313faede6116101d857806313faede6146102be57806318160ddd146102e257806318cae269146102ff57806322f4596f1461032c57806323b872dd1461034157005b806301ffc9a71461020f57806306fdde0314610244578063081812fc14610266578063095ea7b31461029e57005b3661020d57005b005b34801561021b57600080fd5b5061022f61022a366004611bf7565b610679565b60405190151581526020015b60405180910390f35b34801561025057600080fd5b506102596106cb565b60405161023b9190611dee565b34801561027257600080fd5b50610286610281366004611bde565b61075d565b6040516001600160a01b03909116815260200161023b565b3480156102aa57600080fd5b5061020d6102b9366004611b6f565b6107a1565b3480156102ca57600080fd5b506102d4600b5481565b60405190815260200161023b565b3480156102ee57600080fd5b5060015460005403600019016102d4565b34801561030b57600080fd5b506102d461031a366004611a2d565b600f6020526000908152604090205481565b34801561033857600080fd5b50600c546102d4565b34801561034d57600080fd5b5061020d61035c366004611a7b565b610874565b34801561036d57600080fd5b506102d4610884565b34801561038257600080fd5b506102d461089e565b34801561039757600080fd5b5061020d6109fe565b3480156103ac57600080fd5b5061020d6103bb366004611a7b565b610a32565b3480156103cc57600080fd5b5061020d6103db366004611c31565b610a4d565b3480156103ec57600080fd5b506102d4600d5481565b34801561040257600080fd5b50600854600160a01b900460ff1661022f565b34801561042157600080fd5b50610286610430366004611bde565b610a8e565b34801561044157600080fd5b50610259610a99565b34801561045657600080fd5b506102d4610465366004611a2d565b610b27565b34801561047657600080fd5b5061020d610b76565b34801561048b57600080fd5b5061020d61049a366004611bde565b610baa565b3480156104ab57600080fd5b5061020d610bd9565b3480156104c057600080fd5b506008546001600160a01b0316610286565b3480156104de57600080fd5b50610259610c0b565b3480156104f357600080fd5b5061020d610502366004611b33565b610c1a565b34801561051357600080fd5b5061020d610522366004611ab7565b610cb0565b34801561053357600080fd5b5061022f610542366004611b99565b610cfa565b61020d610555366004611c7a565b610d10565b34801561056657600080fd5b50610259610f0a565b34801561057b57600080fd5b5061025961058a366004611bde565b610f17565b34801561059b57600080fd5b506102d4600c5481565b3480156105b157600080fd5b5061020d6105c0366004611c31565b610fe4565b3480156105d157600080fd5b5061020d6105e0366004611bde565b611021565b3480156105f157600080fd5b5061022f610600366004611a48565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561063a57600080fd5b506102d4600e5481565b34801561065057600080fd5b5061020d61065f366004611a2d565b611050565b34801561067057600080fd5b50600b546102d4565b60006301ffc9a760e01b6001600160e01b0319831614806106aa57506380ac58cd60e01b6001600160e01b03198316145b806106c55750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106da90611f1f565b80601f016020809104026020016040519081016040528092919081815260200182805461070690611f1f565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b5050505050905090565b6000610768826110eb565b610785576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ac82611120565b9050806001600160a01b0316836001600160a01b031614156107e15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610818576107fb8133610600565b610818576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61087f838383611189565b505050565b60006108996001546000546000199190030190565b905090565b6008546000906001600160a01b031633146108d45760405162461bcd60e51b81526004016108cb90611e2b565b60405180910390fd5b600854600160a01b900460ff16156108fe5760405162461bcd60e51b81526004016108cb90611e01565b478061094c5760405162461bcd60e51b815260206004820152601e60248201527f4e46543a204e6f206574686572206c65667420746f207769746864726177000060448201526064016108cb565b60006109606008546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d80600081146109aa576040519150601f19603f3d011682016040523d82523d6000602084013e6109af565b606091505b50509050806109f85760405162461bcd60e51b815260206004820152601560248201527427232a1d102a3930b739b332b9103330b4b632b21760591b60448201526064016108cb565b50905090565b6008546001600160a01b03163314610a285760405162461bcd60e51b81526004016108cb90611e2b565b610a3061132c565b565b61087f83838360405180602001604052806000815250610cb0565b6008546001600160a01b03163314610a775760405162461bcd60e51b81526004016108cb90611e2b565b8051610a8a90600990602084019061189a565b5050565b60006106c582611120565b60098054610aa690611f1f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad290611f1f565b8015610b1f5780601f10610af457610100808354040283529160200191610b1f565b820191906000526020600020905b815481529060010190602001808311610b0257829003601f168201915b505050505081565b60006001600160a01b038216610b50576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ba05760405162461bcd60e51b81526004016108cb90611e2b565b610a3060006113c9565b6008546001600160a01b03163314610bd45760405162461bcd60e51b81526004016108cb90611e2b565b600b55565b6008546001600160a01b03163314610c035760405162461bcd60e51b81526004016108cb90611e2b565b610a3061141b565b6060600380546106da90611f1f565b6001600160a01b038216331415610c445760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cbb848484611189565b6001600160a01b0383163b15610cf457610cd784848484611480565b610cf4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000610d0983600e5484611578565b9392505050565b600854600160a01b900460ff1615610d3a5760405162461bcd60e51b81526004016108cb90611e01565b6000610d4f6001546000546000199190030190565b905060008311610d5e57600080fd5b600c54610d6b8483611e91565b1115610d7657600080fd5b6008546001600160a01b03163314610ed2576040516bffffffffffffffffffffffff193360601b166020820152610dc790839060340160405160208183030381529060405280519060200120610cfa565b610e135760405162461bcd60e51b815260206004820152601760248201527f4e6f7420612070617274206f6620416c6c6f776c69737400000000000000000060448201526064016108cb565b336000908152600f6020526040902054600d54610e308583611e91565b1115610e7e5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016108cb565b83600b54610e8c9190611ebd565b341015610ed05760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108cb565b505b336000908152600f6020526040902054610eed908490611e91565b336000818152600f602052604090209190915561087f908461158e565b600a8054610aa690611f1f565b6060610f22826110eb565b610f865760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108cb565b6000610f906115a8565b90506000815111610fb05760405180602001604052806000815250610d09565b80610fba846115b7565b600a604051602001610fce93929190611ced565b6040516020818303038152906040529392505050565b6008546001600160a01b0316331461100e5760405162461bcd60e51b81526004016108cb90611e2b565b8051610a8a90600a90602084019061189a565b6008546001600160a01b0316331461104b5760405162461bcd60e51b81526004016108cb90611e2b565b600e55565b6008546001600160a01b0316331461107a5760405162461bcd60e51b81526004016108cb90611e2b565b6001600160a01b0381166110df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108cb565b6110e8816113c9565b50565b6000816001111580156110ff575060005482105b80156106c5575050600090815260046020526040902054600160e01b161590565b600081806001116111705760005481101561117057600081815260046020526040902054600160e01b811661116e575b80610d09575060001901600081815260046020526040902054611150565b505b604051636f96cda160e11b815260040160405180910390fd5b600061119482611120565b9050836001600160a01b0316816001600160a01b0316146111c75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111e557506111e58533610600565b806112005750336111f58461075d565b6001600160a01b0316145b90508061122057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661124757604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b8617811790915582166112e457600183016000818152600460205260409020546112e25760005481146112e25760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600854600160a01b900460ff1661137c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016108cb565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600854600160a01b900460ff16156114455760405162461bcd60e51b81526004016108cb90611e01565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113ac3390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114b5903390899088908890600401611db1565b602060405180830381600087803b1580156114cf57600080fd5b505af19250505080156114ff575060408051601f3d908101601f191682019092526114fc91810190611c14565b60015b61155a573d80801561152d576040519150601f19603f3d011682016040523d82523d6000602084013e611532565b606091505b508051611552576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60008261158585846116b5565b14949350505050565b610a8a828260405180602001604052806000815250611729565b6060600980546106da90611f1f565b6060816115db5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561160557806115ef81611f5a565b91506115fe9050600a83611ea9565b91506115df565b60008167ffffffffffffffff81111561162057611620611fcb565b6040519080825280601f01601f19166020018201604052801561164a576020820181803683370190505b5090505b84156115705761165f600183611edc565b915061166c600a86611f75565b611677906030611e91565b60f81b81838151811061168c5761168c611fb5565b60200101906001600160f81b031916908160001a9053506116ae600a86611ea9565b945061164e565b600081815b84518110156117215760008582815181106116d7576116d7611fb5565b602002602001015190508083116116fd576000838152602082905260409020925061170e565b600081815260208490526040902092505b508061171981611f5a565b9150506116ba565b509392505050565b6000546001600160a01b03841661175257604051622e076360e81b815260040160405180910390fd5b826117705760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611845575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461180e6000878480600101955087611480565b61182b576040516368d2bf6b60e11b815260040160405180910390fd5b8082106117c357826000541461184057600080fd5b61188a565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611846575b506000908155610cf49085838684565b8280546118a690611f1f565b90600052602060002090601f0160209004810192826118c8576000855561190e565b82601f106118e157805160ff191683800117855561190e565b8280016001018555821561190e579182015b8281111561190e5782518255916020019190600101906118f3565b5061191a92915061191e565b5090565b5b8082111561191a576000815560010161191f565b600067ffffffffffffffff83111561194d5761194d611fcb565b611960601f8401601f1916602001611e60565b905082815283838301111561197457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146119a257600080fd5b919050565b600082601f8301126119b857600080fd5b8135602067ffffffffffffffff8211156119d4576119d4611fcb565b8160051b6119e3828201611e60565b8381528281019086840183880185018910156119fe57600080fd5b600093505b85841015611a21578035835260019390930192918401918401611a03565b50979650505050505050565b600060208284031215611a3f57600080fd5b610d098261198b565b60008060408385031215611a5b57600080fd5b611a648361198b565b9150611a726020840161198b565b90509250929050565b600080600060608486031215611a9057600080fd5b611a998461198b565b9250611aa76020850161198b565b9150604084013590509250925092565b60008060008060808587031215611acd57600080fd5b611ad68561198b565b9350611ae46020860161198b565b925060408501359150606085013567ffffffffffffffff811115611b0757600080fd5b8501601f81018713611b1857600080fd5b611b2787823560208401611933565b91505092959194509250565b60008060408385031215611b4657600080fd5b611b4f8361198b565b915060208301358015158114611b6457600080fd5b809150509250929050565b60008060408385031215611b8257600080fd5b611b8b8361198b565b946020939093013593505050565b60008060408385031215611bac57600080fd5b823567ffffffffffffffff811115611bc357600080fd5b611bcf858286016119a7565b95602094909401359450505050565b600060208284031215611bf057600080fd5b5035919050565b600060208284031215611c0957600080fd5b8135610d0981611fe1565b600060208284031215611c2657600080fd5b8151610d0981611fe1565b600060208284031215611c4357600080fd5b813567ffffffffffffffff811115611c5a57600080fd5b8201601f81018413611c6b57600080fd5b61157084823560208401611933565b60008060408385031215611c8d57600080fd5b82359150602083013567ffffffffffffffff811115611cab57600080fd5b611cb7858286016119a7565b9150509250929050565b60008151808452611cd9816020860160208601611ef3565b601f01601f19169290920160200192915050565b600084516020611d008285838a01611ef3565b855191840191611d138184848a01611ef3565b8554920191600090600181811c9080831680611d3057607f831692505b858310811415611d4e57634e487b7160e01b85526022600452602485fd5b808015611d625760018114611d7357611da0565b60ff19851688528388019550611da0565b60008b81526020902060005b85811015611d985781548a820152908401908801611d7f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611de490830184611cc1565b9695505050505050565b602081526000610d096020830184611cc1565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611e8957611e89611fcb565b604052919050565b60008219821115611ea457611ea4611f89565b500190565b600082611eb857611eb8611f9f565b500490565b6000816000190483118215151615611ed757611ed7611f89565b500290565b600082821015611eee57611eee611f89565b500390565b60005b83811015611f0e578181015183820152602001611ef6565b83811115610cf45750506000910152565b600181811c90821680611f3357607f821691505b60208210811415611f5457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f6e57611f6e611f89565b5060010190565b600082611f8457611f84611f9f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110e857600080fdfea2646970667358221220d6bdb877f4d2a5efd6be2987bcd55ddfccedc8f84131aa25f2b91754dd9bdfbc64736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d614a544c333967344832394543595a35326b4538634c324e56745537784e6d44664866747a374d416e42314d2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef7aeeb33d9abceae873cb1e9a1a4379d02c77444b2485c6574d527c3515a7a3c4

Deployed Bytecode

0x6080604052600436106102065760003560e01c806370a0823111610117578063ba41b0c6116100a5578063dab5f3401161006c578063dab5f340146105c5578063e985e9c5146105e5578063ebf0c7171461062e578063f2fde38b14610644578063fb107a4f1461066457005b8063ba41b0c614610547578063c66828621461055a578063c87b56dd1461056f578063d5abeb011461058f578063da3ef23f146105a557005b80638da5cb5b116100e95780638da5cb5b146104b457806395d89b41146104d2578063a22cb465146104e7578063b88d4fde14610507578063b8a20ed01461052757005b806370a082311461044a578063715018a61461046a57806381530b681461047f5780638456cb591461049f57005b80633521bd7e1161019457806355f804b31161016657806355f804b3146103c0578063572849c4146103e05780635c975abb146103f65780636352211e146104155780636c0360eb1461043557005b80633521bd7e146103615780633ccfd60b146103765780633f4ba83a1461038b57806342842e0e146103a057005b806313faede6116101d857806313faede6146102be57806318160ddd146102e257806318cae269146102ff57806322f4596f1461032c57806323b872dd1461034157005b806301ffc9a71461020f57806306fdde0314610244578063081812fc14610266578063095ea7b31461029e57005b3661020d57005b005b34801561021b57600080fd5b5061022f61022a366004611bf7565b610679565b60405190151581526020015b60405180910390f35b34801561025057600080fd5b506102596106cb565b60405161023b9190611dee565b34801561027257600080fd5b50610286610281366004611bde565b61075d565b6040516001600160a01b03909116815260200161023b565b3480156102aa57600080fd5b5061020d6102b9366004611b6f565b6107a1565b3480156102ca57600080fd5b506102d4600b5481565b60405190815260200161023b565b3480156102ee57600080fd5b5060015460005403600019016102d4565b34801561030b57600080fd5b506102d461031a366004611a2d565b600f6020526000908152604090205481565b34801561033857600080fd5b50600c546102d4565b34801561034d57600080fd5b5061020d61035c366004611a7b565b610874565b34801561036d57600080fd5b506102d4610884565b34801561038257600080fd5b506102d461089e565b34801561039757600080fd5b5061020d6109fe565b3480156103ac57600080fd5b5061020d6103bb366004611a7b565b610a32565b3480156103cc57600080fd5b5061020d6103db366004611c31565b610a4d565b3480156103ec57600080fd5b506102d4600d5481565b34801561040257600080fd5b50600854600160a01b900460ff1661022f565b34801561042157600080fd5b50610286610430366004611bde565b610a8e565b34801561044157600080fd5b50610259610a99565b34801561045657600080fd5b506102d4610465366004611a2d565b610b27565b34801561047657600080fd5b5061020d610b76565b34801561048b57600080fd5b5061020d61049a366004611bde565b610baa565b3480156104ab57600080fd5b5061020d610bd9565b3480156104c057600080fd5b506008546001600160a01b0316610286565b3480156104de57600080fd5b50610259610c0b565b3480156104f357600080fd5b5061020d610502366004611b33565b610c1a565b34801561051357600080fd5b5061020d610522366004611ab7565b610cb0565b34801561053357600080fd5b5061022f610542366004611b99565b610cfa565b61020d610555366004611c7a565b610d10565b34801561056657600080fd5b50610259610f0a565b34801561057b57600080fd5b5061025961058a366004611bde565b610f17565b34801561059b57600080fd5b506102d4600c5481565b3480156105b157600080fd5b5061020d6105c0366004611c31565b610fe4565b3480156105d157600080fd5b5061020d6105e0366004611bde565b611021565b3480156105f157600080fd5b5061022f610600366004611a48565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561063a57600080fd5b506102d4600e5481565b34801561065057600080fd5b5061020d61065f366004611a2d565b611050565b34801561067057600080fd5b50600b546102d4565b60006301ffc9a760e01b6001600160e01b0319831614806106aa57506380ac58cd60e01b6001600160e01b03198316145b806106c55750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106da90611f1f565b80601f016020809104026020016040519081016040528092919081815260200182805461070690611f1f565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b5050505050905090565b6000610768826110eb565b610785576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ac82611120565b9050806001600160a01b0316836001600160a01b031614156107e15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610818576107fb8133610600565b610818576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61087f838383611189565b505050565b60006108996001546000546000199190030190565b905090565b6008546000906001600160a01b031633146108d45760405162461bcd60e51b81526004016108cb90611e2b565b60405180910390fd5b600854600160a01b900460ff16156108fe5760405162461bcd60e51b81526004016108cb90611e01565b478061094c5760405162461bcd60e51b815260206004820152601e60248201527f4e46543a204e6f206574686572206c65667420746f207769746864726177000060448201526064016108cb565b60006109606008546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d80600081146109aa576040519150601f19603f3d011682016040523d82523d6000602084013e6109af565b606091505b50509050806109f85760405162461bcd60e51b815260206004820152601560248201527427232a1d102a3930b739b332b9103330b4b632b21760591b60448201526064016108cb565b50905090565b6008546001600160a01b03163314610a285760405162461bcd60e51b81526004016108cb90611e2b565b610a3061132c565b565b61087f83838360405180602001604052806000815250610cb0565b6008546001600160a01b03163314610a775760405162461bcd60e51b81526004016108cb90611e2b565b8051610a8a90600990602084019061189a565b5050565b60006106c582611120565b60098054610aa690611f1f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad290611f1f565b8015610b1f5780601f10610af457610100808354040283529160200191610b1f565b820191906000526020600020905b815481529060010190602001808311610b0257829003601f168201915b505050505081565b60006001600160a01b038216610b50576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ba05760405162461bcd60e51b81526004016108cb90611e2b565b610a3060006113c9565b6008546001600160a01b03163314610bd45760405162461bcd60e51b81526004016108cb90611e2b565b600b55565b6008546001600160a01b03163314610c035760405162461bcd60e51b81526004016108cb90611e2b565b610a3061141b565b6060600380546106da90611f1f565b6001600160a01b038216331415610c445760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cbb848484611189565b6001600160a01b0383163b15610cf457610cd784848484611480565b610cf4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000610d0983600e5484611578565b9392505050565b600854600160a01b900460ff1615610d3a5760405162461bcd60e51b81526004016108cb90611e01565b6000610d4f6001546000546000199190030190565b905060008311610d5e57600080fd5b600c54610d6b8483611e91565b1115610d7657600080fd5b6008546001600160a01b03163314610ed2576040516bffffffffffffffffffffffff193360601b166020820152610dc790839060340160405160208183030381529060405280519060200120610cfa565b610e135760405162461bcd60e51b815260206004820152601760248201527f4e6f7420612070617274206f6620416c6c6f776c69737400000000000000000060448201526064016108cb565b336000908152600f6020526040902054600d54610e308583611e91565b1115610e7e5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016108cb565b83600b54610e8c9190611ebd565b341015610ed05760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108cb565b505b336000908152600f6020526040902054610eed908490611e91565b336000818152600f602052604090209190915561087f908461158e565b600a8054610aa690611f1f565b6060610f22826110eb565b610f865760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108cb565b6000610f906115a8565b90506000815111610fb05760405180602001604052806000815250610d09565b80610fba846115b7565b600a604051602001610fce93929190611ced565b6040516020818303038152906040529392505050565b6008546001600160a01b0316331461100e5760405162461bcd60e51b81526004016108cb90611e2b565b8051610a8a90600a90602084019061189a565b6008546001600160a01b0316331461104b5760405162461bcd60e51b81526004016108cb90611e2b565b600e55565b6008546001600160a01b0316331461107a5760405162461bcd60e51b81526004016108cb90611e2b565b6001600160a01b0381166110df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108cb565b6110e8816113c9565b50565b6000816001111580156110ff575060005482105b80156106c5575050600090815260046020526040902054600160e01b161590565b600081806001116111705760005481101561117057600081815260046020526040902054600160e01b811661116e575b80610d09575060001901600081815260046020526040902054611150565b505b604051636f96cda160e11b815260040160405180910390fd5b600061119482611120565b9050836001600160a01b0316816001600160a01b0316146111c75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111e557506111e58533610600565b806112005750336111f58461075d565b6001600160a01b0316145b90508061122057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661124757604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b8617811790915582166112e457600183016000818152600460205260409020546112e25760005481146112e25760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600854600160a01b900460ff1661137c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016108cb565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600854600160a01b900460ff16156114455760405162461bcd60e51b81526004016108cb90611e01565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113ac3390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114b5903390899088908890600401611db1565b602060405180830381600087803b1580156114cf57600080fd5b505af19250505080156114ff575060408051601f3d908101601f191682019092526114fc91810190611c14565b60015b61155a573d80801561152d576040519150601f19603f3d011682016040523d82523d6000602084013e611532565b606091505b508051611552576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60008261158585846116b5565b14949350505050565b610a8a828260405180602001604052806000815250611729565b6060600980546106da90611f1f565b6060816115db5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561160557806115ef81611f5a565b91506115fe9050600a83611ea9565b91506115df565b60008167ffffffffffffffff81111561162057611620611fcb565b6040519080825280601f01601f19166020018201604052801561164a576020820181803683370190505b5090505b84156115705761165f600183611edc565b915061166c600a86611f75565b611677906030611e91565b60f81b81838151811061168c5761168c611fb5565b60200101906001600160f81b031916908160001a9053506116ae600a86611ea9565b945061164e565b600081815b84518110156117215760008582815181106116d7576116d7611fb5565b602002602001015190508083116116fd576000838152602082905260409020925061170e565b600081815260208490526040902092505b508061171981611f5a565b9150506116ba565b509392505050565b6000546001600160a01b03841661175257604051622e076360e81b815260040160405180910390fd5b826117705760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611845575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461180e6000878480600101955087611480565b61182b576040516368d2bf6b60e11b815260040160405180910390fd5b8082106117c357826000541461184057600080fd5b61188a565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611846575b506000908155610cf49085838684565b8280546118a690611f1f565b90600052602060002090601f0160209004810192826118c8576000855561190e565b82601f106118e157805160ff191683800117855561190e565b8280016001018555821561190e579182015b8281111561190e5782518255916020019190600101906118f3565b5061191a92915061191e565b5090565b5b8082111561191a576000815560010161191f565b600067ffffffffffffffff83111561194d5761194d611fcb565b611960601f8401601f1916602001611e60565b905082815283838301111561197457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146119a257600080fd5b919050565b600082601f8301126119b857600080fd5b8135602067ffffffffffffffff8211156119d4576119d4611fcb565b8160051b6119e3828201611e60565b8381528281019086840183880185018910156119fe57600080fd5b600093505b85841015611a21578035835260019390930192918401918401611a03565b50979650505050505050565b600060208284031215611a3f57600080fd5b610d098261198b565b60008060408385031215611a5b57600080fd5b611a648361198b565b9150611a726020840161198b565b90509250929050565b600080600060608486031215611a9057600080fd5b611a998461198b565b9250611aa76020850161198b565b9150604084013590509250925092565b60008060008060808587031215611acd57600080fd5b611ad68561198b565b9350611ae46020860161198b565b925060408501359150606085013567ffffffffffffffff811115611b0757600080fd5b8501601f81018713611b1857600080fd5b611b2787823560208401611933565b91505092959194509250565b60008060408385031215611b4657600080fd5b611b4f8361198b565b915060208301358015158114611b6457600080fd5b809150509250929050565b60008060408385031215611b8257600080fd5b611b8b8361198b565b946020939093013593505050565b60008060408385031215611bac57600080fd5b823567ffffffffffffffff811115611bc357600080fd5b611bcf858286016119a7565b95602094909401359450505050565b600060208284031215611bf057600080fd5b5035919050565b600060208284031215611c0957600080fd5b8135610d0981611fe1565b600060208284031215611c2657600080fd5b8151610d0981611fe1565b600060208284031215611c4357600080fd5b813567ffffffffffffffff811115611c5a57600080fd5b8201601f81018413611c6b57600080fd5b61157084823560208401611933565b60008060408385031215611c8d57600080fd5b82359150602083013567ffffffffffffffff811115611cab57600080fd5b611cb7858286016119a7565b9150509250929050565b60008151808452611cd9816020860160208601611ef3565b601f01601f19169290920160200192915050565b600084516020611d008285838a01611ef3565b855191840191611d138184848a01611ef3565b8554920191600090600181811c9080831680611d3057607f831692505b858310811415611d4e57634e487b7160e01b85526022600452602485fd5b808015611d625760018114611d7357611da0565b60ff19851688528388019550611da0565b60008b81526020902060005b85811015611d985781548a820152908401908801611d7f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611de490830184611cc1565b9695505050505050565b602081526000610d096020830184611cc1565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611e8957611e89611fcb565b604052919050565b60008219821115611ea457611ea4611f89565b500190565b600082611eb857611eb8611f9f565b500490565b6000816000190483118215151615611ed757611ed7611f89565b500290565b600082821015611eee57611eee611f89565b500390565b60005b83811015611f0e578181015183820152602001611ef6565b83811115610cf45750506000910152565b600181811c90821680611f3357607f821691505b60208210811415611f5457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f6e57611f6e611f89565b5060010190565b600082611f8457611f84611f9f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110e857600080fdfea2646970667358221220d6bdb877f4d2a5efd6be2987bcd55ddfccedc8f84131aa25f2b91754dd9bdfbc64736f6c63430008070033

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

7aeeb33d9abceae873cb1e9a1a4379d02c77444b2485c6574d527c3515a7a3c4

-----Decoded View---------------
Arg [0] : _root (bytes32): 0x7aeeb33d9abceae873cb1e9a1a4379d02c77444b2485c6574d527c3515a7a3c4

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 7aeeb33d9abceae873cb1e9a1a4379d02c77444b2485c6574d527c3515a7a3c4


Deployed Bytecode Sourcemap

48969:3675:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23617:615;;;;;;;;;;-1:-1:-1;23617:615:0;;;;;:::i;:::-;;:::i;:::-;;;8677:14:1;;8670:22;8652:41;;8640:2;8625:18;23617:615:0;;;;;;;;28630:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30698:204::-;;;;;;;;;;-1:-1:-1;30698:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7975:32:1;;;7957:51;;7945:2;7930:18;30698:204:0;7811:203:1;30158:474:0;;;;;;;;;;-1:-1:-1;30158:474:0;;;;;:::i;:::-;;:::i;49229:29::-;;;;;;;;;;;;;;;;;;;8850:25:1;;;8838:2;8823:18;49229:29:0;8704:177:1;22671:315:0;;;;;;;;;;-1:-1:-1;49670:1:0;22937:12;22724:7;22921:13;:28;-1:-1:-1;;22921:46:0;22671:315;;49378:55;;;;;;;;;;-1:-1:-1;49378:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;52551:88;;;;;;;;;;-1:-1:-1;52622:9:0;;52551:88;;31584:170;;;;;;;;;;-1:-1:-1;31584:170:0;;;;;:::i;:::-;;:::i;51542:93::-;;;;;;;;;;;;;:::i;51192:342::-;;;;;;;;;;;;;:::i;51119:65::-;;;;;;;;;;;;;:::i;31825:185::-;;;;;;;;;;-1:-1:-1;31825:185:0;;;;;:::i;:::-;;:::i;49966:100::-;;;;;;;;;;-1:-1:-1;49966:100:0;;;;;:::i;:::-;;:::i;49302:36::-;;;;;;;;;;;;;;;;6828:86;;;;;;;;;;-1:-1:-1;6899:7:0;;-1:-1:-1;;;6899:7:0;;;;6828:86;;28419:144;;;;;;;;;;-1:-1:-1;28419:144:0;;;;;:::i;:::-;;:::i;49062:116::-;;;;;;;;;;;;;:::i;24296:224::-;;;;;;;;;;-1:-1:-1;24296:224:0;;;;;:::i;:::-;;:::i;9727:103::-;;;;;;;;;;;;;:::i;50724:90::-;;;;;;;;;;-1:-1:-1;50724:90:0;;;;;:::i;:::-;;:::i;51050:61::-;;;;;;;;;;;;;:::i;9076:87::-;;;;;;;;;;-1:-1:-1;9149:6:0;;-1:-1:-1;;;;;9149:6:0;9076:87;;28799:104;;;;;;;;;;;;;:::i;30974:308::-;;;;;;;;;;-1:-1:-1;30974:308:0;;;;;:::i;:::-;;:::i;32081:396::-;;;;;;;;;;-1:-1:-1;32081:396:0;;;;;:::i;:::-;;:::i;52398:145::-;;;;;;;;;;-1:-1:-1;52398:145:0;;;;;:::i;:::-;;:::i;51643:747::-;;;;;;:::i;:::-;;:::i;49185:37::-;;;;;;;;;;;;;:::i;50074:642::-;;;;;;;;;;-1:-1:-1;50074:642:0;;;;;:::i;:::-;;:::i;49265:30::-;;;;;;;;;;;;;;;;50914:128;;;;;;;;;;-1:-1:-1;50914:128:0;;;;;:::i;:::-;;:::i;49762:80::-;;;;;;;;;;-1:-1:-1;49762:80:0;;;;;:::i;:::-;;:::i;31353:164::-;;;;;;;;;;-1:-1:-1;31353:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31474:25:0;;;31450:4;31474:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31353:164;49349:19;;;;;;;;;;;;;;;;9985:201;;;;;;;;;;-1:-1:-1;9985:201:0;;;;;:::i;:::-;;:::i;50822:84::-;;;;;;;;;;-1:-1:-1;50894:4:0;;50822:84;;23617:615;23702:4;-1:-1:-1;;;;;;;;;24002:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;24079:25:0;;;24002:102;:179;;;-1:-1:-1;;;;;;;;;;24156:25:0;;;24002:179;23982:199;23617:615;-1:-1:-1;;23617:615:0:o;28630:100::-;28684:13;28717:5;28710:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28630:100;:::o;30698:204::-;30766:7;30791:16;30799:7;30791;:16::i;:::-;30786:64;;30816:34;;-1:-1:-1;;;30816:34:0;;;;;;;;;;;30786:64;-1:-1:-1;30870:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30870:24:0;;30698:204::o;30158:474::-;30231:13;30263:27;30282:7;30263:18;:27::i;:::-;30231:61;;30313:5;-1:-1:-1;;;;;30307:11:0;:2;-1:-1:-1;;;;;30307:11:0;;30303:48;;;30327:24;;-1:-1:-1;;;30327:24:0;;;;;;;;;;;30303:48;46801:10;-1:-1:-1;;;;;30368:28:0;;;30364:175;;30416:44;30433:5;46801:10;31353:164;:::i;30416:44::-;30411:128;;30488:35;;-1:-1:-1;;;30488:35:0;;;;;;;;;;;30411:128;30551:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;30551:29:0;-1:-1:-1;;;;;30551:29:0;;;;;;;;;30596:28;;30551:24;;30596:28;;;;;;;30220:412;30158:474;;:::o;31584:170::-;31718:28;31728:4;31734:2;31738:7;31718:9;:28::i;:::-;31584:170;;;:::o;51542:93::-;51587:7;51614:13;49670:1;22937:12;22724:7;22921:13;-1:-1:-1;;22921:28:0;;;:46;;22671:315;51614:13;51607:20;;51542:93;:::o;51192:342::-;9149:6;;51253:7;;-1:-1:-1;;;;;9149:6:0;46801:10;9296:23;9288:68;;;;-1:-1:-1;;;9288:68:0;;;;;;;:::i;:::-;;;;;;;;;6899:7;;-1:-1:-1;;;6899:7:0;;;;7153:9:::1;7145:38;;;;-1:-1:-1::0;;;7145:38:0::1;;;;;;;:::i;:::-;51287:21:::2;51327:11:::0;51319:54:::2;;;::::0;-1:-1:-1;;;51319:54:0;;10068:2:1;51319:54:0::2;::::0;::::2;10050:21:1::0;10107:2;10087:18;;;10080:30;10146:32;10126:18;;;10119:60;10196:18;;51319:54:0::2;9866:354:1::0;51319:54:0::2;51387:12;51413:7;9149:6:::0;;-1:-1:-1;;;;;9149:6:0;;9076:87;51413:7:::2;-1:-1:-1::0;;;;;51405:21:0::2;51435:7;51405:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51386:63;;;51468:7;51460:41;;;::::0;-1:-1:-1;;;51460:41:0;;10784:2:1;51460:41:0::2;::::0;::::2;10766:21:1::0;10823:2;10803:18;;;10796:30;-1:-1:-1;;;10842:18:1;;;10835:51;10903:18;;51460:41:0::2;10582:345:1::0;51460:41:0::2;-1:-1:-1::0;51519:7:0;-1:-1:-1;51192:342:0;:::o;51119:65::-;9149:6;;-1:-1:-1;;;;;9149:6:0;46801:10;9296:23;9288:68;;;;-1:-1:-1;;;9288:68:0;;;;;;;:::i;:::-;51166:10:::1;:8;:10::i;:::-;51119:65::o:0;31825:185::-;31963:39;31980:4;31986:2;31990:7;31963:39;;;;;;;;;;;;:16;:39::i;49966:100::-;9149:6;;-1:-1:-1;;;;;9149:6:0;46801:10;9296:23;9288:68;;;;-1:-1:-1;;;9288:68:0;;;;;;;:::i;:::-;50040:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49966:100:::0;:::o;28419:144::-;28483:7;28526:27;28545:7;28526:18;:27::i;49062:116::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24296:224::-;24360:7;-1:-1:-1;;;;;24384:19:0;;24380:60;;24412:28;;-1:-1:-1;;;24412:28:0;;;;;;;;;;;24380:60;-1:-1:-1;;;;;;24458:25:0;;;;;:18;:25;;;;;;19635:13;24458:54;;24296:224::o;9727:103::-;9149:6;;-1:-1:-1;;;;;9149:6:0;46801:10;9296:23;9288:68;;;;-1:-1:-1;;;9288:68:0;;;;;;;:::i;:::-;9792:30:::1;9819:1;9792:18;:30::i;50724:90::-:0;9149:6;;-1:-1:-1;;;;;9149:6:0;46801:10;9296:23;9288:68;;;;-1:-1:-1;;;9288:68:0;;;;;;;:::i;:::-;50791:4:::1;:15:::0;50724:90::o;51050:61::-;9149:6;;-1:-1:-1;;;;;9149:6:0;46801:10;9296:23;9288:68;;;;-1:-1:-1;;;9288:68:0;;;;;;;:::i;:::-;51095:8:::1;:6;:8::i;28799:104::-:0;28855:13;28888:7;28881:14;;;;;:::i;30974:308::-;-1:-1:-1;;;;;31073:31:0;;46801:10;31073:31;31069:61;;;31113:17;;-1:-1:-1;;;31113:17:0;;;;;;;;;;;31069:61;46801:10;31143:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;31143:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;31143:60:0;;;;;;;;;;31219:55;;8652:41:1;;;31143:49:0;;46801:10;31219:55;;8625:18:1;31219:55:0;;;;;;;30974:308;;:::o;32081:396::-;32248:28;32258:4;32264:2;32268:7;32248:9;:28::i;:::-;-1:-1:-1;;;;;32291:14:0;;;:19;32287:183;;32330:56;32361:4;32367:2;32371:7;32380:5;32330:30;:56::i;:::-;32325:145;;32414:40;;-1:-1:-1;;;32414:40:0;;;;;;;;;;;32325:145;32081:396;;;;:::o;52398:145::-;52474:4;52498:37;52517:5;52524:4;;52530;52498:18;:37::i;:::-;52491:44;52398:145;-1:-1:-1;;;52398:145:0:o;51643:747::-;6899:7;;-1:-1:-1;;;6899:7:0;;;;7153:9;7145:38;;;;-1:-1:-1;;;7145:38:0;;;;;;;:::i;:::-;51740:14:::1;51757:13;49670:1:::0;22937:12;22724:7;22921:13;-1:-1:-1;;22921:28:0;;;:46;;22671:315;51757:13:::1;51740:30;;51801:1;51787:11;:15;51779:24;;;::::0;::::1;;51844:9;::::0;51820:20:::1;51829:11:::0;51820:6;:20:::1;:::i;:::-;:33;;51812:42;;;::::0;::::1;;9149:6:::0;;-1:-1:-1;;;;;9149:6:0;51867:10:::1;:21;51863:385;;51934:28;::::0;-1:-1:-1;;51951:10:0::1;5984:2:1::0;5980:15;5976:53;51934:28:0::1;::::0;::::1;5964:66:1::0;51909:55:0::1;::::0;51917:5;;6046:12:1;;51934:28:0::1;;;;;;;;;;;;51924:39;;;;;;51909:7;:55::i;:::-;51901:91;;;::::0;-1:-1:-1;;;51901:91:0;;11479:2:1;51901:91:0::1;::::0;::::1;11461:21:1::0;11518:2;11498:18;;;11491:30;11557:25;11537:18;;;11530:53;11600:18;;51901:91:0::1;11277:347:1::0;51901:91:0::1;52051:10;52003:24;52030:32:::0;;;:20:::1;:32;::::0;;;;;52115:17:::1;::::0;52081:30:::1;52100:11:::0;52030:32;52081:30:::1;:::i;:::-;:51;;52073:92;;;::::0;-1:-1:-1;;;52073:92:0;;10427:2:1;52073:92:0::1;::::0;::::1;10409:21:1::0;10466:2;10446:18;;;10439:30;10505;10485:18;;;10478:58;10553:18;;52073:92:0::1;10225:352:1::0;52073:92:0::1;52204:11;52197:4;;:18;;;;:::i;:::-;52184:9;:31;;52176:62;;;::::0;-1:-1:-1;;;52176:62:0;;12608:2:1;52176:62:0::1;::::0;::::1;12590:21:1::0;12647:2;12627:18;;;12620:30;-1:-1:-1;;;12666:18:1;;;12659:48;12724:18;;52176:62:0::1;12406:342:1::0;52176:62:0::1;51890:358;51863:385;52314:10;52293:32;::::0;;;:20:::1;:32;::::0;;;;;:46:::1;::::0;52328:11;;52293:46:::1;:::i;:::-;52279:10;52258:32;::::0;;;:20:::1;:32;::::0;;;;:81;;;;52348:34:::1;::::0;52370:11;52348:9:::1;:34::i;49185:37::-:0;;;;;;;:::i;50074:642::-;50192:13;50245:16;50253:7;50245;:16::i;:::-;50223:113;;;;-1:-1:-1;;;50223:113:0;;12192:2:1;50223:113:0;;;12174:21:1;12231:2;12211:18;;;12204:30;12270:34;12250:18;;;12243:62;-1:-1:-1;;;12321:18:1;;;12314:45;12376:19;;50223:113:0;11990:411:1;50223:113:0;50349:28;50380:10;:8;:10::i;:::-;50349:41;;50452:1;50427:14;50421:28;:32;:287;;;;;;;;;;;;;;;;;50545:14;50586:18;:7;:16;:18::i;:::-;50631:13;50502:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50401:307;50074:642;-1:-1:-1;;;50074:642:0:o;50914:128::-;9149:6;;-1:-1:-1;;;;;9149:6:0;46801:10;9296:23;9288:68;;;;-1:-1:-1;;;9288:68:0;;;;;;;:::i;:::-;51001:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;49762:80::-:0;9149:6;;-1:-1:-1;;;;;9149:6:0;46801:10;9296:23;9288:68;;;;-1:-1:-1;;;9288:68:0;;;;;;;:::i;:::-;49822:4:::1;:12:::0;49762:80::o;9985:201::-;9149:6;;-1:-1:-1;;;;;9149:6:0;46801:10;9296:23;9288:68;;;;-1:-1:-1;;;9288:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10074:22:0;::::1;10066:73;;;::::0;-1:-1:-1;;;10066:73:0;;9661:2:1;10066:73:0::1;::::0;::::1;9643:21:1::0;9700:2;9680:18;;;9673:30;9739:34;9719:18;;;9712:62;-1:-1:-1;;;9790:18:1;;;9783:36;9836:19;;10066:73:0::1;9459:402:1::0;10066:73:0::1;10150:28;10169:8;10150:18;:28::i;:::-;9985:201:::0;:::o;32732:273::-;32789:4;32845:7;49670:1;32826:26;;:66;;;;;32879:13;;32869:7;:23;32826:66;:152;;;;-1:-1:-1;;32930:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;32930:43:0;:48;;32732:273::o;25934:1129::-;26001:7;26036;;49670:1;26085:23;26081:915;;26138:13;;26131:4;:20;26127:869;;;26176:14;26193:23;;;:17;:23;;;;;;-1:-1:-1;;;26282:23:0;;26278:699;;26801:113;26808:11;26801:113;;-1:-1:-1;;;26879:6:0;26861:25;;;;:17;:25;;;;;;26801:113;;26278:699;26153:843;26127:869;27024:31;;-1:-1:-1;;;27024:31:0;;;;;;;;;;;37971:2515;38086:27;38116;38135:7;38116:18;:27::i;:::-;38086:57;;38201:4;-1:-1:-1;;;;;38160:45:0;38176:19;-1:-1:-1;;;;;38160:45:0;;38156:86;;38214:28;;-1:-1:-1;;;38214:28:0;;;;;;;;;;;38156:86;38255:22;46801:10;-1:-1:-1;;;;;38281:27:0;;;;:87;;-1:-1:-1;38325:43:0;38342:4;46801:10;31353:164;:::i;38325:43::-;38281:147;;;-1:-1:-1;46801:10:0;38385:20;38397:7;38385:11;:20::i;:::-;-1:-1:-1;;;;;38385:43:0;;38281:147;38255:174;;38447:17;38442:66;;38473:35;;-1:-1:-1;;;38473:35:0;;;;;;;;;;;38442:66;-1:-1:-1;;;;;38523:16:0;;38519:52;;38548:23;;-1:-1:-1;;;38548:23:0;;;;;;;;;;;38519:52;38700:24;;;;:15;:24;;;;;;;;38693:31;;-1:-1:-1;;;;;;38693:31:0;;;-1:-1:-1;;;;;39092:24:0;;;;;:18;:24;;;;;39090:26;;-1:-1:-1;;39090:26:0;;;39161:22;;;;;;;39159:24;;-1:-1:-1;39159:24:0;;;39454:26;;;:17;:26;;;;;-1:-1:-1;;;39542:15:0;20289:3;39542:41;39500:84;;:128;;39454:174;;;39748:46;;39744:626;;39852:1;39842:11;;39820:19;39975:30;;;:17;:30;;;;;;39971:384;;40113:13;;40098:11;:28;40094:242;;40260:30;;;;:17;:30;;;;;:52;;;40094:242;39801:569;39744:626;40417:7;40413:2;-1:-1:-1;;;;;40398:27:0;40407:4;-1:-1:-1;;;;;40398:27:0;;;;;;;;;;;38075:2411;;37971:2515;;;:::o;7887:120::-;6899:7;;-1:-1:-1;;;6899:7:0;;;;7423:41;;;;-1:-1:-1;;;7423:41:0;;9312:2:1;7423:41:0;;;9294:21:1;9351:2;9331:18;;;9324:30;-1:-1:-1;;;9370:18:1;;;9363:50;9430:18;;7423:41:0;9110:344:1;7423:41:0;7946:7:::1;:15:::0;;-1:-1:-1;;;;7946:15:0::1;::::0;;7977:22:::1;46801:10:::0;7986:12:::1;7977:22;::::0;-1:-1:-1;;;;;7975:32:1;;;7957:51;;7945:2;7930:18;7977:22:0::1;;;;;;;7887:120::o:0;10346:191::-;10439:6;;;-1:-1:-1;;;;;10456:17:0;;;-1:-1:-1;;;;;;10456:17:0;;;;;;;10489:40;;10439:6;;;10456:17;10439:6;;10489:40;;10420:16;;10489:40;10409:128;10346:191;:::o;7628:118::-;6899:7;;-1:-1:-1;;;6899:7:0;;;;7153:9;7145:38;;;;-1:-1:-1;;;7145:38:0;;;;;;;:::i;:::-;7688:7:::1;:14:::0;;-1:-1:-1;;;;7688:14:0::1;-1:-1:-1::0;;;7688:14:0::1;::::0;;7718:20:::1;7725:12;46801:10:::0;;46714:105;44183:716;44367:88;;-1:-1:-1;;;44367:88:0;;44346:4;;-1:-1:-1;;;;;44367:45:0;;;;;:88;;46801:10;;44434:4;;44440:7;;44449:5;;44367:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44367:88:0;;;;;;;;-1:-1:-1;;44367:88:0;;;;;;;;;;;;:::i;:::-;;;44363:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44650:13:0;;44646:235;;44696:40;;-1:-1:-1;;;44696:40:0;;;;;;;;;;;44646:235;44839:6;44833:13;44824:6;44820:2;44816:15;44809:38;44363:529;-1:-1:-1;;;;;;44526:64:0;-1:-1:-1;;;44526:64:0;;-1:-1:-1;44363:529:0;44183:716;;;;;;:::o;3338:190::-;3463:4;3516;3487:25;3500:5;3507:4;3487:12;:25::i;:::-;:33;;3338:190;-1:-1:-1;;;;3338:190:0:o;33089:104::-;33158:27;33168:2;33172:8;33158:27;;;;;;;;;;;;:9;:27::i;49850:108::-;49910:13;49943:7;49936:14;;;;;:::i;359:723::-;415:13;636:10;632:53;;-1:-1:-1;;663:10:0;;;;;;;;;;;;-1:-1:-1;;;663:10:0;;;;;359:723::o;632:53::-;710:5;695:12;751:78;758:9;;751:78;;784:8;;;;:::i;:::-;;-1:-1:-1;807:10:0;;-1:-1:-1;815:2:0;807:10;;:::i;:::-;;;751:78;;;839:19;871:6;861:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;861:17:0;;839:39;;889:154;896:10;;889:154;;923:11;933:1;923:11;;:::i;:::-;;-1:-1:-1;992:10:0;1000:2;992:5;:10;:::i;:::-;979:24;;:2;:24;:::i;:::-;966:39;;949:6;956;949:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;949:56:0;;;;;;;;-1:-1:-1;1020:11:0;1029:2;1020:11;;:::i;:::-;;;889:154;;3889:675;3972:7;4015:4;3972:7;4030:497;4054:5;:12;4050:1;:16;4030:497;;;4088:20;4111:5;4117:1;4111:8;;;;;;;;:::i;:::-;;;;;;;4088:31;;4154:12;4138;:28;4134:382;;4640:13;4690:15;;;4726:4;4719:15;;;4773:4;4757:21;;4266:57;;4134:382;;;4640:13;4690:15;;;4726:4;4719:15;;;4773:4;4757:21;;4443:57;;4134:382;-1:-1:-1;4068:3:0;;;;:::i;:::-;;;;4030:497;;;-1:-1:-1;4544:12:0;3889:675;-1:-1:-1;;;3889:675:0:o;33566:2236::-;33689:20;33712:13;-1:-1:-1;;;;;33740:16:0;;33736:48;;33765:19;;-1:-1:-1;;;33765:19:0;;;;;;;;;;;33736:48;33799:13;33795:44;;33821:18;;-1:-1:-1;;;33821:18:0;;;;;;;;;;;33795:44;-1:-1:-1;;;;;34388:22:0;;;;;;:18;:22;;;;19772:2;34388:22;;;:70;;34426:31;34414:44;;34388:70;;;34701:31;;;:17;:31;;;;;34794:15;20289:3;34794:41;34752:84;;-1:-1:-1;34872:13:0;;20552:3;34857:56;34752:162;34701:213;;:31;;34995:23;;;;35039:14;:19;35035:635;;35079:313;35110:38;;35135:12;;-1:-1:-1;;;;;35110:38:0;;;35127:1;;35110:38;;35127:1;;35110:38;35176:69;35215:1;35219:2;35223:14;;;;;;35239:5;35176:30;:69::i;:::-;35171:174;;35281:40;;-1:-1:-1;;;35281:40:0;;;;;;;;;;;35171:174;35387:3;35372:12;:18;35079:313;;35473:12;35456:13;;:29;35452:43;;35487:8;;;35452:43;35035:635;;;35536:119;35567:40;;35592:14;;;;;-1:-1:-1;;;;;35567:40:0;;;35584:1;;35567:40;;35584:1;;35567:40;35650:3;35635:12;:18;35536:119;;35035:635;-1:-1:-1;35684:13:0;:28;;;35734:60;;35767:2;35771:12;35785:8;35734:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;813:18;809:2;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:186::-;1390:6;1443:2;1431:9;1422:7;1418:23;1414:32;1411:52;;;1459:1;1456;1449:12;1411:52;1482:29;1501:9;1482:29;:::i;1522:260::-;1590:6;1598;1651:2;1639:9;1630:7;1626:23;1622:32;1619:52;;;1667:1;1664;1657:12;1619:52;1690:29;1709:9;1690:29;:::i;:::-;1680:39;;1738:38;1772:2;1761:9;1757:18;1738:38;:::i;:::-;1728:48;;1522:260;;;;;:::o;1787:328::-;1864:6;1872;1880;1933:2;1921:9;1912:7;1908:23;1904:32;1901:52;;;1949:1;1946;1939:12;1901:52;1972:29;1991:9;1972:29;:::i;:::-;1962:39;;2020:38;2054:2;2043:9;2039:18;2020:38;:::i;:::-;2010:48;;2105:2;2094:9;2090:18;2077:32;2067:42;;1787:328;;;;;:::o;2120:666::-;2215:6;2223;2231;2239;2292:3;2280:9;2271:7;2267:23;2263:33;2260:53;;;2309:1;2306;2299:12;2260:53;2332:29;2351:9;2332:29;:::i;:::-;2322:39;;2380:38;2414:2;2403:9;2399:18;2380:38;:::i;:::-;2370:48;;2465:2;2454:9;2450:18;2437:32;2427:42;;2520:2;2509:9;2505:18;2492:32;2547:18;2539:6;2536:30;2533:50;;;2579:1;2576;2569:12;2533:50;2602:22;;2655:4;2647:13;;2643:27;-1:-1:-1;2633:55:1;;2684:1;2681;2674:12;2633:55;2707:73;2772:7;2767:2;2754:16;2749:2;2745;2741:11;2707:73;:::i;:::-;2697:83;;;2120:666;;;;;;;:::o;2791:347::-;2856:6;2864;2917:2;2905:9;2896:7;2892:23;2888:32;2885:52;;;2933:1;2930;2923:12;2885:52;2956:29;2975:9;2956:29;:::i;:::-;2946:39;;3035:2;3024:9;3020:18;3007:32;3082:5;3075:13;3068:21;3061:5;3058:32;3048:60;;3104:1;3101;3094:12;3048:60;3127:5;3117:15;;;2791:347;;;;;:::o;3143:254::-;3211:6;3219;3272:2;3260:9;3251:7;3247:23;3243:32;3240:52;;;3288:1;3285;3278:12;3240:52;3311:29;3330:9;3311:29;:::i;:::-;3301:39;3387:2;3372:18;;;;3359:32;;-1:-1:-1;;;3143:254:1:o;3402:416::-;3495:6;3503;3556:2;3544:9;3535:7;3531:23;3527:32;3524:52;;;3572:1;3569;3562:12;3524:52;3612:9;3599:23;3645:18;3637:6;3634:30;3631:50;;;3677:1;3674;3667:12;3631:50;3700:61;3753:7;3744:6;3733:9;3729:22;3700:61;:::i;:::-;3690:71;3808:2;3793:18;;;;3780:32;;-1:-1:-1;;;;3402:416:1:o;3823:180::-;3882:6;3935:2;3923:9;3914:7;3910:23;3906:32;3903:52;;;3951:1;3948;3941:12;3903:52;-1:-1:-1;3974:23:1;;3823:180;-1:-1:-1;3823:180:1:o;4008:245::-;4066:6;4119:2;4107:9;4098:7;4094:23;4090:32;4087:52;;;4135:1;4132;4125:12;4087:52;4174:9;4161:23;4193:30;4217:5;4193:30;:::i;4258:249::-;4327:6;4380:2;4368:9;4359:7;4355:23;4351:32;4348:52;;;4396:1;4393;4386:12;4348:52;4428:9;4422:16;4447:30;4471:5;4447:30;:::i;4512:450::-;4581:6;4634:2;4622:9;4613:7;4609:23;4605:32;4602:52;;;4650:1;4647;4640:12;4602:52;4690:9;4677:23;4723:18;4715:6;4712:30;4709:50;;;4755:1;4752;4745:12;4709:50;4778:22;;4831:4;4823:13;;4819:27;-1:-1:-1;4809:55:1;;4860:1;4857;4850:12;4809:55;4883:73;4948:7;4943:2;4930:16;4925:2;4921;4917:11;4883:73;:::i;5152:416::-;5245:6;5253;5306:2;5294:9;5285:7;5281:23;5277:32;5274:52;;;5322:1;5319;5312:12;5274:52;5358:9;5345:23;5335:33;;5419:2;5408:9;5404:18;5391:32;5446:18;5438:6;5435:30;5432:50;;;5478:1;5475;5468:12;5432:50;5501:61;5554:7;5545:6;5534:9;5530:22;5501:61;:::i;:::-;5491:71;;;5152:416;;;;;:::o;5573:257::-;5614:3;5652:5;5646:12;5679:6;5674:3;5667:19;5695:63;5751:6;5744:4;5739:3;5735:14;5728:4;5721:5;5717:16;5695:63;:::i;:::-;5812:2;5791:15;-1:-1:-1;;5787:29:1;5778:39;;;;5819:4;5774:50;;5573:257;-1:-1:-1;;5573:257:1:o;6069:1527::-;6293:3;6331:6;6325:13;6357:4;6370:51;6414:6;6409:3;6404:2;6396:6;6392:15;6370:51;:::i;:::-;6484:13;;6443:16;;;;6506:55;6484:13;6443:16;6528:15;;;6506:55;:::i;:::-;6650:13;;6583:20;;;6623:1;;6710;6732:18;;;;6785;;;;6812:93;;6890:4;6880:8;6876:19;6864:31;;6812:93;6953:2;6943:8;6940:16;6920:18;6917:40;6914:167;;;-1:-1:-1;;;6980:33:1;;7036:4;7033:1;7026:15;7066:4;6987:3;7054:17;6914:167;7097:18;7124:110;;;;7248:1;7243:328;;;;7090:481;;7124:110;-1:-1:-1;;7159:24:1;;7145:39;;7204:20;;;;-1:-1:-1;7124:110:1;;7243:328;13288:1;13281:14;;;13325:4;13312:18;;7338:1;7352:169;7366:8;7363:1;7360:15;7352:169;;;7448:14;;7433:13;;;7426:37;7491:16;;;;7383:10;;7352:169;;;7356:3;;7552:8;7545:5;7541:20;7534:27;;7090:481;-1:-1:-1;7587:3:1;;6069:1527;-1:-1:-1;;;;;;;;;;;6069:1527:1:o;8019:488::-;-1:-1:-1;;;;;8288:15:1;;;8270:34;;8340:15;;8335:2;8320:18;;8313:43;8387:2;8372:18;;8365:34;;;8435:3;8430:2;8415:18;;8408:31;;;8213:4;;8456:45;;8481:19;;8473:6;8456:45;:::i;:::-;8448:53;8019:488;-1:-1:-1;;;;;;8019:488:1:o;8886:219::-;9035:2;9024:9;9017:21;8998:4;9055:44;9095:2;9084:9;9080:18;9072:6;9055:44;:::i;10932:340::-;11134:2;11116:21;;;11173:2;11153:18;;;11146:30;-1:-1:-1;;;11207:2:1;11192:18;;11185:46;11263:2;11248:18;;10932:340::o;11629:356::-;11831:2;11813:21;;;11850:18;;;11843:30;11909:34;11904:2;11889:18;;11882:62;11976:2;11961:18;;11629:356::o;12935:275::-;13006:2;13000:9;13071:2;13052:13;;-1:-1:-1;;13048:27:1;13036:40;;13106:18;13091:34;;13127:22;;;13088:62;13085:88;;;13153:18;;:::i;:::-;13189:2;13182:22;12935:275;;-1:-1:-1;12935:275:1:o;13341:128::-;13381:3;13412:1;13408:6;13405:1;13402:13;13399:39;;;13418:18;;:::i;:::-;-1:-1:-1;13454:9:1;;13341:128::o;13474:120::-;13514:1;13540;13530:35;;13545:18;;:::i;:::-;-1:-1:-1;13579:9:1;;13474:120::o;13599:168::-;13639:7;13705:1;13701;13697:6;13693:14;13690:1;13687:21;13682:1;13675:9;13668:17;13664:45;13661:71;;;13712:18;;:::i;:::-;-1:-1:-1;13752:9:1;;13599:168::o;13772:125::-;13812:4;13840:1;13837;13834:8;13831:34;;;13845:18;;:::i;:::-;-1:-1:-1;13882:9:1;;13772:125::o;13902:258::-;13974:1;13984:113;13998:6;13995:1;13992:13;13984:113;;;14074:11;;;14068:18;14055:11;;;14048:39;14020:2;14013:10;13984:113;;;14115:6;14112:1;14109:13;14106:48;;;-1:-1:-1;;14150:1:1;14132:16;;14125:27;13902:258::o;14165:380::-;14244:1;14240:12;;;;14287;;;14308:61;;14362:4;14354:6;14350:17;14340:27;;14308:61;14415:2;14407:6;14404:14;14384:18;14381:38;14378:161;;;14461:10;14456:3;14452:20;14449:1;14442:31;14496:4;14493:1;14486:15;14524:4;14521:1;14514:15;14378:161;;14165:380;;;:::o;14550:135::-;14589:3;-1:-1:-1;;14610:17:1;;14607:43;;;14630:18;;:::i;:::-;-1:-1:-1;14677:1:1;14666:13;;14550:135::o;14690:112::-;14722:1;14748;14738:35;;14753:18;;:::i;:::-;-1:-1:-1;14787:9:1;;14690:112::o;14807:127::-;14868:10;14863:3;14859:20;14856:1;14849:31;14899:4;14896:1;14889:15;14923:4;14920:1;14913:15;14939:127;15000:10;14995:3;14991:20;14988:1;14981:31;15031:4;15028:1;15021:15;15055:4;15052:1;15045:15;15071:127;15132:10;15127:3;15123:20;15120:1;15113:31;15163:4;15160:1;15153:15;15187:4;15184:1;15177:15;15203:127;15264:10;15259:3;15255:20;15252:1;15245:31;15295:4;15292:1;15285:15;15319:4;15316:1;15309:15;15335:131;-1:-1:-1;;;;;;15409:32:1;;15399:43;;15389:71;;15456:1;15453;15446:12

Swarm Source

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