ETH Price: $3,444.43 (+7.90%)
Gas: 14 Gwei

Token

Tiny Lands (TL)
 

Overview

Max Total Supply

3,801 TL

Holders

1,729

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 TL
0xdfa1afb26752fc0da36001d4b22c71396f209d03
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:
TinyLands

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

// 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/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: 5050.sol


pragma solidity ^0.8.0;





contract TinyLands is ERC721A, Ownable, ReentrancyGuard {
    // limits
    uint256 public maxPerTransaction = 10;
    uint256 public maxPerWallet = 50;
    uint256 public maxTotalSupply = 5555;
    uint256 public freeMintsAvailable = 3333;
    uint256 public freeMintsPerWallet = 2;

    // sale states
    bool public isPublicLive = false;

    // price
    uint256 public mintPrice = 0.005 ether;

    // whitelist config
    bytes32 private merkleTreeRoot;

    // metadata
    string public baseURI;

    // config
    mapping(address => uint256) public mintsPerWallet;
    address private withdrawAddress = address(0);

    constructor() ERC721A("Tiny Lands", "TL") {
        baseURI = "https://api.tinylands.xyz/api/tinyland?id=";
    }

    function mintPublic(uint256 _amount) external payable nonReentrant {
        require(isPublicLive, "Sale not live");
        require(_amount > 0, "You must mint at least one");
        require(totalSupply() + _amount <= maxTotalSupply, "Exceeds total supply");
        require(_amount <= maxPerTransaction, "Exceeds max per transaction");

        uint256 userMints = mintsPerWallet[_msgSender()];
        require(userMints + _amount <= maxPerWallet, "Exceeds max per wallet");
        uint256 pricedAmount = _amount;

        if(freeMintsAvailable > 0 && userMints < 2) {
            pricedAmount -= (2 - userMints);
            freeMintsAvailable -= (2 - userMints);
        }

        require(mintPrice * pricedAmount <= msg.value, "Not enough ETH sent for selected amount");

        mintsPerWallet[_msgSender()] = mintsPerWallet[_msgSender()] + _amount;

        payable(owner()).transfer(msg.value);
        _safeMint(_msgSender(), _amount);
    }

    function whitelistMint(uint256 _amount, address _to) external onlyOwner {
        require(isPublicLive, "Sale not live");
        require(_amount > 0, "You must mint at least one");
        require(totalSupply() + _amount <= maxTotalSupply, "Exceeds total supply");
        require(_amount <= maxPerTransaction, "Exceeds max per transaction");

        uint256 userMints = mintsPerWallet[_to];
        require(userMints + _amount <= maxPerWallet, "Exceeds max per wallet");
        mintsPerWallet[_to] = mintsPerWallet[_to] + _amount;
        freeMintsAvailable -= _amount;

        _safeMint(_to, _amount);
    }


    function flipPublicSaleState() external onlyOwner {
        isPublicLive = !isPublicLive;
    }


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

    function withdraw() external onlyOwner {
        require(withdrawAddress != address(0), "No withdraw address");
        payable(withdrawAddress).transfer(address(this).balance);
    }

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

    function setWithdrawAddress(address _withdrawAddress) external onlyOwner {
        withdrawAddress = _withdrawAddress;
    }
}

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":[{"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintsPerWallet","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":"isPublicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_withdrawAddress","type":"address"}],"name":"setWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a80556032600b556115b3600c55610d05600d556002600e556000600f60006101000a81548160ff0219169083151502179055506611c37937e080006010556000601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200009357600080fd5b506040518060400160405280600a81526020017f54696e79204c616e6473000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f544c0000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001189291906200027d565b508060039080519060200190620001319291906200027d565b5062000142620001aa60201b60201c565b60008190555050506200016a6200015e620001af60201b60201c565b620001b760201b60201c565b60016009819055506040518060600160405280602a81526020016200363c602a913960129080519060200190620001a39291906200027d565b5062000392565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028b906200032d565b90600052602060002090601f016020900481019282620002af5760008555620002fb565b82601f10620002ca57805160ff1916838001178555620002fb565b82800160010185558215620002fb579182015b82811115620002fa578251825591602001919060010190620002dd565b5b5090506200030a91906200030e565b5090565b5b80821115620003295760008160009055506001016200030f565b5090565b600060028204905060018216806200034657607f821691505b602082108114156200035d576200035c62000363565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61329a80620003a26000396000f3fe6080604052600436106101e35760003560e01c80636545d61911610102578063a10866ef11610095578063c87b56dd11610064578063c87b56dd146106aa578063e985e9c5146106e7578063efd0cbf914610724578063f2fde38b14610740576101e3565b8063a10866ef14610616578063a1165f5d1461062d578063a22cb46514610658578063b88d4fde14610681576101e3565b806370a08231116100d157806370a082311461056c578063715018a6146105a95780638da5cb5b146105c057806395d89b41146105eb576101e3565b80636545d619146104c25780636817c76c146104eb5780636c0360eb146105165780636e9ac4b114610541576101e3565b80633ccfd60b1161017a5780634d0df5fc116101495780634d0df5fc146103f457806355f804b3146104315780635e5f3ce41461045a5780636352211e14610485576101e3565b80633ccfd60b1461035e57806342842e0e14610375578063453c23101461039e5780634b980d67146103c9576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632ab4d0521461030a5780633ab1a49414610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612774565b610769565b60405161021c9190612b25565b60405180910390f35b34801561023157600080fd5b5061023a6107fb565b6040516102479190612b40565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612807565b61088d565b6040516102849190612abe565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612738565b610909565b005b3480156102c257600080fd5b506102cb610a4a565b6040516102d89190612ca2565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612632565b610a61565b005b34801561031657600080fd5b5061031f610d86565b60405161032c9190612ca2565b60405180910390f35b34801561034157600080fd5b5061035c600480360381019061035791906125cd565b610d8c565b005b34801561036a57600080fd5b50610373610dd8565b005b34801561038157600080fd5b5061039c60048036038101906103979190612632565b610edd565b005b3480156103aa57600080fd5b506103b3610efd565b6040516103c09190612ca2565b60405180910390f35b3480156103d557600080fd5b506103de610f03565b6040516103eb9190612ca2565b60405180910390f35b34801561040057600080fd5b5061041b600480360381019061041691906125cd565b610f09565b6040516104289190612ca2565b60405180910390f35b34801561043d57600080fd5b50610458600480360381019061045391906127c6565b610f21565b005b34801561046657600080fd5b5061046f610f43565b60405161047c9190612b25565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190612807565b610f56565b6040516104b99190612abe565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e49190612830565b610f68565b005b3480156104f757600080fd5b506105006111e8565b60405161050d9190612ca2565b60405180910390f35b34801561052257600080fd5b5061052b6111ee565b6040516105389190612b40565b60405180910390f35b34801561054d57600080fd5b5061055661127c565b6040516105639190612ca2565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e91906125cd565b611282565b6040516105a09190612ca2565b60405180910390f35b3480156105b557600080fd5b506105be61133b565b005b3480156105cc57600080fd5b506105d561134f565b6040516105e29190612abe565b60405180910390f35b3480156105f757600080fd5b50610600611379565b60405161060d9190612b40565b60405180910390f35b34801561062257600080fd5b5061062b61140b565b005b34801561063957600080fd5b5061064261143f565b60405161064f9190612ca2565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a91906126fc565b611445565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612681565b6115bd565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190612807565b611630565b6040516106de9190612b40565b60405180910390f35b3480156106f357600080fd5b5061070e600480360381019061070991906125f6565b6116cf565b60405161071b9190612b25565b60405180910390f35b61073e60048036038101906107399190612807565b611763565b005b34801561074c57600080fd5b50610767600480360381019061076291906125cd565b611b2e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461080a90612f21565b80601f016020809104026020016040519081016040528092919081815260200182805461083690612f21565b80156108835780601f1061085857610100808354040283529160200191610883565b820191906000526020600020905b81548152906001019060200180831161086657829003601f168201915b5050505050905090565b600061089882611bb2565b6108ce576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091482610f56565b90508073ffffffffffffffffffffffffffffffffffffffff16610935611c11565b73ffffffffffffffffffffffffffffffffffffffff1614610998576109618161095c611c11565b6116cf565b610997576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a54611c19565b6001546000540303905090565b6000610a6c82611c1e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610adf84611cec565b91509150610af58187610af0611c11565b611d0e565b610b4157610b0a86610b05611c11565b6116cf565b610b40576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ba8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb58686866001611d52565b8015610bc057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8e85610c6a888887611d58565b7c020000000000000000000000000000000000000000000000000000000017611d80565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d16576000600185019050600060046000838152602001908152602001600020541415610d14576000548114610d13578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d7e8686866001611dab565b505050505050565b600c5481565b610d94611db1565b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610de0611db1565b600073ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990612b82565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610eda573d6000803e3d6000fd5b50565b610ef8838383604051806020016040528060008152506115bd565b505050565b600b5481565b600a5481565b60136020528060005260406000206000915090505481565b610f29611db1565b8060129080519060200190610f3f9291906123f1565b5050565b600f60009054906101000a900460ff1681565b6000610f6182611c1e565b9050919050565b610f70611db1565b600f60009054906101000a900460ff16610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690612be2565b60405180910390fd5b60008211611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990612bc2565b60405180910390fd5b600c548261100e610a4a565b6110189190612d87565b1115611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105090612ba2565b60405180910390fd5b600a5482111561109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590612c42565b60405180910390fd5b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600b5483826110f19190612d87565b1115611132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112990612c62565b60405180910390fd5b82601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461117d9190612d87565b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082600d60008282546111d29190612e37565b925050819055506111e38284611e2f565b505050565b60105481565b601280546111fb90612f21565b80601f016020809104026020016040519081016040528092919081815260200182805461122790612f21565b80156112745780601f1061124957610100808354040283529160200191611274565b820191906000526020600020905b81548152906001019060200180831161125757829003601f168201915b505050505081565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ea576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611343611db1565b61134d6000611e4d565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461138890612f21565b80601f01602080910402602001604051908101604052809291908181526020018280546113b490612f21565b80156114015780601f106113d657610100808354040283529160200191611401565b820191906000526020600020905b8154815290600101906020018083116113e457829003601f168201915b5050505050905090565b611413611db1565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600d5481565b61144d611c11565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114bf611c11565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661156c611c11565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115b19190612b25565b60405180910390a35050565b6115c8848484610a61565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461162a576115f384848484611f13565b611629576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061163b82611bb2565b611671576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061167b612073565b905060008151141561169c57604051806020016040528060008152506116c7565b806116a684612105565b6040516020016116b7929190612a9a565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600260095414156117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a090612c82565b60405180910390fd5b6002600981905550600f60009054906101000a900460ff16611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790612be2565b60405180910390fd5b60008111611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90612bc2565b60405180910390fd5b600c548161184f610a4a565b6118599190612d87565b111561189a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189190612ba2565b60405180910390fd5b600a548111156118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690612c42565b60405180910390fd5b6000601360006118ed61215f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600b5482826119399190612d87565b111561197a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197190612c62565b60405180910390fd5b60008290506000600d541180156119915750600282105b156119d6578160026119a39190612e37565b816119ae9190612e37565b90508160026119bd9190612e37565b600d60008282546119ce9190612e37565b925050819055505b34816010546119e59190612ddd565b1115611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d90612c22565b60405180910390fd5b8260136000611a3361215f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a789190612d87565b60136000611a8461215f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611aca61134f565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611b0f573d6000803e3d6000fd5b50611b21611b1b61215f565b84611e2f565b5050600160098190555050565b611b36611db1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90612b62565b60405180910390fd5b611baf81611e4d565b50565b600081611bbd611c19565b11158015611bcc575060005482105b8015611c0a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611c2d611c19565b11611cb557600054811015611cb45760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611cb2575b6000811415611ca8576004600083600190039350838152602001908152602001600020549050611c7d565b8092505050611ce7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d6f868684612167565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611db961215f565b73ffffffffffffffffffffffffffffffffffffffff16611dd761134f565b73ffffffffffffffffffffffffffffffffffffffff1614611e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2490612c02565b60405180910390fd5b565b611e49828260405180602001604052806000815250612170565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f39611c11565b8786866040518563ffffffff1660e01b8152600401611f5b9493929190612ad9565b602060405180830381600087803b158015611f7557600080fd5b505af1925050508015611fa657506040513d601f19601f82011682018060405250810190611fa3919061279d565b60015b612020573d8060008114611fd6576040519150601f19603f3d011682016040523d82523d6000602084013e611fdb565b606091505b50600081511415612018576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606012805461208290612f21565b80601f01602080910402602001604051908101604052809291908181526020018280546120ae90612f21565b80156120fb5780601f106120d0576101008083540402835291602001916120fb565b820191906000526020600020905b8154815290600101906020018083116120de57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561214b57600183039250600a81066030018353600a8104905061212b565b508181036020830392508083525050919050565b600033905090565b60009392505050565b61217a838361220d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461220857600080549050600083820390505b6121ba6000868380600101945086611f13565b6121f0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121a757816000541461220557600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561227a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156122b5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122c26000848385611d52565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123398361232a6000866000611d58565b612333856123e1565b17611d80565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061235d578060008190555050506123dc6000848385611dab565b505050565b60006001821460e11b9050919050565b8280546123fd90612f21565b90600052602060002090601f01602090048101928261241f5760008555612466565b82601f1061243857805160ff1916838001178555612466565b82800160010185558215612466579182015b8281111561246557825182559160200191906001019061244a565b5b5090506124739190612477565b5090565b5b80821115612490576000816000905550600101612478565b5090565b60006124a76124a284612ce2565b612cbd565b9050828152602081018484840111156124bf57600080fd5b6124ca848285612edf565b509392505050565b60006124e56124e084612d13565b612cbd565b9050828152602081018484840111156124fd57600080fd5b612508848285612edf565b509392505050565b60008135905061251f81613208565b92915050565b6000813590506125348161321f565b92915050565b60008135905061254981613236565b92915050565b60008151905061255e81613236565b92915050565b600082601f83011261257557600080fd5b8135612585848260208601612494565b91505092915050565b600082601f83011261259f57600080fd5b81356125af8482602086016124d2565b91505092915050565b6000813590506125c78161324d565b92915050565b6000602082840312156125df57600080fd5b60006125ed84828501612510565b91505092915050565b6000806040838503121561260957600080fd5b600061261785828601612510565b925050602061262885828601612510565b9150509250929050565b60008060006060848603121561264757600080fd5b600061265586828701612510565b935050602061266686828701612510565b9250506040612677868287016125b8565b9150509250925092565b6000806000806080858703121561269757600080fd5b60006126a587828801612510565b94505060206126b687828801612510565b93505060406126c7878288016125b8565b925050606085013567ffffffffffffffff8111156126e457600080fd5b6126f087828801612564565b91505092959194509250565b6000806040838503121561270f57600080fd5b600061271d85828601612510565b925050602061272e85828601612525565b9150509250929050565b6000806040838503121561274b57600080fd5b600061275985828601612510565b925050602061276a858286016125b8565b9150509250929050565b60006020828403121561278657600080fd5b60006127948482850161253a565b91505092915050565b6000602082840312156127af57600080fd5b60006127bd8482850161254f565b91505092915050565b6000602082840312156127d857600080fd5b600082013567ffffffffffffffff8111156127f257600080fd5b6127fe8482850161258e565b91505092915050565b60006020828403121561281957600080fd5b6000612827848285016125b8565b91505092915050565b6000806040838503121561284357600080fd5b6000612851858286016125b8565b925050602061286285828601612510565b9150509250929050565b61287581612e6b565b82525050565b61288481612e7d565b82525050565b600061289582612d44565b61289f8185612d5a565b93506128af818560208601612eee565b6128b881613011565b840191505092915050565b60006128ce82612d4f565b6128d88185612d6b565b93506128e8818560208601612eee565b6128f181613011565b840191505092915050565b600061290782612d4f565b6129118185612d7c565b9350612921818560208601612eee565b80840191505092915050565b600061293a602683612d6b565b915061294582613022565b604082019050919050565b600061295d601383612d6b565b915061296882613071565b602082019050919050565b6000612980601483612d6b565b915061298b8261309a565b602082019050919050565b60006129a3601a83612d6b565b91506129ae826130c3565b602082019050919050565b60006129c6600d83612d6b565b91506129d1826130ec565b602082019050919050565b60006129e9602083612d6b565b91506129f482613115565b602082019050919050565b6000612a0c602783612d6b565b9150612a178261313e565b604082019050919050565b6000612a2f601b83612d6b565b9150612a3a8261318d565b602082019050919050565b6000612a52601683612d6b565b9150612a5d826131b6565b602082019050919050565b6000612a75601f83612d6b565b9150612a80826131df565b602082019050919050565b612a9481612ed5565b82525050565b6000612aa682856128fc565b9150612ab282846128fc565b91508190509392505050565b6000602082019050612ad3600083018461286c565b92915050565b6000608082019050612aee600083018761286c565b612afb602083018661286c565b612b086040830185612a8b565b8181036060830152612b1a818461288a565b905095945050505050565b6000602082019050612b3a600083018461287b565b92915050565b60006020820190508181036000830152612b5a81846128c3565b905092915050565b60006020820190508181036000830152612b7b8161292d565b9050919050565b60006020820190508181036000830152612b9b81612950565b9050919050565b60006020820190508181036000830152612bbb81612973565b9050919050565b60006020820190508181036000830152612bdb81612996565b9050919050565b60006020820190508181036000830152612bfb816129b9565b9050919050565b60006020820190508181036000830152612c1b816129dc565b9050919050565b60006020820190508181036000830152612c3b816129ff565b9050919050565b60006020820190508181036000830152612c5b81612a22565b9050919050565b60006020820190508181036000830152612c7b81612a45565b9050919050565b60006020820190508181036000830152612c9b81612a68565b9050919050565b6000602082019050612cb76000830184612a8b565b92915050565b6000612cc7612cd8565b9050612cd38282612f53565b919050565b6000604051905090565b600067ffffffffffffffff821115612cfd57612cfc612fe2565b5b612d0682613011565b9050602081019050919050565b600067ffffffffffffffff821115612d2e57612d2d612fe2565b5b612d3782613011565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d9282612ed5565b9150612d9d83612ed5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612dd257612dd1612f84565b5b828201905092915050565b6000612de882612ed5565b9150612df383612ed5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e2c57612e2b612f84565b5b828202905092915050565b6000612e4282612ed5565b9150612e4d83612ed5565b925082821015612e6057612e5f612f84565b5b828203905092915050565b6000612e7682612eb5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f0c578082015181840152602081019050612ef1565b83811115612f1b576000848401525b50505050565b60006002820490506001821680612f3957607f821691505b60208210811415612f4d57612f4c612fb3565b5b50919050565b612f5c82613011565b810181811067ffffffffffffffff82111715612f7b57612f7a612fe2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f207769746864726177206164647265737300000000000000000000000000600082015250565b7f4578636565647320746f74616c20737570706c79000000000000000000000000600082015250565b7f596f75206d757374206d696e74206174206c65617374206f6e65000000000000600082015250565b7f53616c65206e6f74206c69766500000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f756768204554482073656e7420666f722073656c656374656460008201527f20616d6f756e7400000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61321181612e6b565b811461321c57600080fd5b50565b61322881612e7d565b811461323357600080fd5b50565b61323f81612e89565b811461324a57600080fd5b50565b61325681612ed5565b811461326157600080fd5b5056fea2646970667358221220f175ae996ee24ef80ee5304b91178a5df142f82415f569978dae6a26671b75d464736f6c6343000804003368747470733a2f2f6170692e74696e796c616e64732e78797a2f6170692f74696e796c616e643f69643d

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636545d61911610102578063a10866ef11610095578063c87b56dd11610064578063c87b56dd146106aa578063e985e9c5146106e7578063efd0cbf914610724578063f2fde38b14610740576101e3565b8063a10866ef14610616578063a1165f5d1461062d578063a22cb46514610658578063b88d4fde14610681576101e3565b806370a08231116100d157806370a082311461056c578063715018a6146105a95780638da5cb5b146105c057806395d89b41146105eb576101e3565b80636545d619146104c25780636817c76c146104eb5780636c0360eb146105165780636e9ac4b114610541576101e3565b80633ccfd60b1161017a5780634d0df5fc116101495780634d0df5fc146103f457806355f804b3146104315780635e5f3ce41461045a5780636352211e14610485576101e3565b80633ccfd60b1461035e57806342842e0e14610375578063453c23101461039e5780634b980d67146103c9576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632ab4d0521461030a5780633ab1a49414610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612774565b610769565b60405161021c9190612b25565b60405180910390f35b34801561023157600080fd5b5061023a6107fb565b6040516102479190612b40565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612807565b61088d565b6040516102849190612abe565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612738565b610909565b005b3480156102c257600080fd5b506102cb610a4a565b6040516102d89190612ca2565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612632565b610a61565b005b34801561031657600080fd5b5061031f610d86565b60405161032c9190612ca2565b60405180910390f35b34801561034157600080fd5b5061035c600480360381019061035791906125cd565b610d8c565b005b34801561036a57600080fd5b50610373610dd8565b005b34801561038157600080fd5b5061039c60048036038101906103979190612632565b610edd565b005b3480156103aa57600080fd5b506103b3610efd565b6040516103c09190612ca2565b60405180910390f35b3480156103d557600080fd5b506103de610f03565b6040516103eb9190612ca2565b60405180910390f35b34801561040057600080fd5b5061041b600480360381019061041691906125cd565b610f09565b6040516104289190612ca2565b60405180910390f35b34801561043d57600080fd5b50610458600480360381019061045391906127c6565b610f21565b005b34801561046657600080fd5b5061046f610f43565b60405161047c9190612b25565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190612807565b610f56565b6040516104b99190612abe565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e49190612830565b610f68565b005b3480156104f757600080fd5b506105006111e8565b60405161050d9190612ca2565b60405180910390f35b34801561052257600080fd5b5061052b6111ee565b6040516105389190612b40565b60405180910390f35b34801561054d57600080fd5b5061055661127c565b6040516105639190612ca2565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e91906125cd565b611282565b6040516105a09190612ca2565b60405180910390f35b3480156105b557600080fd5b506105be61133b565b005b3480156105cc57600080fd5b506105d561134f565b6040516105e29190612abe565b60405180910390f35b3480156105f757600080fd5b50610600611379565b60405161060d9190612b40565b60405180910390f35b34801561062257600080fd5b5061062b61140b565b005b34801561063957600080fd5b5061064261143f565b60405161064f9190612ca2565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a91906126fc565b611445565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612681565b6115bd565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190612807565b611630565b6040516106de9190612b40565b60405180910390f35b3480156106f357600080fd5b5061070e600480360381019061070991906125f6565b6116cf565b60405161071b9190612b25565b60405180910390f35b61073e60048036038101906107399190612807565b611763565b005b34801561074c57600080fd5b50610767600480360381019061076291906125cd565b611b2e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461080a90612f21565b80601f016020809104026020016040519081016040528092919081815260200182805461083690612f21565b80156108835780601f1061085857610100808354040283529160200191610883565b820191906000526020600020905b81548152906001019060200180831161086657829003601f168201915b5050505050905090565b600061089882611bb2565b6108ce576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091482610f56565b90508073ffffffffffffffffffffffffffffffffffffffff16610935611c11565b73ffffffffffffffffffffffffffffffffffffffff1614610998576109618161095c611c11565b6116cf565b610997576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a54611c19565b6001546000540303905090565b6000610a6c82611c1e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610adf84611cec565b91509150610af58187610af0611c11565b611d0e565b610b4157610b0a86610b05611c11565b6116cf565b610b40576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ba8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb58686866001611d52565b8015610bc057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8e85610c6a888887611d58565b7c020000000000000000000000000000000000000000000000000000000017611d80565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d16576000600185019050600060046000838152602001908152602001600020541415610d14576000548114610d13578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d7e8686866001611dab565b505050505050565b600c5481565b610d94611db1565b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610de0611db1565b600073ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990612b82565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610eda573d6000803e3d6000fd5b50565b610ef8838383604051806020016040528060008152506115bd565b505050565b600b5481565b600a5481565b60136020528060005260406000206000915090505481565b610f29611db1565b8060129080519060200190610f3f9291906123f1565b5050565b600f60009054906101000a900460ff1681565b6000610f6182611c1e565b9050919050565b610f70611db1565b600f60009054906101000a900460ff16610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690612be2565b60405180910390fd5b60008211611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990612bc2565b60405180910390fd5b600c548261100e610a4a565b6110189190612d87565b1115611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105090612ba2565b60405180910390fd5b600a5482111561109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590612c42565b60405180910390fd5b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600b5483826110f19190612d87565b1115611132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112990612c62565b60405180910390fd5b82601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461117d9190612d87565b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082600d60008282546111d29190612e37565b925050819055506111e38284611e2f565b505050565b60105481565b601280546111fb90612f21565b80601f016020809104026020016040519081016040528092919081815260200182805461122790612f21565b80156112745780601f1061124957610100808354040283529160200191611274565b820191906000526020600020905b81548152906001019060200180831161125757829003601f168201915b505050505081565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ea576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611343611db1565b61134d6000611e4d565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461138890612f21565b80601f01602080910402602001604051908101604052809291908181526020018280546113b490612f21565b80156114015780601f106113d657610100808354040283529160200191611401565b820191906000526020600020905b8154815290600101906020018083116113e457829003601f168201915b5050505050905090565b611413611db1565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600d5481565b61144d611c11565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114bf611c11565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661156c611c11565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115b19190612b25565b60405180910390a35050565b6115c8848484610a61565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461162a576115f384848484611f13565b611629576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061163b82611bb2565b611671576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061167b612073565b905060008151141561169c57604051806020016040528060008152506116c7565b806116a684612105565b6040516020016116b7929190612a9a565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600260095414156117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a090612c82565b60405180910390fd5b6002600981905550600f60009054906101000a900460ff16611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790612be2565b60405180910390fd5b60008111611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90612bc2565b60405180910390fd5b600c548161184f610a4a565b6118599190612d87565b111561189a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189190612ba2565b60405180910390fd5b600a548111156118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690612c42565b60405180910390fd5b6000601360006118ed61215f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600b5482826119399190612d87565b111561197a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197190612c62565b60405180910390fd5b60008290506000600d541180156119915750600282105b156119d6578160026119a39190612e37565b816119ae9190612e37565b90508160026119bd9190612e37565b600d60008282546119ce9190612e37565b925050819055505b34816010546119e59190612ddd565b1115611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d90612c22565b60405180910390fd5b8260136000611a3361215f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a789190612d87565b60136000611a8461215f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611aca61134f565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611b0f573d6000803e3d6000fd5b50611b21611b1b61215f565b84611e2f565b5050600160098190555050565b611b36611db1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90612b62565b60405180910390fd5b611baf81611e4d565b50565b600081611bbd611c19565b11158015611bcc575060005482105b8015611c0a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611c2d611c19565b11611cb557600054811015611cb45760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611cb2575b6000811415611ca8576004600083600190039350838152602001908152602001600020549050611c7d565b8092505050611ce7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d6f868684612167565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611db961215f565b73ffffffffffffffffffffffffffffffffffffffff16611dd761134f565b73ffffffffffffffffffffffffffffffffffffffff1614611e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2490612c02565b60405180910390fd5b565b611e49828260405180602001604052806000815250612170565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f39611c11565b8786866040518563ffffffff1660e01b8152600401611f5b9493929190612ad9565b602060405180830381600087803b158015611f7557600080fd5b505af1925050508015611fa657506040513d601f19601f82011682018060405250810190611fa3919061279d565b60015b612020573d8060008114611fd6576040519150601f19603f3d011682016040523d82523d6000602084013e611fdb565b606091505b50600081511415612018576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606012805461208290612f21565b80601f01602080910402602001604051908101604052809291908181526020018280546120ae90612f21565b80156120fb5780601f106120d0576101008083540402835291602001916120fb565b820191906000526020600020905b8154815290600101906020018083116120de57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561214b57600183039250600a81066030018353600a8104905061212b565b508181036020830392508083525050919050565b600033905090565b60009392505050565b61217a838361220d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461220857600080549050600083820390505b6121ba6000868380600101945086611f13565b6121f0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121a757816000541461220557600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561227a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156122b5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122c26000848385611d52565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123398361232a6000866000611d58565b612333856123e1565b17611d80565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061235d578060008190555050506123dc6000848385611dab565b505050565b60006001821460e11b9050919050565b8280546123fd90612f21565b90600052602060002090601f01602090048101928261241f5760008555612466565b82601f1061243857805160ff1916838001178555612466565b82800160010185558215612466579182015b8281111561246557825182559160200191906001019061244a565b5b5090506124739190612477565b5090565b5b80821115612490576000816000905550600101612478565b5090565b60006124a76124a284612ce2565b612cbd565b9050828152602081018484840111156124bf57600080fd5b6124ca848285612edf565b509392505050565b60006124e56124e084612d13565b612cbd565b9050828152602081018484840111156124fd57600080fd5b612508848285612edf565b509392505050565b60008135905061251f81613208565b92915050565b6000813590506125348161321f565b92915050565b60008135905061254981613236565b92915050565b60008151905061255e81613236565b92915050565b600082601f83011261257557600080fd5b8135612585848260208601612494565b91505092915050565b600082601f83011261259f57600080fd5b81356125af8482602086016124d2565b91505092915050565b6000813590506125c78161324d565b92915050565b6000602082840312156125df57600080fd5b60006125ed84828501612510565b91505092915050565b6000806040838503121561260957600080fd5b600061261785828601612510565b925050602061262885828601612510565b9150509250929050565b60008060006060848603121561264757600080fd5b600061265586828701612510565b935050602061266686828701612510565b9250506040612677868287016125b8565b9150509250925092565b6000806000806080858703121561269757600080fd5b60006126a587828801612510565b94505060206126b687828801612510565b93505060406126c7878288016125b8565b925050606085013567ffffffffffffffff8111156126e457600080fd5b6126f087828801612564565b91505092959194509250565b6000806040838503121561270f57600080fd5b600061271d85828601612510565b925050602061272e85828601612525565b9150509250929050565b6000806040838503121561274b57600080fd5b600061275985828601612510565b925050602061276a858286016125b8565b9150509250929050565b60006020828403121561278657600080fd5b60006127948482850161253a565b91505092915050565b6000602082840312156127af57600080fd5b60006127bd8482850161254f565b91505092915050565b6000602082840312156127d857600080fd5b600082013567ffffffffffffffff8111156127f257600080fd5b6127fe8482850161258e565b91505092915050565b60006020828403121561281957600080fd5b6000612827848285016125b8565b91505092915050565b6000806040838503121561284357600080fd5b6000612851858286016125b8565b925050602061286285828601612510565b9150509250929050565b61287581612e6b565b82525050565b61288481612e7d565b82525050565b600061289582612d44565b61289f8185612d5a565b93506128af818560208601612eee565b6128b881613011565b840191505092915050565b60006128ce82612d4f565b6128d88185612d6b565b93506128e8818560208601612eee565b6128f181613011565b840191505092915050565b600061290782612d4f565b6129118185612d7c565b9350612921818560208601612eee565b80840191505092915050565b600061293a602683612d6b565b915061294582613022565b604082019050919050565b600061295d601383612d6b565b915061296882613071565b602082019050919050565b6000612980601483612d6b565b915061298b8261309a565b602082019050919050565b60006129a3601a83612d6b565b91506129ae826130c3565b602082019050919050565b60006129c6600d83612d6b565b91506129d1826130ec565b602082019050919050565b60006129e9602083612d6b565b91506129f482613115565b602082019050919050565b6000612a0c602783612d6b565b9150612a178261313e565b604082019050919050565b6000612a2f601b83612d6b565b9150612a3a8261318d565b602082019050919050565b6000612a52601683612d6b565b9150612a5d826131b6565b602082019050919050565b6000612a75601f83612d6b565b9150612a80826131df565b602082019050919050565b612a9481612ed5565b82525050565b6000612aa682856128fc565b9150612ab282846128fc565b91508190509392505050565b6000602082019050612ad3600083018461286c565b92915050565b6000608082019050612aee600083018761286c565b612afb602083018661286c565b612b086040830185612a8b565b8181036060830152612b1a818461288a565b905095945050505050565b6000602082019050612b3a600083018461287b565b92915050565b60006020820190508181036000830152612b5a81846128c3565b905092915050565b60006020820190508181036000830152612b7b8161292d565b9050919050565b60006020820190508181036000830152612b9b81612950565b9050919050565b60006020820190508181036000830152612bbb81612973565b9050919050565b60006020820190508181036000830152612bdb81612996565b9050919050565b60006020820190508181036000830152612bfb816129b9565b9050919050565b60006020820190508181036000830152612c1b816129dc565b9050919050565b60006020820190508181036000830152612c3b816129ff565b9050919050565b60006020820190508181036000830152612c5b81612a22565b9050919050565b60006020820190508181036000830152612c7b81612a45565b9050919050565b60006020820190508181036000830152612c9b81612a68565b9050919050565b6000602082019050612cb76000830184612a8b565b92915050565b6000612cc7612cd8565b9050612cd38282612f53565b919050565b6000604051905090565b600067ffffffffffffffff821115612cfd57612cfc612fe2565b5b612d0682613011565b9050602081019050919050565b600067ffffffffffffffff821115612d2e57612d2d612fe2565b5b612d3782613011565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d9282612ed5565b9150612d9d83612ed5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612dd257612dd1612f84565b5b828201905092915050565b6000612de882612ed5565b9150612df383612ed5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e2c57612e2b612f84565b5b828202905092915050565b6000612e4282612ed5565b9150612e4d83612ed5565b925082821015612e6057612e5f612f84565b5b828203905092915050565b6000612e7682612eb5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f0c578082015181840152602081019050612ef1565b83811115612f1b576000848401525b50505050565b60006002820490506001821680612f3957607f821691505b60208210811415612f4d57612f4c612fb3565b5b50919050565b612f5c82613011565b810181811067ffffffffffffffff82111715612f7b57612f7a612fe2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f207769746864726177206164647265737300000000000000000000000000600082015250565b7f4578636565647320746f74616c20737570706c79000000000000000000000000600082015250565b7f596f75206d757374206d696e74206174206c65617374206f6e65000000000000600082015250565b7f53616c65206e6f74206c69766500000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f756768204554482073656e7420666f722073656c656374656460008201527f20616d6f756e7400000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61321181612e6b565b811461321c57600080fd5b50565b61322881612e7d565b811461323357600080fd5b50565b61323f81612e89565b811461324a57600080fd5b50565b61325681612ed5565b811461326157600080fd5b5056fea2646970667358221220f175ae996ee24ef80ee5304b91178a5df142f82415f569978dae6a26671b75d464736f6c63430008040033

