ETH Price: $3,304.47 (-3.77%)
Gas: 14 Gwei

Token

Etherjump Plots (EJPLOTS)
 

Overview

Max Total Supply

5,555 EJPLOTS

Holders

1,380

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 EJPLOTS
0x2625f76bc572e42cb787c22ce0282543958de658
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Build your own adventure.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Etherjump

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/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: contracts/Contract.sol



//        ___         ___    
//       /  /\       /  /\   
//      /  /:/_     /  /:/   
//     /  /:/ /\   /__/::\   
//    /  /:/ /:/_  \__\/\:\  
//   /__/:/ /:/ /\    \  \:\ 
//   \  \:\/:/ /:/     \__\:\
//    \  \::/ /:/      /  /:/
//     \  \:\/:/      /__/:/ 
//      \  \::/       \__\/  
//       \__\/               


pragma solidity ^0.8.4;





contract Etherjump is ERC721A, Ownable, ReentrancyGuard {
    bool public initialPublicLive = false; // initial public mint
    bool public presaleLive = false; // presale mint
    bool public finalPublicLive = false; // final public mint

    uint256 public mintPrice = 0.05 ether;
    uint256 public maxTotalSupply = 5555;

    // The supply for each phase
    // Final Public phase takes in the remaining supply not minted
    uint256 public maxPresaleMintedSupply = 5455;
    uint256 public maxInitialPublicMintedSupply = 0;
    
    // Tracker for how much was minted
    uint256 public teamMintedQuantity = 0;
    uint256 public initialPublicMintedQuantity = 0;
    uint256 public finalPublicMintedQuantity = 0;
    uint256 public presaleMintedQuantity = 0;

    // Total quantity mintable per wallet per group
    uint256 public maxPerInitialPublic = 2;
    uint256 public maxPerML = 2;
    uint256 public maxPerOG = 3;
    
    // Total quantity mintable per wallet per transaction
    uint256 public maxPerFinalPublic = 2;

    // quantity minted per wallet per group
    mapping (address => uint256) public mintedInitialPublic;
    mapping (address => uint256) public mintedML;
    mapping (address => uint256) public mintedOG;
    
    // whitelist merkle roots
    bytes32 private ogMerkleRoot = 0x40600de36ada9d324e6d556692dff8e0424a496f7edffe042d28e6e45c72d8a8;
    bytes32 private mlMerkleRoot = 0x744bc5c062302a56edf1390dffdd9f6374085d45a98623cd962ee073e0e6db0a;

    // URI
    string public baseTokenURI;

    constructor() ERC721A("Etherjump Plots", "EJPLOTS") {
        baseTokenURI = "https://play.etherjump.game/metadata/";
    }


    // MINTING STUFF
    function mintFinalPublic(uint256 quantity) external payable {
        require(finalPublicLive, "Final public mint is not live");
        require(msg.value == mintPrice * quantity, "Insufficient payment");
        require(quantity <= maxPerFinalPublic, "Exceeds max mint per transaction"); // Only allow a maximum of maxPerFinalPublic per transaction. Total is not limited
        require(
            initialPublicMintedQuantity + 
            presaleMintedQuantity + 
            finalPublicMintedQuantity +
            teamMintedQuantity + 
            quantity <= maxTotalSupply, "Not enough tokens remaining");
        require (msg.sender == tx.origin, "boohoo"); // Not mintable through other contracts

        finalPublicMintedQuantity += quantity;
        _safeMint(msg.sender, quantity);
    }

    function mintML(uint256 quantity, bytes32[] calldata proof) external payable nonReentrant {
        require(presaleLive, "Sale is not live");
        require(msg.value == mintPrice * quantity, "Insufficient Payment");
        require(mintedML[msg.sender] + quantity <= maxPerML, "Exceeds max mint");
        require(presaleMintedQuantity + quantity <= maxPresaleMintedSupply, "Exceeds max presale supply");
        require(MerkleProof.verify(proof, mlMerkleRoot, keccak256(abi.encodePacked(msg.sender))), "Invalid proof");
        require (msg.sender == tx.origin, "boohoo"); // Not mintable through other contracts

        presaleMintedQuantity += quantity;
        mintedML[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }
    
    function mintOG(uint256 quantity, bytes32[] calldata proof) external payable nonReentrant {
        require(presaleLive, "Sale is not live");
        require(msg.value == mintPrice * quantity, "Insufficient Payment");
        require(mintedOG[msg.sender] + quantity <= maxPerOG, "Exceeds max mint");
        require(presaleMintedQuantity + quantity <= maxPresaleMintedSupply, "Exceeds max presale supply");
        require(MerkleProof.verify(proof, ogMerkleRoot, keccak256(abi.encodePacked(msg.sender))), "Invalid proof");
        require (msg.sender == tx.origin, "boohoo"); // Not mintable through other contracts

        presaleMintedQuantity += quantity;
        mintedOG[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }
    
    function mintInitialPublic(uint256 mintQuantity) external payable nonReentrant {
        require(initialPublicLive, "Sale is not live");
        require(msg.value == mintPrice * mintQuantity, "Insufficient Payment");
        require(mintedInitialPublic[msg.sender] + mintQuantity <= maxPerInitialPublic, 
                "Exceeds max mint");
        require(initialPublicMintedQuantity + mintQuantity <= maxInitialPublicMintedSupply, "Sold out");
        require (msg.sender == tx.origin, "boohoo"); // Not mintable through other contracts

        initialPublicMintedQuantity += mintQuantity;
        mintedInitialPublic[msg.sender] += mintQuantity;
        _safeMint(msg.sender, mintQuantity);
    }

    // Mint for the team
    function mintTeam(uint256 quantity) onlyOwner external {
        teamMintedQuantity += quantity;
        _safeMint(msg.sender, quantity);
    }



    // Token URI
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
    function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    } 

    // Getters for each group
    function getMaxPerInitialPublic() public view returns (uint256) {
        return maxPerInitialPublic;
    }
    function getMaxPerML() public view returns (uint256) {
        return maxPerML;
    }
    function getMaxPerOG() public view returns (uint256) {
        return maxPerOG;
    }
    function getMaxPerFinalPublic() public view returns (uint256){
        return maxPerFinalPublic;
    }

    // Setters for each group
    function setMaxPerInitialPublic(uint256 _max) onlyOwner external {
        maxPerInitialPublic = _max;
    }
    function setMaxPerML(uint256 _max) onlyOwner external {
        maxPerML = _max;
    }
    function setMaxPerOG(uint256 _max) onlyOwner external {
        maxPerOG = _max;
    }
    function setMaxPerFinalPublic(uint256 _max) onlyOwner external {
        maxPerFinalPublic = _max;
    }




    // set mint status of initial public mint
    function setInitialPublicLive(bool live) onlyOwner external {
        initialPublicLive = live;
    }
    // set mint status of presale mint
    function setPresaleLive(bool live) onlyOwner external {
        presaleLive = live;
    }
    // set final public mint status
    function setFinalPublicLive(bool live) onlyOwner external {
        finalPublicLive = live;
    }
    

    // Get the mint price
    function getMintPrice() public view returns (uint256) {
        return mintPrice;
    }
    // set mint price
    function setMintPrice(uint256 price) onlyOwner external {
        mintPrice = price;
    }


    // Get max supply
    function getMaxTotalSupply() public view returns(uint256) {
        return maxTotalSupply;
    }
    function getMaxPresaleMintedSupply() public view returns (uint256) {
        return maxPresaleMintedSupply;
    }
    function getMaxInitialPublicMintedSupply() public view returns (uint256) {
        return maxInitialPublicMintedSupply;
    }
    // Set changes in supply
    function setMaxTotalSupply(uint256 supply) onlyOwner external {
        maxTotalSupply = supply;
    }
    function setMaxPresaleMintedSupply(uint256 supply) onlyOwner external {
        maxPresaleMintedSupply = supply;
    }
    function setMaxInitialPublicMintedSupply(uint256 supply) onlyOwner external {
        maxInitialPublicMintedSupply = supply;
    }
    



    function getMLMintedQuantityFromAddress(address wallet) public view returns (uint256) { 
        return mintedML[wallet];
    }
    function getOGMintedQuantityFromAddress(address wallet) public view returns (uint256) {
        return mintedOG[wallet];
    }
    function getInitialPublicMintedQuantityFromAddress(address wallet) public view returns (uint256) {
        return mintedInitialPublic[wallet];
    }
    // Get the quantity minted per group for a specified address in a list in the form of 
    // [ML, OG, Initial Public]
    // Final mint is not tracked
    function getQuantityMintedPerGroupFromAddress(address wallet) external view returns (uint256[] memory){
        uint256[] memory mintedPerGroupFromAddress = new uint256[](3);
        mintedPerGroupFromAddress[0] = getMLMintedQuantityFromAddress(wallet);
        mintedPerGroupFromAddress[1] = getOGMintedQuantityFromAddress(wallet);
        mintedPerGroupFromAddress[2] = getInitialPublicMintedQuantityFromAddress(wallet);

        return mintedPerGroupFromAddress;
    }

    function getTeamMintedQuantity() public view returns (uint256) {
        return teamMintedQuantity;
    }
    function getPresaleMintedQuantity() public view returns (uint256) { 
        return presaleMintedQuantity;
    }
    function getInitialPublicMintedQuantity() public view returns (uint256) {
        return initialPublicMintedQuantity;
    }
    function getFinalPublicMintedQuantity() public view returns(uint256) {
        return finalPublicMintedQuantity;
    }
    // Get the TOTAL quantity minted per mint phase from ALL addresses
    // OG and ML are consolidated into 1 "presale" tracker
    // [Presale, Initial Public, Final Mint]
    // To get the remaining, subtract from the total quantity methods
    function getTotalQuantityMintedPerPhase() external view returns(uint256[] memory){
        uint256[] memory totalMintedPerPhase = new uint256[](3);
        totalMintedPerPhase[0] = getPresaleMintedQuantity();
        totalMintedPerPhase[1] = getInitialPublicMintedQuantity();
        totalMintedPerPhase[2] = getFinalPublicMintedQuantity();
        return totalMintedPerPhase;
    }

    // Get the merkle root
    function getOGMerkleRoot() external view returns (bytes32) {
        return ogMerkleRoot;
    }
    function getMLMerkleRoot() external view returns(bytes32) {
        return mlMerkleRoot;
    }
    // Set the merkle root in the event that ML and OG Lists change
    function setOGMerkleRoot(bytes32 root) onlyOwner external {
        ogMerkleRoot = root;
    }
    function setMLMerkleRoot(bytes32 root) onlyOwner external {
        mlMerkleRoot = root;
    }
    
    // Checks for what is live
    function isPresale() external view returns(bool){
        return presaleLive;
    }
    function isInitialPublic() external view returns(bool){
        return initialPublicLive;
    }
    function isFinalPublic() external view returns(bool){
        return finalPublicLive;
    }

    // Withdraw money!!!
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "We made no money :(");

        (bool success, ) = payable(msg.sender).call{value: balance}("");
        require(success, "Uh oh no money for you :(");
    }
}

