ETH Price: $2,887.22 (-5.89%)
Gas: 1 Gwei

Token

PAPC-Genesis (PAPC-Genesis)
 

Overview

Max Total Supply

4,537 PAPC-Genesis

Holders

363

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
2tymes.eth
Balance
5 PAPC-Genesis
0x8b65efd3f2f0adbbfdcf5bc891628359ebeea731
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:
PAPCGenesis

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*

██████╗  █████╗ ██████╗  ██████╗     ██████╗ ███████╗███╗   ██╗███████╗███████╗██╗███████╗
██╔══██╗██╔══██╗██╔══██╗██╔════╝    ██╔════╝ ██╔════╝████╗  ██║██╔════╝██╔════╝██║██╔════╝
██████╔╝███████║██████╔╝██║         ██║  ███╗█████╗  ██╔██╗ ██║█████╗  ███████╗██║███████╗
██╔═══╝ ██╔══██║██╔═══╝ ██║         ██║   ██║██╔══╝  ██║╚██╗██║██╔══╝  ╚════██║██║╚════██║
██║     ██║  ██║██║     ╚██████╗    ╚██████╔╝███████╗██║ ╚████║███████╗███████║██║███████║
╚═╝     ╚═╝  ╚═╝╚═╝      ╚═════╝     ╚═════╝ ╚══════╝╚═╝  ╚═══╝╚══════╝╚══════╝╚═╝╚══════╝

Website: https://papc.io/
Twitter: https://twitter.com/PUNKxAPE
Discord: https://discord.gg/punkapepixelclub
OpenSea: https://opensea.io/collection/papc-genesis

Contract by: KryptoKeaton

*/

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// 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/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/papc-genesisnft.sol

pragma solidity >=0.8.9 <0.9.0;