Deployed Bytecode Sourcemap

59961:3054:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29771:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35418:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37364:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36912:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28825:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46629:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60122:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62886:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62578:186;;;;;;;;;;;;;:::i;:::-;;38254:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60083:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60039:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60506:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62772:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60278:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35207:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61720:625;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60333:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60461:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60212:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30450:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14362:103;;;;;;;;;;;;;:::i;:::-;;13714:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35587:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62355:97;;;;;;;;;;;;;:::i;:::-;;60165:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37640:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38510:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35762:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38019:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60738:974;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14620:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29771:615;29856:4;30171:10;30156:25;;:11;:25;;;;:102;;;;30248:10;30233:25;;:11;:25;;;;30156:102;:179;;;;30325:10;30310:25;;:11;:25;;;;30156:179;30136:199;;29771:615;;;:::o;35418:100::-;35472:13;35505:5;35498:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35418:100;:::o;37364:204::-;37432:7;37457:16;37465:7;37457;:16::i;:::-;37452:64;;37482:34;;;;;;;;;;;;;;37452:64;37536:15;:24;37552:7;37536:24;;;;;;;;;;;;;;;;;;;;;37529:31;;37364:204;;;:::o;36912:386::-;36985:13;37001:16;37009:7;37001;:16::i;:::-;36985:32;;37057:5;37034:28;;:19;:17;:19::i;:::-;:28;;;37030:175;;37082:44;37099:5;37106:19;:17;:19::i;:::-;37082:16;:44::i;:::-;37077:128;;37154:35;;;;;;;;;;;;;;37077:128;37030:175;37244:2;37217:15;:24;37233:7;37217:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37282:7;37278:2;37262:28;;37271:5;37262:28;;;;;;;;;;;;36912:386;;;:::o;28825:315::-;28878:7;29106:15;:13;:15::i;:::-;29091:12;;29075:13;;:28;:46;29068:53;;28825:315;:::o;46629:2800::-;46763:27;46793;46812:7;46793:18;:27::i;:::-;46763:57;;46878:4;46837:45;;46853:19;46837:45;;;46833:86;;46891:28;;;;;;;;;;;;;;46833:86;46933:27;46962:23;46989:28;47009:7;46989:19;:28::i;:::-;46932:85;;;;47117:62;47136:15;47153:4;47159:19;:17;:19::i;:::-;47117:18;:62::i;:::-;47112:174;;47199:43;47216:4;47222:19;:17;:19::i;:::-;47199:16;:43::i;:::-;47194:92;;47251:35;;;;;;;;;;;;;;47194:92;47112:174;47317:1;47303:16;;:2;:16;;;47299:52;;;47328:23;;;;;;;;;;;;;;47299:52;47364:43;47386:4;47392:2;47396:7;47405:1;47364:21;:43::i;:::-;47500:15;47497:2;;;47640:1;47619:19;47612:30;47497:2;48035:18;:24;48054:4;48035:24;;;;;;;;;;;;;;;;48033:26;;;;;;;;;;;;48104:18;:22;48123:2;48104:22;;;;;;;;;;;;;;;;48102:24;;;;;;;;;;;48426:145;48463:2;48511:45;48526:4;48532:2;48536:19;48511:14;:45::i;:::-;26053:8;48484:72;48426:18;:145::i;:::-;48397:17;:26;48415:7;48397:26;;;;;;;;;;;:174;;;;48741:1;26053:8;48691:19;:46;:51;48687:626;;;48763:19;48795:1;48785:7;:11;48763:33;;48952:1;48918:17;:30;48936:11;48918:30;;;;;;;;;;;;:35;48914:384;;;49056:13;;49041:11;:28;49037:242;;49236:19;49203:17;:30;49221:11;49203:30;;;;;;;;;;;:52;;;;49037:242;48914:384;48687:626;;49360:7;49356:2;49341:27;;49350:4;49341:27;;;;;;;;;;;;49379:42;49400:4;49406:2;49410:7;49419:1;49379:20;:42::i;:::-;46629:2800;;;;;;:::o;60122:36::-;;;;:::o;62886:126::-;13600:13;:11;:13::i;:::-;62988:16:::1;62970:15;;:34;;;;;;;;;;;;;;;;;;62886:126:::0;:::o;62578:186::-;13600:13;:11;:13::i;:::-;62663:1:::1;62636:29;;:15;;;;;;;;;;;:29;;;;62628:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;62708:15;;;;;;;;;;;62700:33;;:56;62734:21;62700:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;62578:186::o:0;38254:185::-;38392:39;38409:4;38415:2;38419:7;38392:39;;;;;;;;;;;;:16;:39::i;:::-;38254:185;;;:::o;60083:32::-;;;;:::o;60039:37::-;;;;:::o;60506:49::-;;;;;;;;;;;;;;;;;:::o;62772:106::-;13600:13;:11;:13::i;:::-;62859:11:::1;62849:7;:21;;;;;;;;;;;;:::i;:::-;;62772:106:::0;:::o;60278:32::-;;;;;;;;;;;;;:::o;35207:144::-;35271:7;35314:27;35333:7;35314:18;:27::i;:::-;35291:52;;35207:144;;;:::o;61720:625::-;13600:13;:11;:13::i;:::-;61811:12:::1;;;;;;;;;;;61803:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;61870:1;61860:7;:11;61852:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;61948:14;;61937:7;61921:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:41;;61913:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;62017:17;;62006:7;:28;;61998:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62079:17;62099:14;:19;62114:3;62099:19;;;;;;;;;;;;;;;;62079:39;;62160:12;;62149:7;62137:9;:19;;;;:::i;:::-;:35;;62129:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;62254:7;62232:14;:19;62247:3;62232:19;;;;;;;;;;;;;;;;:29;;;;:::i;:::-;62210:14;:19;62225:3;62210:19;;;;;;;;;;;;;;;:51;;;;62294:7;62272:18;;:29;;;;;;;:::i;:::-;;;;;;;;62314:23;62324:3;62329:7;62314:9;:23::i;:::-;13624:1;61720:625:::0;;:::o;60333:38::-;;;;:::o;60461:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60212:37::-;;;;:::o;30450:224::-;30514:7;30555:1;30538:19;;:5;:19;;;30534:60;;;30566:28;;;;;;;;;;;;;;30534:60;25005:13;30612:18;:25;30631:5;30612:25;;;;;;;;;;;;;;;;:54;30605:61;;30450:224;;;:::o;14362:103::-;13600:13;:11;:13::i;:::-;14427:30:::1;14454:1;14427:18;:30::i;:::-;14362:103::o:0;13714:87::-;13760:7;13787:6;;;;;;;;;;;13780:13;;13714:87;:::o;35587:104::-;35643:13;35676:7;35669:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35587:104;:::o;62355:97::-;13600:13;:11;:13::i;:::-;62432:12:::1;;;;;;;;;;;62431:13;62416:12;;:28;;;;;;;;;;;;;;;;;;62355:97::o:0;60165:40::-;;;;:::o;37640:308::-;37751:19;:17;:19::i;:::-;37739:31;;:8;:31;;;37735:61;;;37779:17;;;;;;;;;;;;;;37735:61;37861:8;37809:18;:39;37828:19;:17;:19::i;:::-;37809:39;;;;;;;;;;;;;;;:49;37849:8;37809:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;37921:8;37885:55;;37900:19;:17;:19::i;:::-;37885:55;;;37931:8;37885:55;;;;;;:::i;:::-;;;;;;;;37640:308;;:::o;38510:399::-;38677:31;38690:4;38696:2;38700:7;38677:12;:31::i;:::-;38741:1;38723:2;:14;;;:19;38719:183;;38762:56;38793:4;38799:2;38803:7;38812:5;38762:30;:56::i;:::-;38757:145;;38846:40;;;;;;;;;;;;;;38757:145;38719:183;38510:399;;;;:::o;35762:318::-;35835:13;35866:16;35874:7;35866;:16::i;:::-;35861:59;;35891:29;;;;;;;;;;;;;;35861:59;35933:21;35957:10;:8;:10::i;:::-;35933:34;;36010:1;35991:7;35985:21;:26;;:87;;;;;;;;;;;;;;;;;36038:7;36047:18;36057:7;36047:9;:18::i;:::-;36021:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35985:87;35978:94;;;35762:318;;;:::o;38019:164::-;38116:4;38140:18;:25;38159:5;38140:25;;;;;;;;;;;;;;;:35;38166:8;38140:35;;;;;;;;;;;;;;;;;;;;;;;;;38133:42;;38019:164;;;;:::o;60738:974::-;10639:1;11237:7;;:19;;11229:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10639:1;11370:7;:18;;;;60824:12:::1;;;;;;;;;;;60816:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;60883:1;60873:7;:11;60865:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;60961:14;;60950:7;60934:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:41;;60926:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;61030:17;;61019:7;:28;;61011:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61092:17;61112:14;:28;61127:12;:10;:12::i;:::-;61112:28;;;;;;;;;;;;;;;;61092:48;;61182:12;;61171:7;61159:9;:19;;;;:::i;:::-;:35;;61151:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;61232:20;61255:7;61232:30;;61299:1;61278:18;;:22;:39;;;;;61316:1;61304:9;:13;61278:39;61275:154;;;61355:9;61351:1;:13;;;;:::i;:::-;61334:31;;;;;:::i;:::-;;;61407:9;61403:1;:13;;;;:::i;:::-;61380:18;;:37;;;;;;;:::i;:::-;;;;;;;;61275:154;61477:9;61461:12;61449:9;;:24;;;;:::i;:::-;:37;;61441:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;61605:7;61574:14;:28;61589:12;:10;:12::i;:::-;61574:28;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;61543:14;:28;61558:12;:10;:12::i;:::-;61543:28;;;;;;;;;;;;;;;:69;;;;61633:7;:5;:7::i;:::-;61625:25;;:36;61651:9;61625:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;61672:32;61682:12;:10;:12::i;:::-;61696:7;61672:9;:32::i;:::-;11401:1;;10595::::0;11549:7;:22;;;;60738:974;:::o;14620:201::-;13600:13;:11;:13::i;:::-;14729:1:::1;14709:22;;:8;:22;;;;14701:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14785:28;14804:8;14785:18;:28::i;:::-;14620:201:::0;:::o;39164:273::-;39221:4;39277:7;39258:15;:13;:15::i;:::-;:26;;:66;;;;;39311:13;;39301:7;:23;39258:66;:152;;;;;39409:1;25775:8;39362:17;:26;39380:7;39362:26;;;;;;;;;;;;:43;:48;39258:152;39238:172;;39164:273;;;:::o;57725:105::-;57785:7;57812:10;57805:17;;57725:105;:::o;28349:92::-;28405:7;28349:92;:::o;32124:1129::-;32191:7;32211:12;32226:7;32211:22;;32294:4;32275:15;:13;:15::i;:::-;:23;32271:915;;32328:13;;32321:4;:20;32317:869;;;32366:14;32383:17;:23;32401:4;32383:23;;;;;;;;;;;;32366:40;;32499:1;25775:8;32472:6;:23;:28;32468:699;;;32991:113;33008:1;32998:6;:11;32991:113;;;33051:17;:25;33069:6;;;;;;;33051:25;;;;;;;;;;;;33042:34;;32991:113;;;33137:6;33130:13;;;;;;32468:699;32317:869;;32271:915;33214:31;;;;;;;;;;;;;;32124:1129;;;;:::o;44965:652::-;45060:27;45089:23;45130:53;45186:15;45130:71;;45372:7;45366:4;45359:21;45407:22;45401:4;45394:36;45483:4;45477;45467:21;45444:44;;45579:19;45573:26;45554:45;;45310:300;;;;:::o;45730:645::-;45872:11;46034:15;46028:4;46024:26;46016:34;;46193:15;46182:9;46178:31;46165:44;;46340:15;46329:9;46326:30;46319:4;46308:9;46305:19;46302:55;46292:65;;45905:463;;;;;:::o;56558:159::-;;;;;:::o;54870:309::-;55005:7;55025:16;26176:3;55051:19;:40;;55025:67;;26176:3;55118:31;55129:4;55135:2;55139:9;55118:10;:31::i;:::-;55110:40;;:61;;55103:68;;;54870:309;;;;;:::o;34698:447::-;34778:14;34946:15;34939:5;34935:27;34926:36;;35120:5;35106:11;35082:22;35078:40;35075:51;35068:5;35065:62;35055:72;;34814:324;;;;:::o;57376:158::-;;;;;:::o;13879:132::-;13954:12;:10;:12::i;:::-;13943:23;;:7;:5;:7::i;:::-;:23;;;13935:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13879:132::o;39521:104::-;39590:27;39600:2;39604:8;39590:27;;;;;;;;;;;;:9;:27::i;:::-;39521:104;;:::o;14981:191::-;15055:16;15074:6;;;;;;;;;;;15055:25;;15100:8;15091:6;;:17;;;;;;;;;;;;;;;;;;15155:8;15124:40;;15145:8;15124:40;;;;;;;;;;;;14981:191;;:::o;53380:716::-;53543:4;53589:2;53564:45;;;53610:19;:17;:19::i;:::-;53631:4;53637:7;53646:5;53564:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53560:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53864:1;53847:6;:13;:18;53843:235;;;53893:40;;;;;;;;;;;;;;53843:235;54036:6;54030:13;54021:6;54017:2;54013:15;54006:38;53560:529;53733:54;;;53723:64;;;:6;:64;;;;53716:71;;;53380:716;;;;;;:::o;62462:108::-;62522:13;62555:7;62548:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62462:108;:::o;57936:1960::-;57993:17;58412:3;58405:4;58399:11;58395:21;58388:28;;58503:3;58497:4;58490:17;58609:3;59065:5;59195:1;59190:3;59186:11;59179:18;;59332:2;59326:4;59322:13;59318:2;59314:22;59309:3;59301:36;59373:2;59367:4;59363:13;59355:21;;58957:697;59392:4;58957:697;;;59583:1;59578:3;59574:11;59567:18;;59634:2;59628:4;59624:13;59620:2;59616:22;59611:3;59603:36;59487:2;59481:4;59477:13;59469:21;;58957:697;;;58961:430;59693:3;59688;59684:13;59808:2;59803:3;59799:12;59792:19;;59871:6;59866:3;59859:19;58032:1857;;;;;:::o;12265:98::-;12318:7;12345:10;12338:17;;12265:98;:::o;55755:147::-;55892:6;55755:147;;;;;:::o;40041:681::-;40164:19;40170:2;40174:8;40164:5;:19::i;:::-;40243:1;40225:2;:14;;;:19;40221:483;;40265:11;40279:13;;40265:27;;40311:13;40333:8;40327:3;:14;40311:30;;40360:233;40391:62;40430:1;40434:2;40438:7;;;;;;40447:5;40391:30;:62::i;:::-;40386:167;;40489:40;;;;;;;;;;;;;;40386:167;40588:3;40580:5;:11;40360:233;;40675:3;40658:13;;:20;40654:34;;40680:8;;;40654:34;40221:483;;;40041:681;;;:::o;40995:1529::-;41060:20;41083:13;;41060:36;;41125:1;41111:16;;:2;:16;;;41107:48;;;41136:19;;;;;;;;;;;;;;41107:48;41182:1;41170:8;:13;41166:44;;;41192:18;;;;;;;;;;;;;;41166:44;41223:61;41253:1;41257:2;41261:12;41275:8;41223:21;:61::i;:::-;41766:1;25142:2;41737:1;:25;;41736:31;41724:8;:44;41698:18;:22;41717:2;41698:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;42045:139;42082:2;42136:33;42159:1;42163:2;42167:1;42136:14;:33::i;:::-;42103:30;42124:8;42103:20;:30::i;:::-;:66;42045:18;:139::i;:::-;42011:17;:31;42029:12;42011:31;;;;;;;;;;;:173;;;;42201:15;42219:12;42201:30;;42246:11;42275:8;42260:12;:23;42246:37;;42298:101;42350:9;;;;;;42346:2;42325:35;;42342:1;42325:35;;;;;;;;;;;;42394:3;42384:7;:13;42298:101;;42431:3;42415:13;:19;;;;40995:1529;;42456:60;42485:1;42489:2;42493:12;42507:8;42456:20;:60::i;:::-;40995:1529;;;:::o;36528:322::-;36598:14;36829:1;36819:8;36816:15;36791:23;36787:45;36777:55;;36700:143;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:407::-;6154:6;6162;6211:2;6199:9;6190:7;6186:23;6182:32;6179:2;;;6227:1;6224;6217:12;6179:2;6270:1;6295:53;6340:7;6331:6;6320:9;6316:22;6295:53;:::i;:::-;6285:63;;6241:117;6397:2;6423:53;6468:7;6459:6;6448:9;6444:22;6423:53;:::i;:::-;6413:63;;6368:118;6169:324;;;;;:::o;6499:118::-;6586:24;6604:5;6586:24;:::i;:::-;6581:3;6574:37;6564:53;;:::o;6623:109::-;6704:21;6719:5;6704:21;:::i;:::-;6699:3;6692:34;6682:50;;:::o;6738:360::-;6824:3;6852:38;6884:5;6852:38;:::i;:::-;6906:70;6969:6;6964:3;6906:70;:::i;:::-;6899:77;;6985:52;7030:6;7025:3;7018:4;7011:5;7007:16;6985:52;:::i;:::-;7062:29;7084:6;7062:29;:::i;:::-;7057:3;7053:39;7046:46;;6828:270;;;;;:::o;7104:364::-;7192:3;7220:39;7253:5;7220:39;:::i;:::-;7275:71;7339:6;7334:3;7275:71;:::i;:::-;7268:78;;7355:52;7400:6;7395:3;7388:4;7381:5;7377:16;7355:52;:::i;:::-;7432:29;7454:6;7432:29;:::i;:::-;7427:3;7423:39;7416:46;;7196:272;;;;;:::o;7474:377::-;7580:3;7608:39;7641:5;7608:39;:::i;:::-;7663:89;7745:6;7740:3;7663:89;:::i;:::-;7656:96;;7761:52;7806:6;7801:3;7794:4;7787:5;7783:16;7761:52;:::i;:::-;7838:6;7833:3;7829:16;7822:23;;7584:267;;;;;:::o;7857:366::-;7999:3;8020:67;8084:2;8079:3;8020:67;:::i;:::-;8013:74;;8096:93;8185:3;8096:93;:::i;:::-;8214:2;8209:3;8205:12;8198:19;;8003:220;;;:::o;8229:366::-;8371:3;8392:67;8456:2;8451:3;8392:67;:::i;:::-;8385:74;;8468:93;8557:3;8468:93;:::i;:::-;8586:2;8581:3;8577:12;8570:19;;8375:220;;;:::o;8601:366::-;8743:3;8764:67;8828:2;8823:3;8764:67;:::i;:::-;8757:74;;8840:93;8929:3;8840:93;:::i;:::-;8958:2;8953:3;8949:12;8942:19;;8747:220;;;:::o;8973:366::-;9115:3;9136:67;9200:2;9195:3;9136:67;:::i;:::-;9129:74;;9212:93;9301:3;9212:93;:::i;:::-;9330:2;9325:3;9321:12;9314:19;;9119:220;;;:::o;9345:366::-;9487:3;9508:67;9572:2;9567:3;9508:67;:::i;:::-;9501:74;;9584:93;9673:3;9584:93;:::i;:::-;9702:2;9697:3;9693:12;9686:19;;9491:220;;;:::o;9717:366::-;9859:3;9880:67;9944:2;9939:3;9880:67;:::i;:::-;9873:74;;9956:93;10045:3;9956:93;:::i;:::-;10074:2;10069:3;10065:12;10058:19;;9863:220;;;:::o;10089:366::-;10231:3;10252:67;10316:2;10311:3;10252:67;:::i;:::-;10245:74;;10328:93;10417:3;10328:93;:::i;:::-;10446:2;10441:3;10437:12;10430:19;;10235:220;;;:::o;10461:366::-;10603:3;10624:67;10688:2;10683:3;10624:67;:::i;:::-;10617:74;;10700:93;10789:3;10700:93;:::i;:::-;10818:2;10813:3;10809:12;10802:19;;10607:220;;;:::o;10833:366::-;10975:3;10996:67;11060:2;11055:3;10996:67;:::i;:::-;10989:74;;11072:93;11161:3;11072:93;:::i;:::-;11190:2;11185:3;11181:12;11174:19;;10979:220;;;:::o;11205:366::-;11347:3;11368:67;11432:2;11427:3;11368:67;:::i;:::-;11361:74;;11444:93;11533:3;11444:93;:::i;:::-;11562:2;11557:3;11553:12;11546:19;;11351:220;;;:::o;11577:118::-;11664:24;11682:5;11664:24;:::i;:::-;11659:3;11652:37;11642:53;;:::o;11701:435::-;11881:3;11903:95;11994:3;11985:6;11903:95;:::i;:::-;11896:102;;12015:95;12106:3;12097:6;12015:95;:::i;:::-;12008:102;;12127:3;12120:10;;11885:251;;;;;:::o;12142:222::-;12235:4;12273:2;12262:9;12258:18;12250:26;;12286:71;12354:1;12343:9;12339:17;12330:6;12286:71;:::i;:::-;12240:124;;;;:::o;12370:640::-;12565:4;12603:3;12592:9;12588:19;12580:27;;12617:71;12685:1;12674:9;12670:17;12661:6;12617:71;:::i;:::-;12698:72;12766:2;12755:9;12751:18;12742:6;12698:72;:::i;:::-;12780;12848:2;12837:9;12833:18;12824:6;12780:72;:::i;:::-;12899:9;12893:4;12889:20;12884:2;12873:9;12869:18;12862:48;12927:76;12998:4;12989:6;12927:76;:::i;:::-;12919:84;;12570:440;;;;;;;:::o;13016:210::-;13103:4;13141:2;13130:9;13126:18;13118:26;;13154:65;13216:1;13205:9;13201:17;13192:6;13154:65;:::i;:::-;13108:118;;;;:::o;13232:313::-;13345:4;13383:2;13372:9;13368:18;13360:26;;13432:9;13426:4;13422:20;13418:1;13407:9;13403:17;13396:47;13460:78;13533:4;13524:6;13460:78;:::i;:::-;13452:86;;13350:195;;;;:::o;13551:419::-;13717:4;13755:2;13744:9;13740:18;13732:26;;13804:9;13798:4;13794:20;13790:1;13779:9;13775:17;13768:47;13832:131;13958:4;13832:131;:::i;:::-;13824:139;;13722:248;;;:::o;13976:419::-;14142:4;14180:2;14169:9;14165:18;14157:26;;14229:9;14223:4;14219:20;14215:1;14204:9;14200:17;14193:47;14257:131;14383:4;14257:131;:::i;:::-;14249:139;;14147:248;;;:::o;14401:419::-;14567:4;14605:2;14594:9;14590:18;14582:26;;14654:9;14648:4;14644:20;14640:1;14629:9;14625:17;14618:47;14682:131;14808:4;14682:131;:::i;:::-;14674:139;;14572:248;;;:::o;14826:419::-;14992:4;15030:2;15019:9;15015:18;15007:26;;15079:9;15073:4;15069:20;15065:1;15054:9;15050:17;15043:47;15107:131;15233:4;15107:131;:::i;:::-;15099:139;;14997:248;;;:::o;15251:419::-;15417:4;15455:2;15444:9;15440:18;15432:26;;15504:9;15498:4;15494:20;15490:1;15479:9;15475:17;15468:47;15532:131;15658:4;15532:131;:::i;:::-;15524:139;;15422:248;;;:::o;15676:419::-;15842:4;15880:2;15869:9;15865:18;15857:26;;15929:9;15923:4;15919:20;15915:1;15904:9;15900:17;15893:47;15957:131;16083:4;15957:131;:::i;:::-;15949:139;;15847:248;;;:::o;16101:419::-;16267:4;16305:2;16294:9;16290:18;16282:26;;16354:9;16348:4;16344:20;16340:1;16329:9;16325:17;16318:47;16382:131;16508:4;16382:131;:::i;:::-;16374:139;;16272:248;;;:::o;16526:419::-;16692:4;16730:2;16719:9;16715:18;16707:26;;16779:9;16773:4;16769:20;16765:1;16754:9;16750:17;16743:47;16807:131;16933:4;16807:131;:::i;:::-;16799:139;;16697:248;;;:::o;16951:419::-;17117:4;17155:2;17144:9;17140:18;17132:26;;17204:9;17198:4;17194:20;17190:1;17179:9;17175:17;17168:47;17232:131;17358:4;17232:131;:::i;:::-;17224:139;;17122:248;;;:::o;17376:419::-;17542:4;17580:2;17569:9;17565:18;17557:26;;17629:9;17623:4;17619:20;17615:1;17604:9;17600:17;17593:47;17657:131;17783:4;17657:131;:::i;:::-;17649:139;;17547:248;;;:::o;17801:222::-;17894:4;17932:2;17921:9;17917:18;17909:26;;17945:71;18013:1;18002:9;17998:17;17989:6;17945:71;:::i;:::-;17899:124;;;;:::o;18029:129::-;18063:6;18090:20;;:::i;:::-;18080:30;;18119:33;18147:4;18139:6;18119:33;:::i;:::-;18070:88;;;:::o;18164:75::-;18197:6;18230:2;18224:9;18214:19;;18204:35;:::o;18245:307::-;18306:4;18396:18;18388:6;18385:30;18382:2;;;18418:18;;:::i;:::-;18382:2;18456:29;18478:6;18456:29;:::i;:::-;18448:37;;18540:4;18534;18530:15;18522:23;;18311:241;;;:::o;18558:308::-;18620:4;18710:18;18702:6;18699:30;18696:2;;;18732:18;;:::i;:::-;18696:2;18770:29;18792:6;18770:29;:::i;:::-;18762:37;;18854:4;18848;18844:15;18836:23;;18625:241;;;:::o;18872:98::-;18923:6;18957:5;18951:12;18941:22;;18930:40;;;:::o;18976:99::-;19028:6;19062:5;19056:12;19046:22;;19035:40;;;:::o;19081:168::-;19164:11;19198:6;19193:3;19186:19;19238:4;19233:3;19229:14;19214:29;;19176:73;;;;:::o;19255:169::-;19339:11;19373:6;19368:3;19361:19;19413:4;19408:3;19404:14;19389:29;;19351:73;;;;:::o;19430:148::-;19532:11;19569:3;19554:18;;19544:34;;;;:::o;19584:305::-;19624:3;19643:20;19661:1;19643:20;:::i;:::-;19638:25;;19677:20;19695:1;19677:20;:::i;:::-;19672:25;;19831:1;19763:66;19759:74;19756:1;19753:81;19750:2;;;19837:18;;:::i;:::-;19750:2;19881:1;19878;19874:9;19867:16;;19628:261;;;;:::o;19895:348::-;19935:7;19958:20;19976:1;19958:20;:::i;:::-;19953:25;;19992:20;20010:1;19992:20;:::i;:::-;19987:25;;20180:1;20112:66;20108:74;20105:1;20102:81;20097:1;20090:9;20083:17;20079:105;20076:2;;;20187:18;;:::i;:::-;20076:2;20235:1;20232;20228:9;20217:20;;19943:300;;;;:::o;20249:191::-;20289:4;20309:20;20327:1;20309:20;:::i;:::-;20304:25;;20343:20;20361:1;20343:20;:::i;:::-;20338:25;;20382:1;20379;20376:8;20373:2;;;20387:18;;:::i;:::-;20373:2;20432:1;20429;20425:9;20417:17;;20294:146;;;;:::o;20446:96::-;20483:7;20512:24;20530:5;20512:24;:::i;:::-;20501:35;;20491:51;;;:::o;20548:90::-;20582:7;20625:5;20618:13;20611:21;20600:32;;20590:48;;;:::o;20644:149::-;20680:7;20720:66;20713:5;20709:78;20698:89;;20688:105;;;:::o;20799:126::-;20836:7;20876:42;20869:5;20865:54;20854:65;;20844:81;;;:::o;20931:77::-;20968:7;20997:5;20986:16;;20976:32;;;:::o;21014:154::-;21098:6;21093:3;21088;21075:30;21160:1;21151:6;21146:3;21142:16;21135:27;21065:103;;;:::o;21174:307::-;21242:1;21252:113;21266:6;21263:1;21260:13;21252:113;;;21351:1;21346:3;21342:11;21336:18;21332:1;21327:3;21323:11;21316:39;21288:2;21285:1;21281:10;21276:15;;21252:113;;;21383:6;21380:1;21377:13;21374:2;;;21463:1;21454:6;21449:3;21445:16;21438:27;21374:2;21223:258;;;;:::o;21487:320::-;21531:6;21568:1;21562:4;21558:12;21548:22;;21615:1;21609:4;21605:12;21636:18;21626:2;;21692:4;21684:6;21680:17;21670:27;;21626:2;21754;21746:6;21743:14;21723:18;21720:38;21717:2;;;21773:18;;:::i;:::-;21717:2;21538:269;;;;:::o;21813:281::-;21896:27;21918:4;21896:27;:::i;:::-;21888:6;21884:40;22026:6;22014:10;22011:22;21990:18;21978:10;21975:34;21972:62;21969:2;;;22037:18;;:::i;:::-;21969:2;22077:10;22073:2;22066:22;21856:238;;;:::o;22100:180::-;22148:77;22145:1;22138:88;22245:4;22242:1;22235:15;22269:4;22266:1;22259:15;22286:180;22334:77;22331:1;22324:88;22431:4;22428:1;22421:15;22455:4;22452:1;22445:15;22472:180;22520:77;22517:1;22510:88;22617:4;22614:1;22607:15;22641:4;22638:1;22631:15;22658:102;22699:6;22750:2;22746:7;22741:2;22734:5;22730:14;22726:28;22716:38;;22706:54;;;:::o;22766:225::-;22906:34;22902:1;22894:6;22890:14;22883:58;22975:8;22970:2;22962:6;22958:15;22951:33;22872:119;:::o;22997:169::-;23137:21;23133:1;23125:6;23121:14;23114:45;23103:63;:::o;23172:170::-;23312:22;23308:1;23300:6;23296:14;23289:46;23278:64;:::o;23348:176::-;23488:28;23484:1;23476:6;23472:14;23465:52;23454:70;:::o;23530:163::-;23670:15;23666:1;23658:6;23654:14;23647:39;23636:57;:::o;23699:182::-;23839:34;23835:1;23827:6;23823:14;23816:58;23805:76;:::o;23887:226::-;24027:34;24023:1;24015:6;24011:14;24004:58;24096:9;24091:2;24083:6;24079:15;24072:34;23993:120;:::o;24119:177::-;24259:29;24255:1;24247:6;24243:14;24236:53;24225:71;:::o;24302:172::-;24442:24;24438:1;24430:6;24426:14;24419:48;24408:66;:::o;24480:181::-;24620:33;24616:1;24608:6;24604:14;24597:57;24586:75;:::o;24667:122::-;24740:24;24758:5;24740:24;:::i;:::-;24733:5;24730:35;24720:2;;24779:1;24776;24769:12;24720:2;24710:79;:::o;24795:116::-;24865:21;24880:5;24865:21;:::i;:::-;24858:5;24855:32;24845:2;;24901:1;24898;24891:12;24845:2;24835:76;:::o;24917:120::-;24989:23;25006:5;24989:23;:::i;:::-;24982:5;24979:34;24969:2;;25027:1;25024;25017:12;24969:2;24959:78;:::o;25043:122::-;25116:24;25134:5;25116:24;:::i;:::-;25109:5;25106:35;25096:2;;25155:1;25152;25145:12;25096:2;25086:79;:::o

Swarm Source

ipfs://f175ae996ee24ef80ee5304b91178a5df142f82415f569978dae6a26671b75d4
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.