// DEFINITIONS FOR WHEN WE GET CONFUSED :(
// Phase: The three "phases" are presale, initial public and final public
// Group: The four "groups" are ML, OG, Initial public, and final public
// Essentially the same thing but ML and OG are of the same phase so a lot of their numbers are counted together
// This is why getTotalQuantityMintedPerPhase() returns 2 elements and getQuantityMintedPerGroupFromAddress() has 2

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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalPublicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalPublicMintedQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFinalPublicMintedQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInitialPublicMintedQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getInitialPublicMintedQuantityFromAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMLMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getMLMintedQuantityFromAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxInitialPublicMintedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxPerFinalPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxPerInitialPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxPerML","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxPerOG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxPresaleMintedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOGMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getOGMintedQuantityFromAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPresaleMintedQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getQuantityMintedPerGroupFromAddress","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTeamMintedQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalQuantityMintedPerPhase","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialPublicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialPublicMintedQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFinalPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isInitialPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxInitialPublicMintedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFinalPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerInitialPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerML","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerOG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleMintedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintFinalPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintQuantity","type":"uint256"}],"name":"mintInitialPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintML","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintOG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedInitialPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedML","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedOG","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":"presaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMintedQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"live","type":"bool"}],"name":"setFinalPublicLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"live","type":"bool"}],"name":"setInitialPublicLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMLMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxInitialPublicMintedSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPerFinalPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPerInitialPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPerML","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPerOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxPresaleMintedSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setOGMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"live","type":"bool"}],"name":"setPresaleLive","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":[],"name":"teamMintedQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff02191690831515021790555066b1a2bc2ec50000600b556115b3600c5561154f600d556000600e556000600f5560006010556000601155600060125560026013556002601455600360155560026016557f40600de36ada9d324e6d556692dff8e0424a496f7edffe042d28e6e45c72d8a860001b601a557f744bc5c062302a56edf1390dffdd9f6374085d45a98623cd962ee073e0e6db0a60001b601b55348015620000f457600080fd5b506040518060400160405280600f81526020017f45746865726a756d7020506c6f747300000000000000000000000000000000008152506040518060400160405280600781526020017f454a504c4f545300000000000000000000000000000000000000000000000000815250816002908051906020019062000179929190620002de565b50806003908051906020019062000192929190620002de565b50620001a36200020b60201b60201c565b6000819055505050620001cb620001bf6200021060201b60201c565b6200021860201b60201c565b60016009819055506040518060600160405280602581526020016200515d60259139601c908051906020019062000204929190620002de565b50620003f3565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ec906200038e565b90600052602060002090601f0160209004810192826200031057600085556200035c565b82601f106200032b57805160ff19168380011785556200035c565b828001600101855582156200035c579182015b828111156200035b5782518255916020019190600101906200033e565b5b5090506200036b91906200036f565b5090565b5b808211156200038a57600081600090555060010162000370565b5090565b60006002820490506001821680620003a757607f821691505b60208210811415620003be57620003bd620003c4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614d5a80620004036000396000f3fe60806040526004361061045d5760003560e01c806370a082311161023f578063b4cebe4b11610139578063e985e9c5116100b6578063f36a543f1161007a578063f36a543f146110e1578063f44fc79a1461110a578063f4a0a52814611147578063f581e79e14611170578063fc54a3fc146111ad5761045d565b8063e985e9c514610ffc578063eb589ccc14611039578063ede6fe9b14611064578063ef0bc1e81461108d578063f2fde38b146110b85761045d565b8063c87b56dd116100fd578063c87b56dd14610f03578063caa4a36614610f40578063caed5bb214610f7d578063d547cfb714610fa6578063d8c232c114610fd15761045d565b8063b4cebe4b14610e3f578063b88d4fde14610e6a578063bd2f92a114610e93578063c1b19a0b14610eaf578063c5c3c43e14610eda5761045d565b806390ff614c116101c75780639ef1ffe11161018b5780639ef1ffe114610d6e578063a22cb46514610d97578063a7f93ebd14610dc0578063a8e251c014610deb578063afe95dfc14610e165761045d565b806390ff614c14610c9457806392593b9614610cb057806395364a8414610cdb57806395d89b4114610d065780639c21432814610d315761045d565b806383a9e0491161020e57806383a9e04914610bbf578063856c5f7114610bea5780638c8c320314610c155780638da5cb5b14610c405780638f0c62cc14610c6b5761045d565b806370a0823114610b15578063715018a614610b5257806376f1a34a14610b695780637ee4a1d114610b945761045d565b8063342f48aa1161035b5780634d06f055116102d85780636352211e1161029c5780636352211e14610a1a5780636567b9c014610a57578063660491ea14610a825780636817c76c14610aad57806368cb508c14610ad85761045d565b80634d06f0551461093357806350c0bb75146109705780635af7a9ac146109995780635db30bb1146109c45780635e2f4be2146109ef5761045d565b80634097aa391161031f5780634097aa391461084c57806340abe5801461088957806342842e0e146108b4578063454797a0146108dd5780634bd50917146109085761045d565b8063342f48aa1461079e57806336716fd8146107c75780633b7b8f72146107e35780633ccfd60b1461080c5780633f3e4c11146108235761045d565b806318160ddd116103e957806327549d15116103ad57806327549d15146106c95780632ab4d052146106f45780632e0082aa1461071f57806330176e131461074a578063307d031e146107735761045d565b806318160ddd1461060557806318f5c8f9146106305780631bb9f7311461065b57806323b872dd1461067757806325c2c020146106a05761045d565b8063081812fc11610430578063081812fc14610520578063087194a51461055d578063095ea7b3146105865780630f9ebd9f146105af5780630fd1973b146105da5761045d565b806301ffc9a71461046257806303e46a0f1461049f57806304f2545f146104ca57806306fdde03146104f5575b600080fd5b34801561046e57600080fd5b5061048960048036038101906104849190613d64565b6111d8565b604051610496919061433f565b60405180910390f35b3480156104ab57600080fd5b506104b461126a565b6040516104c19190614597565b60405180910390f35b3480156104d657600080fd5b506104df611270565b6040516104ec9190614597565b60405180910390f35b34801561050157600080fd5b5061050a61127a565b6040516105179190614375565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190613e07565b61130c565b60405161055491906142b6565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f9190613d0a565b611388565b005b34801561059257600080fd5b506105ad60048036038101906105a89190613cca565b6113ad565b005b3480156105bb57600080fd5b506105c46114ee565b6040516105d19190614597565b60405180910390f35b3480156105e657600080fd5b506105ef6114f8565b6040516105fc9190614597565b60405180910390f35b34801561061157600080fd5b5061061a611502565b6040516106279190614597565b60405180910390f35b34801561063c57600080fd5b50610645611519565b6040516106529190614597565b60405180910390f35b61067560048036038101906106709190613e34565b61151f565b005b34801561068357600080fd5b5061069e60048036038101906106999190613bb4565b611893565b005b3480156106ac57600080fd5b506106c760048036038101906106c29190613d37565b611bb8565b005b3480156106d557600080fd5b506106de611bca565b6040516106eb9190614597565b60405180910390f35b34801561070057600080fd5b50610709611bd4565b6040516107169190614597565b60405180910390f35b34801561072b57600080fd5b50610734611bda565b604051610741919061435a565b60405180910390f35b34801561075657600080fd5b50610771600480360381019061076c9190613dbe565b611be4565b005b34801561077f57600080fd5b50610788611c06565b6040516107959190614597565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190613e07565b611c10565b005b6107e160048036038101906107dc9190613e07565b611c3e565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190613d37565b611e2e565b005b34801561081857600080fd5b50610821611e40565b005b34801561082f57600080fd5b5061084a60048036038101906108459190613e07565b611f40565b005b34801561085857600080fd5b50610873600480360381019061086e9190613b47565b611f52565b6040516108809190614597565b60405180910390f35b34801561089557600080fd5b5061089e611f6a565b6040516108ab9190614597565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190613bb4565b611f70565b005b3480156108e957600080fd5b506108f2611f90565b6040516108ff9190614597565b60405180910390f35b34801561091457600080fd5b5061091d611f96565b60405161092a9190614597565b60405180910390f35b34801561093f57600080fd5b5061095a60048036038101906109559190613b47565b611f9c565b6040516109679190614597565b60405180910390f35b34801561097c57600080fd5b5061099760048036038101906109929190613e07565b611fe5565b005b3480156109a557600080fd5b506109ae611ff7565b6040516109bb919061433f565b60405180910390f35b3480156109d057600080fd5b506109d961200a565b6040516109e69190614597565b60405180910390f35b3480156109fb57600080fd5b50610a04612014565b604051610a119190614597565b60405180910390f35b348015610a2657600080fd5b50610a416004803603810190610a3c9190613e07565b61201a565b604051610a4e91906142b6565b60405180910390f35b348015610a6357600080fd5b50610a6c61202c565b604051610a79919061435a565b60405180910390f35b348015610a8e57600080fd5b50610a97612036565b604051610aa49190614597565b60405180910390f35b348015610ab957600080fd5b50610ac2612040565b604051610acf9190614597565b60405180910390f35b348015610ae457600080fd5b50610aff6004803603810190610afa9190613b47565b612046565b604051610b0c9190614597565b60405180910390f35b348015610b2157600080fd5b50610b3c6004803603810190610b379190613b47565b61208f565b604051610b499190614597565b60405180910390f35b348015610b5e57600080fd5b50610b67612148565b005b348015610b7557600080fd5b50610b7e61215c565b604051610b8b9190614597565b60405180910390f35b348015610ba057600080fd5b50610ba9612162565b604051610bb69190614597565b60405180910390f35b348015610bcb57600080fd5b50610bd461216c565b604051610be1919061433f565b60405180910390f35b348015610bf657600080fd5b50610bff61217f565b604051610c0c9190614597565b60405180910390f35b348015610c2157600080fd5b50610c2a612185565b604051610c37919061431d565b60405180910390f35b348015610c4c57600080fd5b50610c55612254565b604051610c6291906142b6565b60405180910390f35b348015610c7757600080fd5b50610c926004803603810190610c8d9190613d0a565b61227e565b005b610cae6004803603810190610ca99190613e07565b6122a3565b005b348015610cbc57600080fd5b50610cc5612562565b604051610cd29190614597565b60405180910390f35b348015610ce757600080fd5b50610cf061256c565b604051610cfd919061433f565b60405180910390f35b348015610d1257600080fd5b50610d1b612583565b604051610d289190614375565b60405180910390f35b348015610d3d57600080fd5b50610d586004803603810190610d539190613b47565b612615565b604051610d65919061431d565b60405180910390f35b348015610d7a57600080fd5b50610d956004803603810190610d909190613e07565b6126e9565b005b348015610da357600080fd5b50610dbe6004803603810190610db99190613c8a565b6126fb565b005b348015610dcc57600080fd5b50610dd5612873565b604051610de29190614597565b60405180910390f35b348015610df757600080fd5b50610e0061287d565b604051610e0d9190614597565b60405180910390f35b348015610e2257600080fd5b50610e3d6004803603810190610e389190613e07565b612887565b005b348015610e4b57600080fd5b50610e54612899565b604051610e619190614597565b60405180910390f35b348015610e7657600080fd5b50610e916004803603810190610e8c9190613c07565b61289f565b005b610ead6004803603810190610ea89190613e34565b612912565b005b348015610ebb57600080fd5b50610ec4612c86565b604051610ed1919061433f565b60405180910390f35b348015610ee657600080fd5b50610f016004803603810190610efc9190613e07565b612c9d565b005b348015610f0f57600080fd5b50610f2a6004803603810190610f259190613e07565b612caf565b604051610f379190614375565b60405180910390f35b348015610f4c57600080fd5b50610f676004803603810190610f629190613b47565b612d4e565b604051610f749190614597565b60405180910390f35b348015610f8957600080fd5b50610fa46004803603810190610f9f9190613e07565b612d97565b005b348015610fb257600080fd5b50610fbb612da9565b604051610fc89190614375565b60405180910390f35b348015610fdd57600080fd5b50610fe6612e37565b604051610ff39190614597565b60405180910390f35b34801561100857600080fd5b50611023600480360381019061101e9190613b74565b612e41565b604051611030919061433f565b60405180910390f35b34801561104557600080fd5b5061104e612ed5565b60405161105b9190614597565b60405180910390f35b34801561107057600080fd5b5061108b60048036038101906110869190613d0a565b612edb565b005b34801561109957600080fd5b506110a2612f00565b6040516110af919061433f565b60405180910390f35b3480156110c457600080fd5b506110df60048036038101906110da9190613b47565b612f17565b005b3480156110ed57600080fd5b5061110860048036038101906111039190613e07565b612f9b565b005b34801561111657600080fd5b50611131600480360381019061112c9190613b47565b612fad565b60405161113e9190614597565b60405180910390f35b34801561115357600080fd5b5061116e60048036038101906111699190613e07565b612fc5565b005b34801561117c57600080fd5b5061119760048036038101906111929190613b47565b612fd7565b6040516111a49190614597565b60405180910390f35b3480156111b957600080fd5b506111c2612fef565b6040516111cf919061433f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061123357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806112635750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600f5481565b6000601054905090565b60606002805461128990614830565b80601f01602080910402602001604051908101604052809291908181526020018280546112b590614830565b80156113025780601f106112d757610100808354040283529160200191611302565b820191906000526020600020905b8154815290600101906020018083116112e557829003601f168201915b5050505050905090565b600061131782613002565b61134d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611390613061565b80600a60006101000a81548160ff02191690831515021790555050565b60006113b88261201a565b90508073ffffffffffffffffffffffffffffffffffffffff166113d96130df565b73ffffffffffffffffffffffffffffffffffffffff161461143c57611405816114006130df565b612e41565b61143b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600e54905090565b6000601654905090565b600061150c6130e7565b6001546000540303905090565b600d5481565b60026009541415611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90614537565b60405180910390fd5b6002600981905550600a60019054906101000a900460ff166115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b3906144f7565b60405180910390fd5b82600b546115ca9190614716565b341461160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290614437565b60405180910390fd5b60145483601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461165991906146c0565b111561169a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169190614517565b60405180910390fd5b600d54836012546116ab91906146c0565b11156116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e3906143b7565b60405180910390fd5b611760828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601b54336040516020016117459190614262565b604051602081830303815290604052805190602001206130ec565b61179f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611796906144b7565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490614417565b60405180910390fd5b826012600082825461181f91906146c0565b9250508190555082601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461187591906146c0565b925050819055506118863384613103565b6001600981905550505050565b600061189e82613121565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611905576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611911846131ef565b9150915061192781876119226130df565b613211565b6119735761193c866119376130df565b612e41565b611972576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156119da576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119e78686866001613255565b80156119f257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611ac085611a9c88888761325b565b7c020000000000000000000000000000000000000000000000000000000017613283565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611b48576000600185019050600060046000838152602001908152602001600020541415611b46576000548114611b45578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bb086868660016132ae565b505050505050565b611bc0613061565b80601a8190555050565b6000600f54905090565b600c5481565b6000601b54905090565b611bec613061565b80601c9080519060200190611c029291906138f0565b5050565b6000601154905090565b611c18613061565b80600f6000828254611c2a91906146c0565b92505081905550611c3b3382613103565b50565b600a60029054906101000a900460ff16611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c84906143f7565b60405180910390fd5b80600b54611c9b9190614716565b3414611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd390614457565b60405180910390fd5b601654811115611d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1890614577565b60405180910390fd5b600c5481600f54601154601254601054611d3b91906146c0565b611d4591906146c0565b611d4f91906146c0565b611d5991906146c0565b1115611d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9190614557565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff90614417565b60405180910390fd5b8060116000828254611e1a91906146c0565b92505081905550611e2b3382613103565b50565b611e36613061565b80601b8190555050565b611e48613061565b600047905060008111611e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e87906144d7565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051611eb6906142a1565b60006040518083038185875af1925050503d8060008114611ef3576040519150601f19603f3d011682016040523d82523d6000602084013e611ef8565b606091505b5050905080611f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3390614397565b60405180910390fd5b5050565b611f48613061565b80600c8190555050565b60196020528060005260406000206000915090505481565b60165481565b611f8b8383836040518060200160405280600081525061289f565b505050565b60145481565b60105481565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611fed613061565b8060168190555050565b600a60009054906101000a900460ff1681565b6000600c54905090565b60155481565b600061202582613121565b9050919050565b6000601a54905090565b6000601554905090565b600b5481565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b612150613061565b61215a60006132b4565b565b600e5481565b6000601454905090565b600a60019054906101000a900460ff1681565b60125481565b60606000600367ffffffffffffffff8111156121a4576121a361498d565b5b6040519080825280602002602001820160405280156121d25781602001602082028036833780820191505090505b5090506121dd612e37565b816000815181106121f1576121f061495e565b5b602002602001018181525050612205611270565b816001815181106122195761221861495e565b5b60200260200101818152505061222d611c06565b816002815181106122415761224061495e565b5b6020026020010181815250508091505090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612286613061565b80600a60016101000a81548160ff02191690831515021790555050565b600260095414156122e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e090614537565b60405180910390fd5b6002600981905550600a60009054906101000a900460ff16612340576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612337906144f7565b60405180910390fd5b80600b5461234e9190614716565b341461238f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238690614437565b60405180910390fd5b60135481601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123dd91906146c0565b111561241e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241590614517565b60405180910390fd5b600e548160105461242f91906146c0565b1115612470576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246790614497565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d590614417565b60405180910390fd5b80601060008282546124f091906146c0565b9250508190555080601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461254691906146c0565b925050819055506125573382613103565b600160098190555050565b6000601354905090565b6000600a60019054906101000a900460ff16905090565b60606003805461259290614830565b80601f01602080910402602001604051908101604052809291908181526020018280546125be90614830565b801561260b5780601f106125e05761010080835404028352916020019161260b565b820191906000526020600020905b8154815290600101906020018083116125ee57829003601f168201915b5050505050905090565b60606000600367ffffffffffffffff8111156126345761263361498d565b5b6040519080825280602002602001820160405280156126625781602001602082028036833780820191505090505b50905061266e83612046565b816000815181106126825761268161495e565b5b60200260200101818152505061269783612d4e565b816001815181106126ab576126aa61495e565b5b6020026020010181815250506126c083611f9c565b816002815181106126d4576126d361495e565b5b60200260200101818152505080915050919050565b6126f1613061565b8060158190555050565b6127036130df565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612768576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006127756130df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166128226130df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612867919061433f565b60405180910390a35050565b6000600b54905090565b6000600d54905090565b61288f613061565b80600d8190555050565b60135481565b6128aa848484611893565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461290c576128d58484848461337a565b61290b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60026009541415612958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f90614537565b60405180910390fd5b6002600981905550600a60019054906101000a900460ff166129af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a6906144f7565b60405180910390fd5b82600b546129bd9190614716565b34146129fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f590614437565b60405180910390fd5b60155483601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4c91906146c0565b1115612a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8490614517565b60405180910390fd5b600d5483601254612a9e91906146c0565b1115612adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad6906143b7565b60405180910390fd5b612b53828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601a5433604051602001612b389190614262565b604051602081830303815290604052805190602001206130ec565b612b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b89906144b7565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf790614417565b60405180910390fd5b8260126000828254612c1291906146c0565b9250508190555082601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c6891906146c0565b92505081905550612c793384613103565b6001600981905550505050565b6000600a60029054906101000a900460ff16905090565b612ca5613061565b8060148190555050565b6060612cba82613002565b612cf0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612cfa6134da565b9050600081511415612d1b5760405180602001604052806000815250612d46565b80612d258461356c565b604051602001612d3692919061427d565b6040516020818303038152906040525b915050919050565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b612d9f613061565b8060138190555050565b601c8054612db690614830565b80601f0160208091040260200160405190810160405280929190818152602001828054612de290614830565b8015612e2f5780601f10612e0457610100808354040283529160200191612e2f565b820191906000526020600020905b815481529060010190602001808311612e1257829003601f168201915b505050505081565b6000601254905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60115481565b612ee3613061565b80600a60026101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900460ff16905090565b612f1f613061565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f86906143d7565b60405180910390fd5b612f98816132b4565b50565b612fa3613061565b80600e8190555050565b60176020528060005260406000206000915090505481565b612fcd613061565b80600b8190555050565b60186020528060005260406000206000915090505481565b600a60029054906101000a900460ff1681565b60008161300d6130e7565b1115801561301c575060005482105b801561305a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6130696135c6565b73ffffffffffffffffffffffffffffffffffffffff16613087612254565b73ffffffffffffffffffffffffffffffffffffffff16146130dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d490614477565b60405180910390fd5b565b600033905090565b600090565b6000826130f985846135ce565b1490509392505050565b61311d828260405180602001604052806000815250613624565b5050565b600080829050806131306130e7565b116131b8576000548110156131b75760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156131b5575b60008114156131ab576004600083600190039350838152602001908152602001600020549050613180565b80925050506131ea565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86132728686846136c1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133a06130df565b8786866040518563ffffffff1660e01b81526004016133c294939291906142d1565b602060405180830381600087803b1580156133dc57600080fd5b505af192505050801561340d57506040513d601f19601f8201168201806040525081019061340a9190613d91565b60015b613487573d806000811461343d576040519150601f19603f3d011682016040523d82523d6000602084013e613442565b606091505b5060008151141561347f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601c80546134e990614830565b80601f016020809104026020016040519081016040528092919081815260200182805461351590614830565b80156135625780601f1061353757610100808354040283529160200191613562565b820191906000526020600020905b81548152906001019060200180831161354557829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156135b257600183039250600a81066030018353600a81049050613592565b508181036020830392508083525050919050565b600033905090565b60008082905060005b845181101561361957613604828683815181106135f7576135f661495e565b5b60200260200101516136ca565b9150808061361190614893565b9150506135d7565b508091505092915050565b61362e83836136f5565b60008373ffffffffffffffffffffffffffffffffffffffff163b146136bc57600080549050600083820390505b61366e600086838060010194508661337a565b6136a4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061365b5781600054146136b957600080fd5b50505b505050565b60009392505050565b60008183106136e2576136dd82846138c9565b6136ed565b6136ec83836138c9565b5b905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613762576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561379d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6137aa6000848385613255565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061382183613812600086600061325b565b61381b856138e0565b17613283565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613845578060008190555050506138c460008483856132ae565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b8280546138fc90614830565b90600052602060002090601f01602090048101928261391e5760008555613965565b82601f1061393757805160ff1916838001178555613965565b82800160010185558215613965579182015b82811115613964578251825591602001919060010190613949565b5b5090506139729190613976565b5090565b5b8082111561398f576000816000905550600101613977565b5090565b60006139a66139a1846145d7565b6145b2565b9050828152602081018484840111156139c2576139c16149cb565b5b6139cd8482856147ee565b509392505050565b60006139e86139e384614608565b6145b2565b905082815260208101848484011115613a0457613a036149cb565b5b613a0f8482856147ee565b509392505050565b600081359050613a2681614cb1565b92915050565b60008083601f840112613a4257613a416149c1565b5b8235905067ffffffffffffffff811115613a5f57613a5e6149bc565b5b602083019150836020820283011115613a7b57613a7a6149c6565b5b9250929050565b600081359050613a9181614cc8565b92915050565b600081359050613aa681614cdf565b92915050565b600081359050613abb81614cf6565b92915050565b600081519050613ad081614cf6565b92915050565b600082601f830112613aeb57613aea6149c1565b5b8135613afb848260208601613993565b91505092915050565b600082601f830112613b1957613b186149c1565b5b8135613b298482602086016139d5565b91505092915050565b600081359050613b4181614d0d565b92915050565b600060208284031215613b5d57613b5c6149d5565b5b6000613b6b84828501613a17565b91505092915050565b60008060408385031215613b8b57613b8a6149d5565b5b6000613b9985828601613a17565b9250506020613baa85828601613a17565b9150509250929050565b600080600060608486031215613bcd57613bcc6149d5565b5b6000613bdb86828701613a17565b9350506020613bec86828701613a17565b9250506040613bfd86828701613b32565b9150509250925092565b60008060008060808587031215613c2157613c206149d5565b5b6000613c2f87828801613a17565b9450506020613c4087828801613a17565b9350506040613c5187828801613b32565b925050606085013567ffffffffffffffff811115613c7257613c716149d0565b5b613c7e87828801613ad6565b91505092959194509250565b60008060408385031215613ca157613ca06149d5565b5b6000613caf85828601613a17565b9250506020613cc085828601613a82565b9150509250929050565b60008060408385031215613ce157613ce06149d5565b5b6000613cef85828601613a17565b9250506020613d0085828601613b32565b9150509250929050565b600060208284031215613d2057613d1f6149d5565b5b6000613d2e84828501613a82565b91505092915050565b600060208284031215613d4d57613d4c6149d5565b5b6000613d5b84828501613a97565b91505092915050565b600060208284031215613d7a57613d796149d5565b5b6000613d8884828501613aac565b91505092915050565b600060208284031215613da757613da66149d5565b5b6000613db584828501613ac1565b91505092915050565b600060208284031215613dd457613dd36149d5565b5b600082013567ffffffffffffffff811115613df257613df16149d0565b5b613dfe84828501613b04565b91505092915050565b600060208284031215613e1d57613e1c6149d5565b5b6000613e2b84828501613b32565b91505092915050565b600080600060408486031215613e4d57613e4c6149d5565b5b6000613e5b86828701613b32565b935050602084013567ffffffffffffffff811115613e7c57613e7b6149d0565b5b613e8886828701613a2c565b92509250509250925092565b6000613ea08383614244565b60208301905092915050565b613eb581614770565b82525050565b613ecc613ec782614770565b6148dc565b82525050565b6000613edd82614649565b613ee78185614677565b9350613ef283614639565b8060005b83811015613f23578151613f0a8882613e94565b9750613f158361466a565b925050600181019050613ef6565b5085935050505092915050565b613f3981614782565b82525050565b613f488161478e565b82525050565b6000613f5982614654565b613f638185614688565b9350613f738185602086016147fd565b613f7c816149da565b840191505092915050565b6000613f928261465f565b613f9c81856146a4565b9350613fac8185602086016147fd565b613fb5816149da565b840191505092915050565b6000613fcb8261465f565b613fd581856146b5565b9350613fe58185602086016147fd565b80840191505092915050565b6000613ffe6019836146a4565b9150614009826149f8565b602082019050919050565b6000614021601a836146a4565b915061402c82614a21565b602082019050919050565b60006140446026836146a4565b915061404f82614a4a565b604082019050919050565b6000614067601d836146a4565b915061407282614a99565b602082019050919050565b600061408a6006836146a4565b915061409582614ac2565b602082019050919050565b60006140ad6014836146a4565b91506140b882614aeb565b602082019050919050565b60006140d06014836146a4565b91506140db82614b14565b602082019050919050565b60006140f36020836146a4565b91506140fe82614b3d565b602082019050919050565b6000614116600083614699565b915061412182614b66565b600082019050919050565b60006141396008836146a4565b915061414482614b69565b602082019050919050565b600061415c600d836146a4565b915061416782614b92565b602082019050919050565b600061417f6013836146a4565b915061418a82614bbb565b602082019050919050565b60006141a26010836146a4565b91506141ad82614be4565b602082019050919050565b60006141c56010836146a4565b91506141d082614c0d565b602082019050919050565b60006141e8601f836146a4565b91506141f382614c36565b602082019050919050565b600061420b601b836146a4565b915061421682614c5f565b602082019050919050565b600061422e6020836146a4565b915061423982614c88565b602082019050919050565b61424d816147e4565b82525050565b61425c816147e4565b82525050565b600061426e8284613ebb565b60148201915081905092915050565b60006142898285613fc0565b91506142958284613fc0565b91508190509392505050565b60006142ac82614109565b9150819050919050565b60006020820190506142cb6000830184613eac565b92915050565b60006080820190506142e66000830187613eac565b6142f36020830186613eac565b6143006040830185614253565b81810360608301526143128184613f4e565b905095945050505050565b600060208201905081810360008301526143378184613ed2565b905092915050565b60006020820190506143546000830184613f30565b92915050565b600060208201905061436f6000830184613f3f565b92915050565b6000602082019050818103600083015261438f8184613f87565b905092915050565b600060208201905081810360008301526143b081613ff1565b9050919050565b600060208201905081810360008301526143d081614014565b9050919050565b600060208201905081810360008301526143f081614037565b9050919050565b600060208201905081810360008301526144108161405a565b9050919050565b600060208201905081810360008301526144308161407d565b9050919050565b60006020820190508181036000830152614450816140a0565b9050919050565b60006020820190508181036000830152614470816140c3565b9050919050565b60006020820190508181036000830152614490816140e6565b9050919050565b600060208201905081810360008301526144b08161412c565b9050919050565b600060208201905081810360008301526144d08161414f565b9050919050565b600060208201905081810360008301526144f081614172565b9050919050565b6000602082019050818103600083015261451081614195565b9050919050565b60006020820190508181036000830152614530816141b8565b9050919050565b60006020820190508181036000830152614550816141db565b9050919050565b60006020820190508181036000830152614570816141fe565b9050919050565b6000602082019050818103600083015261459081614221565b9050919050565b60006020820190506145ac6000830184614253565b92915050565b60006145bc6145cd565b90506145c88282614862565b919050565b6000604051905090565b600067ffffffffffffffff8211156145f2576145f161498d565b5b6145fb826149da565b9050602081019050919050565b600067ffffffffffffffff8211156146235761462261498d565b5b61462c826149da565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146cb826147e4565b91506146d6836147e4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561470b5761470a614900565b5b828201905092915050565b6000614721826147e4565b915061472c836147e4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561476557614764614900565b5b828202905092915050565b600061477b826147c4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561481b578082015181840152602081019050614800565b8381111561482a576000848401525b50505050565b6000600282049050600182168061484857607f821691505b6020821081141561485c5761485b61492f565b5b50919050565b61486b826149da565b810181811067ffffffffffffffff8211171561488a5761488961498d565b5b80604052505050565b600061489e826147e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148d1576148d0614900565b5b600182019050919050565b60006148e7826148ee565b9050919050565b60006148f9826149eb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5568206f68206e6f206d6f6e657920666f7220796f75203a2800000000000000600082015250565b7f45786365656473206d61782070726573616c6520737570706c79000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46696e616c207075626c6963206d696e74206973206e6f74206c697665000000600082015250565b7f626f6f686f6f0000000000000000000000000000000000000000000000000000600082015250565b7f496e73756666696369656e74205061796d656e74000000000000000000000000600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f5765206d616465206e6f206d6f6e6579203a2800000000000000000000000000600082015250565b7f53616c65206973206e6f74206c69766500000000000000000000000000000000600082015250565b7f45786365656473206d6178206d696e7400000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4e6f7420656e6f75676820746f6b656e732072656d61696e696e670000000000600082015250565b7f45786365656473206d6178206d696e7420706572207472616e73616374696f6e600082015250565b614cba81614770565b8114614cc557600080fd5b50565b614cd181614782565b8114614cdc57600080fd5b50565b614ce88161478e565b8114614cf357600080fd5b50565b614cff81614798565b8114614d0a57600080fd5b50565b614d16816147e4565b8114614d2157600080fd5b5056fea2646970667358221220d4c62254415cbd714e8b4c46b194de9a471f18e4f17e1064e61530633fb8a5eb64736f6c6343000807003368747470733a2f2f706c61792e65746865726a756d702e67616d652f6d657461646174612f