contract PAPCGenesis is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  bytes32 public merkleRoot;
  mapping(address => bool) public whitelistClaimed;

  string public uriPrefix = 'https://ipfs.io/ipfs/QmfDBEiQtvdMCjr7dcSRa4njfmbspqPp8vuLPWKjjTST5N/';
  string public uriSuffix = '';
  string public hiddenMetadataUri;
  
  uint256 public cost;
  uint256 public maxSupply;
  uint256 public maxMintAmountPerTx;

  address addA = 0x9E6e24F5F2D378be6CF2581dceB1Baf3804fE227;
  address addB = 0xC2603Edd7C3A8C833D539CC32B08f142B80640dd;
  address addC = 0x4B2050cA9eD3a8f95272E4705ecE98A0d1067b60;
  address addD = 0xeffd3ac8EA0e9EBF3FDF4371109FA5CaEE2D4aB1;
  uint256 addAN = 70; //PAPC Team
  uint256 addBN = 15; //Dev Pay
  uint256 addCN = 5; //Consultant Pay
  uint256 addDN = 10; //PAPC Treasury

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

  constructor() ERC721A("PAPC-Genesis", "PAPC-Genesis") {
    
    cost = 0.01 ether;
    maxSupply = 5000;
    maxMintAmountPerTx = 10;
    setHiddenMetadataUri('ipfs://__CID__/hidden.json');
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    _;
  }

  function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    // Verify whitelist requirements
    require(whitelistMintEnabled, 'The whitelist sale is not enabled!');
    require(!whitelistClaimed[_msgSender()], 'Address already claimed!');
    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');

    whitelistClaimed[_msgSender()] = true;
    _safeMint(_msgSender(), _mintAmount);
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');

    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;

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

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, (_tokenId + 556).toString()))
        : '';
  }

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

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

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function setWhitelistMintEnabled(bool _state) public onlyOwner {
    whitelistMintEnabled = _state;
  }

  function withdraw() public onlyOwner nonReentrant {        
      uint256 contractBalance = address(this).balance;
      uint256  addANp = (contractBalance * addAN) / 100;
      uint256  addBNp = (contractBalance * addBN) / 100;
      uint256  addCNp = (contractBalance * addCN) / 100;
      uint256  addDNp = (contractBalance * addDN) / 100;

      (bool hs, ) = payable(addA).call{value: addANp}("");
      (hs, ) = payable(addB).call{value: addBNp}("");
      (hs, ) = payable(addC).call{value: addCNp}("");
      (hs, ) = payable(addD).call{value: addDNp}("");
    require(hs);
  }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"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":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040526044608081815290620027c660a03980516200002a91600c916020909101906200029e565b506040805160208101918290526000908190526200004b91600d916200029e565b50601280546001600160a01b0319908116739e6e24f5f2d378be6cf2581dceb1baf3804fe2271790915560138054821673c2603edd7c3a8c833d539cc32b08f142b80640dd179055601480548216734b2050ca9ed3a8f95272e4705ece98a0d1067b601790556015805490911673effd3ac8ea0e9ebf3fdf4371109fa5caee2d4ab11790556046601655600f6017556005601855600a601955601a80546201000162ffffff199091161790553480156200010457600080fd5b50604080518082018252600c8082526b504150432d47656e6573697360a01b6020808401828152855180870190965292855284015281519192916200014c916002916200029e565b508051620001629060039060208401906200029e565b505060008055506200017433620001d4565b6001600955662386f26fc10000600f55611388601055600a60115560408051808201909152601a81527f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e0000000000006020820152620001ce9062000226565b62000380565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620002855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200029a90600e9060208401906200029e565b5050565b828054620002ac9062000344565b90600052602060002090601f016020900481019282620002d057600085556200031b565b82601f10620002eb57805160ff19168380011785556200031b565b828001600101855582156200031b579182015b828111156200031b578251825591602001919060010190620002fe565b50620003299291506200032d565b5090565b5b808211156200032957600081556001016200032e565b600181811c908216806200035957607f821691505b6020821081036200037a57634e487b7160e01b600052602260045260246000fd5b50919050565b61243680620003906000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063b767a098116100ab578063db4bec441161006f578063db4bec4414610658578063e0a8085314610688578063e985e9c5146106a8578063efbd73f4146106f1578063f2fde38b1461071157600080fd5b8063b767a098146105cf578063b88d4fde146105ef578063c87b56dd1461060f578063d2cab0561461062f578063d5abeb011461064257600080fd5b806395d89b41116100f257806395d89b4114610552578063a0712d6814610567578063a22cb4651461057a578063a45ba8e71461059a578063b071401b146105af57600080fd5b806370a08231146104c9578063715018a6146104e95780637cb64759146104fe5780638da5cb5b1461051e57806394354fd01461053c57600080fd5b806342842e0e116101bc5780635503a0e8116101805780635503a0e8146104465780635c975abb1461045b57806362b99ad4146104755780636352211e1461048a5780636caede3d146104aa57600080fd5b806342842e0e14610399578063438b6300146103b957806344a0d68a146103e65780634fdd43cb14610406578063518302271461042657600080fd5b806316c38b3c1161020357806316c38b3c1461031557806318160ddd1461033557806323b872dd1461034e5780632eb4a7ab1461036e5780633ccfd60b1461038457600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806313faede6146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611dde565b610731565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610783565b60405161026c9190611e53565b3480156102a357600080fd5b506102b76102b2366004611e66565b610815565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004611e9b565b610859565b005b3480156102fd57600080fd5b50610307600f5481565b60405190815260200161026c565b34801561032157600080fd5b506102ef610330366004611ed5565b61092b565b34801561034157600080fd5b5060015460005403610307565b34801561035a57600080fd5b506102ef610369366004611ef0565b610971565b34801561037a57600080fd5b50610307600a5481565b34801561039057600080fd5b506102ef610981565b3480156103a557600080fd5b506102ef6103b4366004611ef0565b610bee565b3480156103c557600080fd5b506103d96103d4366004611f2c565b610c09565b60405161026c9190611f47565b3480156103f257600080fd5b506102ef610401366004611e66565b610ce8565b34801561041257600080fd5b506102ef610421366004612017565b610d17565b34801561043257600080fd5b50601a546102609062010000900460ff1681565b34801561045257600080fd5b5061028a610d58565b34801561046757600080fd5b50601a546102609060ff1681565b34801561048157600080fd5b5061028a610de6565b34801561049657600080fd5b506102b76104a5366004611e66565b610df3565b3480156104b657600080fd5b50601a5461026090610100900460ff1681565b3480156104d557600080fd5b506103076104e4366004611f2c565b610dfe565b3480156104f557600080fd5b506102ef610e4d565b34801561050a57600080fd5b506102ef610519366004611e66565b610e83565b34801561052a57600080fd5b506008546001600160a01b03166102b7565b34801561054857600080fd5b5061030760115481565b34801561055e57600080fd5b5061028a610eb2565b6102ef610575366004611e66565b610ec1565b34801561058657600080fd5b506102ef610595366004612060565b610fda565b3480156105a657600080fd5b5061028a61106f565b3480156105bb57600080fd5b506102ef6105ca366004611e66565b61107c565b3480156105db57600080fd5b506102ef6105ea366004611ed5565b6110ab565b3480156105fb57600080fd5b506102ef61060a366004612093565b6110ef565b34801561061b57600080fd5b5061028a61062a366004611e66565b611139565b6102ef61063d36600461210f565b6112b6565b34801561064e57600080fd5b5061030760105481565b34801561066457600080fd5b50610260610673366004611f2c565b600b6020526000908152604090205460ff1681565b34801561069457600080fd5b506102ef6106a3366004611ed5565b611517565b3480156106b457600080fd5b506102606106c336600461218e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106fd57600080fd5b506102ef61070c3660046121b8565b61155d565b34801561071d57600080fd5b506102ef61072c366004611f2c565b6115f9565b60006301ffc9a760e01b6001600160e01b03198316148061076257506380ac58cd60e01b6001600160e01b03198316145b8061077d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610792906121db565b80601f01602080910402602001604051908101604052809291908181526020018280546107be906121db565b801561080b5780601f106107e05761010080835404028352916020019161080b565b820191906000526020600020905b8154815290600101906020018083116107ee57829003601f168201915b5050505050905090565b600061082082611694565b61083d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610864826116bb565b9050806001600160a01b0316836001600160a01b0316036108985760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108cf576108b281336106c3565b6108cf576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0316331461095e5760405162461bcd60e51b815260040161095590612215565b60405180910390fd5b601a805460ff1916911515919091179055565b61097c838383611722565b505050565b6008546001600160a01b031633146109ab5760405162461bcd60e51b815260040161095590612215565b6002600954036109fd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610955565b60026009556016544790600090606490610a179084612260565b610a219190612295565b90506000606460175484610a359190612260565b610a3f9190612295565b90506000606460185485610a539190612260565b610a5d9190612295565b90506000606460195486610a719190612260565b610a7b9190612295565b6012546040519192506000916001600160a01b039091169086908381818185875af1925050503d8060008114610acd576040519150601f19603f3d011682016040523d82523d6000602084013e610ad2565b606091505b50506013546040519192506001600160a01b0316908590600081818185875af1925050503d8060008114610b22576040519150601f19603f3d011682016040523d82523d6000602084013e610b27565b606091505b50506014546040519192506001600160a01b0316908490600081818185875af1925050503d8060008114610b77576040519150601f19603f3d011682016040523d82523d6000602084013e610b7c565b606091505b50506015546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114610bcc576040519150601f19603f3d011682016040523d82523d6000602084013e610bd1565b606091505b50508091505080610be157600080fd5b5050600160095550505050565b61097c838383604051806020016040528060008152506110ef565b60606000610c1683610dfe565b905060008167ffffffffffffffff811115610c3357610c33611f8b565b604051908082528060200260200182016040528015610c5c578160200160208202803683370190505b5090506000805b8381108015610c7457506010548211155b15610cde576000610c8483610df3565b9050866001600160a01b0316816001600160a01b031603610ccb5782848381518110610cb257610cb26122a9565b602090810291909101015281610cc7816122bf565b9250505b82610cd5816122bf565b93505050610c63565b5090949350505050565b6008546001600160a01b03163314610d125760405162461bcd60e51b815260040161095590612215565b600f55565b6008546001600160a01b03163314610d415760405162461bcd60e51b815260040161095590612215565b8051610d5490600e906020840190611d2f565b5050565b600d8054610d65906121db565b80601f0160208091040260200160405190810160405280929190818152602001828054610d91906121db565b8015610dde5780601f10610db357610100808354040283529160200191610dde565b820191906000526020600020905b815481529060010190602001808311610dc157829003601f168201915b505050505081565b600c8054610d65906121db565b600061077d826116bb565b60006001600160a01b038216610e27576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e775760405162461bcd60e51b815260040161095590612215565b610e8160006118c9565b565b6008546001600160a01b03163314610ead5760405162461bcd60e51b815260040161095590612215565b600a55565b606060038054610792906121db565b80600081118015610ed457506011548111155b610ef05760405162461bcd60e51b8152600401610955906122d8565b60105481610f016001546000540390565b610f0b9190612306565b1115610f295760405162461bcd60e51b81526004016109559061231e565b8180600f54610f389190612260565b341015610f7d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610955565b601a5460ff1615610fd05760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610955565b61097c338461191b565b336001600160a01b038316036110035760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e8054610d65906121db565b6008546001600160a01b031633146110a65760405162461bcd60e51b815260040161095590612215565b601155565b6008546001600160a01b031633146110d55760405162461bcd60e51b815260040161095590612215565b601a80549115156101000261ff0019909216919091179055565b6110fa848484611722565b6001600160a01b0383163b156111335761111684848484611935565b611133576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061114482611694565b6111a85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610955565b601a5462010000900460ff16151560000361124f57600e80546111ca906121db565b80601f01602080910402602001604051908101604052809291908181526020018280546111f6906121db565b80156112435780601f1061121857610100808354040283529160200191611243565b820191906000526020600020905b81548152906001019060200180831161122657829003601f168201915b50505050509050919050565b6000611259611a21565b9050600081511161127957604051806020016040528060008152506112af565b8061128e6112898561022c612306565b611a30565b60405160200161129f92919061234c565b6040516020818303038152906040525b9392505050565b826000811180156112c957506011548111155b6112e55760405162461bcd60e51b8152600401610955906122d8565b601054816112f66001546000540390565b6113009190612306565b111561131e5760405162461bcd60e51b81526004016109559061231e565b8380600f5461132d9190612260565b3410156113725760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610955565b601a54610100900460ff166113d45760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b6064820152608401610955565b336000908152600b602052604090205460ff16156114345760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610955565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506114ae85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611b31565b6114eb5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610955565b336000818152600b60205260409020805460ff1916600117905561150f908761191b565b505050505050565b6008546001600160a01b031633146115415760405162461bcd60e51b815260040161095590612215565b601a8054911515620100000262ff000019909216919091179055565b8160008111801561157057506011548111155b61158c5760405162461bcd60e51b8152600401610955906122d8565b6010548161159d6001546000540390565b6115a79190612306565b11156115c55760405162461bcd60e51b81526004016109559061231e565b6008546001600160a01b031633146115ef5760405162461bcd60e51b815260040161095590612215565b61097c828461191b565b6008546001600160a01b031633146116235760405162461bcd60e51b815260040161095590612215565b6001600160a01b0381166116885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610955565b611691816118c9565b50565b600080548210801561077d575050600090815260046020526040902054600160e01b161590565b6000816000548110156117095760008181526004602052604081205490600160e01b82169003611707575b806000036112af5750600019016000818152600460205260409020546116e6565b505b604051636f96cda160e11b815260040160405180910390fd5b600061172d826116bb565b9050836001600160a01b0316816001600160a01b0316146117605760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061177e575061177e85336106c3565b8061179957503361178e84610815565b6001600160a01b0316145b9050806117b957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166117e057604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b87178117909155831690036118815760018301600081815260046020526040812054900361187f57600054811461187f5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d54828260405180602001604052806000815250611b47565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061196a90339089908890889060040161237b565b6020604051808303816000875af19250505080156119a5575060408051601f3d908101601f191682019092526119a2918101906123b8565b60015b611a03573d8080156119d3576040519150601f19603f3d011682016040523d82523d6000602084013e6119d8565b606091505b5080516000036119fb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c8054610792906121db565b606081600003611a575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a815780611a6b816122bf565b9150611a7a9050600a83612295565b9150611a5b565b60008167ffffffffffffffff811115611a9c57611a9c611f8b565b6040519080825280601f01601f191660200182016040528015611ac6576020820181803683370190505b5090505b8415611a1957611adb6001836123d5565b9150611ae8600a866123ec565b611af3906030612306565b60f81b818381518110611b0857611b086122a9565b60200101906001600160f81b031916908160001a905350611b2a600a86612295565b9450611aca565b600082611b3e8584611cbb565b14949350505050565b6000546001600160a01b038416611b7057604051622e076360e81b815260040160405180910390fd5b82600003611b915760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611c66575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c2f6000878480600101955087611935565b611c4c576040516368d2bf6b60e11b815260040160405180910390fd5b808210611be4578260005414611c6157600080fd5b611cab565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611c67575b5060009081556111339085838684565b600081815b8451811015611d27576000858281518110611cdd57611cdd6122a9565b60200260200101519050808311611d035760008381526020829052604090209250611d14565b600081815260208490526040902092505b5080611d1f816122bf565b915050611cc0565b509392505050565b828054611d3b906121db565b90600052602060002090601f016020900481019282611d5d5760008555611da3565b82601f10611d7657805160ff1916838001178555611da3565b82800160010185558215611da3579182015b82811115611da3578251825591602001919060010190611d88565b50611daf929150611db3565b5090565b5b80821115611daf5760008155600101611db4565b6001600160e01b03198116811461169157600080fd5b600060208284031215611df057600080fd5b81356112af81611dc8565b60005b83811015611e16578181015183820152602001611dfe565b838111156111335750506000910152565b60008151808452611e3f816020860160208601611dfb565b601f01601f19169290920160200192915050565b6020815260006112af6020830184611e27565b600060208284031215611e7857600080fd5b5035919050565b80356001600160a01b0381168114611e9657600080fd5b919050565b60008060408385031215611eae57600080fd5b611eb783611e7f565b946020939093013593505050565b80358015158114611e9657600080fd5b600060208284031215611ee757600080fd5b6112af82611ec5565b600080600060608486031215611f0557600080fd5b611f0e84611e7f565b9250611f1c60208501611e7f565b9150604084013590509250925092565b600060208284031215611f3e57600080fd5b6112af82611e7f565b6020808252825182820181905260009190848201906040850190845b81811015611f7f57835183529284019291840191600101611f63565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611fbc57611fbc611f8b565b604051601f8501601f19908116603f01168101908282118183101715611fe457611fe4611f8b565b81604052809350858152868686011115611ffd57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561202957600080fd5b813567ffffffffffffffff81111561204057600080fd5b8201601f8101841361205157600080fd5b611a1984823560208401611fa1565b6000806040838503121561207357600080fd5b61207c83611e7f565b915061208a60208401611ec5565b90509250929050565b600080600080608085870312156120a957600080fd5b6120b285611e7f565b93506120c060208601611e7f565b925060408501359150606085013567ffffffffffffffff8111156120e357600080fd5b8501601f810187136120f457600080fd5b61210387823560208401611fa1565b91505092959194509250565b60008060006040848603121561212457600080fd5b83359250602084013567ffffffffffffffff8082111561214357600080fd5b818601915086601f83011261215757600080fd5b81358181111561216657600080fd5b8760208260051b850101111561217b57600080fd5b6020830194508093505050509250925092565b600080604083850312156121a157600080fd5b6121aa83611e7f565b915061208a60208401611e7f565b600080604083850312156121cb57600080fd5b8235915061208a60208401611e7f565b600181811c908216806121ef57607f821691505b60208210810361220f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561227a5761227a61224a565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826122a4576122a461227f565b500490565b634e487b7160e01b600052603260045260246000fd5b6000600182016122d1576122d161224a565b5060010190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b600082198211156123195761231961224a565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6000835161235e818460208801611dfb565b835190830190612372818360208801611dfb565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123ae90830184611e27565b9695505050505050565b6000602082840312156123ca57600080fd5b81516112af81611dc8565b6000828210156123e7576123e761224a565b500390565b6000826123fb576123fb61227f565b50069056fea2646970667358221220f57e1e491b6249c040df73d845fda09c26437075e0735e667ca10cab780080b464736f6c634300080e003368747470733a2f2f697066732e696f2f697066732f516d6644424569517476644d436a72376463535261346e6a666d6273707150703876754c50574b6a6a545354354e2f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806370a082311161012e578063b767a098116100ab578063db4bec441161006f578063db4bec4414610658578063e0a8085314610688578063e985e9c5146106a8578063efbd73f4146106f1578063f2fde38b1461071157600080fd5b8063b767a098146105cf578063b88d4fde146105ef578063c87b56dd1461060f578063d2cab0561461062f578063d5abeb011461064257600080fd5b806395d89b41116100f257806395d89b4114610552578063a0712d6814610567578063a22cb4651461057a578063a45ba8e71461059a578063b071401b146105af57600080fd5b806370a08231146104c9578063715018a6146104e95780637cb64759146104fe5780638da5cb5b1461051e57806394354fd01461053c57600080fd5b806342842e0e116101bc5780635503a0e8116101805780635503a0e8146104465780635c975abb1461045b57806362b99ad4146104755780636352211e1461048a5780636caede3d146104aa57600080fd5b806342842e0e14610399578063438b6300146103b957806344a0d68a146103e65780634fdd43cb14610406578063518302271461042657600080fd5b806316c38b3c1161020357806316c38b3c1461031557806318160ddd1461033557806323b872dd1461034e5780632eb4a7ab1461036e5780633ccfd60b1461038457600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806313faede6146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611dde565b610731565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610783565b60405161026c9190611e53565b3480156102a357600080fd5b506102b76102b2366004611e66565b610815565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004611e9b565b610859565b005b3480156102fd57600080fd5b50610307600f5481565b60405190815260200161026c565b34801561032157600080fd5b506102ef610330366004611ed5565b61092b565b34801561034157600080fd5b5060015460005403610307565b34801561035a57600080fd5b506102ef610369366004611ef0565b610971565b34801561037a57600080fd5b50610307600a5481565b34801561039057600080fd5b506102ef610981565b3480156103a557600080fd5b506102ef6103b4366004611ef0565b610bee565b3480156103c557600080fd5b506103d96103d4366004611f2c565b610c09565b60405161026c9190611f47565b3480156103f257600080fd5b506102ef610401366004611e66565b610ce8565b34801561041257600080fd5b506102ef610421366004612017565b610d17565b34801561043257600080fd5b50601a546102609062010000900460ff1681565b34801561045257600080fd5b5061028a610d58565b34801561046757600080fd5b50601a546102609060ff1681565b34801561048157600080fd5b5061028a610de6565b34801561049657600080fd5b506102b76104a5366004611e66565b610df3565b3480156104b657600080fd5b50601a5461026090610100900460ff1681565b3480156104d557600080fd5b506103076104e4366004611f2c565b610dfe565b3480156104f557600080fd5b506102ef610e4d565b34801561050a57600080fd5b506102ef610519366004611e66565b610e83565b34801561052a57600080fd5b506008546001600160a01b03166102b7565b34801561054857600080fd5b5061030760115481565b34801561055e57600080fd5b5061028a610eb2565b6102ef610575366004611e66565b610ec1565b34801561058657600080fd5b506102ef610595366004612060565b610fda565b3480156105a657600080fd5b5061028a61106f565b3480156105bb57600080fd5b506102ef6105ca366004611e66565b61107c565b3480156105db57600080fd5b506102ef6105ea366004611ed5565b6110ab565b3480156105fb57600080fd5b506102ef61060a366004612093565b6110ef565b34801561061b57600080fd5b5061028a61062a366004611e66565b611139565b6102ef61063d36600461210f565b6112b6565b34801561064e57600080fd5b5061030760105481565b34801561066457600080fd5b50610260610673366004611f2c565b600b6020526000908152604090205460ff1681565b34801561069457600080fd5b506102ef6106a3366004611ed5565b611517565b3480156106b457600080fd5b506102606106c336600461218e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106fd57600080fd5b506102ef61070c3660046121b8565b61155d565b34801561071d57600080fd5b506102ef61072c366004611f2c565b6115f9565b60006301ffc9a760e01b6001600160e01b03198316148061076257506380ac58cd60e01b6001600160e01b03198316145b8061077d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610792906121db565b80601f01602080910402602001604051908101604052809291908181526020018280546107be906121db565b801561080b5780601f106107e05761010080835404028352916020019161080b565b820191906000526020600020905b8154815290600101906020018083116107ee57829003601f168201915b5050505050905090565b600061082082611694565b61083d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610864826116bb565b9050806001600160a01b0316836001600160a01b0316036108985760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108cf576108b281336106c3565b6108cf576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0316331461095e5760405162461bcd60e51b815260040161095590612215565b60405180910390fd5b601a805460ff1916911515919091179055565b61097c838383611722565b505050565b6008546001600160a01b031633146109ab5760405162461bcd60e51b815260040161095590612215565b6002600954036109fd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610955565b60026009556016544790600090606490610a179084612260565b610a219190612295565b90506000606460175484610a359190612260565b610a3f9190612295565b90506000606460185485610a539190612260565b610a5d9190612295565b90506000606460195486610a719190612260565b610a7b9190612295565b6012546040519192506000916001600160a01b039091169086908381818185875af1925050503d8060008114610acd576040519150601f19603f3d011682016040523d82523d6000602084013e610ad2565b606091505b50506013546040519192506001600160a01b0316908590600081818185875af1925050503d8060008114610b22576040519150601f19603f3d011682016040523d82523d6000602084013e610b27565b606091505b50506014546040519192506001600160a01b0316908490600081818185875af1925050503d8060008114610b77576040519150601f19603f3d011682016040523d82523d6000602084013e610b7c565b606091505b50506015546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114610bcc576040519150601f19603f3d011682016040523d82523d6000602084013e610bd1565b606091505b50508091505080610be157600080fd5b5050600160095550505050565b61097c838383604051806020016040528060008152506110ef565b60606000610c1683610dfe565b905060008167ffffffffffffffff811115610c3357610c33611f8b565b604051908082528060200260200182016040528015610c5c578160200160208202803683370190505b5090506000805b8381108015610c7457506010548211155b15610cde576000610c8483610df3565b9050866001600160a01b0316816001600160a01b031603610ccb5782848381518110610cb257610cb26122a9565b602090810291909101015281610cc7816122bf565b9250505b82610cd5816122bf565b93505050610c63565b5090949350505050565b6008546001600160a01b03163314610d125760405162461bcd60e51b815260040161095590612215565b600f55565b6008546001600160a01b03163314610d415760405162461bcd60e51b815260040161095590612215565b8051610d5490600e906020840190611d2f565b5050565b600d8054610d65906121db565b80601f0160208091040260200160405190810160405280929190818152602001828054610d91906121db565b8015610dde5780601f10610db357610100808354040283529160200191610dde565b820191906000526020600020905b815481529060010190602001808311610dc157829003601f168201915b505050505081565b600c8054610d65906121db565b600061077d826116bb565b60006001600160a01b038216610e27576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e775760405162461bcd60e51b815260040161095590612215565b610e8160006118c9565b565b6008546001600160a01b03163314610ead5760405162461bcd60e51b815260040161095590612215565b600a55565b606060038054610792906121db565b80600081118015610ed457506011548111155b610ef05760405162461bcd60e51b8152600401610955906122d8565b60105481610f016001546000540390565b610f0b9190612306565b1115610f295760405162461bcd60e51b81526004016109559061231e565b8180600f54610f389190612260565b341015610f7d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610955565b601a5460ff1615610fd05760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610955565b61097c338461191b565b336001600160a01b038316036110035760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e8054610d65906121db565b6008546001600160a01b031633146110a65760405162461bcd60e51b815260040161095590612215565b601155565b6008546001600160a01b031633146110d55760405162461bcd60e51b815260040161095590612215565b601a80549115156101000261ff0019909216919091179055565b6110fa848484611722565b6001600160a01b0383163b156111335761111684848484611935565b611133576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061114482611694565b6111a85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610955565b601a5462010000900460ff16151560000361124f57600e80546111ca906121db565b80601f01602080910402602001604051908101604052809291908181526020018280546111f6906121db565b80156112435780601f1061121857610100808354040283529160200191611243565b820191906000526020600020905b81548152906001019060200180831161122657829003601f168201915b50505050509050919050565b6000611259611a21565b9050600081511161127957604051806020016040528060008152506112af565b8061128e6112898561022c612306565b611a30565b60405160200161129f92919061234c565b6040516020818303038152906040525b9392505050565b826000811180156112c957506011548111155b6112e55760405162461bcd60e51b8152600401610955906122d8565b601054816112f66001546000540390565b6113009190612306565b111561131e5760405162461bcd60e51b81526004016109559061231e565b8380600f5461132d9190612260565b3410156113725760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610955565b601a54610100900460ff166113d45760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b6064820152608401610955565b336000908152600b602052604090205460ff16156114345760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610955565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506114ae85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611b31565b6114eb5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610955565b336000818152600b60205260409020805460ff1916600117905561150f908761191b565b505050505050565b6008546001600160a01b031633146115415760405162461bcd60e51b815260040161095590612215565b601a8054911515620100000262ff000019909216919091179055565b8160008111801561157057506011548111155b61158c5760405162461bcd60e51b8152600401610955906122d8565b6010548161159d6001546000540390565b6115a79190612306565b11156115c55760405162461bcd60e51b81526004016109559061231e565b6008546001600160a01b031633146115ef5760405162461bcd60e51b815260040161095590612215565b61097c828461191b565b6008546001600160a01b031633146116235760405162461bcd60e51b815260040161095590612215565b6001600160a01b0381166116885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610955565b611691816118c9565b50565b600080548210801561077d575050600090815260046020526040902054600160e01b161590565b6000816000548110156117095760008181526004602052604081205490600160e01b82169003611707575b806000036112af5750600019016000818152600460205260409020546116e6565b505b604051636f96cda160e11b815260040160405180910390fd5b600061172d826116bb565b9050836001600160a01b0316816001600160a01b0316146117605760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061177e575061177e85336106c3565b8061179957503361178e84610815565b6001600160a01b0316145b9050806117b957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166117e057604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b87178117909155831690036118815760018301600081815260046020526040812054900361187f57600054811461187f5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d54828260405180602001604052806000815250611b47565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061196a90339089908890889060040161237b565b6020604051808303816000875af19250505080156119a5575060408051601f3d908101601f191682019092526119a2918101906123b8565b60015b611a03573d8080156119d3576040519150601f19603f3d011682016040523d82523d6000602084013e6119d8565b606091505b5080516000036119fb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c8054610792906121db565b606081600003611a575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a815780611a6b816122bf565b9150611a7a9050600a83612295565b9150611a5b565b60008167ffffffffffffffff811115611a9c57611a9c611f8b565b6040519080825280601f01601f191660200182016040528015611ac6576020820181803683370190505b5090505b8415611a1957611adb6001836123d5565b9150611ae8600a866123ec565b611af3906030612306565b60f81b818381518110611b0857611b086122a9565b60200101906001600160f81b031916908160001a905350611b2a600a86612295565b9450611aca565b600082611b3e8584611cbb565b14949350505050565b6000546001600160a01b038416611b7057604051622e076360e81b815260040160405180910390fd5b82600003611b915760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611c66575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c2f6000878480600101955087611935565b611c4c576040516368d2bf6b60e11b815260040160405180910390fd5b808210611be4578260005414611c6157600080fd5b611cab565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611c67575b5060009081556111339085838684565b600081815b8451811015611d27576000858281518110611cdd57611cdd6122a9565b60200260200101519050808311611d035760008381526020829052604090209250611d14565b600081815260208490526040902092505b5080611d1f816122bf565b915050611cc0565b509392505050565b828054611d3b906121db565b90600052602060002090601f016020900481019282611d5d5760008555611da3565b82601f10611d7657805160ff1916838001178555611da3565b82800160010185558215611da3579182015b82811115611da3578251825591602001919060010190611d88565b50611daf929150611db3565b5090565b5b80821115611daf5760008155600101611db4565b6001600160e01b03198116811461169157600080fd5b600060208284031215611df057600080fd5b81356112af81611dc8565b60005b83811015611e16578181015183820152602001611dfe565b838111156111335750506000910152565b60008151808452611e3f816020860160208601611dfb565b601f01601f19169290920160200192915050565b6020815260006112af6020830184611e27565b600060208284031215611e7857600080fd5b5035919050565b80356001600160a01b0381168114611e9657600080fd5b919050565b60008060408385031215611eae57600080fd5b611eb783611e7f565b946020939093013593505050565b80358015158114611e9657600080fd5b600060208284031215611ee757600080fd5b6112af82611ec5565b600080600060608486031215611f0557600080fd5b611f0e84611e7f565b9250611f1c60208501611e7f565b9150604084013590509250925092565b600060208284031215611f3e57600080fd5b6112af82611e7f565b6020808252825182820181905260009190848201906040850190845b81811015611f7f57835183529284019291840191600101611f63565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611fbc57611fbc611f8b565b604051601f8501601f19908116603f01168101908282118183101715611fe457611fe4611f8b565b81604052809350858152868686011115611ffd57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561202957600080fd5b813567ffffffffffffffff81111561204057600080fd5b8201601f8101841361205157600080fd5b611a1984823560208401611fa1565b6000806040838503121561207357600080fd5b61207c83611e7f565b915061208a60208401611ec5565b90509250929050565b600080600080608085870312156120a957600080fd5b6120b285611e7f565b93506120c060208601611e7f565b925060408501359150606085013567ffffffffffffffff8111156120e357600080fd5b8501601f810187136120f457600080fd5b61210387823560208401611fa1565b91505092959194509250565b60008060006040848603121561212457600080fd5b83359250602084013567ffffffffffffffff8082111561214357600080fd5b818601915086601f83011261215757600080fd5b81358181111561216657600080fd5b8760208260051b850101111561217b57600080fd5b6020830194508093505050509250925092565b600080604083850312156121a157600080fd5b6121aa83611e7f565b915061208a60208401611e7f565b600080604083850312156121cb57600080fd5b8235915061208a60208401611e7f565b600181811c908216806121ef57607f821691505b60208210810361220f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561227a5761227a61224a565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826122a4576122a461227f565b500490565b634e487b7160e01b600052603260045260246000fd5b6000600182016122d1576122d161224a565b5060010190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b600082198211156123195761231961224a565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6000835161235e818460208801611dfb565b835190830190612372818360208801611dfb565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123ae90830184611e27565b9695505050505050565b6000602082840312156123ca57600080fd5b81516112af81611dc8565b6000828210156123e7576123e761224a565b500390565b6000826123fb576123fb61227f565b50069056fea2646970667358221220f57e1e491b6249c040df73d845fda09c26437075e0735e667ca10cab780080b464736f6c634300080e0033

