ETH Price: $3,010.18 (+4.49%)
Gas: 2 Gwei

Outside Entities (OE)
 

Overview

TokenID

1189

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

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

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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.1.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();

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.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 bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // 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`
    // - [232..255] `extraData`
    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 auxiliary 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 auxiliary 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;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            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;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * 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 Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

        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-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 {
        transferFrom(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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    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` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // 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 Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @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: outsideentitesfinal.sol



//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel



pragma solidity >=0.7.0 <0.9.0;






contract OutsideEntities is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.007 ether;
  uint256 public maxSupply = 5000;
  uint256 public WlSupply = 2500;
  uint256 public MaxperWallet = 3;
  uint256 public MaxperWalletWL = 1;
  bool public paused = false;
  bool public preSale = true;
  bool public publicSale = false;
  bytes32 public merkleRoot = 0x797d156b828ecdc8e26492154e251c8f4f629468cd0e2c52ed3f989e89463792;

  constructor() ERC721A("Outside Entities", "OE") {
    setBaseURI("ipfs://bafybeieoz2jiw5vmfgyzsdoloulsri3ufk2xmu2zoa4ag3psnuadyfgsri/");
    _safeMint(_msgSenderERC721A(), 250);
  }

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

  // public
  /// @dev Public mint 
  function mint(uint256 tokens) public payable nonReentrant {
    require(!paused, "OE: oops contract is paused");
    require(publicSale, "OE: Sale HOE't started yet");
    require(tokens <= MaxperWallet, "OE: max mint amount per tx exceeded");
    require(totalSupply() + tokens <= maxSupply, "OE: We Soldout");
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWallet, "OE: Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "OE: insufficient funds");

      _safeMint(_msgSenderERC721A(), tokens);
  }

/// @dev presale mint for whitelisted
    function presalemint(uint256 tokens, bytes32[] calldata merkleProof) public nonReentrant {
    require(!paused, "OE: oops contract is paused");
    require(preSale, "OE: Presale HOE't started yet");
    require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "OE: You are not Whitelisted");
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWalletWL, "OE: Max NFT Per Wallet exceeded");
    require(tokens <= MaxperWallet, "OE: max mint per Tx exceeded");
    require(totalSupply() + tokens <= WlSupply, "OE: Whitelist MaxSupply exceeded");

      _safeMint(_msgSenderERC721A(), tokens);
    
  }

  /// @dev use it for giveaway and team mint
     function airdrop(uint256 _mintAmount, address destination) public onlyOwner nonReentrant {
    require(totalSupply() + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
  }

/// @notice returns metadata link of tokenid
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

     /// @notice return the number minted by an address
    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    /// @notice return the tokens owned by an address
      function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }

  //only owner
    /// @dev change the merkle root for the whitelist phase
  function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

  /// @dev change the public max per wallet
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

    /// @dev change the wl max per wallet
  function setWLMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWalletWL = _limit;
  }
  
   /// @dev change the public price(amount need to be in wei)
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }
  
  /// @dev cut the supply if we dont sold out
    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }

 /// @dev cut the whitelist supply if we dont sold out
    function setwlsupply(uint256 _newsupply) public onlyOwner {
    WlSupply = _newsupply;
  }

 /// @dev set your baseuri
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  /// @dev set base extension(default is .json)
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

 /// @dev to pause and unpause your contract(use booleans true or false)
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

     /// @dev activate whitelist sale(use booleans true or false)
    function togglepreSale(bool _state) external onlyOwner {
        preSale = _state;
    }

    /// @dev activate public sale(use booleans true or false)
    function togglepublicSale(bool _state) external onlyOwner {
        publicSale = _state;
    }
  
  /// @dev withdraw funds from contract
  function withdraw() public payable onlyOwner nonReentrant {
      uint256 balance = address(this).balance;
      payable(_msgSenderERC721A()).transfer(balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"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":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"presalemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWLMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setwlsupply","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":"bool","name":"_state","type":"bool"}],"name":"togglepreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600b9190620004a0565b506618de76816d8000600c55611388600d556109c4600e556003600f5560016010556011805462ffffff19166101001790557f797d156b828ecdc8e26492154e251c8f4f629468cd0e2c52ed3f989e894637926012553480156200008b57600080fd5b506040518060400160405280601081526020016f4f75747369646520456e74697469657360801b815250604051806040016040528060028152602001614f4560f01b8152508160029080519060200190620000e8929190620004a0565b508051620000fe906003906020840190620004a0565b5050600160005550620001113362000150565b60016009819055506200013d60405180608001604052806043815260200162002a4d60439139620001a2565b6200014a3360fa620001c5565b62000631565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001ac620001e7565b8051620001c190600a906020840190620004a0565b5050565b620001c18282604051806020016040528060008152506200024860201b60201c565b6008546001600160a01b03163314620002465760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b620002548383620002bf565b6001600160a01b0383163b15620002ba576000548281035b600181019062000282906000908790866200039f565b620002a0576040516368d2bf6b60e11b815260040160405180910390fd5b8181106200026c578160005414620002b757600080fd5b50505b505050565b6000546001600160a01b038316620002e957604051622e076360e81b815260040160405180910390fd5b81620003085760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210620003525760005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620003d690339089908890889060040162000579565b602060405180830381600087803b158015620003f157600080fd5b505af192505050801562000424575060408051601f3d908101601f19168201909252620004219181019062000546565b60015b62000483573d80801562000455576040519150601f19603f3d011682016040523d82523d6000602084013e6200045a565b606091505b5080516200047b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620004ae90620005f4565b90600052602060002090601f016020900481019282620004d257600085556200051d565b82601f10620004ed57805160ff19168380011785556200051d565b828001600101855582156200051d579182015b828111156200051d57825182559160200191906001019062000500565b506200052b9291506200052f565b5090565b5b808211156200052b576000815560010162000530565b6000602082840312156200055957600080fd5b81516001600160e01b0319811681146200057257600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620005c85785810182015185820160a001528101620005aa565b82811115620005db57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600181811c908216806200060957607f821691505b602082108114156200062b57634e487b7160e01b600052602260045260246000fd5b50919050565b61240c80620006416000396000f3fe6080604052600436106102725760003560e01c806370a082311161014f578063bc63f02e116100c1578063dc33e6811161007a578063dc33e6811461070b578063e268e4d31461072b578063e985e9c51461074b578063f2fde38b14610794578063f3257cdd146107b4578063fea0e058146107d457600080fd5b8063bc63f02e1461066a578063bd7a19981461068a578063c6682862146106a0578063c87b56dd146106b5578063d5abeb01146106d5578063da3ef23f146106eb57600080fd5b80638da5cb5b116101135780638da5cb5b146105ce57806395d89b41146105ec578063a0712d6814610601578063a22cb46514610614578063aeeae3a614610634578063b88d4fde1461064a57600080fd5b806370a082311461052c578063715018a61461054c5780637cb64759146105615780638462151c146105815780638a3e8c85146105ae57600080fd5b80632eb4a7ab116101e8578063458c4f9e116101ac578063458c4f9e1461047e57806355f804b31461049e5780635a7adf7f146104be5780635c975abb146104dd5780636352211e146104f75780636c0360eb1461051757600080fd5b80632eb4a7ab1461040057806333bc1c5c146104165780633ccfd60b1461043657806342842e0e1461043e57806344a0d68a1461045e57600080fd5b8063095ea7b31161023a578063095ea7b3146103485780630bddb6131461036857806313faede61461038c578063149835a0146103a257806318160ddd146103c257806323b872dd146103e057600080fd5b806301ffc9a71461027757806302329a29146102ac578063036e4cb5146102ce57806306fdde03146102ee578063081812fc14610310575b600080fd5b34801561028357600080fd5b50610297610292366004611f9c565b6107f4565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004611f68565b610846565b005b3480156102da57600080fd5b506102cc6102e9366004612042565b610861565b3480156102fa57600080fd5b50610303610b35565b6040516102a39190612226565b34801561031c57600080fd5b5061033061032b366004611f83565b610bc7565b6040516001600160a01b0390911681526020016102a3565b34801561035457600080fd5b506102cc610363366004611f3e565b610c0b565b34801561037457600080fd5b5061037e600e5481565b6040519081526020016102a3565b34801561039857600080fd5b5061037e600c5481565b3480156103ae57600080fd5b506102cc6103bd366004611f83565b610cab565b3480156103ce57600080fd5b5061037e600154600054036000190190565b3480156103ec57600080fd5b506102cc6103fb366004611e5c565b610cb8565b34801561040c57600080fd5b5061037e60125481565b34801561042257600080fd5b506011546102979062010000900460ff1681565b6102cc610e49565b34801561044a57600080fd5b506102cc610459366004611e5c565b610eb1565b34801561046a57600080fd5b506102cc610479366004611f83565b610ed1565b34801561048a57600080fd5b506102cc610499366004611f83565b610ede565b3480156104aa57600080fd5b506102cc6104b9366004611fd6565b610eeb565b3480156104ca57600080fd5b5060115461029790610100900460ff1681565b3480156104e957600080fd5b506011546102979060ff1681565b34801561050357600080fd5b50610330610512366004611f83565b610f0a565b34801561052357600080fd5b50610303610f15565b34801561053857600080fd5b5061037e610547366004611e0e565b610fa3565b34801561055857600080fd5b506102cc610ff2565b34801561056d57600080fd5b506102cc61057c366004611f83565b611006565b34801561058d57600080fd5b506105a161059c366004611e0e565b611013565b6040516102a391906121ee565b3480156105ba57600080fd5b506102cc6105c9366004611f83565b611123565b3480156105da57600080fd5b506008546001600160a01b0316610330565b3480156105f857600080fd5b50610303611130565b6102cc61060f366004611f83565b61113f565b34801561062057600080fd5b506102cc61062f366004611f14565b61139b565b34801561064057600080fd5b5061037e60105481565b34801561065657600080fd5b506102cc610665366004611e98565b611431565b34801561067657600080fd5b506102cc61068536600461201f565b61147b565b34801561069657600080fd5b5061037e600f5481565b3480156106ac57600080fd5b5061030361151b565b3480156106c157600080fd5b506103036106d0366004611f83565b611528565b3480156106e157600080fd5b5061037e600d5481565b3480156106f757600080fd5b506102cc610706366004611fd6565b6115f7565b34801561071757600080fd5b5061037e610726366004611e0e565b611612565b34801561073757600080fd5b506102cc610746366004611f83565b61161d565b34801561075757600080fd5b50610297610766366004611e29565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107a057600080fd5b506102cc6107af366004611e0e565b61162a565b3480156107c057600080fd5b506102cc6107cf366004611f68565b6116a3565b3480156107e057600080fd5b506102cc6107ef366004611f68565b6116c7565b60006301ffc9a760e01b6001600160e01b03198316148061082557506380ac58cd60e01b6001600160e01b03198316145b806108405750635b5e139f60e01b6001600160e01b03198316145b92915050565b61084e6116e9565b6011805460ff1916911515919091179055565b6002600954141561088d5760405162461bcd60e51b815260040161088490612239565b60405180910390fd5b600260095560115460ff16156108e55760405162461bcd60e51b815260206004820152601b60248201527f4f453a206f6f707320636f6e74726163742069732070617573656400000000006044820152606401610884565b601154610100900460ff1661093c5760405162461bcd60e51b815260206004820152601d60248201527f4f453a2050726573616c6520484f4527742073746172746564207965740000006044820152606401610884565b6109b1828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611743565b6109fd5760405162461bcd60e51b815260206004820152601b60248201527f4f453a20596f7520617265206e6f742057686974656c697374656400000000006044820152606401610884565b60105483610a0a33611759565b610a149190612270565b1115610a625760405162461bcd60e51b815260206004820152601f60248201527f4f453a204d6178204e4654205065722057616c6c6574206578636565646564006044820152606401610884565b600f54831115610ab45760405162461bcd60e51b815260206004820152601c60248201527f4f453a206d6178206d696e7420706572205478206578636565646564000000006044820152606401610884565b600e5483610ac9600154600054036000190190565b610ad39190612270565b1115610b215760405162461bcd60e51b815260206004820181905260248201527f4f453a2057686974656c697374204d6178537570706c792065786365656465646044820152606401610884565b610b2b3384611782565b5050600160095550565b606060028054610b44906122fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610b70906122fe565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b6000610bd28261179c565b610bef576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c1682610f0a565b9050336001600160a01b03821614610c4f57610c328133610766565b610c4f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610cb36116e9565b600d55565b6000610cc3826117d1565b9050836001600160a01b0316816001600160a01b031614610cf65760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610d4357610d268633610766565b610d4357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d6a57604051633a954ecd60e21b815260040160405180910390fd5b8015610d7557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610e005760018401600081815260046020526040902054610dfe576000548114610dfe5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610e516116e9565b60026009541415610e745760405162461bcd60e51b815260040161088490612239565b60026009556040514790339082156108fc029083906000818181858888f19350505050158015610ea8573d6000803e3d6000fd5b50506001600955565b610ecc83838360405180602001604052806000815250611431565b505050565b610ed96116e9565b600c55565b610ee66116e9565b600e55565b610ef36116e9565b8051610f0690600a906020840190611cd3565b5050565b6000610840826117d1565b600a8054610f22906122fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4e906122fe565b8015610f9b5780601f10610f7057610100808354040283529160200191610f9b565b820191906000526020600020905b815481529060010190602001808311610f7e57829003601f168201915b505050505081565b60006001600160a01b038216610fcc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610ffa6116e9565b611004600061183a565b565b61100e6116e9565b601255565b6060600080600061102385610fa3565b905060008167ffffffffffffffff811115611040576110406123aa565b604051908082528060200260200182016040528015611069578160200160208202803683370190505b50905061109660408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614611117576110a98161188c565b91508160400151156110ba5761110f565b81516001600160a01b0316156110cf57815194505b876001600160a01b0316856001600160a01b0316141561110f578083878060010198508151811061110257611102612394565b6020026020010181815250505b600101611099565b50909695505050505050565b61112b6116e9565b601055565b606060038054610b44906122fe565b600260095414156111625760405162461bcd60e51b815260040161088490612239565b600260095560115460ff16156111ba5760405162461bcd60e51b815260206004820152601b60248201527f4f453a206f6f707320636f6e74726163742069732070617573656400000000006044820152606401610884565b60115462010000900460ff166112125760405162461bcd60e51b815260206004820152601a60248201527f4f453a2053616c6520484f4527742073746172746564207965740000000000006044820152606401610884565b600f548111156112705760405162461bcd60e51b815260206004820152602360248201527f4f453a206d6178206d696e7420616d6f756e742070657220747820657863656560448201526219195960ea1b6064820152608401610884565b600d5481611285600154600054036000190190565b61128f9190612270565b11156112ce5760405162461bcd60e51b815260206004820152600e60248201526d13d14e8815d94814dbdb191bdd5d60921b6044820152606401610884565b600f54816112db33611759565b6112e59190612270565b11156113335760405162461bcd60e51b815260206004820152601f60248201527f4f453a204d6178204e4654205065722057616c6c6574206578636565646564006044820152606401610884565b80600c54611341919061229c565b3410156113895760405162461bcd60e51b81526020600482015260166024820152754f453a20696e73756666696369656e742066756e647360501b6044820152606401610884565b6113933382611782565b506001600955565b6001600160a01b0382163314156113c55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61143c848484610cb8565b6001600160a01b0383163b15611475576114588484848461190b565b611475576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6114836116e9565b600260095414156114a65760405162461bcd60e51b815260040161088490612239565b6002600955600d54826114c0600154600054036000190190565b6114ca9190612270565b11156115115760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610884565b610ea88183611782565b600b8054610f22906122fe565b60606115338261179c565b6115985760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610884565b60006115a2611a03565b905060008151116115c257604051806020016040528060008152506115f0565b806115cc84611a12565b600b6040516020016115e0939291906120ed565b6040516020818303038152906040525b9392505050565b6115ff6116e9565b8051610f0690600b906020840190611cd3565b600061084082611759565b6116256116e9565b600f55565b6116326116e9565b6001600160a01b0381166116975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610884565b6116a08161183a565b50565b6116ab6116e9565b60118054911515620100000262ff000019909216919091179055565b6116cf6116e9565b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146110045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610884565b6000826117508584611b10565b14949350505050565b6001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b610f06828260405180602001604052806000815250611b5d565b6000816001111580156117b0575060005482105b8015610840575050600090815260046020526040902054600160e01b161590565b600081806001116118215760005481101561182157600081815260046020526040902054600160e01b811661181f575b806115f0575060001901600081815260046020526040902054611801565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461084090604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119409033908990889088906004016121b1565b602060405180830381600087803b15801561195a57600080fd5b505af192505050801561198a575060408051601f3d908101601f1916820190925261198791810190611fb9565b60015b6119e5573d8080156119b8576040519150601f19603f3d011682016040523d82523d6000602084013e6119bd565b606091505b5080516119dd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a8054610b44906122fe565b606081611a365750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a605780611a4a81612339565b9150611a599050600a83612288565b9150611a3a565b60008167ffffffffffffffff811115611a7b57611a7b6123aa565b6040519080825280601f01601f191660200182016040528015611aa5576020820181803683370190505b5090505b84156119fb57611aba6001836122bb565b9150611ac7600a86612354565b611ad2906030612270565b60f81b818381518110611ae757611ae7612394565b60200101906001600160f81b031916908160001a905350611b09600a86612288565b9450611aa9565b600081815b8451811015611b5557611b4182868381518110611b3457611b34612394565b6020026020010151611bca565b915080611b4d81612339565b915050611b15565b509392505050565b611b678383611bf6565b6001600160a01b0383163b15610ecc576000548281035b611b91600086838060010194508661190b565b611bae576040516368d2bf6b60e11b815260040160405180910390fd5b818110611b7e578160005414611bc357600080fd5b5050505050565b6000818310611be65760008281526020849052604090206115f0565b5060009182526020526040902090565b6000546001600160a01b038316611c1f57604051622e076360e81b815260040160405180910390fd5b81611c3d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611c875760005550505050565b828054611cdf906122fe565b90600052602060002090601f016020900481019282611d015760008555611d47565b82601f10611d1a57805160ff1916838001178555611d47565b82800160010185558215611d47579182015b82811115611d47578251825591602001919060010190611d2c565b50611d53929150611d57565b5090565b5b80821115611d535760008155600101611d58565b600067ffffffffffffffff80841115611d8757611d876123aa565b604051601f8501601f19908116603f01168101908282118183101715611daf57611daf6123aa565b81604052809350858152868686011115611dc857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611df957600080fd5b919050565b80358015158114611df957600080fd5b600060208284031215611e2057600080fd5b6115f082611de2565b60008060408385031215611e3c57600080fd5b611e4583611de2565b9150611e5360208401611de2565b90509250929050565b600080600060608486031215611e7157600080fd5b611e7a84611de2565b9250611e8860208501611de2565b9150604084013590509250925092565b60008060008060808587031215611eae57600080fd5b611eb785611de2565b9350611ec560208601611de2565b925060408501359150606085013567ffffffffffffffff811115611ee857600080fd5b8501601f81018713611ef957600080fd5b611f0887823560208401611d6c565b91505092959194509250565b60008060408385031215611f2757600080fd5b611f3083611de2565b9150611e5360208401611dfe565b60008060408385031215611f5157600080fd5b611f5a83611de2565b946020939093013593505050565b600060208284031215611f7a57600080fd5b6115f082611dfe565b600060208284031215611f9557600080fd5b5035919050565b600060208284031215611fae57600080fd5b81356115f0816123c0565b600060208284031215611fcb57600080fd5b81516115f0816123c0565b600060208284031215611fe857600080fd5b813567ffffffffffffffff811115611fff57600080fd5b8201601f8101841361201057600080fd5b6119fb84823560208401611d6c565b6000806040838503121561203257600080fd5b82359150611e5360208401611de2565b60008060006040848603121561205757600080fd5b83359250602084013567ffffffffffffffff8082111561207657600080fd5b818601915086601f83011261208a57600080fd5b81358181111561209957600080fd5b8760208260051b85010111156120ae57600080fd5b6020830194508093505050509250925092565b600081518084526120d98160208601602086016122d2565b601f01601f19169290920160200192915050565b6000845160206121008285838a016122d2565b8551918401916121138184848a016122d2565b8554920191600090600181811c908083168061213057607f831692505b85831081141561214e57634e487b7160e01b85526022600452602485fd5b8080156121625760018114612173576121a0565b60ff198516885283880195506121a0565b60008b81526020902060005b858110156121985781548a82015290840190880161217f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121e4908301846120c1565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156111175783518352928401929184019160010161220a565b6020815260006115f060208301846120c1565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6000821982111561228357612283612368565b500190565b6000826122975761229761237e565b500490565b60008160001904831182151516156122b6576122b6612368565b500290565b6000828210156122cd576122cd612368565b500390565b60005b838110156122ed5781810151838201526020016122d5565b838111156114755750506000910152565b600181811c9082168061231257607f821691505b6020821081141561233357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561234d5761234d612368565b5060010190565b6000826123635761236361237e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116a057600080fdfea2646970667358221220a913bcf2473990923c74f06b6688d2d3547d5718b0d749631431457ec9c8722d64736f6c63430008070033697066733a2f2f62616679626569656f7a326a697735766d6667797a73646f6c6f756c7372693375666b32786d75327a6f613461673370736e7561647966677372692f

Deployed Bytecode

0x6080604052600436106102725760003560e01c806370a082311161014f578063bc63f02e116100c1578063dc33e6811161007a578063dc33e6811461070b578063e268e4d31461072b578063e985e9c51461074b578063f2fde38b14610794578063f3257cdd146107b4578063fea0e058146107d457600080fd5b8063bc63f02e1461066a578063bd7a19981461068a578063c6682862146106a0578063c87b56dd146106b5578063d5abeb01146106d5578063da3ef23f146106eb57600080fd5b80638da5cb5b116101135780638da5cb5b146105ce57806395d89b41146105ec578063a0712d6814610601578063a22cb46514610614578063aeeae3a614610634578063b88d4fde1461064a57600080fd5b806370a082311461052c578063715018a61461054c5780637cb64759146105615780638462151c146105815780638a3e8c85146105ae57600080fd5b80632eb4a7ab116101e8578063458c4f9e116101ac578063458c4f9e1461047e57806355f804b31461049e5780635a7adf7f146104be5780635c975abb146104dd5780636352211e146104f75780636c0360eb1461051757600080fd5b80632eb4a7ab1461040057806333bc1c5c146104165780633ccfd60b1461043657806342842e0e1461043e57806344a0d68a1461045e57600080fd5b8063095ea7b31161023a578063095ea7b3146103485780630bddb6131461036857806313faede61461038c578063149835a0146103a257806318160ddd146103c257806323b872dd146103e057600080fd5b806301ffc9a71461027757806302329a29146102ac578063036e4cb5146102ce57806306fdde03146102ee578063081812fc14610310575b600080fd5b34801561028357600080fd5b50610297610292366004611f9c565b6107f4565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004611f68565b610846565b005b3480156102da57600080fd5b506102cc6102e9366004612042565b610861565b3480156102fa57600080fd5b50610303610b35565b6040516102a39190612226565b34801561031c57600080fd5b5061033061032b366004611f83565b610bc7565b6040516001600160a01b0390911681526020016102a3565b34801561035457600080fd5b506102cc610363366004611f3e565b610c0b565b34801561037457600080fd5b5061037e600e5481565b6040519081526020016102a3565b34801561039857600080fd5b5061037e600c5481565b3480156103ae57600080fd5b506102cc6103bd366004611f83565b610cab565b3480156103ce57600080fd5b5061037e600154600054036000190190565b3480156103ec57600080fd5b506102cc6103fb366004611e5c565b610cb8565b34801561040c57600080fd5b5061037e60125481565b34801561042257600080fd5b506011546102979062010000900460ff1681565b6102cc610e49565b34801561044a57600080fd5b506102cc610459366004611e5c565b610eb1565b34801561046a57600080fd5b506102cc610479366004611f83565b610ed1565b34801561048a57600080fd5b506102cc610499366004611f83565b610ede565b3480156104aa57600080fd5b506102cc6104b9366004611fd6565b610eeb565b3480156104ca57600080fd5b5060115461029790610100900460ff1681565b3480156104e957600080fd5b506011546102979060ff1681565b34801561050357600080fd5b50610330610512366004611f83565b610f0a565b34801561052357600080fd5b50610303610f15565b34801561053857600080fd5b5061037e610547366004611e0e565b610fa3565b34801561055857600080fd5b506102cc610ff2565b34801561056d57600080fd5b506102cc61057c366004611f83565b611006565b34801561058d57600080fd5b506105a161059c366004611e0e565b611013565b6040516102a391906121ee565b3480156105ba57600080fd5b506102cc6105c9366004611f83565b611123565b3480156105da57600080fd5b506008546001600160a01b0316610330565b3480156105f857600080fd5b50610303611130565b6102cc61060f366004611f83565b61113f565b34801561062057600080fd5b506102cc61062f366004611f14565b61139b565b34801561064057600080fd5b5061037e60105481565b34801561065657600080fd5b506102cc610665366004611e98565b611431565b34801561067657600080fd5b506102cc61068536600461201f565b61147b565b34801561069657600080fd5b5061037e600f5481565b3480156106ac57600080fd5b5061030361151b565b3480156106c157600080fd5b506103036106d0366004611f83565b611528565b3480156106e157600080fd5b5061037e600d5481565b3480156106f757600080fd5b506102cc610706366004611fd6565b6115f7565b34801561071757600080fd5b5061037e610726366004611e0e565b611612565b34801561073757600080fd5b506102cc610746366004611f83565b61161d565b34801561075757600080fd5b50610297610766366004611e29565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107a057600080fd5b506102cc6107af366004611e0e565b61162a565b3480156107c057600080fd5b506102cc6107cf366004611f68565b6116a3565b3480156107e057600080fd5b506102cc6107ef366004611f68565b6116c7565b60006301ffc9a760e01b6001600160e01b03198316148061082557506380ac58cd60e01b6001600160e01b03198316145b806108405750635b5e139f60e01b6001600160e01b03198316145b92915050565b61084e6116e9565b6011805460ff1916911515919091179055565b6002600954141561088d5760405162461bcd60e51b815260040161088490612239565b60405180910390fd5b600260095560115460ff16156108e55760405162461bcd60e51b815260206004820152601b60248201527f4f453a206f6f707320636f6e74726163742069732070617573656400000000006044820152606401610884565b601154610100900460ff1661093c5760405162461bcd60e51b815260206004820152601d60248201527f4f453a2050726573616c6520484f4527742073746172746564207965740000006044820152606401610884565b6109b1828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611743565b6109fd5760405162461bcd60e51b815260206004820152601b60248201527f4f453a20596f7520617265206e6f742057686974656c697374656400000000006044820152606401610884565b60105483610a0a33611759565b610a149190612270565b1115610a625760405162461bcd60e51b815260206004820152601f60248201527f4f453a204d6178204e4654205065722057616c6c6574206578636565646564006044820152606401610884565b600f54831115610ab45760405162461bcd60e51b815260206004820152601c60248201527f4f453a206d6178206d696e7420706572205478206578636565646564000000006044820152606401610884565b600e5483610ac9600154600054036000190190565b610ad39190612270565b1115610b215760405162461bcd60e51b815260206004820181905260248201527f4f453a2057686974656c697374204d6178537570706c792065786365656465646044820152606401610884565b610b2b3384611782565b5050600160095550565b606060028054610b44906122fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610b70906122fe565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b6000610bd28261179c565b610bef576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c1682610f0a565b9050336001600160a01b03821614610c4f57610c328133610766565b610c4f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610cb36116e9565b600d55565b6000610cc3826117d1565b9050836001600160a01b0316816001600160a01b031614610cf65760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610d4357610d268633610766565b610d4357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d6a57604051633a954ecd60e21b815260040160405180910390fd5b8015610d7557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610e005760018401600081815260046020526040902054610dfe576000548114610dfe5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610e516116e9565b60026009541415610e745760405162461bcd60e51b815260040161088490612239565b60026009556040514790339082156108fc029083906000818181858888f19350505050158015610ea8573d6000803e3d6000fd5b50506001600955565b610ecc83838360405180602001604052806000815250611431565b505050565b610ed96116e9565b600c55565b610ee66116e9565b600e55565b610ef36116e9565b8051610f0690600a906020840190611cd3565b5050565b6000610840826117d1565b600a8054610f22906122fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4e906122fe565b8015610f9b5780601f10610f7057610100808354040283529160200191610f9b565b820191906000526020600020905b815481529060010190602001808311610f7e57829003601f168201915b505050505081565b60006001600160a01b038216610fcc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610ffa6116e9565b611004600061183a565b565b61100e6116e9565b601255565b6060600080600061102385610fa3565b905060008167ffffffffffffffff811115611040576110406123aa565b604051908082528060200260200182016040528015611069578160200160208202803683370190505b50905061109660408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614611117576110a98161188c565b91508160400151156110ba5761110f565b81516001600160a01b0316156110cf57815194505b876001600160a01b0316856001600160a01b0316141561110f578083878060010198508151811061110257611102612394565b6020026020010181815250505b600101611099565b50909695505050505050565b61112b6116e9565b601055565b606060038054610b44906122fe565b600260095414156111625760405162461bcd60e51b815260040161088490612239565b600260095560115460ff16156111ba5760405162461bcd60e51b815260206004820152601b60248201527f4f453a206f6f707320636f6e74726163742069732070617573656400000000006044820152606401610884565b60115462010000900460ff166112125760405162461bcd60e51b815260206004820152601a60248201527f4f453a2053616c6520484f4527742073746172746564207965740000000000006044820152606401610884565b600f548111156112705760405162461bcd60e51b815260206004820152602360248201527f4f453a206d6178206d696e7420616d6f756e742070657220747820657863656560448201526219195960ea1b6064820152608401610884565b600d5481611285600154600054036000190190565b61128f9190612270565b11156112ce5760405162461bcd60e51b815260206004820152600e60248201526d13d14e8815d94814dbdb191bdd5d60921b6044820152606401610884565b600f54816112db33611759565b6112e59190612270565b11156113335760405162461bcd60e51b815260206004820152601f60248201527f4f453a204d6178204e4654205065722057616c6c6574206578636565646564006044820152606401610884565b80600c54611341919061229c565b3410156113895760405162461bcd60e51b81526020600482015260166024820152754f453a20696e73756666696369656e742066756e647360501b6044820152606401610884565b6113933382611782565b506001600955565b6001600160a01b0382163314156113c55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61143c848484610cb8565b6001600160a01b0383163b15611475576114588484848461190b565b611475576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6114836116e9565b600260095414156114a65760405162461bcd60e51b815260040161088490612239565b6002600955600d54826114c0600154600054036000190190565b6114ca9190612270565b11156115115760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610884565b610ea88183611782565b600b8054610f22906122fe565b60606115338261179c565b6115985760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610884565b60006115a2611a03565b905060008151116115c257604051806020016040528060008152506115f0565b806115cc84611a12565b600b6040516020016115e0939291906120ed565b6040516020818303038152906040525b9392505050565b6115ff6116e9565b8051610f0690600b906020840190611cd3565b600061084082611759565b6116256116e9565b600f55565b6116326116e9565b6001600160a01b0381166116975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610884565b6116a08161183a565b50565b6116ab6116e9565b60118054911515620100000262ff000019909216919091179055565b6116cf6116e9565b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146110045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610884565b6000826117508584611b10565b14949350505050565b6001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b610f06828260405180602001604052806000815250611b5d565b6000816001111580156117b0575060005482105b8015610840575050600090815260046020526040902054600160e01b161590565b600081806001116118215760005481101561182157600081815260046020526040902054600160e01b811661181f575b806115f0575060001901600081815260046020526040902054611801565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461084090604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119409033908990889088906004016121b1565b602060405180830381600087803b15801561195a57600080fd5b505af192505050801561198a575060408051601f3d908101601f1916820190925261198791810190611fb9565b60015b6119e5573d8080156119b8576040519150601f19603f3d011682016040523d82523d6000602084013e6119bd565b606091505b5080516119dd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a8054610b44906122fe565b606081611a365750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a605780611a4a81612339565b9150611a599050600a83612288565b9150611a3a565b60008167ffffffffffffffff811115611a7b57611a7b6123aa565b6040519080825280601f01601f191660200182016040528015611aa5576020820181803683370190505b5090505b84156119fb57611aba6001836122bb565b9150611ac7600a86612354565b611ad2906030612270565b60f81b818381518110611ae757611ae7612394565b60200101906001600160f81b031916908160001a905350611b09600a86612288565b9450611aa9565b600081815b8451811015611b5557611b4182868381518110611b3457611b34612394565b6020026020010151611bca565b915080611b4d81612339565b915050611b15565b509392505050565b611b678383611bf6565b6001600160a01b0383163b15610ecc576000548281035b611b91600086838060010194508661190b565b611bae576040516368d2bf6b60e11b815260040160405180910390fd5b818110611b7e578160005414611bc357600080fd5b5050505050565b6000818310611be65760008281526020849052604090206115f0565b5060009182526020526040902090565b6000546001600160a01b038316611c1f57604051622e076360e81b815260040160405180910390fd5b81611c3d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611c875760005550505050565b828054611cdf906122fe565b90600052602060002090601f016020900481019282611d015760008555611d47565b82601f10611d1a57805160ff1916838001178555611d47565b82800160010185558215611d47579182015b82811115611d47578251825591602001919060010190611d2c565b50611d53929150611d57565b5090565b5b80821115611d535760008155600101611d58565b600067ffffffffffffffff80841115611d8757611d876123aa565b604051601f8501601f19908116603f01168101908282118183101715611daf57611daf6123aa565b81604052809350858152868686011115611dc857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611df957600080fd5b919050565b80358015158114611df957600080fd5b600060208284031215611e2057600080fd5b6115f082611de2565b60008060408385031215611e3c57600080fd5b611e4583611de2565b9150611e5360208401611de2565b90509250929050565b600080600060608486031215611e7157600080fd5b611e7a84611de2565b9250611e8860208501611de2565b9150604084013590509250925092565b60008060008060808587031215611eae57600080fd5b611eb785611de2565b9350611ec560208601611de2565b925060408501359150606085013567ffffffffffffffff811115611ee857600080fd5b8501601f81018713611ef957600080fd5b611f0887823560208401611d6c565b91505092959194509250565b60008060408385031215611f2757600080fd5b611f3083611de2565b9150611e5360208401611dfe565b60008060408385031215611f5157600080fd5b611f5a83611de2565b946020939093013593505050565b600060208284031215611f7a57600080fd5b6115f082611dfe565b600060208284031215611f9557600080fd5b5035919050565b600060208284031215611fae57600080fd5b81356115f0816123c0565b600060208284031215611fcb57600080fd5b81516115f0816123c0565b600060208284031215611fe857600080fd5b813567ffffffffffffffff811115611fff57600080fd5b8201601f8101841361201057600080fd5b6119fb84823560208401611d6c565b6000806040838503121561203257600080fd5b82359150611e5360208401611de2565b60008060006040848603121561205757600080fd5b83359250602084013567ffffffffffffffff8082111561207657600080fd5b818601915086601f83011261208a57600080fd5b81358181111561209957600080fd5b8760208260051b85010111156120ae57600080fd5b6020830194508093505050509250925092565b600081518084526120d98160208601602086016122d2565b601f01601f19169290920160200192915050565b6000845160206121008285838a016122d2565b8551918401916121138184848a016122d2565b8554920191600090600181811c908083168061213057607f831692505b85831081141561214e57634e487b7160e01b85526022600452602485fd5b8080156121625760018114612173576121a0565b60ff198516885283880195506121a0565b60008b81526020902060005b858110156121985781548a82015290840190880161217f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121e4908301846120c1565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156111175783518352928401929184019160010161220a565b6020815260006115f060208301846120c1565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6000821982111561228357612283612368565b500190565b6000826122975761229761237e565b500490565b60008160001904831182151516156122b6576122b6612368565b500290565b6000828210156122cd576122cd612368565b500390565b60005b838110156122ed5781810151838201526020016122d5565b838111156114755750506000910152565b600181811c9082168061231257607f821691505b6020821081141561233357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561234d5761234d612368565b5060010190565b6000826123635761236361237e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116a057600080fdfea2646970667358221220a913bcf2473990923c74f06b6688d2d3547d5718b0d749631431457ec9c8722d64736f6c63430008070033

Deployed Bytecode Sourcemap

62483:6079:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32203:615;;;;;;;;;;-1:-1:-1;32203:615:0;;;;;:::i;:::-;;:::i;:::-;;;8963:14:1;;8956:22;8938:41;;8926:2;8911:18;32203:615:0;;;;;;;;67938:73;;;;;;;;;;-1:-1:-1;67938:73:0;;;;;:::i;:::-;;:::i;:::-;;64085:659;;;;;;;;;;-1:-1:-1;64085:659:0;;;;;:::i;:::-;;:::i;37850:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39796:204::-;;;;;;;;;;-1:-1:-1;39796:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7624:32:1;;;7606:51;;7594:2;7579:18;39796:204:0;7460:203:1;39344:386:0;;;;;;;;;;-1:-1:-1;39344:386:0;;;;;:::i;:::-;;:::i;62724:30::-;;;;;;;;;;;;;;;;;;;9136:25:1;;;9124:2;9109:18;62724:30:0;8990:177:1;62650:33:0;;;;;;;;;;;;;;;;67299:94;;;;;;;;;;-1:-1:-1;67299:94:0;;;;;:::i;:::-;;:::i;31257:315::-;;;;;;;;;;;;63438:1;31523:12;31310:7;31507:13;:28;-1:-1:-1;;31507:46:0;;31257:315;49061:2800;;;;;;;;;;-1:-1:-1;49061:2800:0;;;;;:::i;:::-;;:::i;62930:94::-;;;;;;;;;;;;;;;;62895:30;;;;;;;;;;-1:-1:-1;62895:30:0;;;;;;;;;;;68392:167;;;:::i;40686:185::-;;;;;;;;;;-1:-1:-1;40686:185:0;;;;;:::i;:::-;;:::i;67162:80::-;;;;;;;;;;-1:-1:-1;67162:80:0;;;;;:::i;:::-;;:::i;67457:92::-;;;;;;;;;;-1:-1:-1;67457:92:0;;;;;:::i;:::-;;:::i;67583:98::-;;;;;;;;;;-1:-1:-1;67583:98:0;;;;;:::i;:::-;;:::i;62864:26::-;;;;;;;;;;-1:-1:-1;62864:26:0;;;;;;;;;;;62833;;;;;;;;;;-1:-1:-1;62833:26:0;;;;;;;;37639:144;;;;;;;;;;-1:-1:-1;37639:144:0;;;;;:::i;:::-;;:::i;62582:21::-;;;;;;;;;;;;;:::i;32882:224::-;;;;;;;;;;-1:-1:-1;32882:224:0;;;;;:::i;:::-;;:::i;16794:103::-;;;;;;;;;;;;;:::i;66697:106::-;;;;;;;;;;-1:-1:-1;66697:106:0;;;;;:::i;:::-;;:::i;65733:881::-;;;;;;;;;;-1:-1:-1;65733:881:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;66995:96::-;;;;;;;;;;-1:-1:-1;66995:96:0;;;;;:::i;:::-;;:::i;16146:87::-;;;;;;;;;;-1:-1:-1;16219:6:0;;-1:-1:-1;;;;;16219:6:0;16146:87;;38019:104;;;;;;;;;;;;;:::i;63491:547::-;;;;;;:::i;:::-;;:::i;40072:308::-;;;;;;;;;;-1:-1:-1;40072:308:0;;;;;:::i;:::-;;:::i;62795:33::-;;;;;;;;;;;;;;;;40942:399;;;;;;;;;;-1:-1:-1;40942:399:0;;;;;:::i;:::-;;:::i;64799:223::-;;;;;;;;;;-1:-1:-1;64799:223:0;;;;;:::i;:::-;;:::i;62759:31::-;;;;;;;;;;;;;;;;62608:37;;;;;;;;;;;;;:::i;65074:422::-;;;;;;;;;;-1:-1:-1;65074:422:0;;;;;:::i;:::-;;:::i;62688:31::-;;;;;;;;;;;;;;;;67736:122;;;;;;;;;;-1:-1:-1;67736:122:0;;;;;:::i;:::-;;:::i;65561:107::-;;;;;;;;;;-1:-1:-1;65561:107:0;;;;;:::i;:::-;;:::i;66854:92::-;;;;;;;;;;-1:-1:-1;66854:92:0;;;;;:::i;:::-;;:::i;40451:164::-;;;;;;;;;;-1:-1:-1;40451:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;40572:25:0;;;40548:4;40572:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40451:164;17052:201;;;;;;;;;;-1:-1:-1;17052:201:0;;;;;:::i;:::-;;:::i;68247:96::-;;;;;;;;;;-1:-1:-1;68247:96:0;;;;;:::i;:::-;;:::i;68086:90::-;;;;;;;;;;-1:-1:-1;68086:90:0;;;;;:::i;:::-;;:::i;32203:615::-;32288:4;-1:-1:-1;;;;;;;;;32588:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;32665:25:0;;;32588:102;:179;;;-1:-1:-1;;;;;;;;;;32742:25:0;;;32588:179;32568:199;32203:615;-1:-1:-1;;32203:615:0:o;67938:73::-;16032:13;:11;:13::i;:::-;67990:6:::1;:15:::0;;-1:-1:-1;;67990:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;67938:73::o;64085:659::-;10574:1;11172:7;;:19;;11164:63;;;;-1:-1:-1;;;11164:63:0;;;;;;;:::i;:::-;;;;;;;;;10574:1;11305:7;:18;64190:6:::1;::::0;::::1;;64189:7;64181:47;;;::::0;-1:-1:-1;;;64181:47:0;;12189:2:1;64181:47:0::1;::::0;::::1;12171:21:1::0;12228:2;12208:18;;;12201:30;12267:29;12247:18;;;12240:57;12314:18;;64181:47:0::1;11987:351:1::0;64181:47:0::1;64243:7;::::0;::::1;::::0;::::1;;;64235:49;;;::::0;-1:-1:-1;;;64235:49:0;;13267:2:1;64235:49:0::1;::::0;::::1;13249:21:1::0;13306:2;13286:18;;;13279:30;13345:31;13325:18;;;13318:59;13394:18;;64235:49:0::1;13065:353:1::0;64235:49:0::1;64299:84;64318:11;;64299:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;64331:10:0::1;::::0;64353:28:::1;::::0;-1:-1:-1;;64370:10:0::1;5843:2:1::0;5839:15;5835:53;64353:28:0::1;::::0;::::1;5823:66:1::0;64331:10:0;;-1:-1:-1;5905:12:1;;;-1:-1:-1;64353:28:0::1;;;;;;;;;;;;64343:39;;;;;;64299:18;:84::i;:::-;64291:124;;;::::0;-1:-1:-1;;;64291:124:0;;11125:2:1;64291:124:0::1;::::0;::::1;11107:21:1::0;11164:2;11144:18;;;11137:30;11203:29;11183:18;;;11176:57;11250:18;;64291:124:0::1;10923:351:1::0;64291:124:0::1;64477:14;::::0;64467:6;64430:34:::1;60244:10:::0;64430:13:::1;:34::i;:::-;:43;;;;:::i;:::-;:61;;64422:105;;;::::0;-1:-1:-1;;;64422:105:0;;10422:2:1;64422:105:0::1;::::0;::::1;10404:21:1::0;10461:2;10441:18;;;10434:30;10500:33;10480:18;;;10473:61;10551:18;;64422:105:0::1;10220:355:1::0;64422:105:0::1;64552:12;;64542:6;:22;;64534:63;;;::::0;-1:-1:-1;;;64534:63:0;;11481:2:1;64534:63:0::1;::::0;::::1;11463:21:1::0;11520:2;11500:18;;;11493:30;11559;11539:18;;;11532:58;11607:18;;64534:63:0::1;11279:352:1::0;64534:63:0::1;64638:8;;64628:6;64612:13;63438:1:::0;31523:12;31310:7;31507:13;:28;-1:-1:-1;;31507:46:0;;31257:315;64612:13:::1;:22;;;;:::i;:::-;:34;;64604:79;;;::::0;-1:-1:-1;;;64604:79:0;;12906:2:1;64604:79:0::1;::::0;::::1;12888:21:1::0;;;12925:18;;;12918:30;12984:34;12964:18;;;12957:62;13036:18;;64604:79:0::1;12704:356:1::0;64604:79:0::1;64694:38;60244:10:::0;64725:6:::1;64694:9;:38::i;:::-;-1:-1:-1::0;;10530:1:0;11484:7;:22;-1:-1:-1;64085:659:0:o;37850:100::-;37904:13;37937:5;37930:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37850:100;:::o;39796:204::-;39864:7;39889:16;39897:7;39889;:16::i;:::-;39884:64;;39914:34;;-1:-1:-1;;;39914:34:0;;;;;;;;;;;39884:64;-1:-1:-1;39968:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39968:24:0;;39796:204::o;39344:386::-;39417:13;39433:16;39441:7;39433;:16::i;:::-;39417:32;-1:-1:-1;60244:10:0;-1:-1:-1;;;;;39466:28:0;;;39462:175;;39514:44;39531:5;60244:10;40451:164;:::i;39514:44::-;39509:128;;39586:35;;-1:-1:-1;;;39586:35:0;;;;;;;;;;;39509:128;39649:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39649:29:0;-1:-1:-1;;;;;39649:29:0;;;;;;;;;39694:28;;39649:24;;39694:28;;;;;;;39406:324;39344:386;;:::o;67299:94::-;16032:13;:11;:13::i;:::-;67365:9:::1;:22:::0;67299:94::o;49061:2800::-;49195:27;49225;49244:7;49225:18;:27::i;:::-;49195:57;;49310:4;-1:-1:-1;;;;;49269:45:0;49285:19;-1:-1:-1;;;;;49269:45:0;;49265:86;;49323:28;;-1:-1:-1;;;49323:28:0;;;;;;;;;;;49265:86;49365:27;47791:21;;;47618:15;47833:4;47826:36;47915:4;47899:21;;48005:26;;60244:10;48758:30;;;-1:-1:-1;;;;;48456:26:0;;48737:19;;;48734:55;49544:174;;49631:43;49648:4;60244:10;40451:164;:::i;49631:43::-;49626:92;;49683:35;;-1:-1:-1;;;49683:35:0;;;;;;;;;;;49626:92;-1:-1:-1;;;;;49735:16:0;;49731:52;;49760:23;;-1:-1:-1;;;49760:23:0;;;;;;;;;;;49731:52;49932:15;49929:160;;;50072:1;50051:19;50044:30;49929:160;-1:-1:-1;;;;;50467:24:0;;;;;;;:18;:24;;;;;;50465:26;;-1:-1:-1;;50465:26:0;;;50536:22;;;;;;;;;50534:24;;-1:-1:-1;50534:24:0;;;37538:11;37514:22;37510:40;37497:62;-1:-1:-1;;;37497:62:0;50829:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;51123:46:0;;51119:626;;51227:1;51217:11;;51195:19;51350:30;;;:17;:30;;;;;;51346:384;;51488:13;;51473:11;:28;51469:242;;51635:30;;;;:17;:30;;;;;:52;;;51469:242;51176:569;51119:626;51792:7;51788:2;-1:-1:-1;;;;;51773:27:0;51782:4;-1:-1:-1;;;;;51773:27:0;;;;;;;;;;;49184:2677;;;49061:2800;;;:::o;68392:167::-;16032:13;:11;:13::i;:::-;10574:1:::1;11172:7;;:19;;11164:63;;;;-1:-1:-1::0;;;11164:63:0::1;;;;;;;:::i;:::-;10574:1;11305:7;:18:::0;68507:46:::2;::::0;68477:21:::2;::::0;60244:10;;68507:46;::::2;;;::::0;68477:21;;68507:46:::2;::::0;;;68477:21;60244:10;68507:46;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;10530:1:0::1;11484:7;:22:::0;68392:167::o;40686:185::-;40824:39;40841:4;40847:2;40851:7;40824:39;;;;;;;;;;;;:16;:39::i;:::-;40686:185;;;:::o;67162:80::-;16032:13;:11;:13::i;:::-;67221:4:::1;:15:::0;67162:80::o;67457:92::-;16032:13;:11;:13::i;:::-;67522:8:::1;:21:::0;67457:92::o;67583:98::-;16032:13;:11;:13::i;:::-;67654:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;67583:98:::0;:::o;37639:144::-;37703:7;37746:27;37765:7;37746:18;:27::i;62582:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32882:224::-;32946:7;-1:-1:-1;;;;;32970:19:0;;32966:60;;32998:28;;-1:-1:-1;;;32998:28:0;;;;;;;;;;;32966:60;-1:-1:-1;;;;;;33044:25:0;;;;;:18;:25;;;;;;27437:13;33044:54;;32882:224::o;16794:103::-;16032:13;:11;:13::i;:::-;16859:30:::1;16886:1;16859:18;:30::i;:::-;16794:103::o:0;66697:106::-;16032:13;:11;:13::i;:::-;66771:10:::1;:24:::0;66697:106::o;65733:881::-;65792:16;65846:19;65880:25;65920:22;65945:16;65955:5;65945:9;:16::i;:::-;65920:41;;65976:25;66018:14;66004:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66004:29:0;;65976:57;;66048:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66048:31:0;63438:1;66094:472;66143:14;66128:11;:29;66094:472;;66195:15;66208:1;66195:12;:15::i;:::-;66183:27;;66233:9;:16;;;66229:73;;;66274:8;;66229:73;66324:14;;-1:-1:-1;;;;;66324:28:0;;66320:111;;66397:14;;;-1:-1:-1;66320:111:0;66474:5;-1:-1:-1;;;;;66453:26:0;:17;-1:-1:-1;;;;;66453:26:0;;66449:102;;;66530:1;66504:8;66513:13;;;;;;66504:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;66449:102;66159:3;;66094:472;;;-1:-1:-1;66587:8:0;;65733:881;-1:-1:-1;;;;;;65733:881:0:o;66995:96::-;16032:13;:11;:13::i;:::-;67062:14:::1;:23:::0;66995:96::o;38019:104::-;38075:13;38108:7;38101:14;;;;;:::i;63491:547::-;10574:1;11172:7;;:19;;11164:63;;;;-1:-1:-1;;;11164:63:0;;;;;;;:::i;:::-;10574:1;11305:7;:18;63565:6:::1;::::0;::::1;;63564:7;63556:47;;;::::0;-1:-1:-1;;;63556:47:0;;12189:2:1;63556:47:0::1;::::0;::::1;12171:21:1::0;12228:2;12208:18;;;12201:30;12267:29;12247:18;;;12240:57;12314:18;;63556:47:0::1;11987:351:1::0;63556:47:0::1;63618:10;::::0;;;::::1;;;63610:49;;;::::0;-1:-1:-1;;;63610:49:0;;14740:2:1;63610:49:0::1;::::0;::::1;14722:21:1::0;14779:2;14759:18;;;14752:30;14818:28;14798:18;;;14791:56;14864:18;;63610:49:0::1;14538:350:1::0;63610:49:0::1;63684:12;;63674:6;:22;;63666:70;;;::::0;-1:-1:-1;;;63666:70:0;;13625:2:1;63666:70:0::1;::::0;::::1;13607:21:1::0;13664:2;13644:18;;;13637:30;13703:34;13683:18;;;13676:62;-1:-1:-1;;;13754:18:1;;;13747:33;13797:19;;63666:70:0::1;13423:399:1::0;63666:70:0::1;63777:9;;63767:6;63751:13;63438:1:::0;31523:12;31310:7;31507:13;:28;-1:-1:-1;;31507:46:0;;31257:315;63751:13:::1;:22;;;;:::i;:::-;:35;;63743:62;;;::::0;-1:-1:-1;;;63743:62:0;;10782:2:1;63743:62:0::1;::::0;::::1;10764:21:1::0;10821:2;10801:18;;;10794:30;-1:-1:-1;;;10840:18:1;;;10833:44;10894:18;;63743:62:0::1;10580:338:1::0;63743:62:0::1;63867:12;::::0;63857:6;63820:34:::1;60244:10:::0;64430:13:::1;:34::i;63820:::-;:43;;;;:::i;:::-;:59;;63812:103;;;::::0;-1:-1:-1;;;63812:103:0;;10422:2:1;63812:103:0::1;::::0;::::1;10404:21:1::0;10461:2;10441:18;;;10434:30;10500:33;10480:18;;;10473:61;10551:18;;63812:103:0::1;10220:355:1::0;63812:103:0::1;63950:6;63943:4;;:13;;;;:::i;:::-;63930:9;:26;;63922:61;;;::::0;-1:-1:-1;;;63922:61:0;;14389:2:1;63922:61:0::1;::::0;::::1;14371:21:1::0;14428:2;14408:18;;;14401:30;-1:-1:-1;;;14447:18:1;;;14440:52;14509:18;;63922:61:0::1;14187:346:1::0;63922:61:0::1;63994:38;60244:10:::0;64025:6:::1;63994:9;:38::i;:::-;-1:-1:-1::0;10530:1:0;11484:7;:22;63491:547::o;40072:308::-;-1:-1:-1;;;;;40171:31:0;;60244:10;40171:31;40167:61;;;40211:17;;-1:-1:-1;;;40211:17:0;;;;;;;;;;;40167:61;60244:10;40241:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;40241:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;40241:60:0;;;;;;;;;;40317:55;;8938:41:1;;;40241:49:0;;60244:10;40317:55;;8911:18:1;40317:55:0;;;;;;;40072:308;;:::o;40942:399::-;41109:31;41122:4;41128:2;41132:7;41109:12;:31::i;:::-;-1:-1:-1;;;;;41155:14:0;;;:19;41151:183;;41194:56;41225:4;41231:2;41235:7;41244:5;41194:30;:56::i;:::-;41189:145;;41278:40;;-1:-1:-1;;;41278:40:0;;;;;;;;;;;41189:145;40942:399;;;;:::o;64799:223::-;16032:13;:11;:13::i;:::-;10574:1:::1;11172:7;;:19;;11164:63;;;;-1:-1:-1::0;;;11164:63:0::1;;;;;;;:::i;:::-;10574:1;11305:7;:18:::0;64934:9:::2;::::0;64919:11;64903:13:::2;63438:1:::0;31523:12;31310:7;31507:13;:28;-1:-1:-1;;31507:46:0;;31257:315;64903:13:::2;:27;;;;:::i;:::-;:40;;64895:75;;;::::0;-1:-1:-1;;;64895:75:0;;11838:2:1;64895:75:0::2;::::0;::::2;11820:21:1::0;11877:2;11857:18;;;11850:30;-1:-1:-1;;;11896:18:1;;;11889:52;11958:18;;64895:75:0::2;11636:346:1::0;64895:75:0::2;64981:35;64991:11;65004;64981:9;:35::i;62608:37::-:0;;;;;;;:::i;65074:422::-;65172:13;65213:16;65221:7;65213;:16::i;:::-;65197:98;;;;-1:-1:-1;;;65197:98:0;;9598:2:1;65197:98:0;;;9580:21:1;9637:2;9617:18;;;9610:30;9676:34;9656:18;;;9649:62;-1:-1:-1;;;9727:18:1;;;9720:46;9783:19;;65197:98:0;9396:412:1;65197:98:0;65302:28;65333:10;:8;:10::i;:::-;65302:41;;65388:1;65363:14;65357:28;:32;:133;;;;;;;;;;;;;;;;;65425:14;65441:18;:7;:16;:18::i;:::-;65461:13;65408:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65357:133;65350:140;65074:422;-1:-1:-1;;;65074:422:0:o;67736:122::-;16032:13;:11;:13::i;:::-;67819:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;65561:107::-:0;65619:7;65642:20;65656:5;65642:13;:20::i;66854:92::-;16032:13;:11;:13::i;:::-;66919:12:::1;:21:::0;66854:92::o;17052:201::-;16032:13;:11;:13::i;:::-;-1:-1:-1;;;;;17141:22:0;::::1;17133:73;;;::::0;-1:-1:-1;;;17133:73:0;;10015:2:1;17133:73:0::1;::::0;::::1;9997:21:1::0;10054:2;10034:18;;;10027:30;10093:34;10073:18;;;10066:62;-1:-1:-1;;;10144:18:1;;;10137:36;10190:19;;17133:73:0::1;9813:402:1::0;17133:73:0::1;17217:28;17236:8;17217:18;:28::i;:::-;17052:201:::0;:::o;68247:96::-;16032:13;:11;:13::i;:::-;68316:10:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;68316:19:0;;::::1;::::0;;;::::1;::::0;;68247:96::o;68086:90::-;16032:13;:11;:13::i;:::-;68152:7:::1;:16:::0;;;::::1;;;;-1:-1:-1::0;;68152:16:0;;::::1;::::0;;;::::1;::::0;;68086:90::o;16311:132::-;16219:6;;-1:-1:-1;;;;;16219:6:0;60244:10;16375:23;16367:68;;;;-1:-1:-1;;;16367:68:0;;12545:2:1;16367:68:0;;;12527:21:1;;;12564:18;;;12557:30;12623:34;12603:18;;;12596:62;12675:18;;16367:68:0;12343:356:1;1256:190:0;1381:4;1434;1405:25;1418:5;1425:4;1405:12;:25::i;:::-;:33;;1256:190;-1:-1:-1;;;;1256:190:0:o;33188:176::-;-1:-1:-1;;;;;33277:25:0;33249:7;33277:25;;;:18;:25;;27574:2;33277:25;;;;;:49;;27437:13;33276:80;;33188:176::o;41953:104::-;42022:27;42032:2;42036:8;42022:27;;;;;;;;;;;;:9;:27::i;41596:273::-;41653:4;41709:7;63438:1;41690:26;;:66;;;;;41743:13;;41733:7;:23;41690:66;:152;;;;-1:-1:-1;;41794:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;41794:43:0;:48;;41596:273::o;34556:1129::-;34623:7;34658;;63438:1;34707:23;34703:915;;34760:13;;34753:4;:20;34749:869;;;34798:14;34815:23;;;:17;:23;;;;;;-1:-1:-1;;;34904:23:0;;34900:699;;35423:113;35430:11;35423:113;;-1:-1:-1;;;35501:6:0;35483:25;;;;:17;:25;;;;;;35423:113;;34900:699;34775:843;34749:869;35646:31;;-1:-1:-1;;;35646:31:0;;;;;;;;;;;17413:191;17506:6;;;-1:-1:-1;;;;;17523:17:0;;;-1:-1:-1;;;;;;17523:17:0;;;;;;;17556:40;;17506:6;;;17523:17;17506:6;;17556:40;;17487:16;;17556:40;17476:128;17413:191;:::o;36233:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36353:24:0;;;;:17;:24;;;;;;36334:44;;-1:-1:-1;;;;;;;;;;;;;35889:41:0;;;;28091:3;35975:32;;;35941:67;;-1:-1:-1;;;35941:67:0;-1:-1:-1;;;36038:23:0;;:28;;-1:-1:-1;;;36019:47:0;;;;28608:3;36106:27;;;;-1:-1:-1;;;36077:57:0;-1:-1:-1;35779:363:0;55812:716;55996:88;;-1:-1:-1;;;55996:88:0;;55975:4;;-1:-1:-1;;;;;55996:45:0;;;;;:88;;60244:10;;56063:4;;56069:7;;56078:5;;55996:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55996:88:0;;;;;;;;-1:-1:-1;;55996:88:0;;;;;;;;;;;;:::i;:::-;;;55992:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56279:13:0;;56275:235;;56325:40;;-1:-1:-1;;;56325:40:0;;;;;;;;;;;56275:235;56468:6;56462:13;56453:6;56449:2;56445:15;56438:38;55992:529;-1:-1:-1;;;;;;56155:64:0;-1:-1:-1;;;56155:64:0;;-1:-1:-1;55992:529:0;55812:716;;;;;;:::o;63236:102::-;63296:13;63325:7;63318:14;;;;;:::i;11951:723::-;12007:13;12228:10;12224:53;;-1:-1:-1;;12255:10:0;;;;;;;;;;;;-1:-1:-1;;;12255:10:0;;;;;11951:723::o;12224:53::-;12302:5;12287:12;12343:78;12350:9;;12343:78;;12376:8;;;;:::i;:::-;;-1:-1:-1;12399:10:0;;-1:-1:-1;12407:2:0;12399:10;;:::i;:::-;;;12343:78;;;12431:19;12463:6;12453:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12453:17:0;;12431:39;;12481:154;12488:10;;12481:154;;12515:11;12525:1;12515:11;;:::i;:::-;;-1:-1:-1;12584:10:0;12592:2;12584:5;:10;:::i;:::-;12571:24;;:2;:24;:::i;:::-;12558:39;;12541:6;12548;12541:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;12541:56:0;;;;;;;;-1:-1:-1;12612:11:0;12621:2;12612:11;;:::i;:::-;;;12481:154;;2123:296;2206:7;2249:4;2206:7;2264:118;2288:5;:12;2284:1;:16;2264:118;;;2337:33;2347:12;2361:5;2367:1;2361:8;;;;;;;;:::i;:::-;;;;;;;2337:9;:33::i;:::-;2322:48;-1:-1:-1;2302:3:0;;;;:::i;:::-;;;;2264:118;;;-1:-1:-1;2399:12:0;2123:296;-1:-1:-1;;;2123:296:0:o;42473:681::-;42596:19;42602:2;42606:8;42596:5;:19::i;:::-;-1:-1:-1;;;;;42657:14:0;;;:19;42653:483;;42697:11;42711:13;42759:14;;;42792:233;42823:62;42862:1;42866:2;42870:7;;;;;;42879:5;42823:30;:62::i;:::-;42818:167;;42921:40;;-1:-1:-1;;;42921:40:0;;;;;;;;;;;42818:167;43020:3;43012:5;:11;42792:233;;43107:3;43090:13;;:20;43086:34;;43112:8;;;43086:34;42678:458;;42473:681;;;:::o;8330:149::-;8393:7;8424:1;8420;:5;:51;;8555:13;8649:15;;;8685:4;8678:15;;;8732:4;8716:21;;8420:51;;;-1:-1:-1;8555:13:0;8649:15;;;8685:4;8678:15;8732:4;8716:21;;;8330:149::o;43427:1529::-;43492:20;43515:13;-1:-1:-1;;;;;43543:16:0;;43539:48;;43568:19;;-1:-1:-1;;;43568:19:0;;;;;;;;;;;43539:48;43602:13;43598:44;;43624:18;;-1:-1:-1;;;43624:18:0;;;;;;;;;;;43598:44;-1:-1:-1;;;;;44130:22:0;;;;;;:18;:22;;27574:2;44130:22;;:70;;44168:31;44156:44;;44130:70;;;37538:11;37514:22;37510:40;-1:-1:-1;39248:15:0;;39223:23;39219:45;37507:51;37497:62;44443:31;;;;:17;:31;;;;;:173;44461:12;44692:23;;;44730:101;44757:35;;44782:9;;;;;-1:-1:-1;;;;;44757:35:0;;;44774:1;;44757:35;;44774:1;;44757:35;44826:3;44816:7;:13;44730:101;;44847:13;:19;-1:-1:-1;40686:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:180::-;3215:6;3268:2;3256:9;3247:7;3243:23;3239:32;3236:52;;;3284:1;3281;3274:12;3236:52;-1:-1:-1;3307:23:1;;3156:180;-1:-1:-1;3156:180:1:o;3341:245::-;3399:6;3452:2;3440:9;3431:7;3427:23;3423:32;3420:52;;;3468:1;3465;3458:12;3420:52;3507:9;3494:23;3526:30;3550:5;3526:30;:::i;3591:249::-;3660:6;3713:2;3701:9;3692:7;3688:23;3684:32;3681:52;;;3729:1;3726;3719:12;3681:52;3761:9;3755:16;3780:30;3804:5;3780:30;:::i;3845:450::-;3914:6;3967:2;3955:9;3946:7;3942:23;3938:32;3935:52;;;3983:1;3980;3973:12;3935:52;4023:9;4010:23;4056:18;4048:6;4045:30;4042:50;;;4088:1;4085;4078:12;4042:50;4111:22;;4164:4;4156:13;;4152:27;-1:-1:-1;4142:55:1;;4193:1;4190;4183:12;4142:55;4216:73;4281:7;4276:2;4263:16;4258:2;4254;4250:11;4216:73;:::i;4485:254::-;4553:6;4561;4614:2;4602:9;4593:7;4589:23;4585:32;4582:52;;;4630:1;4627;4620:12;4582:52;4666:9;4653:23;4643:33;;4695:38;4729:2;4718:9;4714:18;4695:38;:::i;4744:683::-;4839:6;4847;4855;4908:2;4896:9;4887:7;4883:23;4879:32;4876:52;;;4924:1;4921;4914:12;4876:52;4960:9;4947:23;4937:33;;5021:2;5010:9;5006:18;4993:32;5044:18;5085:2;5077:6;5074:14;5071:34;;;5101:1;5098;5091:12;5071:34;5139:6;5128:9;5124:22;5114:32;;5184:7;5177:4;5173:2;5169:13;5165:27;5155:55;;5206:1;5203;5196:12;5155:55;5246:2;5233:16;5272:2;5264:6;5261:14;5258:34;;;5288:1;5285;5278:12;5258:34;5341:7;5336:2;5326:6;5323:1;5319:14;5315:2;5311:23;5307:32;5304:45;5301:65;;;5362:1;5359;5352:12;5301:65;5393:2;5389;5385:11;5375:21;;5415:6;5405:16;;;;;4744:683;;;;;:::o;5432:257::-;5473:3;5511:5;5505:12;5538:6;5533:3;5526:19;5554:63;5610:6;5603:4;5598:3;5594:14;5587:4;5580:5;5576:16;5554:63;:::i;:::-;5671:2;5650:15;-1:-1:-1;;5646:29:1;5637:39;;;;5678:4;5633:50;;5432:257;-1:-1:-1;;5432:257:1:o;5928:1527::-;6152:3;6190:6;6184:13;6216:4;6229:51;6273:6;6268:3;6263:2;6255:6;6251:15;6229:51;:::i;:::-;6343:13;;6302:16;;;;6365:55;6343:13;6302:16;6387:15;;;6365:55;:::i;:::-;6509:13;;6442:20;;;6482:1;;6569;6591:18;;;;6644;;;;6671:93;;6749:4;6739:8;6735:19;6723:31;;6671:93;6812:2;6802:8;6799:16;6779:18;6776:40;6773:167;;;-1:-1:-1;;;6839:33:1;;6895:4;6892:1;6885:15;6925:4;6846:3;6913:17;6773:167;6956:18;6983:110;;;;7107:1;7102:328;;;;6949:481;;6983:110;-1:-1:-1;;7018:24:1;;7004:39;;7063:20;;;;-1:-1:-1;6983:110:1;;7102:328;15148:1;15141:14;;;15185:4;15172:18;;7197:1;7211:169;7225:8;7222:1;7219:15;7211:169;;;7307:14;;7292:13;;;7285:37;7350:16;;;;7242:10;;7211:169;;;7215:3;;7411:8;7404:5;7400:20;7393:27;;6949:481;-1:-1:-1;7446:3:1;;5928:1527;-1:-1:-1;;;;;;;;;;;5928:1527:1:o;7668:488::-;-1:-1:-1;;;;;7937:15:1;;;7919:34;;7989:15;;7984:2;7969:18;;7962:43;8036:2;8021:18;;8014:34;;;8084:3;8079:2;8064:18;;8057:31;;;7862:4;;8105:45;;8130:19;;8122:6;8105:45;:::i;:::-;8097:53;7668:488;-1:-1:-1;;;;;;7668:488:1:o;8161:632::-;8332:2;8384:21;;;8454:13;;8357:18;;;8476:22;;;8303:4;;8332:2;8555:15;;;;8529:2;8514:18;;;8303:4;8598:169;8612:6;8609:1;8606:13;8598:169;;;8673:13;;8661:26;;8742:15;;;;8707:12;;;;8634:1;8627:9;8598:169;;9172:219;9321:2;9310:9;9303:21;9284:4;9341:44;9381:2;9370:9;9366:18;9358:6;9341:44;:::i;13827:355::-;14029:2;14011:21;;;14068:2;14048:18;;;14041:30;14107:33;14102:2;14087:18;;14080:61;14173:2;14158:18;;13827:355::o;15201:128::-;15241:3;15272:1;15268:6;15265:1;15262:13;15259:39;;;15278:18;;:::i;:::-;-1:-1:-1;15314:9:1;;15201:128::o;15334:120::-;15374:1;15400;15390:35;;15405:18;;:::i;:::-;-1:-1:-1;15439:9:1;;15334:120::o;15459:168::-;15499:7;15565:1;15561;15557:6;15553:14;15550:1;15547:21;15542:1;15535:9;15528:17;15524:45;15521:71;;;15572:18;;:::i;:::-;-1:-1:-1;15612:9:1;;15459:168::o;15632:125::-;15672:4;15700:1;15697;15694:8;15691:34;;;15705:18;;:::i;:::-;-1:-1:-1;15742:9:1;;15632:125::o;15762:258::-;15834:1;15844:113;15858:6;15855:1;15852:13;15844:113;;;15934:11;;;15928:18;15915:11;;;15908:39;15880:2;15873:10;15844:113;;;15975:6;15972:1;15969:13;15966:48;;;-1:-1:-1;;16010:1:1;15992:16;;15985:27;15762:258::o;16025:380::-;16104:1;16100:12;;;;16147;;;16168:61;;16222:4;16214:6;16210:17;16200:27;;16168:61;16275:2;16267:6;16264:14;16244:18;16241:38;16238:161;;;16321:10;16316:3;16312:20;16309:1;16302:31;16356:4;16353:1;16346:15;16384:4;16381:1;16374:15;16238:161;;16025:380;;;:::o;16410:135::-;16449:3;-1:-1:-1;;16470:17:1;;16467:43;;;16490:18;;:::i;:::-;-1:-1:-1;16537:1:1;16526:13;;16410:135::o;16550:112::-;16582:1;16608;16598:35;;16613:18;;:::i;:::-;-1:-1:-1;16647:9:1;;16550:112::o;16667:127::-;16728:10;16723:3;16719:20;16716:1;16709:31;16759:4;16756:1;16749:15;16783:4;16780:1;16773:15;16799:127;16860:10;16855:3;16851:20;16848:1;16841:31;16891:4;16888:1;16881:15;16915:4;16912:1;16905:15;16931:127;16992:10;16987:3;16983:20;16980:1;16973:31;17023:4;17020:1;17013:15;17047:4;17044:1;17037:15;17063:127;17124:10;17119:3;17115:20;17112:1;17105:31;17155:4;17152:1;17145:15;17179:4;17176:1;17169:15;17195:131;-1:-1:-1;;;;;;17269:32:1;;17259:43;;17249:71;;17316:1;17313;17306:12

Swarm Source

ipfs://a913bcf2473990923c74f06b6688d2d3547d5718b0d749631431457ec9c8722d
Loading...
Loading
Loading...
Loading
[ 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.