Deployed Bytecode

0x60806040526004361061045d5760003560e01c806370a082311161023f578063b4cebe4b11610139578063e985e9c5116100b6578063f36a543f1161007a578063f36a543f146110e1578063f44fc79a1461110a578063f4a0a52814611147578063f581e79e14611170578063fc54a3fc146111ad5761045d565b8063e985e9c514610ffc578063eb589ccc14611039578063ede6fe9b14611064578063ef0bc1e81461108d578063f2fde38b146110b85761045d565b8063c87b56dd116100fd578063c87b56dd14610f03578063caa4a36614610f40578063caed5bb214610f7d578063d547cfb714610fa6578063d8c232c114610fd15761045d565b8063b4cebe4b14610e3f578063b88d4fde14610e6a578063bd2f92a114610e93578063c1b19a0b14610eaf578063c5c3c43e14610eda5761045d565b806390ff614c116101c75780639ef1ffe11161018b5780639ef1ffe114610d6e578063a22cb46514610d97578063a7f93ebd14610dc0578063a8e251c014610deb578063afe95dfc14610e165761045d565b806390ff614c14610c9457806392593b9614610cb057806395364a8414610cdb57806395d89b4114610d065780639c21432814610d315761045d565b806383a9e0491161020e57806383a9e04914610bbf578063856c5f7114610bea5780638c8c320314610c155780638da5cb5b14610c405780638f0c62cc14610c6b5761045d565b806370a0823114610b15578063715018a614610b5257806376f1a34a14610b695780637ee4a1d114610b945761045d565b8063342f48aa1161035b5780634d06f055116102d85780636352211e1161029c5780636352211e14610a1a5780636567b9c014610a57578063660491ea14610a825780636817c76c14610aad57806368cb508c14610ad85761045d565b80634d06f0551461093357806350c0bb75146109705780635af7a9ac146109995780635db30bb1146109c45780635e2f4be2146109ef5761045d565b80634097aa391161031f5780634097aa391461084c57806340abe5801461088957806342842e0e146108b4578063454797a0146108dd5780634bd50917146109085761045d565b8063342f48aa1461079e57806336716fd8146107c75780633b7b8f72146107e35780633ccfd60b1461080c5780633f3e4c11146108235761045d565b806318160ddd116103e957806327549d15116103ad57806327549d15146106c95780632ab4d052146106f45780632e0082aa1461071f57806330176e131461074a578063307d031e146107735761045d565b806318160ddd1461060557806318f5c8f9146106305780631bb9f7311461065b57806323b872dd1461067757806325c2c020146106a05761045d565b8063081812fc11610430578063081812fc14610520578063087194a51461055d578063095ea7b3146105865780630f9ebd9f146105af5780630fd1973b146105da5761045d565b806301ffc9a71461046257806303e46a0f1461049f57806304f2545f146104ca57806306fdde03146104f5575b600080fd5b34801561046e57600080fd5b5061048960048036038101906104849190613d64565b6111d8565b604051610496919061433f565b60405180910390f35b3480156104ab57600080fd5b506104b461126a565b6040516104c19190614597565b60405180910390f35b3480156104d657600080fd5b506104df611270565b6040516104ec9190614597565b60405180910390f35b34801561050157600080fd5b5061050a61127a565b6040516105179190614375565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190613e07565b61130c565b60405161055491906142b6565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f9190613d0a565b611388565b005b34801561059257600080fd5b506105ad60048036038101906105a89190613cca565b6113ad565b005b3480156105bb57600080fd5b506105c46114ee565b6040516105d19190614597565b60405180910390f35b3480156105e657600080fd5b506105ef6114f8565b6040516105fc9190614597565b60405180910390f35b34801561061157600080fd5b5061061a611502565b6040516106279190614597565b60405180910390f35b34801561063c57600080fd5b50610645611519565b6040516106529190614597565b60405180910390f35b61067560048036038101906106709190613e34565b61151f565b005b34801561068357600080fd5b5061069e60048036038101906106999190613bb4565b611893565b005b3480156106ac57600080fd5b506106c760048036038101906106c29190613d37565b611bb8565b005b3480156106d557600080fd5b506106de611bca565b6040516106eb9190614597565b60405180910390f35b34801561070057600080fd5b50610709611bd4565b6040516107169190614597565b60405180910390f35b34801561072b57600080fd5b50610734611bda565b604051610741919061435a565b60405180910390f35b34801561075657600080fd5b50610771600480360381019061076c9190613dbe565b611be4565b005b34801561077f57600080fd5b50610788611c06565b6040516107959190614597565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190613e07565b611c10565b005b6107e160048036038101906107dc9190613e07565b611c3e565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190613d37565b611e2e565b005b34801561081857600080fd5b50610821611e40565b005b34801561082f57600080fd5b5061084a60048036038101906108459190613e07565b611f40565b005b34801561085857600080fd5b50610873600480360381019061086e9190613b47565b611f52565b6040516108809190614597565b60405180910390f35b34801561089557600080fd5b5061089e611f6a565b6040516108ab9190614597565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190613bb4565b611f70565b005b3480156108e957600080fd5b506108f2611f90565b6040516108ff9190614597565b60405180910390f35b34801561091457600080fd5b5061091d611f96565b60405161092a9190614597565b60405180910390f35b34801561093f57600080fd5b5061095a60048036038101906109559190613b47565b611f9c565b6040516109679190614597565b60405180910390f35b34801561097c57600080fd5b5061099760048036038101906109929190613e07565b611fe5565b005b3480156109a557600080fd5b506109ae611ff7565b6040516109bb919061433f565b60405180910390f35b3480156109d057600080fd5b506109d961200a565b6040516109e69190614597565b60405180910390f35b3480156109fb57600080fd5b50610a04612014565b604051610a119190614597565b60405180910390f35b348015610a2657600080fd5b50610a416004803603810190610a3c9190613e07565b61201a565b604051610a4e91906142b6565b60405180910390f35b348015610a6357600080fd5b50610a6c61202c565b604051610a79919061435a565b60405180910390f35b348015610a8e57600080fd5b50610a97612036565b604051610aa49190614597565b60405180910390f35b348015610ab957600080fd5b50610ac2612040565b604051610acf9190614597565b60405180910390f35b348015610ae457600080fd5b50610aff6004803603810190610afa9190613b47565b612046565b604051610b0c9190614597565b60405180910390f35b348015610b2157600080fd5b50610b3c6004803603810190610b379190613b47565b61208f565b604051610b499190614597565b60405180910390f35b348015610b5e57600080fd5b50610b67612148565b005b348015610b7557600080fd5b50610b7e61215c565b604051610b8b9190614597565b60405180910390f35b348015610ba057600080fd5b50610ba9612162565b604051610bb69190614597565b60405180910390f35b348015610bcb57600080fd5b50610bd461216c565b604051610be1919061433f565b60405180910390f35b348015610bf657600080fd5b50610bff61217f565b604051610c0c9190614597565b60405180910390f35b348015610c2157600080fd5b50610c2a612185565b604051610c37919061431d565b60405180910390f35b348015610c4c57600080fd5b50610c55612254565b604051610c6291906142b6565b60405180910390f35b348015610c7757600080fd5b50610c926004803603810190610c8d9190613d0a565b61227e565b005b610cae6004803603810190610ca99190613e07565b6122a3565b005b348015610cbc57600080fd5b50610cc5612562565b604051610cd29190614597565b60405180910390f35b348015610ce757600080fd5b50610cf061256c565b604051610cfd919061433f565b60405180910390f35b348015610d1257600080fd5b50610d1b612583565b604051610d289190614375565b60405180910390f35b348015610d3d57600080fd5b50610d586004803603810190610d539190613b47565b612615565b604051610d65919061431d565b60405180910390f35b348015610d7a57600080fd5b50610d956004803603810190610d909190613e07565b6126e9565b005b348015610da357600080fd5b50610dbe6004803603810190610db99190613c8a565b6126fb565b005b348015610dcc57600080fd5b50610dd5612873565b604051610de29190614597565b60405180910390f35b348015610df757600080fd5b50610e0061287d565b604051610e0d9190614597565b60405180910390f35b348015610e2257600080fd5b50610e3d6004803603810190610e389190613e07565b612887565b005b348015610e4b57600080fd5b50610e54612899565b604051610e619190614597565b60405180910390f35b348015610e7657600080fd5b50610e916004803603810190610e8c9190613c07565b61289f565b005b610ead6004803603810190610ea89190613e34565b612912565b005b348015610ebb57600080fd5b50610ec4612c86565b604051610ed1919061433f565b60405180910390f35b348015610ee657600080fd5b50610f016004803603810190610efc9190613e07565b612c9d565b005b348015610f0f57600080fd5b50610f2a6004803603810190610f259190613e07565b612caf565b604051610f379190614375565b60405180910390f35b348015610f4c57600080fd5b50610f676004803603810190610f629190613b47565b612d4e565b604051610f749190614597565b60405180910390f35b348015610f8957600080fd5b50610fa46004803603810190610f9f9190613e07565b612d97565b005b348015610fb257600080fd5b50610fbb612da9565b604051610fc89190614375565b60405180910390f35b348015610fdd57600080fd5b50610fe6612e37565b604051610ff39190614597565b60405180910390f35b34801561100857600080fd5b50611023600480360381019061101e9190613b74565b612e41565b604051611030919061433f565b60405180910390f35b34801561104557600080fd5b5061104e612ed5565b60405161105b9190614597565b60405180910390f35b34801561107057600080fd5b5061108b60048036038101906110869190613d0a565b612edb565b005b34801561109957600080fd5b506110a2612f00565b6040516110af919061433f565b60405180910390f35b3480156110c457600080fd5b506110df60048036038101906110da9190613b47565b612f17565b005b3480156110ed57600080fd5b5061110860048036038101906111039190613e07565b612f9b565b005b34801561111657600080fd5b50611131600480360381019061112c9190613b47565b612fad565b60405161113e9190614597565b60405180910390f35b34801561115357600080fd5b5061116e60048036038101906111699190613e07565b612fc5565b005b34801561117c57600080fd5b5061119760048036038101906111929190613b47565b612fd7565b6040516111a49190614597565b60405180910390f35b3480156111b957600080fd5b506111c2612fef565b6040516111cf919061433f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061123357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806112635750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600f5481565b6000601054905090565b60606002805461128990614830565b80601f01602080910402602001604051908101604052809291908181526020018280546112b590614830565b80156113025780601f106112d757610100808354040283529160200191611302565b820191906000526020600020905b8154815290600101906020018083116112e557829003601f168201915b5050505050905090565b600061131782613002565b61134d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611390613061565b80600a60006101000a81548160ff02191690831515021790555050565b60006113b88261201a565b90508073ffffffffffffffffffffffffffffffffffffffff166113d96130df565b73ffffffffffffffffffffffffffffffffffffffff161461143c57611405816114006130df565b612e41565b61143b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600e54905090565b6000601654905090565b600061150c6130e7565b6001546000540303905090565b600d5481565b60026009541415611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90614537565b60405180910390fd5b6002600981905550600a60019054906101000a900460ff166115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b3906144f7565b60405180910390fd5b82600b546115ca9190614716565b341461160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290614437565b60405180910390fd5b60145483601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461165991906146c0565b111561169a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169190614517565b60405180910390fd5b600d54836012546116ab91906146c0565b11156116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e3906143b7565b60405180910390fd5b611760828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601b54336040516020016117459190614262565b604051602081830303815290604052805190602001206130ec565b61179f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611796906144b7565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490614417565b60405180910390fd5b826012600082825461181f91906146c0565b9250508190555082601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461187591906146c0565b925050819055506118863384613103565b6001600981905550505050565b600061189e82613121565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611905576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611911846131ef565b9150915061192781876119226130df565b613211565b6119735761193c866119376130df565b612e41565b611972576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156119da576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119e78686866001613255565b80156119f257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611ac085611a9c88888761325b565b7c020000000000000000000000000000000000000000000000000000000017613283565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611b48576000600185019050600060046000838152602001908152602001600020541415611b46576000548114611b45578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bb086868660016132ae565b505050505050565b611bc0613061565b80601a8190555050565b6000600f54905090565b600c5481565b6000601b54905090565b611bec613061565b80601c9080519060200190611c029291906138f0565b5050565b6000601154905090565b611c18613061565b80600f6000828254611c2a91906146c0565b92505081905550611c3b3382613103565b50565b600a60029054906101000a900460ff16611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c84906143f7565b60405180910390fd5b80600b54611c9b9190614716565b3414611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd390614457565b60405180910390fd5b601654811115611d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1890614577565b60405180910390fd5b600c5481600f54601154601254601054611d3b91906146c0565b611d4591906146c0565b611d4f91906146c0565b611d5991906146c0565b1115611d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9190614557565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff90614417565b60405180910390fd5b8060116000828254611e1a91906146c0565b92505081905550611e2b3382613103565b50565b611e36613061565b80601b8190555050565b611e48613061565b600047905060008111611e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e87906144d7565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051611eb6906142a1565b60006040518083038185875af1925050503d8060008114611ef3576040519150601f19603f3d011682016040523d82523d6000602084013e611ef8565b606091505b5050905080611f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3390614397565b60405180910390fd5b5050565b611f48613061565b80600c8190555050565b60196020528060005260406000206000915090505481565b60165481565b611f8b8383836040518060200160405280600081525061289f565b505050565b60145481565b60105481565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611fed613061565b8060168190555050565b600a60009054906101000a900460ff1681565b6000600c54905090565b60155481565b600061202582613121565b9050919050565b6000601a54905090565b6000601554905090565b600b5481565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b612150613061565b61215a60006132b4565b565b600e5481565b6000601454905090565b600a60019054906101000a900460ff1681565b60125481565b60606000600367ffffffffffffffff8111156121a4576121a361498d565b5b6040519080825280602002602001820160405280156121d25781602001602082028036833780820191505090505b5090506121dd612e37565b816000815181106121f1576121f061495e565b5b602002602001018181525050612205611270565b816001815181106122195761221861495e565b5b60200260200101818152505061222d611c06565b816002815181106122415761224061495e565b5b6020026020010181815250508091505090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612286613061565b80600a60016101000a81548160ff02191690831515021790555050565b600260095414156122e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e090614537565b60405180910390fd5b6002600981905550600a60009054906101000a900460ff16612340576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612337906144f7565b60405180910390fd5b80600b5461234e9190614716565b341461238f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238690614437565b60405180910390fd5b60135481601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123dd91906146c0565b111561241e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241590614517565b60405180910390fd5b600e548160105461242f91906146c0565b1115612470576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246790614497565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d590614417565b60405180910390fd5b80601060008282546124f091906146c0565b9250508190555080601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461254691906146c0565b925050819055506125573382613103565b600160098190555050565b6000601354905090565b6000600a60019054906101000a900460ff16905090565b60606003805461259290614830565b80601f01602080910402602001604051908101604052809291908181526020018280546125be90614830565b801561260b5780601f106125e05761010080835404028352916020019161260b565b820191906000526020600020905b8154815290600101906020018083116125ee57829003601f168201915b5050505050905090565b60606000600367ffffffffffffffff8111156126345761263361498d565b5b6040519080825280602002602001820160405280156126625781602001602082028036833780820191505090505b50905061266e83612046565b816000815181106126825761268161495e565b5b60200260200101818152505061269783612d4e565b816001815181106126ab576126aa61495e565b5b6020026020010181815250506126c083611f9c565b816002815181106126d4576126d361495e565b5b60200260200101818152505080915050919050565b6126f1613061565b8060158190555050565b6127036130df565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612768576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006127756130df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166128226130df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612867919061433f565b60405180910390a35050565b6000600b54905090565b6000600d54905090565b61288f613061565b80600d8190555050565b60135481565b6128aa848484611893565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461290c576128d58484848461337a565b61290b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60026009541415612958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f90614537565b60405180910390fd5b6002600981905550600a60019054906101000a900460ff166129af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a6906144f7565b60405180910390fd5b82600b546129bd9190614716565b34146129fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f590614437565b60405180910390fd5b60155483601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4c91906146c0565b1115612a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8490614517565b60405180910390fd5b600d5483601254612a9e91906146c0565b1115612adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad6906143b7565b60405180910390fd5b612b53828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601a5433604051602001612b389190614262565b604051602081830303815290604052805190602001206130ec565b612b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b89906144b7565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf790614417565b60405180910390fd5b8260126000828254612c1291906146c0565b9250508190555082601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c6891906146c0565b92505081905550612c793384613103565b6001600981905550505050565b6000600a60029054906101000a900460ff16905090565b612ca5613061565b8060148190555050565b6060612cba82613002565b612cf0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612cfa6134da565b9050600081511415612d1b5760405180602001604052806000815250612d46565b80612d258461356c565b604051602001612d3692919061427d565b6040516020818303038152906040525b915050919050565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b612d9f613061565b8060138190555050565b601c8054612db690614830565b80601f0160208091040260200160405190810160405280929190818152602001828054612de290614830565b8015612e2f5780601f10612e0457610100808354040283529160200191612e2f565b820191906000526020600020905b815481529060010190602001808311612e1257829003601f168201915b505050505081565b6000601254905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60115481565b612ee3613061565b80600a60026101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900460ff16905090565b612f1f613061565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f86906143d7565b60405180910390fd5b612f98816132b4565b50565b612fa3613061565b80600e8190555050565b60176020528060005260406000206000915090505481565b612fcd613061565b80600b8190555050565b60186020528060005260406000206000915090505481565b600a60029054906101000a900460ff1681565b60008161300d6130e7565b1115801561301c575060005482105b801561305a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6130696135c6565b73ffffffffffffffffffffffffffffffffffffffff16613087612254565b73ffffffffffffffffffffffffffffffffffffffff16146130dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d490614477565b60405180910390fd5b565b600033905090565b600090565b6000826130f985846135ce565b1490509392505050565b61311d828260405180602001604052806000815250613624565b5050565b600080829050806131306130e7565b116131b8576000548110156131b75760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156131b5575b60008114156131ab576004600083600190039350838152602001908152602001600020549050613180565b80925050506131ea565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86132728686846136c1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133a06130df565b8786866040518563ffffffff1660e01b81526004016133c294939291906142d1565b602060405180830381600087803b1580156133dc57600080fd5b505af192505050801561340d57506040513d601f19601f8201168201806040525081019061340a9190613d91565b60015b613487573d806000811461343d576040519150601f19603f3d011682016040523d82523d6000602084013e613442565b606091505b5060008151141561347f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601c80546134e990614830565b80601f016020809104026020016040519081016040528092919081815260200182805461351590614830565b80156135625780601f1061353757610100808354040283529160200191613562565b820191906000526020600020905b81548152906001019060200180831161354557829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156135b257600183039250600a81066030018353600a81049050613592565b508181036020830392508083525050919050565b600033905090565b60008082905060005b845181101561361957613604828683815181106135f7576135f661495e565b5b60200260200101516136ca565b9150808061361190614893565b9150506135d7565b508091505092915050565b61362e83836136f5565b60008373ffffffffffffffffffffffffffffffffffffffff163b146136bc57600080549050600083820390505b61366e600086838060010194508661337a565b6136a4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061365b5781600054146136b957600080fd5b50505b505050565b60009392505050565b60008183106136e2576136dd82846138c9565b6136ed565b6136ec83836138c9565b5b905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613762576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561379d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6137aa6000848385613255565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061382183613812600086600061325b565b61381b856138e0565b17613283565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613845578060008190555050506138c460008483856132ae565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b8280546138fc90614830565b90600052602060002090601f01602090048101928261391e5760008555613965565b82601f1061393757805160ff1916838001178555613965565b82800160010185558215613965579182015b82811115613964578251825591602001919060010190613949565b5b5090506139729190613976565b5090565b5b8082111561398f576000816000905550600101613977565b5090565b60006139a66139a1846145d7565b6145b2565b9050828152602081018484840111156139c2576139c16149cb565b5b6139cd8482856147ee565b509392505050565b60006139e86139e384614608565b6145b2565b905082815260208101848484011115613a0457613a036149cb565b5b613a0f8482856147ee565b509392505050565b600081359050613a2681614cb1565b92915050565b60008083601f840112613a4257613a416149c1565b5b8235905067ffffffffffffffff811115613a5f57613a5e6149bc565b5b602083019150836020820283011115613a7b57613a7a6149c6565b5b9250929050565b600081359050613a9181614cc8565b92915050565b600081359050613aa681614cdf565b92915050565b600081359050613abb81614cf6565b92915050565b600081519050613ad081614cf6565b92915050565b600082601f830112613aeb57613aea6149c1565b5b8135613afb848260208601613993565b91505092915050565b600082601f830112613b1957613b186149c1565b5b8135613b298482602086016139d5565b91505092915050565b600081359050613b4181614d0d565b92915050565b600060208284031215613b5d57613b5c6149d5565b5b6000613b6b84828501613a17565b91505092915050565b60008060408385031215613b8b57613b8a6149d5565b5b6000613b9985828601613a17565b9250506020613baa85828601613a17565b9150509250929050565b600080600060608486031215613bcd57613bcc6149d5565b5b6000613bdb86828701613a17565b9350506020613bec86828701613a17565b9250506040613bfd86828701613b32565b9150509250925092565b60008060008060808587031215613c2157613c206149d5565b5b6000613c2f87828801613a17565b9450506020613c4087828801613a17565b9350506040613c5187828801613b32565b925050606085013567ffffffffffffffff811115613c7257613c716149d0565b5b613c7e87828801613ad6565b91505092959194509250565b60008060408385031215613ca157613ca06149d5565b5b6000613caf85828601613a17565b9250506020613cc085828601613a82565b9150509250929050565b60008060408385031215613ce157613ce06149d5565b5b6000613cef85828601613a17565b9250506020613d0085828601613b32565b9150509250929050565b600060208284031215613d2057613d1f6149d5565b5b6000613d2e84828501613a82565b91505092915050565b600060208284031215613d4d57613d4c6149d5565b5b6000613d5b84828501613a97565b91505092915050565b600060208284031215613d7a57613d796149d5565b5b6000613d8884828501613aac565b91505092915050565b600060208284031215613da757613da66149d5565b5b6000613db584828501613ac1565b91505092915050565b600060208284031215613dd457613dd36149d5565b5b600082013567ffffffffffffffff811115613df257613df16149d0565b5b613dfe84828501613b04565b91505092915050565b600060208284031215613e1d57613e1c6149d5565b5b6000613e2b84828501613b32565b91505092915050565b600080600060408486031215613e4d57613e4c6149d5565b5b6000613e5b86828701613b32565b935050602084013567ffffffffffffffff811115613e7c57613e7b6149d0565b5b613e8886828701613a2c565b92509250509250925092565b6000613ea08383614244565b60208301905092915050565b613eb581614770565b82525050565b613ecc613ec782614770565b6148dc565b82525050565b6000613edd82614649565b613ee78185614677565b9350613ef283614639565b8060005b83811015613f23578151613f0a8882613e94565b9750613f158361466a565b925050600181019050613ef6565b5085935050505092915050565b613f3981614782565b82525050565b613f488161478e565b82525050565b6000613f5982614654565b613f638185614688565b9350613f738185602086016147fd565b613f7c816149da565b840191505092915050565b6000613f928261465f565b613f9c81856146a4565b9350613fac8185602086016147fd565b613fb5816149da565b840191505092915050565b6000613fcb8261465f565b613fd581856146b5565b9350613fe58185602086016147fd565b80840191505092915050565b6000613ffe6019836146a4565b9150614009826149f8565b602082019050919050565b6000614021601a836146a4565b915061402c82614a21565b602082019050919050565b60006140446026836146a4565b915061404f82614a4a565b604082019050919050565b6000614067601d836146a4565b915061407282614a99565b602082019050919050565b600061408a6006836146a4565b915061409582614ac2565b602082019050919050565b60006140ad6014836146a4565b91506140b882614aeb565b602082019050919050565b60006140d06014836146a4565b91506140db82614b14565b602082019050919050565b60006140f36020836146a4565b91506140fe82614b3d565b602082019050919050565b6000614116600083614699565b915061412182614b66565b600082019050919050565b60006141396008836146a4565b915061414482614b69565b602082019050919050565b600061415c600d836146a4565b915061416782614b92565b602082019050919050565b600061417f6013836146a4565b915061418a82614bbb565b602082019050919050565b60006141a26010836146a4565b91506141ad82614be4565b602082019050919050565b60006141c56010836146a4565b91506141d082614c0d565b602082019050919050565b60006141e8601f836146a4565b91506141f382614c36565b602082019050919050565b600061420b601b836146a4565b915061421682614c5f565b602082019050919050565b600061422e6020836146a4565b915061423982614c88565b602082019050919050565b61424d816147e4565b82525050565b61425c816147e4565b82525050565b600061426e8284613ebb565b60148201915081905092915050565b60006142898285613fc0565b91506142958284613fc0565b91508190509392505050565b60006142ac82614109565b9150819050919050565b60006020820190506142cb6000830184613eac565b92915050565b60006080820190506142e66000830187613eac565b6142f36020830186613eac565b6143006040830185614253565b81810360608301526143128184613f4e565b905095945050505050565b600060208201905081810360008301526143378184613ed2565b905092915050565b60006020820190506143546000830184613f30565b92915050565b600060208201905061436f6000830184613f3f565b92915050565b6000602082019050818103600083015261438f8184613f87565b905092915050565b600060208201905081810360008301526143b081613ff1565b9050919050565b600060208201905081810360008301526143d081614014565b9050919050565b600060208201905081810360008301526143f081614037565b9050919050565b600060208201905081810360008301526144108161405a565b9050919050565b600060208201905081810360008301526144308161407d565b9050919050565b60006020820190508181036000830152614450816140a0565b9050919050565b60006020820190508181036000830152614470816140c3565b9050919050565b60006020820190508181036000830152614490816140e6565b9050919050565b600060208201905081810360008301526144b08161412c565b9050919050565b600060208201905081810360008301526144d08161414f565b9050919050565b600060208201905081810360008301526144f081614172565b9050919050565b6000602082019050818103600083015261451081614195565b9050919050565b60006020820190508181036000830152614530816141b8565b9050919050565b60006020820190508181036000830152614550816141db565b9050919050565b60006020820190508181036000830152614570816141fe565b9050919050565b6000602082019050818103600083015261459081614221565b9050919050565b60006020820190506145ac6000830184614253565b92915050565b60006145bc6145cd565b90506145c88282614862565b919050565b6000604051905090565b600067ffffffffffffffff8211156145f2576145f161498d565b5b6145fb826149da565b9050602081019050919050565b600067ffffffffffffffff8211156146235761462261498d565b5b61462c826149da565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146cb826147e4565b91506146d6836147e4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561470b5761470a614900565b5b828201905092915050565b6000614721826147e4565b915061472c836147e4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561476557614764614900565b5b828202905092915050565b600061477b826147c4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561481b578082015181840152602081019050614800565b8381111561482a576000848401525b50505050565b6000600282049050600182168061484857607f821691505b6020821081141561485c5761485b61492f565b5b50919050565b61486b826149da565b810181811067ffffffffffffffff8211171561488a5761488961498d565b5b80604052505050565b600061489e826147e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148d1576148d0614900565b5b600182019050919050565b60006148e7826148ee565b9050919050565b60006148f9826149eb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5568206f68206e6f206d6f6e657920666f7220796f75203a2800000000000000600082015250565b7f45786365656473206d61782070726573616c6520737570706c79000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46696e616c207075626c6963206d696e74206973206e6f74206c697665000000600082015250565b7f626f6f686f6f0000000000000000000000000000000000000000000000000000600082015250565b7f496e73756666696369656e74205061796d656e74000000000000000000000000600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f5765206d616465206e6f206d6f6e6579203a2800000000000000000000000000600082015250565b7f53616c65206973206e6f74206c69766500000000000000000000000000000000600082015250565b7f45786365656473206d6178206d696e7400000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4e6f7420656e6f75676820746f6b656e732072656d61696e696e670000000000600082015250565b7f45786365656473206d6178206d696e7420706572207472616e73616374696f6e600082015250565b614cba81614770565b8114614cc557600080fd5b50565b614cd181614782565b8114614cdc57600080fd5b50565b614ce88161478e565b8114614cf357600080fd5b50565b614cff81614798565b8114614d0a57600080fd5b50565b614d16816147e4565b8114614d2157600080fd5b5056fea2646970667358221220d4c62254415cbd714e8b4c46b194de9a471f18e4f17e1064e61530633fb8a5eb64736f6c63430008070033