Deployed Bytecode Sourcemap

51104:5163:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25753:615;;;;;;;;;;-1:-1:-1;25753:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25753:615:0;;;;;;;;30766:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32834:204::-;;;;;;;;;;-1:-1:-1;32834:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;32834:204:0;1528:203:1;32294:474:0;;;;;;;;;;-1:-1:-1;32294:474:0;;;;;:::i;:::-;;:::i;:::-;;51460:19;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;51460:19:0;2173:177:1;55255:77:0;;;;;;;;;;-1:-1:-1;55255:77:0;;;;;:::i;:::-;;:::i;24807:315::-;;;;;;;;;;-1:-1:-1;25073:12:0;;24860:7;25057:13;:28;24807:315;;33720:170;;;;;;;;;;-1:-1:-1;33720:170:0;;;;;:::i;:::-;;:::i;51201:25::-;;;;;;;;;;;;;;;;55553:597;;;;;;;;;;;;;:::i;33961:185::-;;;;;;;;;;-1:-1:-1;33961:185:0;;;;;:::i;:::-;;:::i;53610:649::-;;;;;;;;;;-1:-1:-1;53610:649:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54901:74::-;;;;;;;;;;-1:-1:-1;54901:74:0;;;;;:::i;:::-;;:::i;55117:132::-;;;;;;;;;;-1:-1:-1;55117:132:0;;;;;:::i;:::-;;:::i;52024:27::-;;;;;;;;;;-1:-1:-1;52024:27:0;;;;;;;;;;;51387:28;;;;;;;;;;;;;:::i;51949:25::-;;;;;;;;;;-1:-1:-1;51949:25:0;;;;;;;;51286:96;;;;;;;;;;;;;:::i;30555:144::-;;;;;;;;;;-1:-1:-1;30555:144:0;;;;;:::i;:::-;;:::i;51979:40::-;;;;;;;;;;-1:-1:-1;51979:40:0;;;;;;;;;;;26432:224;;;;;;;;;;-1:-1:-1;26432:224:0;;;;;:::i;:::-;;:::i;11863:103::-;;;;;;;;;;;;;:::i;55338:98::-;;;;;;;;;;-1:-1:-1;55338:98:0;;;;;:::i;:::-;;:::i;11212:87::-;;;;;;;;;;-1:-1:-1;11285:6:0;;-1:-1:-1;;;;;11285:6:0;11212:87;;51513:33;;;;;;;;;;;;;;;;30935:104;;;;;;;;;;;;;:::i;53229:212::-;;;;;;:::i;:::-;;:::i;33110:308::-;;;;;;;;;;-1:-1:-1;33110:308:0;;;;;:::i;:::-;;:::i;51420:31::-;;;;;;;;;;;;;:::i;54981:130::-;;;;;;;;;;-1:-1:-1;54981:130:0;;;;;:::i;:::-;;:::i;55442:105::-;;;;;;;;;;-1:-1:-1;55442:105:0;;;;;:::i;:::-;;:::i;34217:396::-;;;;;;;;;;-1:-1:-1;34217:396:0;;;;;:::i;:::-;;:::i;54366:442::-;;;;;;;;;;-1:-1:-1;54366:442:0;;;;;:::i;:::-;;:::i;52641:582::-;;;;;;:::i;:::-;;:::i;51484:24::-;;;;;;;;;;;;;;;;51231:48;;;;;;;;;;-1:-1:-1;51231:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;54814:81;;;;;;;;;;-1:-1:-1;54814:81:0;;;;;:::i;:::-;;:::i;33489:164::-;;;;;;;;;;-1:-1:-1;33489:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33610:25:0;;;33586:4;33610:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33489:164;53449:155;;;;;;;;;;-1:-1:-1;53449:155:0;;;;;:::i;:::-;;:::i;12121:201::-;;;;;;;;;;-1:-1:-1;12121:201:0;;;;;:::i;:::-;;:::i;25753:615::-;25838:4;-1:-1:-1;;;;;;;;;26138:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;26215:25:0;;;26138:102;:179;;;-1:-1:-1;;;;;;;;;;26292:25:0;;;26138:179;26118:199;25753:615;-1:-1:-1;;25753:615:0:o;30766:100::-;30820:13;30853:5;30846:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30766:100;:::o;32834:204::-;32902:7;32927:16;32935:7;32927;:16::i;:::-;32922:64;;32952:34;;-1:-1:-1;;;32952:34:0;;;;;;;;;;;32922:64;-1:-1:-1;33006:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33006:24:0;;32834:204::o;32294:474::-;32367:13;32399:27;32418:7;32399:18;:27::i;:::-;32367:61;;32449:5;-1:-1:-1;;;;;32443:11:0;:2;-1:-1:-1;;;;;32443:11:0;;32439:48;;32463:24;;-1:-1:-1;;;32463:24:0;;;;;;;;;;;32439:48;48937:10;-1:-1:-1;;;;;32504:28:0;;;32500:175;;32552:44;32569:5;48937:10;33489:164;:::i;32552:44::-;32547:128;;32624:35;;-1:-1:-1;;;32624:35:0;;;;;;;;;;;32547:128;32687:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;32687:29:0;-1:-1:-1;;;;;32687:29:0;;;;;;;;;32732:28;;32687:24;;32732:28;;;;;;;32356:412;32294:474;;:::o;55255:77::-;11285:6;;-1:-1:-1;;;;;11285:6:0;48937:10;11432:23;11424:68;;;;-1:-1:-1;;;11424:68:0;;;;;;;:::i;:::-;;;;;;;;;55311:6:::1;:15:::0;;-1:-1:-1;;55311:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55255:77::o;33720:170::-;33854:28;33864:4;33870:2;33874:7;33854:9;:28::i;:::-;33720:170;;;:::o;55553:597::-;11285:6;;-1:-1:-1;;;;;11285:6:0;48937:10;11432:23;11424:68;;;;-1:-1:-1;;;11424:68:0;;;;;;;:::i;:::-;5625:1:::1;6223:7;;:19:::0;6215:63:::1;;;::::0;-1:-1:-1;;;6215:63:0;;8549:2:1;6215:63:0::1;::::0;::::1;8531:21:1::0;8588:2;8568:18;;;8561:30;8627:33;8607:18;;;8600:61;8678:18;;6215:63:0::1;8347:355:1::0;6215:63:0::1;5625:1;6356:7;:18:::0;55713:5:::2;::::0;55646:21:::2;::::0;55620:23:::2;::::0;55722:3:::2;::::0;55695:23:::2;::::0;55646:21;55695:23:::2;:::i;:::-;55694:31;;;;:::i;:::-;55676:49;;55734:15;55780:3;55771:5;;55753:15;:23;;;;:::i;:::-;55752:31;;;;:::i;:::-;55734:49;;55792:15;55838:3;55829:5;;55811:15;:23;;;;:::i;:::-;55810:31;;;;:::i;:::-;55792:49;;55850:15;55896:3;55887:5;;55869:15;:23;;;;:::i;:::-;55868:31;;;;:::i;:::-;55932:4;::::0;55924:37:::2;::::0;55850:49;;-1:-1:-1;55911:7:0::2;::::0;-1:-1:-1;;;;;55932:4:0;;::::2;::::0;55950:6;;55911:7;55924:37;55911:7;55924:37;55950:6;55932:4;55924:37:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;55987:4:0::2;::::0;55979:37:::2;::::0;55910:51;;-1:-1:-1;;;;;;55987:4:0::2;::::0;56005:6;;55979:37:::2;::::0;;;56005:6;55987:4;55979:37:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;56042:4:0::2;::::0;56034:37:::2;::::0;55970:46;;-1:-1:-1;;;;;;56042:4:0::2;::::0;56060:6;;56034:37:::2;::::0;;;56060:6;56042:4;56034:37:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;56097:4:0::2;::::0;56089:37:::2;::::0;56025:46;;-1:-1:-1;;;;;;56097:4:0::2;::::0;56115:6;;56089:37:::2;::::0;;;56115:6;56097:4;56089:37:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56080:46;;;;;56141:2;56133:11;;;::::0;::::2;;-1:-1:-1::0;;5581:1:0::1;6535:7;:22:::0;-1:-1:-1;;;;55553:597:0:o;33961:185::-;34099:39;34116:4;34122:2;34126:7;34099:39;;;;;;;;;;;;:16;:39::i;53610:649::-;53685:16;53713:23;53739:17;53749:6;53739:9;:17::i;:::-;53713:43;;53763:30;53810:15;53796:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53796:30:0;-1:-1:-1;53763:63:0;-1:-1:-1;53833:22:0;53880:23;53916:309;53941:15;53923;:33;:64;;;;;53978:9;;53960:14;:27;;53923:64;53916:309;;;53998:25;54026:23;54034:14;54026:7;:23::i;:::-;53998:51;;54085:6;-1:-1:-1;;;;;54064:27:0;:17;-1:-1:-1;;;;;54064:27:0;;54060:131;;54137:14;54104:13;54118:15;54104:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;54164:17;;;;:::i;:::-;;;;54060:131;54201:16;;;;:::i;:::-;;;;53989:236;53916:309;;;-1:-1:-1;54240:13:0;;53610:649;-1:-1:-1;;;;53610:649:0:o;54901:74::-;11285:6;;-1:-1:-1;;;;;11285:6:0;48937:10;11432:23;11424:68;;;;-1:-1:-1;;;11424:68:0;;;;;;;:::i;:::-;54957:4:::1;:12:::0;54901:74::o;55117:132::-;11285:6;;-1:-1:-1;;;;;11285:6:0;48937:10;11432:23;11424:68;;;;-1:-1:-1;;;11424:68:0;;;;;;;:::i;:::-;55205:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55117:132:::0;:::o;51387:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51286:96::-;;;;;;;:::i;30555:144::-;30619:7;30662:27;30681:7;30662:18;:27::i;26432:224::-;26496:7;-1:-1:-1;;;;;26520:19:0;;26516:60;;26548:28;;-1:-1:-1;;;26548:28:0;;;;;;;;;;;26516:60;-1:-1:-1;;;;;;26594:25:0;;;;;:18;:25;;;;;;21771:13;26594:54;;26432:224::o;11863:103::-;11285:6;;-1:-1:-1;;;;;11285:6:0;48937:10;11432:23;11424:68;;;;-1:-1:-1;;;11424:68:0;;;;;;;:::i;:::-;11928:30:::1;11955:1;11928:18;:30::i;:::-;11863:103::o:0;55338:98::-;11285:6;;-1:-1:-1;;;;;11285:6:0;48937:10;11432:23;11424:68;;;;-1:-1:-1;;;11424:68:0;;;;;;;:::i;:::-;55406:10:::1;:24:::0;55338:98::o;30935:104::-;30991:13;31024:7;31017:14;;;;;:::i;53229:212::-;53294:11;52338:1;52324:11;:15;:52;;;;;52358:18;;52343:11;:33;;52324:52;52316:85;;;;-1:-1:-1;;;52316:85:0;;;;;;;:::i;:::-;52447:9;;52432:11;52416:13;25073:12;;24860:7;25057:13;:28;;24807:315;52416:13;:27;;;;:::i;:::-;:40;;52408:73;;;;-1:-1:-1;;;52408:73:0;;;;;;;:::i;:::-;53327:11:::1;52586;52579:4;;:18;;;;:::i;:::-;52566:9;:31;;52558:63;;;::::0;-1:-1:-1;;;52558:63:0;;10784:2:1;52558:63:0::1;::::0;::::1;10766:21:1::0;10823:2;10803:18;;;10796:30;-1:-1:-1;;;10842:18:1;;;10835:49;10901:18;;52558:63:0::1;10582:343:1::0;52558:63:0::1;53356:6:::2;::::0;::::2;;53355:7;53347:43;;;::::0;-1:-1:-1;;;53347:43:0;;11132:2:1;53347:43:0::2;::::0;::::2;11114:21:1::0;11171:2;11151:18;;;11144:30;11210:25;11190:18;;;11183:53;11253:18;;53347:43:0::2;10930:347:1::0;53347:43:0::2;53399:36;48937:10:::0;53423:11:::2;53399:9;:36::i;33110:308::-:0;48937:10;-1:-1:-1;;;;;33209:31:0;;;33205:61;;33249:17;;-1:-1:-1;;;33249:17:0;;;;;;;;;;;33205:61;48937:10;33279:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;33279:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;33279:60:0;;;;;;;;;;33355:55;;540:41:1;;;33279:49:0;;48937:10;33355:55;;513:18:1;33355:55:0;;;;;;;33110:308;;:::o;51420:31::-;;;;;;;:::i;54981:130::-;11285:6;;-1:-1:-1;;;;;11285:6:0;48937:10;11432:23;11424:68;;;;-1:-1:-1;;;11424:68:0;;;;;;;:::i;:::-;55065:18:::1;:40:::0;54981:130::o;55442:105::-;11285:6;;-1:-1:-1;;;;;11285:6:0;48937:10;11432:23;11424:68;;;;-1:-1:-1;;;11424:68:0;;;;;;;:::i;:::-;55512:20:::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;55512:29:0;;::::1;::::0;;;::::1;::::0;;55442:105::o;34217:396::-;34384:28;34394:4;34400:2;34404:7;34384:9;:28::i;:::-;-1:-1:-1;;;;;34427:14:0;;;:19;34423:183;;34466:56;34497:4;34503:2;34507:7;34516:5;34466:30;:56::i;:::-;34461:145;;34550:40;;-1:-1:-1;;;34550:40:0;;;;;;;;;;;34461:145;34217:396;;;;:::o;54366:442::-;54440:13;54470:17;54478:8;54470:7;:17::i;:::-;54462:77;;;;-1:-1:-1;;;54462:77:0;;11484:2:1;54462:77:0;;;11466:21:1;11523:2;11503:18;;;11496:30;11562:34;11542:18;;;11535:62;-1:-1:-1;;;11613:18:1;;;11606:45;11668:19;;54462:77:0;11282:411:1;54462:77:0;54552:8;;;;;;;:17;;54564:5;54552:17;54548:64;;54587:17;54580:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54366:442;;;:::o;54548:64::-;54620:28;54651:10;:8;:10::i;:::-;54620:41;;54706:1;54681:14;54675:28;:32;:127;;;;;;;;;;;;;;;;;54743:14;54759:27;54760:14;:8;54771:3;54760:14;:::i;:::-;54759:25;:27::i;:::-;54726:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54675:127;54668:134;54366:442;-1:-1:-1;;;54366:442:0:o;52641:582::-;52748:11;52338:1;52324:11;:15;:52;;;;;52358:18;;52343:11;:33;;52324:52;52316:85;;;;-1:-1:-1;;;52316:85:0;;;;;;;:::i;:::-;52447:9;;52432:11;52416:13;25073:12;;24860:7;25057:13;:28;;24807:315;52416:13;:27;;;;:::i;:::-;:40;;52408:73;;;;-1:-1:-1;;;52408:73:0;;;;;;;:::i;:::-;52781:11:::1;52586;52579:4;;:18;;;;:::i;:::-;52566:9;:31;;52558:63;;;::::0;-1:-1:-1;;;52558:63:0;;10784:2:1;52558:63:0::1;::::0;::::1;10766:21:1::0;10823:2;10803:18;;;10796:30;-1:-1:-1;;;10842:18:1;;;10835:49;10901:18;;52558:63:0::1;10582:343:1::0;52558:63:0::1;52847:20:::2;::::0;::::2;::::0;::::2;;;52839:67;;;::::0;-1:-1:-1;;;52839:67:0;;12375:2:1;52839:67:0::2;::::0;::::2;12357:21:1::0;12414:2;12394:18;;;12387:30;12453:34;12433:18;;;12426:62;-1:-1:-1;;;12504:18:1;;;12497:32;12546:19;;52839:67:0::2;12173:398:1::0;52839:67:0::2;48937:10:::0;52922:30:::2;::::0;;;:16:::2;:30;::::0;;;;;::::2;;52921:31;52913:68;;;::::0;-1:-1:-1;;;52913:68:0;;12778:2:1;52913:68:0::2;::::0;::::2;12760:21:1::0;12817:2;12797:18;;;12790:30;12856:26;12836:18;;;12829:54;12900:18;;52913:68:0::2;12576:348:1::0;52913:68:0::2;53013:30;::::0;-1:-1:-1;;48937:10:0;13078:2:1;13074:15;13070:53;53013:30:0::2;::::0;::::2;13058:66:1::0;52988:12:0::2;::::0;13140::1;;53013:30:0::2;;;;;;;;;;;;53003:41;;;;;;52988:56;;53059:50;53078:12;;53059:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;53092:10:0::2;::::0;;-1:-1:-1;53104:4:0;;-1:-1:-1;53059:18:0::2;:50::i;:::-;53051:77;;;::::0;-1:-1:-1;;;53051:77:0;;13365:2:1;53051:77:0::2;::::0;::::2;13347:21:1::0;13404:2;13384:18;;;13377:30;-1:-1:-1;;;13423:18:1;;;13416:44;13477:18;;53051:77:0::2;13163:338:1::0;53051:77:0::2;48937:10:::0;53137:30:::2;::::0;;;:16:::2;:30;::::0;;;;:37;;-1:-1:-1;;53137:37:0::2;53170:4;53137:37;::::0;;53181:36:::2;::::0;53205:11;53181:9:::2;:36::i;:::-;52794:429;52488:1:::1;52641:582:::0;;;;:::o;54814:81::-;11285:6;;-1:-1:-1;;;;;11285:6:0;48937:10;11432:23;11424:68;;;;-1:-1:-1;;;11424:68:0;;;;;;;:::i;:::-;54872:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;54872:17:0;;::::1;::::0;;;::::1;::::0;;54814:81::o;53449:155::-;53535:11;52338:1;52324:11;:15;:52;;;;;52358:18;;52343:11;:33;;52324:52;52316:85;;;;-1:-1:-1;;;52316:85:0;;;;;;;:::i;:::-;52447:9;;52432:11;52416:13;25073:12;;24860:7;25057:13;:28;;24807:315;52416:13;:27;;;;:::i;:::-;:40;;52408:73;;;;-1:-1:-1;;;52408:73:0;;;;;;;:::i;:::-;11285:6;;-1:-1:-1;;;;;11285:6:0;48937:10;11432:23:::1;11424:68;;;;-1:-1:-1::0;;;11424:68:0::1;;;;;;;:::i;:::-;53565:33:::2;53575:9;53586:11;53565:9;:33::i;12121:201::-:0;11285:6;;-1:-1:-1;;;;;11285:6:0;48937:10;11432:23;11424:68;;;;-1:-1:-1;;;11424:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12210:22:0;::::1;12202:73;;;::::0;-1:-1:-1;;;12202:73:0;;13708:2:1;12202:73:0::1;::::0;::::1;13690:21:1::0;13747:2;13727:18;;;13720:30;13786:34;13766:18;;;13759:62;-1:-1:-1;;;13837:18:1;;;13830:36;13883:19;;12202:73:0::1;13506:402:1::0;12202:73:0::1;12286:28;12305:8;12286:18;:28::i;:::-;12121:201:::0;:::o;34868:273::-;34925:4;35015:13;;35005:7;:23;34962:152;;;;-1:-1:-1;;35066:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;35066:43:0;:48;;34868:273::o;28070:1129::-;28137:7;28172;28274:13;;28267:4;:20;28263:869;;;28312:14;28329:23;;;:17;:23;;;;;;;-1:-1:-1;;;28418:23:0;;:28;;28414:699;;28937:113;28944:6;28954:1;28944:11;28937:113;;-1:-1:-1;;;29015:6:0;28997:25;;;;:17;:25;;;;;;28937:113;;28414:699;28289:843;28263:869;29160:31;;-1:-1:-1;;;29160:31:0;;;;;;;;;;;40107:2515;40222:27;40252;40271:7;40252:18;:27::i;:::-;40222:57;;40337:4;-1:-1:-1;;;;;40296:45:0;40312:19;-1:-1:-1;;;;;40296:45:0;;40292:86;;40350:28;;-1:-1:-1;;;40350:28:0;;;;;;;;;;;40292:86;40391:22;48937:10;-1:-1:-1;;;;;40417:27:0;;;;:87;;-1:-1:-1;40461:43:0;40478:4;48937:10;33489:164;:::i;40461:43::-;40417:147;;;-1:-1:-1;48937:10:0;40521:20;40533:7;40521:11;:20::i;:::-;-1:-1:-1;;;;;40521:43:0;;40417:147;40391:174;;40583:17;40578:66;;40609:35;;-1:-1:-1;;;40609:35:0;;;;;;;;;;;40578:66;-1:-1:-1;;;;;40659:16:0;;40655:52;;40684:23;;-1:-1:-1;;;40684:23:0;;;;;;;;;;;40655:52;40836:24;;;;:15;:24;;;;;;;;40829:31;;-1:-1:-1;;;;;;40829:31:0;;;-1:-1:-1;;;;;41228:24:0;;;;;:18;:24;;;;;41226:26;;-1:-1:-1;;41226:26:0;;;41297:22;;;;;;;41295:24;;-1:-1:-1;41295:24:0;;;41590:26;;;:17;:26;;;;;-1:-1:-1;;;41678:15:0;22425:3;41678:41;41636:84;;:128;;41590:174;;;41884:46;;:51;;41880:626;;41988:1;41978:11;;41956:19;42111:30;;;:17;:30;;;;;;:35;;42107:384;;42249:13;;42234:11;:28;42230:242;;42396:30;;;;:17;:30;;;;;:52;;;42230:242;41937:569;41880:626;42553:7;42549:2;-1:-1:-1;;;;;42534:27:0;42543:4;-1:-1:-1;;;;;42534:27:0;;;;;;;;;;;40211:2411;;40107:2515;;;:::o;12482:191::-;12575:6;;;-1:-1:-1;;;;;12592:17:0;;;-1:-1:-1;;;;;;12592:17:0;;;;;;;12625:40;;12575:6;;;12592:17;12575:6;;12625:40;;12556:16;;12625:40;12545:128;12482:191;:::o;35225:104::-;35294:27;35304:2;35308:8;35294:27;;;;;;;;;;;;:9;:27::i;46319:716::-;46503:88;;-1:-1:-1;;;46503:88:0;;46482:4;;-1:-1:-1;;;;;46503:45:0;;;;;:88;;48937:10;;46570:4;;46576:7;;46585:5;;46503:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46503:88:0;;;;;;;;-1:-1:-1;;46503:88:0;;;;;;;;;;;;:::i;:::-;;;46499:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46786:6;:13;46803:1;46786:18;46782:235;;46832:40;;-1:-1:-1;;;46832:40:0;;;;;;;;;;;46782:235;46975:6;46969:13;46960:6;46956:2;46952:15;46945:38;46499:529;-1:-1:-1;;;;;;46662:64:0;-1:-1:-1;;;46662:64:0;;-1:-1:-1;46499:529:0;46319:716;;;;;;:::o;56158:104::-;56218:13;56247:9;56240:16;;;;;:::i;2054:723::-;2110:13;2331:5;2340:1;2331:10;2327:53;;-1:-1:-1;;2358:10:0;;;;;;;;;;;;-1:-1:-1;;;2358:10:0;;;;;2054:723::o;2327:53::-;2405:5;2390:12;2446:78;2453:9;;2446:78;;2479:8;;;;:::i;:::-;;-1:-1:-1;2502:10:0;;-1:-1:-1;2510:2:0;2502:10;;:::i;:::-;;;2446:78;;;2534:19;2566:6;2556:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2556:17:0;;2534:39;;2584:154;2591:10;;2584:154;;2618:11;2628:1;2618:11;;:::i;:::-;;-1:-1:-1;2687:10:0;2695:2;2687:5;:10;:::i;:::-;2674:24;;:2;:24;:::i;:::-;2661:39;;2644:6;2651;2644:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2644:56:0;;;;;;;;-1:-1:-1;2715:11:0;2724:2;2715:11;;:::i;:::-;;;2584:154;;7792:190;7917:4;7970;7941:25;7954:5;7961:4;7941:12;:25::i;:::-;:33;;7792:190;-1:-1:-1;;;;7792:190:0:o;35702:2236::-;35825:20;35848:13;-1:-1:-1;;;;;35876:16:0;;35872:48;;35901:19;;-1:-1:-1;;;35901:19:0;;;;;;;;;;;35872:48;35935:8;35947:1;35935:13;35931:44;;35957:18;;-1:-1:-1;;;35957:18:0;;;;;;;;;;;35931:44;-1:-1:-1;;;;;36524:22:0;;;;;;:18;:22;;;;21908:2;36524:22;;;:70;;36562:31;36550:44;;36524:70;;;36837:31;;;:17;:31;;;;;36930:15;22425:3;36930:41;36888:84;;-1:-1:-1;37008:13:0;;22688:3;36993:56;36888:162;36837:213;;:31;;37131:23;;;;37175:14;:19;37171:635;;37215:313;37246:38;;37271:12;;-1:-1:-1;;;;;37246:38:0;;;37263:1;;37246:38;;37263:1;;37246:38;37312:69;37351:1;37355:2;37359:14;;;;;;37375:5;37312:30;:69::i;:::-;37307:174;;37417:40;;-1:-1:-1;;;37417:40:0;;;;;;;;;;;37307:174;37523:3;37508:12;:18;37215:313;;37609:12;37592:13;;:29;37588:43;;37623:8;;;37588:43;37171:635;;;37672:119;37703:40;;37728:14;;;;;-1:-1:-1;;;;;37703:40:0;;;37720:1;;37703:40;;37720:1;;37703:40;37786:3;37771:12;:18;37672:119;;37171:635;-1:-1:-1;37820:13:0;:28;;;37870:60;;37903:2;37907:12;37921:8;37870:60;:::i;8343:675::-;8426:7;8469:4;8426:7;8484:497;8508:5;:12;8504:1;:16;8484:497;;;8542:20;8565:5;8571:1;8565:8;;;;;;;;:::i;:::-;;;;;;;8542:31;;8608:12;8592;:28;8588:382;;9094:13;9144:15;;;9180:4;9173:15;;;9227:4;9211:21;;8720:57;;8588:382;;;9094:13;9144:15;;;9180:4;9173:15;;;9227:4;9211:21;;8897:57;;8588:382;-1:-1:-1;8522:3:0;;;;:::i;:::-;;;;8484:497;;;-1:-1:-1;8998:12:0;8343:675;-1:-1:-1;;;8343:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:160::-;2420:20;;2476:13;;2469:21;2459:32;;2449:60;;2505:1;2502;2495:12;2520:180;2576:6;2629:2;2617:9;2608:7;2604:23;2600:32;2597:52;;;2645:1;2642;2635:12;2597:52;2668:26;2684:9;2668:26;:::i;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3220:186::-;3279:6;3332:2;3320:9;3311:7;3307:23;3303:32;3300:52;;;3348:1;3345;3338:12;3300:52;3371:29;3390:9;3371:29;:::i;3411:632::-;3582:2;3634:21;;;3704:13;;3607:18;;;3726:22;;;3553:4;;3582:2;3805:15;;;;3779:2;3764:18;;;3553:4;3848:169;3862:6;3859:1;3856:13;3848:169;;;3923:13;;3911:26;;3992:15;;;;3957:12;;;;3884:1;3877:9;3848:169;;;-1:-1:-1;4034:3:1;;3411:632;-1:-1:-1;;;;;;3411:632:1:o;4048:127::-;4109:10;4104:3;4100:20;4097:1;4090:31;4140:4;4137:1;4130:15;4164:4;4161:1;4154:15;4180:632;4245:5;4275:18;4316:2;4308:6;4305:14;4302:40;;;4322:18;;:::i;:::-;4397:2;4391:9;4365:2;4451:15;;-1:-1:-1;;4447:24:1;;;4473:2;4443:33;4439:42;4427:55;;;4497:18;;;4517:22;;;4494:46;4491:72;;;4543:18;;:::i;:::-;4583:10;4579:2;4572:22;4612:6;4603:15;;4642:6;4634;4627:22;4682:3;4673:6;4668:3;4664:16;4661:25;4658:45;;;4699:1;4696;4689:12;4658:45;4749:6;4744:3;4737:4;4729:6;4725:17;4712:44;4804:1;4797:4;4788:6;4780;4776:19;4772:30;4765:41;;;;4180:632;;;;;:::o;4817:451::-;4886:6;4939:2;4927:9;4918:7;4914:23;4910:32;4907:52;;;4955:1;4952;4945:12;4907:52;4995:9;4982:23;5028:18;5020:6;5017:30;5014:50;;;5060:1;5057;5050:12;5014:50;5083:22;;5136:4;5128:13;;5124:27;-1:-1:-1;5114:55:1;;5165:1;5162;5155:12;5114:55;5188:74;5254:7;5249:2;5236:16;5231:2;5227;5223:11;5188:74;:::i;5458:254::-;5523:6;5531;5584:2;5572:9;5563:7;5559:23;5555:32;5552:52;;;5600:1;5597;5590:12;5552:52;5623:29;5642:9;5623:29;:::i;:::-;5613:39;;5671:35;5702:2;5691:9;5687:18;5671:35;:::i;:::-;5661:45;;5458:254;;;;;:::o;5717:667::-;5812:6;5820;5828;5836;5889:3;5877:9;5868:7;5864:23;5860:33;5857:53;;;5906:1;5903;5896:12;5857:53;5929:29;5948:9;5929:29;:::i;:::-;5919:39;;5977:38;6011:2;6000:9;5996:18;5977:38;:::i;:::-;5967:48;;6062:2;6051:9;6047:18;6034:32;6024:42;;6117:2;6106:9;6102:18;6089:32;6144:18;6136:6;6133:30;6130:50;;;6176:1;6173;6166:12;6130:50;6199:22;;6252:4;6244:13;;6240:27;-1:-1:-1;6230:55:1;;6281:1;6278;6271:12;6230:55;6304:74;6370:7;6365:2;6352:16;6347:2;6343;6339:11;6304:74;:::i;:::-;6294:84;;;5717:667;;;;;;;:::o;6389:683::-;6484:6;6492;6500;6553:2;6541:9;6532:7;6528:23;6524:32;6521:52;;;6569:1;6566;6559:12;6521:52;6605:9;6592:23;6582:33;;6666:2;6655:9;6651:18;6638:32;6689:18;6730:2;6722:6;6719:14;6716:34;;;6746:1;6743;6736:12;6716:34;6784:6;6773:9;6769:22;6759:32;;6829:7;6822:4;6818:2;6814:13;6810:27;6800:55;;6851:1;6848;6841:12;6800:55;6891:2;6878:16;6917:2;6909:6;6906:14;6903:34;;;6933:1;6930;6923:12;6903:34;6986:7;6981:2;6971:6;6968:1;6964:14;6960:2;6956:23;6952:32;6949:45;6946:65;;;7007:1;7004;6997:12;6946:65;7038:2;7034;7030:11;7020:21;;7060:6;7050:16;;;;;6389:683;;;;;:::o;7077:260::-;7145:6;7153;7206:2;7194:9;7185:7;7181:23;7177:32;7174:52;;;7222:1;7219;7212:12;7174:52;7245:29;7264:9;7245:29;:::i;:::-;7235:39;;7293:38;7327:2;7316:9;7312:18;7293:38;:::i;7342:254::-;7410:6;7418;7471:2;7459:9;7450:7;7446:23;7442:32;7439:52;;;7487:1;7484;7477:12;7439:52;7523:9;7510:23;7500:33;;7552:38;7586:2;7575:9;7571:18;7552:38;:::i;7601:380::-;7680:1;7676:12;;;;7723;;;7744:61;;7798:4;7790:6;7786:17;7776:27;;7744:61;7851:2;7843:6;7840:14;7820:18;7817:38;7814:161;;7897:10;7892:3;7888:20;7885:1;7878:31;7932:4;7929:1;7922:15;7960:4;7957:1;7950:15;7814:161;;7601:380;;;:::o;7986:356::-;8188:2;8170:21;;;8207:18;;;8200:30;8266:34;8261:2;8246:18;;8239:62;8333:2;8318:18;;7986:356::o;8707:127::-;8768:10;8763:3;8759:20;8756:1;8749:31;8799:4;8796:1;8789:15;8823:4;8820:1;8813:15;8839:168;8879:7;8945:1;8941;8937:6;8933:14;8930:1;8927:21;8922:1;8915:9;8908:17;8904:45;8901:71;;;8952:18;;:::i;:::-;-1:-1:-1;8992:9:1;;8839:168::o;9012:127::-;9073:10;9068:3;9064:20;9061:1;9054:31;9104:4;9101:1;9094:15;9128:4;9125:1;9118:15;9144:120;9184:1;9210;9200:35;;9215:18;;:::i;:::-;-1:-1:-1;9249:9:1;;9144:120::o;9479:127::-;9540:10;9535:3;9531:20;9528:1;9521:31;9571:4;9568:1;9561:15;9595:4;9592:1;9585:15;9611:135;9650:3;9671:17;;;9668:43;;9691:18;;:::i;:::-;-1:-1:-1;9738:1:1;9727:13;;9611:135::o;9751:344::-;9953:2;9935:21;;;9992:2;9972:18;;;9965:30;-1:-1:-1;;;10026:2:1;10011:18;;10004:50;10086:2;10071:18;;9751:344::o;10100:128::-;10140:3;10171:1;10167:6;10164:1;10161:13;10158:39;;;10177:18;;:::i;:::-;-1:-1:-1;10213:9:1;;10100:128::o;10233:344::-;10435:2;10417:21;;;10474:2;10454:18;;;10447:30;-1:-1:-1;;;10508:2:1;10493:18;;10486:50;10568:2;10553:18;;10233:344::o;11698:470::-;11877:3;11915:6;11909:13;11931:53;11977:6;11972:3;11965:4;11957:6;11953:17;11931:53;:::i;:::-;12047:13;;12006:16;;;;12069:57;12047:13;12006:16;12103:4;12091:17;;12069:57;:::i;:::-;12142:20;;11698:470;-1:-1:-1;;;;11698:470:1:o;13913:489::-;-1:-1:-1;;;;;14182:15:1;;;14164:34;;14234:15;;14229:2;14214:18;;14207:43;14281:2;14266:18;;14259:34;;;14329:3;14324:2;14309:18;;14302:31;;;14107:4;;14350:46;;14376:19;;14368:6;14350:46;:::i;:::-;14342:54;13913:489;-1:-1:-1;;;;;;13913:489:1:o;14407:249::-;14476:6;14529:2;14517:9;14508:7;14504:23;14500:32;14497:52;;;14545:1;14542;14535:12;14497:52;14577:9;14571:16;14596:30;14620:5;14596:30;:::i;14661:125::-;14701:4;14729:1;14726;14723:8;14720:34;;;14734:18;;:::i;:::-;-1:-1:-1;14771:9:1;;14661:125::o;14791:112::-;14823:1;14849;14839:35;;14854:18;;:::i;:::-;-1:-1:-1;14888:9:1;;14791:112::o

Swarm Source

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