Deployed Bytecode Sourcemap

60220:11000:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29669:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60811:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69167:125;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35316:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37262:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66424:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36810:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67315:127;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65810:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28723:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60660:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62768:759;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46527:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70371:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68934:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60513:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70200:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65351:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69298:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65056:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61944:816;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70473:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70934:283;;;;;;;;;;;;;:::i;:::-;;67478:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61442:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61239:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38152:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61106:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60855:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68133:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66257:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60283:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67090:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61140:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35105:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70097:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65717:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60469:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67864:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30348:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14260:103;;;;;;;;;;;;;:::i;:::-;;60711:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65624:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60350:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60959:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69673:388;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13612:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66573:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64310:712;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65509:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70613:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35485:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68448:478;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66163:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37538:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66847:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67194:115;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67588:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61061:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38408:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63539:759;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70807:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66069:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35660:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67999:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65953:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61752:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69047:114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37917:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60908:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66707:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70704:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14518:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67714:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61329:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66965:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61391:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60404:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29669:615;29754:4;30069:10;30054:25;;:11;:25;;;;:102;;;;30146:10;30131:25;;:11;:25;;;;30054:102;:179;;;;30223:10;30208:25;;:11;:25;;;;30054:179;30034:199;;29669:615;;;:::o;60811:37::-;;;;:::o;69167:125::-;69230:7;69257:27;;69250:34;;69167:125;:::o;35316:100::-;35370:13;35403:5;35396:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35316:100;:::o;37262:204::-;37330:7;37355:16;37363:7;37355;:16::i;:::-;37350:64;;37380:34;;;;;;;;;;;;;;37350:64;37434:15;:24;37450:7;37434:24;;;;;;;;;;;;;;;;;;;;;37427:31;;37262:204;;;:::o;66424:103::-;13498:13;:11;:13::i;:::-;66515:4:::1;66495:17;;:24;;;;;;;;;;;;;;;;;;66424:103:::0;:::o;36810:386::-;36883:13;36899:16;36907:7;36899;:16::i;:::-;36883:32;;36955:5;36932:28;;:19;:17;:19::i;:::-;:28;;;36928:175;;36980:44;36997:5;37004:19;:17;:19::i;:::-;36980:16;:44::i;:::-;36975:128;;37052:35;;;;;;;;;;;;;;36975:128;36928:175;37142:2;37115:15;:24;37131:7;37115:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37180:7;37176:2;37160:28;;37169:5;37160:28;;;;;;;;;;;;36872:324;36810:386;;:::o;67315:127::-;67379:7;67406:28;;67399:35;;67315:127;:::o;65810:104::-;65863:7;65889:17;;65882:24;;65810:104;:::o;28723:315::-;28776:7;29004:15;:13;:15::i;:::-;28989:12;;28973:13;;:28;:46;28966:53;;28723:315;:::o;60660:44::-;;;;:::o;62768:759::-;10537:1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;62877:11:::1;;;;;;;;;;;62869:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;62953:8;62941:9;;:20;;;;:::i;:::-;62928:9;:33;62920:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;63040:8;;63028;63005;:20;63014:10;63005:20;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:43;;62997:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;63124:22;;63112:8;63088:21;;:32;;;;:::i;:::-;:58;;63080:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;63196:80;63215:5;;63196:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63222:12;;63263:10;63246:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;63236:39;;;;;;63196:18;:80::i;:::-;63188:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;63328:9;63314:23;;:10;:23;;;63305:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;63426:8;63401:21;;:33;;;;;;;:::i;:::-;;;;;;;;63469:8;63445;:20;63454:10;63445:20;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;63488:31;63498:10;63510:8;63488:9;:31::i;:::-;10493:1:::0;11447:7;:22;;;;62768:759;;;:::o;46527:2800::-;46661:27;46691;46710:7;46691:18;:27::i;:::-;46661:57;;46776:4;46735:45;;46751:19;46735:45;;;46731:86;;46789:28;;;;;;;;;;;;;;46731:86;46831:27;46860:23;46887:28;46907:7;46887:19;:28::i;:::-;46830:85;;;;47015:62;47034:15;47051:4;47057:19;:17;:19::i;:::-;47015:18;:62::i;:::-;47010:174;;47097:43;47114:4;47120:19;:17;:19::i;:::-;47097:16;:43::i;:::-;47092:92;;47149:35;;;;;;;;;;;;;;47092:92;47010:174;47215:1;47201:16;;:2;:16;;;47197:52;;;47226:23;;;;;;;;;;;;;;47197:52;47262:43;47284:4;47290:2;47294:7;47303:1;47262:21;:43::i;:::-;47398:15;47395:160;;;47538:1;47517:19;47510:30;47395:160;47933:18;:24;47952:4;47933:24;;;;;;;;;;;;;;;;47931:26;;;;;;;;;;;;48002:18;:22;48021:2;48002:22;;;;;;;;;;;;;;;;48000:24;;;;;;;;;;;48324:145;48361:2;48409:45;48424:4;48430:2;48434:19;48409:14;:45::i;:::-;25951:8;48382:72;48324:18;:145::i;:::-;48295:17;:26;48313:7;48295:26;;;;;;;;;;;:174;;;;48639:1;25951:8;48589:19;:46;:51;48585:626;;;48661:19;48693:1;48683:7;:11;48661:33;;48850:1;48816:17;:30;48834:11;48816:30;;;;;;;;;;;;:35;48812:384;;;48954:13;;48939:11;:28;48935:242;;49134:19;49101:17;:30;49119:11;49101:30;;;;;;;;;;;:52;;;;48935:242;48812:384;48642:569;48585:626;49258:7;49254:2;49239:27;;49248:4;49239:27;;;;;;;;;;;;49277:42;49298:4;49304:2;49308:7;49317:1;49277:20;:42::i;:::-;46650:2677;;;46527:2800;;;:::o;70371:96::-;13498:13;:11;:13::i;:::-;70455:4:::1;70440:12;:19;;;;70371:96:::0;:::o;68934:107::-;68988:7;69015:18;;69008:25;;68934:107;:::o;60513:36::-;;;;:::o;70200:96::-;70249:7;70276:12;;70269:19;;70200:96;:::o;65351:118::-;13498:13;:11;:13::i;:::-;65448::::1;65433:12;:28;;;;;;;;;;;;:::i;:::-;;65351:118:::0;:::o;69298:120::-;69358:7;69385:25;;69378:32;;69298:120;:::o;65056:146::-;13498:13;:11;:13::i;:::-;65144:8:::1;65122:18;;:30;;;;;;;:::i;:::-;;;;;;;;65163:31;65173:10;65185:8;65163:9;:31::i;:::-;65056:146:::0;:::o;61944:816::-;62023:15;;;;;;;;;;;62015:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;62116:8;62104:9;;:20;;;;:::i;:::-;62091:9;:33;62083:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;62180:17;;62168:8;:29;;62160:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;62520:14;;62508:8;62473:18;;62432:25;;62394:21;;62350:27;;:65;;;;:::i;:::-;:107;;;;:::i;:::-;:141;;;;:::i;:::-;:166;;;;:::i;:::-;:184;;62328:238;;;;;;;;;;;;:::i;:::-;;;;;;;;;62600:9;62586:23;;:10;:23;;;62577:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;62702:8;62673:25;;:37;;;;;;;:::i;:::-;;;;;;;;62721:31;62731:10;62743:8;62721:9;:31::i;:::-;61944:816;:::o;70473:96::-;13498:13;:11;:13::i;:::-;70557:4:::1;70542:12;:19;;;;70473:96:::0;:::o;70934:283::-;13498:13;:11;:13::i;:::-;70984:15:::1;71002:21;70984:39;;71052:1;71042:7;:11;71034:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;71091:12;71117:10;71109:24;;71141:7;71109:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71090:63;;;71172:7;71164:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;70973:244;;70934:283::o:0;67478:104::-;13498:13;:11;:13::i;:::-;67568:6:::1;67551:14;:23;;;;67478:104:::0;:::o;61442:44::-;;;;;;;;;;;;;;;;;:::o;61239:36::-;;;;:::o;38152:185::-;38290:39;38307:4;38313:2;38317:7;38290:39;;;;;;;;;;;;:16;:39::i;:::-;38152:185;;;:::o;61106:27::-;;;;:::o;60855:46::-;;;;:::o;68133:150::-;68221:7;68248:19;:27;68268:6;68248:27;;;;;;;;;;;;;;;;68241:34;;68133:150;;;:::o;66257:106::-;13498:13;:11;:13::i;:::-;66351:4:::1;66331:17;:24;;;;66257:106:::0;:::o;60283:37::-;;;;;;;;;;;;;:::o;67090:98::-;67139:7;67166:14;;67159:21;;67090:98;:::o;61140:27::-;;;;:::o;35105:144::-;35169:7;35212:27;35231:7;35212:18;:27::i;:::-;35189:52;;35105:144;;;:::o;70097:97::-;70147:7;70174:12;;70167:19;;70097:97;:::o;65717:87::-;65761:7;65788:8;;65781:15;;65717:87;:::o;60469:37::-;;;;:::o;67864:129::-;67941:7;67969:8;:16;67978:6;67969:16;;;;;;;;;;;;;;;;67962:23;;67864:129;;;:::o;30348:224::-;30412:7;30453:1;30436:19;;:5;:19;;;30432:60;;;30464:28;;;;;;;;;;;;;;30432:60;24903:13;30510:18;:25;30529:5;30510:25;;;;;;;;;;;;;;;;:54;30503:61;;30348:224;;;:::o;14260:103::-;13498:13;:11;:13::i;:::-;14325:30:::1;14352:1;14325:18;:30::i;:::-;14260:103::o:0;60711:47::-;;;;:::o;65624:87::-;65668:7;65695:8;;65688:15;;65624:87;:::o;60350:31::-;;;;;;;;;;;;;:::o;60959:40::-;;;;:::o;69673:388::-;69737:16;69765:36;69818:1;69804:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69765:55;;69856:26;:24;:26::i;:::-;69831:19;69851:1;69831:22;;;;;;;;:::i;:::-;;;;;;;:51;;;;;69918:32;:30;:32::i;:::-;69893:19;69913:1;69893:22;;;;;;;;:::i;:::-;;;;;;;:57;;;;;69986:30;:28;:30::i;:::-;69961:19;69981:1;69961:22;;;;;;;;:::i;:::-;;;;;;;:55;;;;;70034:19;70027:26;;;69673:388;:::o;13612:87::-;13658:7;13685:6;;;;;;;;;;;13678:13;;13612:87;:::o;66573:91::-;13498:13;:11;:13::i;:::-;66652:4:::1;66638:11;;:18;;;;;;;;;;;;;;;;;;66573:91:::0;:::o;64310:712::-;10537:1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;64408:17:::1;;;;;;;;;;;64400:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;64490:12;64478:9;;:24;;;;:::i;:::-;64465:9;:37;64457:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;64596:19;;64580:12;64546:19;:31;64566:10;64546:31;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;:69;;64538:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;64719:28;;64703:12;64673:27;;:42;;;;:::i;:::-;:74;;64665:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;64794:9;64780:23;;:10;:23;;;64771:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;64898:12;64867:27;;:43;;;;;;;:::i;:::-;;;;;;;;64956:12;64921:19;:31;64941:10;64921:31;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;64979:35;64989:10;65001:12;64979:9;:35::i;:::-;10493:1:::0;11447:7;:22;;;;64310:712;:::o;65509:109::-;65564:7;65591:19;;65584:26;;65509:109;:::o;70613:85::-;70656:4;70679:11;;;;;;;;;;;70672:18;;70613:85;:::o;35485:104::-;35541:13;35574:7;35567:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35485:104;:::o;68448:478::-;68533:16;68561:42;68620:1;68606:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68561:61;;68664:38;68695:6;68664:30;:38::i;:::-;68633:25;68659:1;68633:28;;;;;;;;:::i;:::-;;;;;;;:69;;;;;68744:38;68775:6;68744:30;:38::i;:::-;68713:25;68739:1;68713:28;;;;;;;;:::i;:::-;;;;;;;:69;;;;;68824:49;68866:6;68824:41;:49::i;:::-;68793:25;68819:1;68793:28;;;;;;;;:::i;:::-;;;;;;;:80;;;;;68893:25;68886:32;;;68448:478;;;:::o;66163:88::-;13498:13;:11;:13::i;:::-;66239:4:::1;66228:8;:15;;;;66163:88:::0;:::o;37538:308::-;37649:19;:17;:19::i;:::-;37637:31;;:8;:31;;;37633:61;;;37677:17;;;;;;;;;;;;;;37633:61;37759:8;37707:18;:39;37726:19;:17;:19::i;:::-;37707:39;;;;;;;;;;;;;;;:49;37747:8;37707:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;37819:8;37783:55;;37798:19;:17;:19::i;:::-;37783:55;;;37829:8;37783:55;;;;;;:::i;:::-;;;;;;;;37538:308;;:::o;66847:89::-;66892:7;66919:9;;66912:16;;66847:89;:::o;67194:115::-;67252:7;67279:22;;67272:29;;67194:115;:::o;67588:120::-;13498:13;:11;:13::i;:::-;67694:6:::1;67669:22;:31;;;;67588:120:::0;:::o;61061:38::-;;;;:::o;38408:399::-;38575:31;38588:4;38594:2;38598:7;38575:12;:31::i;:::-;38639:1;38621:2;:14;;;:19;38617:183;;38660:56;38691:4;38697:2;38701:7;38710:5;38660:30;:56::i;:::-;38655:145;;38744:40;;;;;;;;;;;;;;38655:145;38617:183;38408:399;;;;:::o;63539:759::-;10537:1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;63648:11:::1;;;;;;;;;;;63640:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;63724:8;63712:9;;:20;;;;:::i;:::-;63699:9;:33;63691:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;63811:8;;63799;63776;:20;63785:10;63776:20;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:43;;63768:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;63895:22;;63883:8;63859:21;;:32;;;;:::i;:::-;:58;;63851:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;63967:80;63986:5;;63967:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63993:12;;64034:10;64017:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;64007:39;;;;;;63967:18;:80::i;:::-;63959:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;64099:9;64085:23;;:10;:23;;;64076:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;64197:8;64172:21;;:33;;;;;;;:::i;:::-;;;;;;;;64240:8;64216;:20;64225:10;64216:20;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;64259:31;64269:10;64281:8;64259:9;:31::i;:::-;10493:1:::0;11447:7;:22;;;;63539:759;;;:::o;70807:93::-;70854:4;70877:15;;;;;;;;;;;70870:22;;70807:93;:::o;66069:88::-;13498:13;:11;:13::i;:::-;66145:4:::1;66134:8;:15;;;;66069:88:::0;:::o;35660:318::-;35733:13;35764:16;35772:7;35764;:16::i;:::-;35759:59;;35789:29;;;;;;;;;;;;;;35759:59;35831:21;35855:10;:8;:10::i;:::-;35831:34;;35908:1;35889:7;35883:21;:26;;:87;;;;;;;;;;;;;;;;;35936:7;35945:18;35955:7;35945:9;:18::i;:::-;35919:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35883:87;35876:94;;;35660:318;;;:::o;67999:128::-;68076:7;68103:8;:16;68112:6;68103:16;;;;;;;;;;;;;;;;68096:23;;67999:128;;;:::o;65953:110::-;13498:13;:11;:13::i;:::-;66051:4:::1;66029:19;:26;;;;65953:110:::0;:::o;61752:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69047:114::-;69104:7;69132:21;;69125:28;;69047:114;:::o;37917:164::-;38014:4;38038:18;:25;38057:5;38038:25;;;;;;;;;;;;;;;:35;38064:8;38038:35;;;;;;;;;;;;;;;;;;;;;;;;;38031:42;;37917:164;;;;:::o;60908:44::-;;;;:::o;66707:99::-;13498:13;:11;:13::i;:::-;66794:4:::1;66776:15;;:22;;;;;;;;;;;;;;;;;;66707:99:::0;:::o;70704:97::-;70753:4;70776:17;;;;;;;;;;;70769:24;;70704:97;:::o;14518:201::-;13498:13;:11;:13::i;:::-;14627:1:::1;14607:22;;:8;:22;;;;14599:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14683:28;14702:8;14683:18;:28::i;:::-;14518:201:::0;:::o;67714:132::-;13498:13;:11;:13::i;:::-;67832:6:::1;67801:28;:37;;;;67714:132:::0;:::o;61329:55::-;;;;;;;;;;;;;;;;;:::o;66965:92::-;13498:13;:11;:13::i;:::-;67044:5:::1;67032:9;:17;;;;66965:92:::0;:::o;61391:44::-;;;;;;;;;;;;;;;;;:::o;60404:35::-;;;;;;;;;;;;;:::o;39062:273::-;39119:4;39175:7;39156:15;:13;:15::i;:::-;:26;;:66;;;;;39209:13;;39199:7;:23;39156:66;:152;;;;;39307:1;25673:8;39260:17;:26;39278:7;39260:26;;;;;;;;;;;;:43;:48;39156:152;39136:172;;39062:273;;;:::o;13777:132::-;13852:12;:10;:12::i;:::-;13841:23;;:7;:5;:7::i;:::-;:23;;;13833:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13777:132::o;57623:105::-;57683:7;57710:10;57703:17;;57623:105;:::o;28247:92::-;28303:7;28247:92;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;1361:40;;1219:190;;;;;:::o;39419:104::-;39488:27;39498:2;39502:8;39488:27;;;;;;;;;;;;:9;:27::i;:::-;39419:104;;:::o;32022:1129::-;32089:7;32109:12;32124:7;32109:22;;32192:4;32173:15;:13;:15::i;:::-;:23;32169:915;;32226:13;;32219:4;:20;32215:869;;;32264:14;32281:17;:23;32299:4;32281:23;;;;;;;;;;;;32264:40;;32397:1;25673:8;32370:6;:23;:28;32366:699;;;32889:113;32906:1;32896:6;:11;32889:113;;;32949:17;:25;32967:6;;;;;;;32949:25;;;;;;;;;;;;32940:34;;32889:113;;;33035:6;33028:13;;;;;;32366:699;32241:843;32215:869;32169:915;33112:31;;;;;;;;;;;;;;32022:1129;;;;:::o;44863:652::-;44958:27;44987:23;45028:53;45084:15;45028:71;;45270:7;45264:4;45257:21;45305:22;45299:4;45292:36;45381:4;45375;45365:21;45342:44;;45477:19;45471:26;45452:45;;45208:300;44863:652;;;:::o;45628:645::-;45770:11;45932:15;45926:4;45922:26;45914:34;;46091:15;46080:9;46076:31;46063:44;;46238:15;46227:9;46224:30;46217:4;46206:9;46203:19;46200:55;46190:65;;45628:645;;;;;:::o;56456:159::-;;;;;:::o;54768:309::-;54903:7;54923:16;26074:3;54949:19;:40;;54923:67;;26074:3;55016:31;55027:4;55033:2;55037:9;55016:10;:31::i;:::-;55008:40;;:61;;55001:68;;;54768:309;;;;;:::o;34596:447::-;34676:14;34844:15;34837:5;34833:27;34824:36;;35018:5;35004:11;34980:22;34976:40;34973:51;34966:5;34963:62;34953:72;;34596:447;;;;:::o;57274:158::-;;;;;:::o;14879:191::-;14953:16;14972:6;;;;;;;;;;;14953:25;;14998:8;14989:6;;:17;;;;;;;;;;;;;;;;;;15053:8;15022:40;;15043:8;15022:40;;;;;;;;;;;;14942:128;14879:191;:::o;53278:716::-;53441:4;53487:2;53462:45;;;53508:19;:17;:19::i;:::-;53529:4;53535:7;53544:5;53462:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53458:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53762:1;53745:6;:13;:18;53741:235;;;53791:40;;;;;;;;;;;;;;53741:235;53934:6;53928:13;53919:6;53915:2;53911:15;53904:38;53458:529;53631:54;;;53621:64;;;:6;:64;;;;53614:71;;;53278:716;;;;;;:::o;65232:113::-;65292:13;65325:12;65318:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65232:113;:::o;57834:1960::-;57891:17;58310:3;58303:4;58297:11;58293:21;58286:28;;58401:3;58395:4;58388:17;58507:3;58963:5;59093:1;59088:3;59084:11;59077:18;;59230:2;59224:4;59220:13;59216:2;59212:22;59207:3;59199:36;59271:2;59265:4;59261:13;59253:21;;58855:697;59290:4;58855:697;;;59481:1;59476:3;59472:11;59465:18;;59532:2;59526:4;59522:13;59518:2;59514:22;59509:3;59501:36;59385:2;59379:4;59375:13;59367:21;;58855:697;;;58859:430;59591:3;59586;59582:13;59706:2;59701:3;59697:12;59690:19;;59769:6;59764:3;59757:19;57930:1857;;57834:1960;;;:::o;12163:98::-;12216:7;12243:10;12236:17;;12163:98;:::o;2086:296::-;2169:7;2189:20;2212:4;2189:27;;2232:9;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;;2300:9;:33::i;:::-;2285:48;;2265:3;;;;;:::i;:::-;;;;2227:118;;;;2362:12;2355:19;;;2086:296;;;;:::o;39939:681::-;40062:19;40068:2;40072:8;40062:5;:19::i;:::-;40141:1;40123:2;:14;;;:19;40119:483;;40163:11;40177:13;;40163:27;;40209:13;40231:8;40225:3;:14;40209:30;;40258:233;40289:62;40328:1;40332:2;40336:7;;;;;;40345:5;40289:30;:62::i;:::-;40284:167;;40387:40;;;;;;;;;;;;;;40284:167;40486:3;40478:5;:11;40258:233;;40573:3;40556:13;;:20;40552:34;;40578:8;;;40552:34;40144:458;;40119:483;39939:681;;;:::o;55653:147::-;55790:6;55653:147;;;;;:::o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8414:20;8429:1;8432;8414:14;:20::i;:::-;8383:51;;;8391:20;8406:1;8409;8391:14;:20::i;:::-;8383:51;8376:58;;8293:149;;;;:::o;40893:1529::-;40958:20;40981:13;;40958:36;;41023:1;41009:16;;:2;:16;;;41005:48;;;41034:19;;;;;;;;;;;;;;41005:48;41080:1;41068:8;:13;41064:44;;;41090:18;;;;;;;;;;;;;;41064:44;41121:61;41151:1;41155:2;41159:12;41173:8;41121:21;:61::i;:::-;41664:1;25040:2;41635:1;:25;;41634:31;41622:8;:44;41596:18;:22;41615:2;41596:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;41943:139;41980:2;42034:33;42057:1;42061:2;42065:1;42034:14;:33::i;:::-;42001:30;42022:8;42001:20;:30::i;:::-;:66;41943:18;:139::i;:::-;41909:17;:31;41927:12;41909:31;;;;;;;;;;;:173;;;;42099:15;42117:12;42099:30;;42144:11;42173:8;42158:12;:23;42144:37;;42196:101;42248:9;;;;;;42244:2;42223:35;;42240:1;42223:35;;;;;;;;;;;;42292:3;42282:7;:13;42196:101;;42329:3;42313:13;:19;;;;41370:974;;42354:60;42383:1;42387:2;42391:12;42405:8;42354:20;:60::i;:::-;40947:1475;40893:1529;;:::o;8450:268::-;8518:13;8625:1;8619:4;8612:15;8654:1;8648:4;8641:15;8695:4;8689;8679:21;8670:30;;8450:268;;;;:::o;36426:322::-;36496:14;36727:1;36717:8;36714:15;36689:23;36685:45;36675:55;;36426:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410: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:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:323::-;6412:6;6461:2;6449:9;6440:7;6436:23;6432:32;6429:119;;;6467:79;;:::i;:::-;6429:119;6587:1;6612:50;6654:7;6645:6;6634:9;6630:22;6612:50;:::i;:::-;6602:60;;6558:114;6356:323;;;;:::o;6685:329::-;6744:6;6793:2;6781:9;6772:7;6768:23;6764:32;6761:119;;;6799:79;;:::i;:::-;6761:119;6919:1;6944:53;6989:7;6980:6;6969:9;6965:22;6944:53;:::i;:::-;6934:63;;6890:117;6685:329;;;;:::o;7020:327::-;7078:6;7127:2;7115:9;7106:7;7102:23;7098:32;7095:119;;;7133:79;;:::i;:::-;7095:119;7253:1;7278:52;7322:7;7313:6;7302:9;7298:22;7278:52;:::i;:::-;7268:62;;7224:116;7020:327;;;;:::o;7353:349::-;7422:6;7471:2;7459:9;7450:7;7446:23;7442:32;7439:119;;;7477:79;;:::i;:::-;7439:119;7597:1;7622:63;7677:7;7668:6;7657:9;7653:22;7622:63;:::i;:::-;7612:73;;7568:127;7353:349;;;;:::o;7708:509::-;7777:6;7826:2;7814:9;7805:7;7801:23;7797:32;7794:119;;;7832:79;;:::i;:::-;7794:119;7980:1;7969:9;7965:17;7952:31;8010:18;8002:6;7999:30;7996:117;;;8032:79;;:::i;:::-;7996:117;8137:63;8192:7;8183:6;8172:9;8168:22;8137:63;:::i;:::-;8127:73;;7923:287;7708:509;;;;:::o;8223:329::-;8282:6;8331:2;8319:9;8310:7;8306:23;8302:32;8299:119;;;8337:79;;:::i;:::-;8299:119;8457:1;8482:53;8527:7;8518:6;8507:9;8503:22;8482:53;:::i;:::-;8472:63;;8428:117;8223:329;;;;:::o;8558:704::-;8653:6;8661;8669;8718:2;8706:9;8697:7;8693:23;8689:32;8686:119;;;8724:79;;:::i;:::-;8686:119;8844:1;8869:53;8914:7;8905:6;8894:9;8890:22;8869:53;:::i;:::-;8859:63;;8815:117;8999:2;8988:9;8984:18;8971:32;9030:18;9022:6;9019:30;9016:117;;;9052:79;;:::i;:::-;9016:117;9165:80;9237:7;9228:6;9217:9;9213:22;9165:80;:::i;:::-;9147:98;;;;8942:313;8558:704;;;;;:::o;9268:179::-;9337:10;9358:46;9400:3;9392:6;9358:46;:::i;:::-;9436:4;9431:3;9427:14;9413:28;;9268:179;;;;:::o;9453:118::-;9540:24;9558:5;9540:24;:::i;:::-;9535:3;9528:37;9453:118;;:::o;9577:157::-;9682:45;9702:24;9720:5;9702:24;:::i;:::-;9682:45;:::i;:::-;9677:3;9670:58;9577:157;;:::o;9770:732::-;9889:3;9918:54;9966:5;9918:54;:::i;:::-;9988:86;10067:6;10062:3;9988:86;:::i;:::-;9981:93;;10098:56;10148:5;10098:56;:::i;:::-;10177:7;10208:1;10193:284;10218:6;10215:1;10212:13;10193:284;;;10294:6;10288:13;10321:63;10380:3;10365:13;10321:63;:::i;:::-;10314:70;;10407:60;10460:6;10407:60;:::i;:::-;10397:70;;10253:224;10240:1;10237;10233:9;10228:14;;10193:284;;;10197:14;10493:3;10486:10;;9894:608;;;9770:732;;;;:::o;10508:109::-;10589:21;10604:5;10589:21;:::i;:::-;10584:3;10577:34;10508:109;;:::o;10623:118::-;10710:24;10728:5;10710:24;:::i;:::-;10705:3;10698:37;10623:118;;:::o;10747:360::-;10833:3;10861:38;10893:5;10861:38;:::i;:::-;10915:70;10978:6;10973:3;10915:70;:::i;:::-;10908:77;;10994:52;11039:6;11034:3;11027:4;11020:5;11016:16;10994:52;:::i;:::-;11071:29;11093:6;11071:29;:::i;:::-;11066:3;11062:39;11055:46;;10837:270;10747:360;;;;:::o;11113:364::-;11201:3;11229:39;11262:5;11229:39;:::i;:::-;11284:71;11348:6;11343:3;11284:71;:::i;:::-;11277:78;;11364:52;11409:6;11404:3;11397:4;11390:5;11386:16;11364:52;:::i;:::-;11441:29;11463:6;11441:29;:::i;:::-;11436:3;11432:39;11425:46;;11205:272;11113:364;;;;:::o;11483:377::-;11589:3;11617:39;11650:5;11617:39;:::i;:::-;11672:89;11754:6;11749:3;11672:89;:::i;:::-;11665:96;;11770:52;11815:6;11810:3;11803:4;11796:5;11792:16;11770:52;:::i;:::-;11847:6;11842:3;11838:16;11831:23;;11593:267;11483:377;;;;:::o;11866:366::-;12008:3;12029:67;12093:2;12088:3;12029:67;:::i;:::-;12022:74;;12105:93;12194:3;12105:93;:::i;:::-;12223:2;12218:3;12214:12;12207:19;;11866:366;;;:::o;12238:::-;12380:3;12401:67;12465:2;12460:3;12401:67;:::i;:::-;12394:74;;12477:93;12566:3;12477:93;:::i;:::-;12595:2;12590:3;12586:12;12579:19;;12238:366;;;:::o;12610:::-;12752:3;12773:67;12837:2;12832:3;12773:67;:::i;:::-;12766:74;;12849:93;12938:3;12849:93;:::i;:::-;12967:2;12962:3;12958:12;12951:19;;12610:366;;;:::o;12982:::-;13124:3;13145:67;13209:2;13204:3;13145:67;:::i;:::-;13138:74;;13221:93;13310:3;13221:93;:::i;:::-;13339:2;13334:3;13330:12;13323:19;;12982:366;;;:::o;13354:365::-;13496:3;13517:66;13581:1;13576:3;13517:66;:::i;:::-;13510:73;;13592:93;13681:3;13592:93;:::i;:::-;13710:2;13705:3;13701:12;13694:19;;13354:365;;;:::o;13725:366::-;13867:3;13888:67;13952:2;13947:3;13888:67;:::i;:::-;13881:74;;13964:93;14053:3;13964:93;:::i;:::-;14082:2;14077:3;14073:12;14066:19;;13725:366;;;:::o;14097:::-;14239:3;14260:67;14324:2;14319:3;14260:67;:::i;:::-;14253:74;;14336:93;14425:3;14336:93;:::i;:::-;14454:2;14449:3;14445:12;14438:19;;14097:366;;;:::o;14469:::-;14611:3;14632:67;14696:2;14691:3;14632:67;:::i;:::-;14625:74;;14708:93;14797:3;14708:93;:::i;:::-;14826:2;14821:3;14817:12;14810:19;;14469:366;;;:::o;14841:398::-;15000:3;15021:83;15102:1;15097:3;15021:83;:::i;:::-;15014:90;;15113:93;15202:3;15113:93;:::i;:::-;15231:1;15226:3;15222:11;15215:18;;14841:398;;;:::o;15245:365::-;15387:3;15408:66;15472:1;15467:3;15408:66;:::i;:::-;15401:73;;15483:93;15572:3;15483:93;:::i;:::-;15601:2;15596:3;15592:12;15585:19;;15245:365;;;:::o;15616:366::-;15758:3;15779:67;15843:2;15838:3;15779:67;:::i;:::-;15772:74;;15855:93;15944:3;15855:93;:::i;:::-;15973:2;15968:3;15964:12;15957:19;;15616:366;;;:::o;15988:::-;16130:3;16151:67;16215:2;16210:3;16151:67;:::i;:::-;16144:74;;16227:93;16316:3;16227:93;:::i;:::-;16345:2;16340:3;16336:12;16329:19;;15988:366;;;:::o;16360:::-;16502:3;16523:67;16587:2;16582:3;16523:67;:::i;:::-;16516:74;;16599:93;16688:3;16599:93;:::i;:::-;16717:2;16712:3;16708:12;16701:19;;16360:366;;;:::o;16732:::-;16874:3;16895:67;16959:2;16954:3;16895:67;:::i;:::-;16888:74;;16971:93;17060:3;16971:93;:::i;:::-;17089:2;17084:3;17080:12;17073:19;;16732:366;;;:::o;17104:::-;17246:3;17267:67;17331:2;17326:3;17267:67;:::i;:::-;17260:74;;17343:93;17432:3;17343:93;:::i;:::-;17461:2;17456:3;17452:12;17445:19;;17104:366;;;:::o;17476:::-;17618:3;17639:67;17703:2;17698:3;17639:67;:::i;:::-;17632:74;;17715:93;17804:3;17715:93;:::i;:::-;17833:2;17828:3;17824:12;17817:19;;17476:366;;;:::o;17848:::-;17990:3;18011:67;18075:2;18070:3;18011:67;:::i;:::-;18004:74;;18087:93;18176:3;18087:93;:::i;:::-;18205:2;18200:3;18196:12;18189:19;;17848:366;;;:::o;18220:108::-;18297:24;18315:5;18297:24;:::i;:::-;18292:3;18285:37;18220:108;;:::o;18334:118::-;18421:24;18439:5;18421:24;:::i;:::-;18416:3;18409:37;18334:118;;:::o;18458:256::-;18570:3;18585:75;18656:3;18647:6;18585:75;:::i;:::-;18685:2;18680:3;18676:12;18669:19;;18705:3;18698:10;;18458:256;;;;:::o;18720:435::-;18900:3;18922:95;19013:3;19004:6;18922:95;:::i;:::-;18915:102;;19034:95;19125:3;19116:6;19034:95;:::i;:::-;19027:102;;19146:3;19139:10;;18720:435;;;;;:::o;19161:379::-;19345:3;19367:147;19510:3;19367:147;:::i;:::-;19360:154;;19531:3;19524:10;;19161:379;;;:::o;19546:222::-;19639:4;19677:2;19666:9;19662:18;19654:26;;19690:71;19758:1;19747:9;19743:17;19734:6;19690:71;:::i;:::-;19546:222;;;;:::o;19774:640::-;19969:4;20007:3;19996:9;19992:19;19984:27;;20021:71;20089:1;20078:9;20074:17;20065:6;20021:71;:::i;:::-;20102:72;20170:2;20159:9;20155:18;20146:6;20102:72;:::i;:::-;20184;20252:2;20241:9;20237:18;20228:6;20184:72;:::i;:::-;20303:9;20297:4;20293:20;20288:2;20277:9;20273:18;20266:48;20331:76;20402:4;20393:6;20331:76;:::i;:::-;20323:84;;19774:640;;;;;;;:::o;20420:373::-;20563:4;20601:2;20590:9;20586:18;20578:26;;20650:9;20644:4;20640:20;20636:1;20625:9;20621:17;20614:47;20678:108;20781:4;20772:6;20678:108;:::i;:::-;20670:116;;20420:373;;;;:::o;20799:210::-;20886:4;20924:2;20913:9;20909:18;20901:26;;20937:65;20999:1;20988:9;20984:17;20975:6;20937:65;:::i;:::-;20799:210;;;;:::o;21015:222::-;21108:4;21146:2;21135:9;21131:18;21123:26;;21159:71;21227:1;21216:9;21212:17;21203:6;21159:71;:::i;:::-;21015:222;;;;:::o;21243:313::-;21356:4;21394:2;21383:9;21379:18;21371:26;;21443:9;21437:4;21433:20;21429:1;21418:9;21414:17;21407:47;21471:78;21544:4;21535:6;21471:78;:::i;:::-;21463:86;;21243:313;;;;:::o;21562:419::-;21728:4;21766:2;21755:9;21751:18;21743:26;;21815:9;21809:4;21805:20;21801:1;21790:9;21786:17;21779:47;21843:131;21969:4;21843:131;:::i;:::-;21835:139;;21562:419;;;:::o;21987:::-;22153:4;22191:2;22180:9;22176:18;22168:26;;22240:9;22234:4;22230:20;22226:1;22215:9;22211:17;22204:47;22268:131;22394:4;22268:131;:::i;:::-;22260:139;;21987:419;;;:::o;22412:::-;22578:4;22616:2;22605:9;22601:18;22593:26;;22665:9;22659:4;22655:20;22651:1;22640:9;22636:17;22629:47;22693:131;22819:4;22693:131;:::i;:::-;22685:139;;22412:419;;;:::o;22837:::-;23003:4;23041:2;23030:9;23026:18;23018:26;;23090:9;23084:4;23080:20;23076:1;23065:9;23061:17;23054:47;23118:131;23244:4;23118:131;:::i;:::-;23110:139;;22837:419;;;:::o;23262:::-;23428:4;23466:2;23455:9;23451:18;23443:26;;23515:9;23509:4;23505:20;23501:1;23490:9;23486:17;23479:47;23543:131;23669:4;23543:131;:::i;:::-;23535:139;;23262:419;;;:::o;23687:::-;23853:4;23891:2;23880:9;23876:18;23868:26;;23940:9;23934:4;23930:20;23926:1;23915:9;23911:17;23904:47;23968:131;24094:4;23968:131;:::i;:::-;23960:139;;23687:419;;;:::o;24112:::-;24278:4;24316:2;24305:9;24301:18;24293:26;;24365:9;24359:4;24355:20;24351:1;24340:9;24336:17;24329:47;24393:131;24519:4;24393:131;:::i;:::-;24385:139;;24112:419;;;:::o;24537:::-;24703:4;24741:2;24730:9;24726:18;24718:26;;24790:9;24784:4;24780:20;24776:1;24765:9;24761:17;24754:47;24818:131;24944:4;24818:131;:::i;:::-;24810:139;;24537:419;;;:::o;24962:::-;25128:4;25166:2;25155:9;25151:18;25143:26;;25215:9;25209:4;25205:20;25201:1;25190:9;25186:17;25179:47;25243:131;25369:4;25243:131;:::i;:::-;25235:139;;24962:419;;;:::o;25387:::-;25553:4;25591:2;25580:9;25576:18;25568:26;;25640:9;25634:4;25630:20;25626:1;25615:9;25611:17;25604:47;25668:131;25794:4;25668:131;:::i;:::-;25660:139;;25387:419;;;:::o;25812:::-;25978:4;26016:2;26005:9;26001:18;25993:26;;26065:9;26059:4;26055:20;26051:1;26040:9;26036:17;26029:47;26093:131;26219:4;26093:131;:::i;:::-;26085:139;;25812:419;;;:::o;26237:::-;26403:4;26441:2;26430:9;26426:18;26418:26;;26490:9;26484:4;26480:20;26476:1;26465:9;26461:17;26454:47;26518:131;26644:4;26518:131;:::i;:::-;26510:139;;26237:419;;;:::o;26662:::-;26828:4;26866:2;26855:9;26851:18;26843:26;;26915:9;26909:4;26905:20;26901:1;26890:9;26886:17;26879:47;26943:131;27069:4;26943:131;:::i;:::-;26935:139;;26662:419;;;:::o;27087:::-;27253:4;27291:2;27280:9;27276:18;27268:26;;27340:9;27334:4;27330:20;27326:1;27315:9;27311:17;27304:47;27368:131;27494:4;27368:131;:::i;:::-;27360:139;;27087:419;;;:::o;27512:::-;27678:4;27716:2;27705:9;27701:18;27693:26;;27765:9;27759:4;27755:20;27751:1;27740:9;27736:17;27729:47;27793:131;27919:4;27793:131;:::i;:::-;27785:139;;27512:419;;;:::o;27937:::-;28103:4;28141:2;28130:9;28126:18;28118:26;;28190:9;28184:4;28180:20;28176:1;28165:9;28161:17;28154:47;28218:131;28344:4;28218:131;:::i;:::-;28210:139;;27937:419;;;:::o;28362:222::-;28455:4;28493:2;28482:9;28478:18;28470:26;;28506:71;28574:1;28563:9;28559:17;28550:6;28506:71;:::i;:::-;28362:222;;;;:::o;28590:129::-;28624:6;28651:20;;:::i;:::-;28641:30;;28680:33;28708:4;28700:6;28680:33;:::i;:::-;28590:129;;;:::o;28725:75::-;28758:6;28791:2;28785:9;28775:19;;28725:75;:::o;28806:307::-;28867:4;28957:18;28949:6;28946:30;28943:56;;;28979:18;;:::i;:::-;28943:56;29017:29;29039:6;29017:29;:::i;:::-;29009:37;;29101:4;29095;29091:15;29083:23;;28806:307;;;:::o;29119:308::-;29181:4;29271:18;29263:6;29260:30;29257:56;;;29293:18;;:::i;:::-;29257:56;29331:29;29353:6;29331:29;:::i;:::-;29323:37;;29415:4;29409;29405:15;29397:23;;29119:308;;;:::o;29433:132::-;29500:4;29523:3;29515:11;;29553:4;29548:3;29544:14;29536:22;;29433:132;;;:::o;29571:114::-;29638:6;29672:5;29666:12;29656:22;;29571:114;;;:::o;29691:98::-;29742:6;29776:5;29770:12;29760:22;;29691:98;;;:::o;29795:99::-;29847:6;29881:5;29875:12;29865:22;;29795:99;;;:::o;29900:113::-;29970:4;30002;29997:3;29993:14;29985:22;;29900:113;;;:::o;30019:184::-;30118:11;30152:6;30147:3;30140:19;30192:4;30187:3;30183:14;30168:29;;30019:184;;;;:::o;30209:168::-;30292:11;30326:6;30321:3;30314:19;30366:4;30361:3;30357:14;30342:29;;30209:168;;;;:::o;30383:147::-;30484:11;30521:3;30506:18;;30383:147;;;;:::o;30536:169::-;30620:11;30654:6;30649:3;30642:19;30694:4;30689:3;30685:14;30670:29;;30536:169;;;;:::o;30711:148::-;30813:11;30850:3;30835:18;;30711:148;;;;:::o;30865:305::-;30905:3;30924:20;30942:1;30924:20;:::i;:::-;30919:25;;30958:20;30976:1;30958:20;:::i;:::-;30953:25;;31112:1;31044:66;31040:74;31037:1;31034:81;31031:107;;;31118:18;;:::i;:::-;31031:107;31162:1;31159;31155:9;31148:16;;30865:305;;;;:::o;31176:348::-;31216:7;31239:20;31257:1;31239:20;:::i;:::-;31234:25;;31273:20;31291:1;31273:20;:::i;:::-;31268:25;;31461:1;31393:66;31389:74;31386:1;31383:81;31378:1;31371:9;31364:17;31360:105;31357:131;;;31468:18;;:::i;:::-;31357:131;31516:1;31513;31509:9;31498:20;;31176:348;;;;:::o;31530:96::-;31567:7;31596:24;31614:5;31596:24;:::i;:::-;31585:35;;31530:96;;;:::o;31632:90::-;31666:7;31709:5;31702:13;31695:21;31684:32;;31632:90;;;:::o;31728:77::-;31765:7;31794:5;31783:16;;31728:77;;;:::o;31811:149::-;31847:7;31887:66;31880:5;31876:78;31865:89;;31811:149;;;:::o;31966:126::-;32003:7;32043:42;32036:5;32032:54;32021:65;;31966:126;;;:::o;32098:77::-;32135:7;32164:5;32153:16;;32098:77;;;:::o;32181:154::-;32265:6;32260:3;32255;32242:30;32327:1;32318:6;32313:3;32309:16;32302:27;32181:154;;;:::o;32341:307::-;32409:1;32419:113;32433:6;32430:1;32427:13;32419:113;;;32518:1;32513:3;32509:11;32503:18;32499:1;32494:3;32490:11;32483:39;32455:2;32452:1;32448:10;32443:15;;32419:113;;;32550:6;32547:1;32544:13;32541:101;;;32630:1;32621:6;32616:3;32612:16;32605:27;32541:101;32390:258;32341:307;;;:::o;32654:320::-;32698:6;32735:1;32729:4;32725:12;32715:22;;32782:1;32776:4;32772:12;32803:18;32793:81;;32859:4;32851:6;32847:17;32837:27;;32793:81;32921:2;32913:6;32910:14;32890:18;32887:38;32884:84;;;32940:18;;:::i;:::-;32884:84;32705:269;32654:320;;;:::o;32980:281::-;33063:27;33085:4;33063:27;:::i;:::-;33055:6;33051:40;33193:6;33181:10;33178:22;33157:18;33145:10;33142:34;33139:62;33136:88;;;33204:18;;:::i;:::-;33136:88;33244:10;33240:2;33233:22;33023:238;32980:281;;:::o;33267:233::-;33306:3;33329:24;33347:5;33329:24;:::i;:::-;33320:33;;33375:66;33368:5;33365:77;33362:103;;;33445:18;;:::i;:::-;33362:103;33492:1;33485:5;33481:13;33474:20;;33267:233;;;:::o;33506:100::-;33545:7;33574:26;33594:5;33574:26;:::i;:::-;33563:37;;33506:100;;;:::o;33612:94::-;33651:7;33680:20;33694:5;33680:20;:::i;:::-;33669:31;;33612:94;;;:::o;33712:180::-;33760:77;33757:1;33750:88;33857:4;33854:1;33847:15;33881:4;33878:1;33871:15;33898:180;33946:77;33943:1;33936:88;34043:4;34040:1;34033:15;34067:4;34064:1;34057:15;34084:180;34132:77;34129:1;34122:88;34229:4;34226:1;34219:15;34253:4;34250:1;34243:15;34270:180;34318:77;34315:1;34308:88;34415:4;34412:1;34405:15;34439:4;34436:1;34429:15;34456:117;34565:1;34562;34555:12;34579:117;34688:1;34685;34678:12;34702:117;34811:1;34808;34801:12;34825:117;34934:1;34931;34924:12;34948:117;35057:1;35054;35047:12;35071:117;35180:1;35177;35170:12;35194:102;35235:6;35286:2;35282:7;35277:2;35270:5;35266:14;35262:28;35252:38;;35194:102;;;:::o;35302:94::-;35335:8;35383:5;35379:2;35375:14;35354:35;;35302:94;;;:::o;35402:179::-;35542:27;35538:1;35530:6;35526:14;35519:51;35402:179;:::o;35591:184::-;35735:28;35731:1;35723:6;35719:14;35712:52;35591:184;:::o;35785:237::-;35929:34;35925:1;35917:6;35913:14;35906:58;36002:8;35997:2;35989:6;35985:15;35978:33;35785:237;:::o;36032:187::-;36176:31;36172:1;36164:6;36160:14;36153:55;36032:187;:::o;36229:164::-;36373:8;36369:1;36361:6;36357:14;36350:32;36229:164;:::o;36403:178::-;36547:22;36543:1;36535:6;36531:14;36524:46;36403:178;:::o;36591:::-;36735:22;36731:1;36723:6;36719:14;36712:46;36591:178;:::o;36779:190::-;36923:34;36919:1;36911:6;36907:14;36900:58;36779:190;:::o;36979:118::-;;:::o;37107:166::-;37251:10;37247:1;37239:6;37235:14;37228:34;37107:166;:::o;37283:171::-;37427:15;37423:1;37415:6;37411:14;37404:39;37283:171;:::o;37464:181::-;37608:21;37604:1;37596:6;37592:14;37585:45;37464:181;:::o;37659:182::-;37807:18;37803:1;37795:6;37791:14;37784:42;37659:182;:::o;37855:::-;38003:18;37999:1;37991:6;37987:14;37980:42;37855:182;:::o;38051:197::-;38199:33;38195:1;38187:6;38183:14;38176:57;38051:197;:::o;38262:193::-;38410:29;38406:1;38398:6;38394:14;38387:53;38262:193;:::o;38469:198::-;38617:34;38613:1;38605:6;38601:14;38594:58;38469:198;:::o;38681:138::-;38762:24;38780:5;38762:24;:::i;:::-;38755:5;38752:35;38742:63;;38801:1;38798;38791:12;38742:63;38681:138;:::o;38833:132::-;38911:21;38926:5;38911:21;:::i;:::-;38904:5;38901:32;38891:60;;38947:1;38944;38937:12;38891:60;38833:132;:::o;38979:138::-;39060:24;39078:5;39060:24;:::i;:::-;39053:5;39050:35;39040:63;;39099:1;39096;39089:12;39040:63;38979:138;:::o;39131:136::-;39211:23;39228:5;39211:23;:::i;:::-;39204:5;39201:34;39191:62;;39249:1;39246;39239:12;39191:62;39131:136;:::o;39281:138::-;39362:24;39380:5;39362:24;:::i;:::-;39355:5;39352:35;39342:63;;39401:1;39398;39391:12;39342:63;39281:138;:::o

Swarm Source

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