ETH Price: $3,292.45 (+1.31%)
Gas: 2 Gwei

Token

XORE-Pioneer (XP)
 

Overview

Max Total Supply

333 XP

Holders

322

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
888king.eth
Balance
1 XP
0xf1317609b61138592f9bbfc54483eee9a9ace0c4
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
XorePioneer

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: operator-filter-registry/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: operator-filter-registry/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

// File: operator-filter-registry/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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


// OpenZeppelin Contracts (last updated v4.8.0) (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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

    function _nonReentrantAfter() private {
        // 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.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores 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 via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

    /**
     * @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](https://eips.ethereum.org/EIPS/eip-2309) 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.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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 => TokenApprovalRef) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 virtual {
        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;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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 '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 virtual {
        uint256 startTokenId = _currentIndex;
        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 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _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 virtual {
        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 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 virtual {
        _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 Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @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) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(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++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        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 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 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;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: contracts/XorePioneerEnforced.sol



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



pragma solidity ^0.8.13;





contract XorePioneer is ERC721A, Ownable, ReentrancyGuard, DefaultOperatorFilterer {


  string public baseURI;
  string public notRevealedUri;
  uint256 public cost = 0 ether;
  uint256 public wlcost = 0 ether;
  uint256 public maxSupply = 333;
  uint256 public WlSupply = 250;
  uint256 public MaxperWallet = 1; // max per wallet for public
  uint256 public MaxperWalletWl = 1; // max per wallet for whitelist
  uint256 public MaxperTx = 1;  // max per transaction for public
  uint256 public MaxperTxWl = 1; // max per transaction for whitelist
  bool public paused = false;
  bool public revealed = false;
  bool public preSale = true;
  bool public publicSale = false;
  mapping (address => uint256) public PublicMinted;
  mapping (address => uint256) public WhitelistMinted;
  mapping(address => bool) whitelistedAddresses;
  address public p1 = 0xdef889a07c5608f2EEaAbb13BB6dA45cF21EF2a5;

  constructor(
    string memory _initBaseURI,
    string memory _notRevealedUri
  ) ERC721A("XORE-Pioneer", "XP") {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_notRevealedUri);
  }

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



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

      PublicMinted[_msgSenderERC721A()] += tokens;
      _safeMint(_msgSenderERC721A(), tokens);
    
  }
/// @dev presale mint for whitelisted
    function presalemint(uint256 tokens) public payable nonReentrant {
    require(!paused, "oops contract is paused");
    require(preSale, "Presale hasn't started yet");
    require(whitelistedAddresses[_msgSenderERC721A()], "You are Not Whitelisted");
    require(WhitelistMinted[_msgSenderERC721A()] + tokens <= MaxperWalletWl, "Max NFT Per Wallet exceeded");
    require(tokens <= MaxperTxWl, "max mint per Tx exceeded");
    require(totalSupply() + tokens <= WlSupply, "Whitelist MaxSupply exceeded");
    require(msg.value >= wlcost * tokens, "insufficient funds");

        WhitelistMinted[_msgSenderERC721A()] += tokens;
      _safeMint(_msgSenderERC721A(), tokens);
  }

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

      _safeMint(destination, _mintAmount);
  }

/// @notice returns metadata link of tokenid
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

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

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

  //only owner
  function reveal(bool _state) public onlyOwner {
      revealed = _state;
  }

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

  /// @dev change the whitelist max per wallet
    function setWlMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWalletWl = _limit;
  }

    /// @dev change the public max per transaction
  function setMaxPerTx(uint256 _limit) public onlyOwner {
    MaxperTx = _limit;
  }

  /// @dev change the whitelist max per transaction
    function setWlMaxPerTx(uint256 _limit) public onlyOwner {
    MaxperTxWl = _limit;
  }

   /// @dev change the public price(amount need to be in wei)
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

   /// @dev change the whitelist price(amount need to be in wei)
    function setWlCost(uint256 _newWlCost) public onlyOwner {
    wlcost = _newWlCost;
  }

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

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

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

   /// @dev set hidden uri
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

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

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

    /// @dev activate public sale(use booleans true or false)
    function togglepublicSale(bool _state) external onlyOwner {
        publicSale = _state;
    }

      function isWhitelisted(address _user) public view returns (bool) {
    return whitelistedAddresses[_user];
  }

    function whitelistUsers(address[] memory addresses) public onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      whitelistedAddresses[addresses[i]] = true;
    }
  }
  
  /// @dev withdraw funds from contract
  function withdraw() public payable onlyOwner nonReentrant {
      uint256 share1 = address(this).balance * 100 / 100;

      payable(p1).transfer(share1);
  }

    /// Opensea Royalties

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
    super.transferFrom(from, to, tokenId);
  }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
    super.safeTransferFrom(from, to, tokenId);
  }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) {
    super.safeTransferFrom(from, to, tokenId, data);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MaxperTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperTxWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"PublicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WhitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"p1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"presalemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWlCost","type":"uint256"}],"name":"setWlCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWlMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWlMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setwlsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526000600c556000600d5561014d600e5560fa600f5560016010556001601155600160125560016013556000601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff0219169083151502179055506001601460026101000a81548160ff0219169083151502179055506000601460036101000a81548160ff02191690831515021790555073def889a07c5608f2eeaabb13bb6da45cf21ef2a5601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000fb57600080fd5b506040516200577638038062005776833981810160405281019062000121919062000798565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600c81526020017f584f52452d50696f6e65657200000000000000000000000000000000000000008152506040518060400160405280600281526020017f58500000000000000000000000000000000000000000000000000000000000008152508160029081620001b5919062000a68565b508060039081620001c7919062000a68565b50620001d86200042960201b60201c565b600081905550505062000200620001f46200043260201b60201c565b6200043a60201b60201c565b600160098190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003fd578015620002c3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200028992919062000b94565b600060405180830381600087803b158015620002a457600080fd5b505af1158015620002b9573d6000803e3d6000fd5b50505050620003fc565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200037d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200034392919062000b94565b600060405180830381600087803b1580156200035e57600080fd5b505af115801562000373573d6000803e3d6000fd5b50505050620003fb565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003c6919062000bc1565b600060405180830381600087803b158015620003e157600080fd5b505af1158015620003f6573d6000803e3d6000fd5b505050505b5b5b505062000410826200050060201b60201c565b62000421816200052560201b60201c565b505062000c61565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005106200054a60201b60201c565b80600a908162000521919062000a68565b5050565b620005356200054a60201b60201c565b80600b908162000546919062000a68565b5050565b6200055a6200043260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000580620005db60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d09062000c3f565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200066e8262000623565b810181811067ffffffffffffffff8211171562000690576200068f62000634565b5b80604052505050565b6000620006a562000605565b9050620006b3828262000663565b919050565b600067ffffffffffffffff821115620006d657620006d562000634565b5b620006e18262000623565b9050602081019050919050565b60005b838110156200070e578082015181840152602081019050620006f1565b60008484015250505050565b6000620007316200072b84620006b8565b62000699565b90508281526020810184848401111562000750576200074f6200061e565b5b6200075d848285620006ee565b509392505050565b600082601f8301126200077d576200077c62000619565b5b81516200078f8482602086016200071a565b91505092915050565b60008060408385031215620007b257620007b16200060f565b5b600083015167ffffffffffffffff811115620007d357620007d262000614565b5b620007e18582860162000765565b925050602083015167ffffffffffffffff81111562000805576200080462000614565b5b620008138582860162000765565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200087057607f821691505b60208210810362000886576200088562000828565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008b1565b620008fc8683620008b1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000949620009436200093d8462000914565b6200091e565b62000914565b9050919050565b6000819050919050565b620009658362000928565b6200097d620009748262000950565b848454620008be565b825550505050565b600090565b6200099462000985565b620009a18184846200095a565b505050565b5b81811015620009c957620009bd6000826200098a565b600181019050620009a7565b5050565b601f82111562000a1857620009e2816200088c565b620009ed84620008a1565b81016020851015620009fd578190505b62000a1562000a0c85620008a1565b830182620009a6565b50505b505050565b600082821c905092915050565b600062000a3d6000198460080262000a1d565b1980831691505092915050565b600062000a58838362000a2a565b9150826002028217905092915050565b62000a73826200081d565b67ffffffffffffffff81111562000a8f5762000a8e62000634565b5b62000a9b825462000857565b62000aa8828285620009cd565b600060209050601f83116001811462000ae0576000841562000acb578287015190505b62000ad7858262000a4a565b86555062000b47565b601f19841662000af0866200088c565b60005b8281101562000b1a5784890151825560018201915060208501945060208101905062000af3565b8683101562000b3a578489015162000b36601f89168262000a2a565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b7c8262000b4f565b9050919050565b62000b8e8162000b6f565b82525050565b600060408201905062000bab600083018562000b83565b62000bba602083018462000b83565b9392505050565b600060208201905062000bd8600083018462000b83565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c2760208362000bde565b915062000c348262000bef565b602082019050919050565b6000602082019050818103600083015262000c5a8162000c18565b9050919050565b614b058062000c716000396000f3fe60806040526004361061036a5760003560e01c8063715018a6116101c6578063c87b56dd116100f7578063f12f6d5d11610095578063f3257cdd1161006f578063f3257cdd14610c51578063fea0e05814610c7a578063ff2e666c14610ca3578063ff64569114610cbf5761036a565b8063f12f6d5d14610bd6578063f2c4ce1e14610bff578063f2fde38b14610c285761036a565b8063dc33e681116100d1578063dc33e68114610b0a578063e268e4d314610b47578063e985e9c514610b70578063edec5f2714610bad5761036a565b8063c87b56dd14610a77578063d5abeb0114610ab4578063d8ed370c14610adf5761036a565b8063a22cb46511610164578063bd7a19981161013e578063bd7a1998146109cf578063bde0608a146109fa578063c2a2747b14610a23578063c6f6f21614610a4e5761036a565b8063a22cb46514610961578063b88d4fde1461098a578063bc63f02e146109a65761036a565b8063940cd05b116101a0578063940cd05b146108b457806395d89b41146108dd5780639f404eef14610908578063a0712d68146109455761036a565b8063715018a6146108355780638462151c1461084c5780638da5cb5b146108895761036a565b806335f90f43116102a057806355f804b31161023e5780636352211e116102185780636352211e146107655780636c0360eb146107a25780636c2d3c4f146107cd57806370a08231146107f85761036a565b806355f804b3146106e65780635a7adf7f1461070f5780635c975abb1461073a5761036a565b806342842e0e1161027a57806342842e0e1461064d57806344a0d68a14610669578063458c4f9e1461069257806351830227146106bb5761036a565b806335f90f43146105c95780633af32abf146106065780633ccfd60b146106435761036a565b80630bddb6131161030d57806318160ddd116102e757806318160ddd1461052e57806323b872dd1461055957806333bc1c5c1461057557806334aa3dfa146105a05761036a565b80630bddb613146104af57806313faede6146104da578063149835a0146105055761036a565b806306fdde031161034957806306fdde0314610400578063081812fc1461042b578063081c8c4414610468578063095ea7b3146104935761036a565b806277ec051461036f57806301ffc9a71461039a57806302329a29146103d7575b600080fd5b34801561037b57600080fd5b50610384610cea565b60405161039191906134e7565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc919061356e565b610cf0565b6040516103ce91906135b6565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f991906135fd565b610d82565b005b34801561040c57600080fd5b50610415610da7565b60405161042291906136ba565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190613708565b610e39565b60405161045f9190613776565b60405180910390f35b34801561047457600080fd5b5061047d610eb8565b60405161048a91906136ba565b60405180910390f35b6104ad60048036038101906104a891906137bd565b610f46565b005b3480156104bb57600080fd5b506104c461108a565b6040516104d191906134e7565b60405180910390f35b3480156104e657600080fd5b506104ef611090565b6040516104fc91906134e7565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190613708565b611096565b005b34801561053a57600080fd5b506105436110a8565b60405161055091906134e7565b60405180910390f35b610573600480360381019061056e91906137fd565b6110bf565b005b34801561058157600080fd5b5061058a6112a1565b60405161059791906135b6565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190613708565b6112b4565b005b3480156105d557600080fd5b506105f060048036038101906105eb9190613850565b6112c6565b6040516105fd91906134e7565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190613850565b6112de565b60405161063a91906135b6565b60405180910390f35b61064b611334565b005b610667600480360381019061066291906137fd565b6113d4565b005b34801561067557600080fd5b50610690600480360381019061068b9190613708565b6115b6565b005b34801561069e57600080fd5b506106b960048036038101906106b49190613708565b6115c8565b005b3480156106c757600080fd5b506106d06115da565b6040516106dd91906135b6565b60405180910390f35b3480156106f257600080fd5b5061070d600480360381019061070891906139b2565b6115ed565b005b34801561071b57600080fd5b50610724611608565b60405161073191906135b6565b60405180910390f35b34801561074657600080fd5b5061074f61161b565b60405161075c91906135b6565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613708565b61162e565b6040516107999190613776565b60405180910390f35b3480156107ae57600080fd5b506107b7611640565b6040516107c491906136ba565b60405180910390f35b3480156107d957600080fd5b506107e26116ce565b6040516107ef91906134e7565b60405180910390f35b34801561080457600080fd5b5061081f600480360381019061081a9190613850565b6116d4565b60405161082c91906134e7565b60405180910390f35b34801561084157600080fd5b5061084a61178c565b005b34801561085857600080fd5b50610873600480360381019061086e9190613850565b6117a0565b6040516108809190613ab9565b60405180910390f35b34801561089557600080fd5b5061089e6118e3565b6040516108ab9190613776565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d691906135fd565b61190d565b005b3480156108e957600080fd5b506108f2611932565b6040516108ff91906136ba565b60405180910390f35b34801561091457600080fd5b5061092f600480360381019061092a9190613850565b6119c4565b60405161093c91906134e7565b60405180910390f35b61095f600480360381019061095a9190613708565b6119dc565b005b34801561096d57600080fd5b5061098860048036038101906109839190613adb565b611c7e565b005b6109a4600480360381019061099f9190613bbc565b611d89565b005b3480156109b257600080fd5b506109cd60048036038101906109c89190613c3f565b611f6e565b005b3480156109db57600080fd5b506109e4611feb565b6040516109f191906134e7565b60405180910390f35b348015610a0657600080fd5b50610a216004803603810190610a1c9190613708565b611ff1565b005b348015610a2f57600080fd5b50610a38612003565b604051610a459190613776565b60405180910390f35b348015610a5a57600080fd5b50610a756004803603810190610a709190613708565b612029565b005b348015610a8357600080fd5b50610a9e6004803603810190610a999190613708565b61203b565b604051610aab91906136ba565b60405180910390f35b348015610ac057600080fd5b50610ac9612190565b604051610ad691906134e7565b60405180910390f35b348015610aeb57600080fd5b50610af4612196565b604051610b0191906134e7565b60405180910390f35b348015610b1657600080fd5b50610b316004803603810190610b2c9190613850565b61219c565b604051610b3e91906134e7565b60405180910390f35b348015610b5357600080fd5b50610b6e6004803603810190610b699190613708565b6121ae565b005b348015610b7c57600080fd5b50610b976004803603810190610b929190613c7f565b6121c0565b604051610ba491906135b6565b60405180910390f35b348015610bb957600080fd5b50610bd46004803603810190610bcf9190613d87565b612254565b005b348015610be257600080fd5b50610bfd6004803603810190610bf89190613708565b6122f1565b005b348015610c0b57600080fd5b50610c266004803603810190610c2191906139b2565b612303565b005b348015610c3457600080fd5b50610c4f6004803603810190610c4a9190613850565b61231e565b005b348015610c5d57600080fd5b50610c786004803603810190610c7391906135fd565b6123a1565b005b348015610c8657600080fd5b50610ca16004803603810190610c9c91906135fd565b6123c6565b005b610cbd6004803603810190610cb89190613708565b6123eb565b005b348015610ccb57600080fd5b50610cd4612720565b604051610ce191906134e7565b60405180910390f35b60115481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d4b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d7b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610d8a612726565b80601460006101000a81548160ff02191690831515021790555050565b606060028054610db690613dff565b80601f0160208091040260200160405190810160405280929190818152602001828054610de290613dff565b8015610e2f5780601f10610e0457610100808354040283529160200191610e2f565b820191906000526020600020905b815481529060010190602001808311610e1257829003601f168201915b5050505050905090565b6000610e44826127a4565b610e7a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610ec590613dff565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef190613dff565b8015610f3e5780601f10610f1357610100808354040283529160200191610f3e565b820191906000526020600020905b815481529060010190602001808311610f2157829003601f168201915b505050505081565b6000610f518261162e565b90508073ffffffffffffffffffffffffffffffffffffffff16610f72612803565b73ffffffffffffffffffffffffffffffffffffffff1614610fd557610f9e81610f99612803565b6121c0565b610fd4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b600c5481565b61109e612726565b80600e8190555050565b60006110b261280b565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561128f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111315761112c848484612814565b61129b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161117a929190613e30565b602060405180830381865afa158015611197573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111bb9190613e6e565b801561124d57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161120b929190613e30565b602060405180830381865afa158015611228573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124c9190613e6e565b5b61128e57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112859190613776565b60405180910390fd5b5b61129a848484612814565b5b50505050565b601460039054906101000a900460ff1681565b6112bc612726565b8060138190555050565b60166020528060005260406000206000915090505481565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61133c612726565b611344612b36565b6000606480476113549190613eca565b61135e9190613f3b565b9050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156113c8573d6000803e3d6000fd5b50506113d2612b85565b565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156115a4573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361144657611441848484612b8f565b6115b0565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161148f929190613e30565b602060405180830381865afa1580156114ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d09190613e6e565b801561156257506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611520929190613e30565b602060405180830381865afa15801561153d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115619190613e6e565b5b6115a357336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161159a9190613776565b60405180910390fd5b5b6115af848484612b8f565b5b50505050565b6115be612726565b80600c8190555050565b6115d0612726565b80600f8190555050565b601460019054906101000a900460ff1681565b6115f5612726565b80600a90816116049190614118565b5050565b601460029054906101000a900460ff1681565b601460009054906101000a900460ff1681565b600061163982612baf565b9050919050565b600a805461164d90613dff565b80601f016020809104026020016040519081016040528092919081815260200182805461167990613dff565b80156116c65780601f1061169b576101008083540402835291602001916116c6565b820191906000526020600020905b8154815290600101906020018083116116a957829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361173b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611794612726565b61179e6000612c7b565b565b606060008060006117b0856116d4565b905060008167ffffffffffffffff8111156117ce576117cd613887565b5b6040519080825280602002602001820160405280156117fc5781602001602082028036833780820191505090505b50905061180761347f565b600061181161280b565b90505b8386146118d55761182481612d41565b915081604001516118ca57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461186f57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118c957808387806001019850815181106118bc576118bb6141ea565b5b6020026020010181815250505b5b806001019050611814565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611915612726565b80601460016101000a81548160ff02191690831515021790555050565b60606003805461194190613dff565b80601f016020809104026020016040519081016040528092919081815260200182805461196d90613dff565b80156119ba5780601f1061198f576101008083540402835291602001916119ba565b820191906000526020600020905b81548152906001019060200180831161199d57829003601f168201915b5050505050905090565b60156020528060005260406000206000915090505481565b6119e4612b36565b601460009054906101000a900460ff1615611a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2b90614265565b60405180910390fd5b601460039054906101000a900460ff16611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a906142d1565b60405180910390fd5b601254811115611ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abf9061433d565b60405180910390fd5b600e5481611ad46110a8565b611ade919061435d565b1115611b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b16906143dd565b60405180910390fd5b6010548160156000611b2f612803565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b74919061435d565b1115611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac90614449565b60405180910390fd5b80600c54611bc39190613eca565b341015611c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfc906144b5565b60405180910390fd5b8060156000611c12612803565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c5b919061435d565b92505081905550611c73611c6d612803565b82612d6c565b611c7b612b85565b50565b8060076000611c8b612803565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d38612803565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d7d91906135b6565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611f5a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dfc57611df785858585612d8a565b611f67565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611e45929190613e30565b602060405180830381865afa158015611e62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e869190613e6e565b8015611f1857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611ed6929190613e30565b602060405180830381865afa158015611ef3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f179190613e6e565b5b611f5957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611f509190613776565b60405180910390fd5b5b611f6685858585612d8a565b5b5050505050565b611f76612726565b611f7e612b36565b600e5482611f8a6110a8565b611f94919061435d565b1115611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc90614521565b60405180910390fd5b611fdf8183612d6c565b611fe7612b85565b5050565b60105481565b611ff9612726565b8060118190555050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612031612726565b8060128190555050565b6060612046826127a4565b612085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207c906145b3565b60405180910390fd5b60001515601460019054906101000a900460ff1615150361213257600b80546120ad90613dff565b80601f01602080910402602001604051908101604052809291908181526020018280546120d990613dff565b80156121265780601f106120fb57610100808354040283529160200191612126565b820191906000526020600020905b81548152906001019060200180831161210957829003601f168201915b5050505050905061218b565b600061213c612dfd565b9050600081511161215c5760405180602001604052806000815250612187565b8061216684612e8f565b60405160200161217792919061465b565b6040516020818303038152906040525b9150505b919050565b600e5481565b60135481565b60006121a782612edf565b9050919050565b6121b6612726565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61225c612726565b60005b81518110156122ed57600160176000848481518110612281576122806141ea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806122e59061468a565b91505061225f565b5050565b6122f9612726565b80600d8190555050565b61230b612726565b80600b908161231a9190614118565b5050565b612326612726565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c90614744565b60405180910390fd5b61239e81612c7b565b50565b6123a9612726565b80601460036101000a81548160ff02191690831515021790555050565b6123ce612726565b80601460026101000a81548160ff02191690831515021790555050565b6123f3612b36565b601460009054906101000a900460ff1615612443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243a90614265565b60405180910390fd5b601460029054906101000a900460ff16612492576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612489906147b0565b60405180910390fd5b6017600061249e612803565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c9061481c565b60405180910390fd5b6011548160166000612535612803565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461257a919061435d565b11156125bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b290614449565b60405180910390fd5b601354811115612600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f790614888565b60405180910390fd5b600f548161260c6110a8565b612616919061435d565b1115612657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264e906148f4565b60405180910390fd5b80600d546126659190613eca565b3410156126a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269e906144b5565b60405180910390fd5b80601660006126b4612803565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126fd919061435d565b9250508190555061271561270f612803565b82612d6c565b61271d612b85565b50565b60125481565b61272e612f36565b73ffffffffffffffffffffffffffffffffffffffff1661274c6118e3565b73ffffffffffffffffffffffffffffffffffffffff16146127a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279990614960565b60405180910390fd5b565b6000816127af61280b565b111580156127be575060005482105b80156127fc575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600061281f82612baf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612886576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061289284612f3e565b915091506128a881876128a3612803565b612f65565b6128f4576128bd866128b8612803565b6121c0565b6128f3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361295a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129678686866001612fa9565b801561297257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612a4085612a1c888887612faf565b7c020000000000000000000000000000000000000000000000000000000017612fd7565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612ac65760006001850190506000600460008381526020019081526020016000205403612ac4576000548114612ac3578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b2e8686866001613002565b505050505050565b600260095403612b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b72906149cc565b60405180910390fd5b6002600981905550565b6001600981905550565b612baa83838360405180602001604052806000815250611d89565b505050565b60008082905080612bbe61280b565b11612c4457600054811015612c435760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612c41575b60008103612c37576004600083600190039350838152602001908152602001600020549050612c0d565b8092505050612c76565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d4961347f565b612d656004600084815260200190815260200160002054613008565b9050919050565b612d868282604051806020016040528060008152506130be565b5050565b612d958484846110bf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612df757612dc08484848461315b565b612df6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a8054612e0c90613dff565b80601f0160208091040260200160405190810160405280929190818152602001828054612e3890613dff565b8015612e855780601f10612e5a57610100808354040283529160200191612e85565b820191906000526020600020905b815481529060010190602001808311612e6857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612eca57600184039350600a81066030018453600a8104905080612ea8575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612fc68686846132ab565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61301061347f565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6130c883836132b4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461315657600080549050600083820390505b613108600086838060010194508661315b565b61313e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106130f557816000541461315357600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613181612803565b8786866040518563ffffffff1660e01b81526004016131a39493929190614a41565b6020604051808303816000875af19250505080156131df57506040513d601f19601f820116820180604052508101906131dc9190614aa2565b60015b613258573d806000811461320f576040519150601f19603f3d011682016040523d82523d6000602084013e613214565b606091505b506000815103613250576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036132f4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133016000848385612fa9565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613378836133696000866000612faf565b6133728561346f565b17612fd7565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461341957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506133de565b5060008203613454576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061346a6000848385613002565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000819050919050565b6134e1816134ce565b82525050565b60006020820190506134fc60008301846134d8565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61354b81613516565b811461355657600080fd5b50565b60008135905061356881613542565b92915050565b6000602082840312156135845761358361350c565b5b600061359284828501613559565b91505092915050565b60008115159050919050565b6135b08161359b565b82525050565b60006020820190506135cb60008301846135a7565b92915050565b6135da8161359b565b81146135e557600080fd5b50565b6000813590506135f7816135d1565b92915050565b6000602082840312156136135761361261350c565b5b6000613621848285016135e8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613664578082015181840152602081019050613649565b60008484015250505050565b6000601f19601f8301169050919050565b600061368c8261362a565b6136968185613635565b93506136a6818560208601613646565b6136af81613670565b840191505092915050565b600060208201905081810360008301526136d48184613681565b905092915050565b6136e5816134ce565b81146136f057600080fd5b50565b600081359050613702816136dc565b92915050565b60006020828403121561371e5761371d61350c565b5b600061372c848285016136f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061376082613735565b9050919050565b61377081613755565b82525050565b600060208201905061378b6000830184613767565b92915050565b61379a81613755565b81146137a557600080fd5b50565b6000813590506137b781613791565b92915050565b600080604083850312156137d4576137d361350c565b5b60006137e2858286016137a8565b92505060206137f3858286016136f3565b9150509250929050565b6000806000606084860312156138165761381561350c565b5b6000613824868287016137a8565b9350506020613835868287016137a8565b9250506040613846868287016136f3565b9150509250925092565b6000602082840312156138665761386561350c565b5b6000613874848285016137a8565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138bf82613670565b810181811067ffffffffffffffff821117156138de576138dd613887565b5b80604052505050565b60006138f1613502565b90506138fd82826138b6565b919050565b600067ffffffffffffffff82111561391d5761391c613887565b5b61392682613670565b9050602081019050919050565b82818337600083830152505050565b600061395561395084613902565b6138e7565b90508281526020810184848401111561397157613970613882565b5b61397c848285613933565b509392505050565b600082601f8301126139995761399861387d565b5b81356139a9848260208601613942565b91505092915050565b6000602082840312156139c8576139c761350c565b5b600082013567ffffffffffffffff8111156139e6576139e5613511565b5b6139f284828501613984565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613a30816134ce565b82525050565b6000613a428383613a27565b60208301905092915050565b6000602082019050919050565b6000613a66826139fb565b613a708185613a06565b9350613a7b83613a17565b8060005b83811015613aac578151613a938882613a36565b9750613a9e83613a4e565b925050600181019050613a7f565b5085935050505092915050565b60006020820190508181036000830152613ad38184613a5b565b905092915050565b60008060408385031215613af257613af161350c565b5b6000613b00858286016137a8565b9250506020613b11858286016135e8565b9150509250929050565b600067ffffffffffffffff821115613b3657613b35613887565b5b613b3f82613670565b9050602081019050919050565b6000613b5f613b5a84613b1b565b6138e7565b905082815260208101848484011115613b7b57613b7a613882565b5b613b86848285613933565b509392505050565b600082601f830112613ba357613ba261387d565b5b8135613bb3848260208601613b4c565b91505092915050565b60008060008060808587031215613bd657613bd561350c565b5b6000613be4878288016137a8565b9450506020613bf5878288016137a8565b9350506040613c06878288016136f3565b925050606085013567ffffffffffffffff811115613c2757613c26613511565b5b613c3387828801613b8e565b91505092959194509250565b60008060408385031215613c5657613c5561350c565b5b6000613c64858286016136f3565b9250506020613c75858286016137a8565b9150509250929050565b60008060408385031215613c9657613c9561350c565b5b6000613ca4858286016137a8565b9250506020613cb5858286016137a8565b9150509250929050565b600067ffffffffffffffff821115613cda57613cd9613887565b5b602082029050602081019050919050565b600080fd5b6000613d03613cfe84613cbf565b6138e7565b90508083825260208201905060208402830185811115613d2657613d25613ceb565b5b835b81811015613d4f5780613d3b88826137a8565b845260208401935050602081019050613d28565b5050509392505050565b600082601f830112613d6e57613d6d61387d565b5b8135613d7e848260208601613cf0565b91505092915050565b600060208284031215613d9d57613d9c61350c565b5b600082013567ffffffffffffffff811115613dbb57613dba613511565b5b613dc784828501613d59565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e1757607f821691505b602082108103613e2a57613e29613dd0565b5b50919050565b6000604082019050613e456000830185613767565b613e526020830184613767565b9392505050565b600081519050613e68816135d1565b92915050565b600060208284031215613e8457613e8361350c565b5b6000613e9284828501613e59565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ed5826134ce565b9150613ee0836134ce565b9250828202613eee816134ce565b91508282048414831517613f0557613f04613e9b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f46826134ce565b9150613f51836134ce565b925082613f6157613f60613f0c565b5b828204905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613fce7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613f91565b613fd88683613f91565b95508019841693508086168417925050509392505050565b6000819050919050565b600061401561401061400b846134ce565b613ff0565b6134ce565b9050919050565b6000819050919050565b61402f83613ffa565b61404361403b8261401c565b848454613f9e565b825550505050565b600090565b61405861404b565b614063818484614026565b505050565b5b818110156140875761407c600082614050565b600181019050614069565b5050565b601f8211156140cc5761409d81613f6c565b6140a684613f81565b810160208510156140b5578190505b6140c96140c185613f81565b830182614068565b50505b505050565b600082821c905092915050565b60006140ef600019846008026140d1565b1980831691505092915050565b600061410883836140de565b9150826002028217905092915050565b6141218261362a565b67ffffffffffffffff81111561413a57614139613887565b5b6141448254613dff565b61414f82828561408b565b600060209050601f8311600181146141825760008415614170578287015190505b61417a85826140fc565b8655506141e2565b601f19841661419086613f6c565b60005b828110156141b857848901518255600182019150602085019450602081019050614193565b868310156141d557848901516141d1601f8916826140de565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b600061424f601783613635565b915061425a82614219565b602082019050919050565b6000602082019050818103600083015261427e81614242565b9050919050565b7f53616c65206861736e2774207374617274656420796574000000000000000000600082015250565b60006142bb601783613635565b91506142c682614285565b602082019050919050565b600060208201905081810360008301526142ea816142ae565b9050919050565b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b6000614327601f83613635565b9150614332826142f1565b602082019050919050565b600060208201905081810360008301526143568161431a565b9050919050565b6000614368826134ce565b9150614373836134ce565b925082820190508082111561438b5761438a613e9b565b5b92915050565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b60006143c7600a83613635565b91506143d282614391565b602082019050919050565b600060208201905081810360008301526143f6816143ba565b9050919050565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b6000614433601b83613635565b915061443e826143fd565b602082019050919050565b6000602082019050818103600083015261446281614426565b9050919050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b600061449f601283613635565b91506144aa82614469565b602082019050919050565b600060208201905081810360008301526144ce81614492565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b600061450b601683613635565b9150614516826144d5565b602082019050919050565b6000602082019050818103600083015261453a816144fe565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b600061459d603083613635565b91506145a882614541565b604082019050919050565b600060208201905081810360008301526145cc81614590565b9050919050565b600081905092915050565b60006145e98261362a565b6145f381856145d3565b9350614603818560208601613646565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006146456005836145d3565b91506146508261460f565b600582019050919050565b600061466782856145de565b915061467382846145de565b915061467e82614638565b91508190509392505050565b6000614695826134ce565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036146c7576146c6613e9b565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061472e602683613635565b9150614739826146d2565b604082019050919050565b6000602082019050818103600083015261475d81614721565b9050919050565b7f50726573616c65206861736e2774207374617274656420796574000000000000600082015250565b600061479a601a83613635565b91506147a582614764565b602082019050919050565b600060208201905081810360008301526147c98161478d565b9050919050565b7f596f7520617265204e6f742057686974656c6973746564000000000000000000600082015250565b6000614806601783613635565b9150614811826147d0565b602082019050919050565b60006020820190508181036000830152614835816147f9565b9050919050565b7f6d6178206d696e74207065722054782065786365656465640000000000000000600082015250565b6000614872601883613635565b915061487d8261483c565b602082019050919050565b600060208201905081810360008301526148a181614865565b9050919050565b7f57686974656c697374204d6178537570706c7920657863656564656400000000600082015250565b60006148de601c83613635565b91506148e9826148a8565b602082019050919050565b6000602082019050818103600083015261490d816148d1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061494a602083613635565b915061495582614914565b602082019050919050565b600060208201905081810360008301526149798161493d565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006149b6601f83613635565b91506149c182614980565b602082019050919050565b600060208201905081810360008301526149e5816149a9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614a13826149ec565b614a1d81856149f7565b9350614a2d818560208601613646565b614a3681613670565b840191505092915050565b6000608082019050614a566000830187613767565b614a636020830186613767565b614a7060408301856134d8565b8181036060830152614a828184614a08565b905095945050505050565b600081519050614a9c81613542565b92915050565b600060208284031215614ab857614ab761350c565b5b6000614ac684828501614a8d565b9150509291505056fea26469706673582212206d89690cd78fb13d6f91c9e42467a70e5c2f472d39c449bd6513d1a19620ea0864736f6c63430008110033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52374b36677731663448437975774e6a32653855375261524159445938344452573952467a5a4e65576574552f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d62316b4632767433664668755267555944594c4635457061554d6b537648697633775a6b5237516a696a42652f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061036a5760003560e01c8063715018a6116101c6578063c87b56dd116100f7578063f12f6d5d11610095578063f3257cdd1161006f578063f3257cdd14610c51578063fea0e05814610c7a578063ff2e666c14610ca3578063ff64569114610cbf5761036a565b8063f12f6d5d14610bd6578063f2c4ce1e14610bff578063f2fde38b14610c285761036a565b8063dc33e681116100d1578063dc33e68114610b0a578063e268e4d314610b47578063e985e9c514610b70578063edec5f2714610bad5761036a565b8063c87b56dd14610a77578063d5abeb0114610ab4578063d8ed370c14610adf5761036a565b8063a22cb46511610164578063bd7a19981161013e578063bd7a1998146109cf578063bde0608a146109fa578063c2a2747b14610a23578063c6f6f21614610a4e5761036a565b8063a22cb46514610961578063b88d4fde1461098a578063bc63f02e146109a65761036a565b8063940cd05b116101a0578063940cd05b146108b457806395d89b41146108dd5780639f404eef14610908578063a0712d68146109455761036a565b8063715018a6146108355780638462151c1461084c5780638da5cb5b146108895761036a565b806335f90f43116102a057806355f804b31161023e5780636352211e116102185780636352211e146107655780636c0360eb146107a25780636c2d3c4f146107cd57806370a08231146107f85761036a565b806355f804b3146106e65780635a7adf7f1461070f5780635c975abb1461073a5761036a565b806342842e0e1161027a57806342842e0e1461064d57806344a0d68a14610669578063458c4f9e1461069257806351830227146106bb5761036a565b806335f90f43146105c95780633af32abf146106065780633ccfd60b146106435761036a565b80630bddb6131161030d57806318160ddd116102e757806318160ddd1461052e57806323b872dd1461055957806333bc1c5c1461057557806334aa3dfa146105a05761036a565b80630bddb613146104af57806313faede6146104da578063149835a0146105055761036a565b806306fdde031161034957806306fdde0314610400578063081812fc1461042b578063081c8c4414610468578063095ea7b3146104935761036a565b806277ec051461036f57806301ffc9a71461039a57806302329a29146103d7575b600080fd5b34801561037b57600080fd5b50610384610cea565b60405161039191906134e7565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc919061356e565b610cf0565b6040516103ce91906135b6565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f991906135fd565b610d82565b005b34801561040c57600080fd5b50610415610da7565b60405161042291906136ba565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190613708565b610e39565b60405161045f9190613776565b60405180910390f35b34801561047457600080fd5b5061047d610eb8565b60405161048a91906136ba565b60405180910390f35b6104ad60048036038101906104a891906137bd565b610f46565b005b3480156104bb57600080fd5b506104c461108a565b6040516104d191906134e7565b60405180910390f35b3480156104e657600080fd5b506104ef611090565b6040516104fc91906134e7565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190613708565b611096565b005b34801561053a57600080fd5b506105436110a8565b60405161055091906134e7565b60405180910390f35b610573600480360381019061056e91906137fd565b6110bf565b005b34801561058157600080fd5b5061058a6112a1565b60405161059791906135b6565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190613708565b6112b4565b005b3480156105d557600080fd5b506105f060048036038101906105eb9190613850565b6112c6565b6040516105fd91906134e7565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190613850565b6112de565b60405161063a91906135b6565b60405180910390f35b61064b611334565b005b610667600480360381019061066291906137fd565b6113d4565b005b34801561067557600080fd5b50610690600480360381019061068b9190613708565b6115b6565b005b34801561069e57600080fd5b506106b960048036038101906106b49190613708565b6115c8565b005b3480156106c757600080fd5b506106d06115da565b6040516106dd91906135b6565b60405180910390f35b3480156106f257600080fd5b5061070d600480360381019061070891906139b2565b6115ed565b005b34801561071b57600080fd5b50610724611608565b60405161073191906135b6565b60405180910390f35b34801561074657600080fd5b5061074f61161b565b60405161075c91906135b6565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613708565b61162e565b6040516107999190613776565b60405180910390f35b3480156107ae57600080fd5b506107b7611640565b6040516107c491906136ba565b60405180910390f35b3480156107d957600080fd5b506107e26116ce565b6040516107ef91906134e7565b60405180910390f35b34801561080457600080fd5b5061081f600480360381019061081a9190613850565b6116d4565b60405161082c91906134e7565b60405180910390f35b34801561084157600080fd5b5061084a61178c565b005b34801561085857600080fd5b50610873600480360381019061086e9190613850565b6117a0565b6040516108809190613ab9565b60405180910390f35b34801561089557600080fd5b5061089e6118e3565b6040516108ab9190613776565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d691906135fd565b61190d565b005b3480156108e957600080fd5b506108f2611932565b6040516108ff91906136ba565b60405180910390f35b34801561091457600080fd5b5061092f600480360381019061092a9190613850565b6119c4565b60405161093c91906134e7565b60405180910390f35b61095f600480360381019061095a9190613708565b6119dc565b005b34801561096d57600080fd5b5061098860048036038101906109839190613adb565b611c7e565b005b6109a4600480360381019061099f9190613bbc565b611d89565b005b3480156109b257600080fd5b506109cd60048036038101906109c89190613c3f565b611f6e565b005b3480156109db57600080fd5b506109e4611feb565b6040516109f191906134e7565b60405180910390f35b348015610a0657600080fd5b50610a216004803603810190610a1c9190613708565b611ff1565b005b348015610a2f57600080fd5b50610a38612003565b604051610a459190613776565b60405180910390f35b348015610a5a57600080fd5b50610a756004803603810190610a709190613708565b612029565b005b348015610a8357600080fd5b50610a9e6004803603810190610a999190613708565b61203b565b604051610aab91906136ba565b60405180910390f35b348015610ac057600080fd5b50610ac9612190565b604051610ad691906134e7565b60405180910390f35b348015610aeb57600080fd5b50610af4612196565b604051610b0191906134e7565b60405180910390f35b348015610b1657600080fd5b50610b316004803603810190610b2c9190613850565b61219c565b604051610b3e91906134e7565b60405180910390f35b348015610b5357600080fd5b50610b6e6004803603810190610b699190613708565b6121ae565b005b348015610b7c57600080fd5b50610b976004803603810190610b929190613c7f565b6121c0565b604051610ba491906135b6565b60405180910390f35b348015610bb957600080fd5b50610bd46004803603810190610bcf9190613d87565b612254565b005b348015610be257600080fd5b50610bfd6004803603810190610bf89190613708565b6122f1565b005b348015610c0b57600080fd5b50610c266004803603810190610c2191906139b2565b612303565b005b348015610c3457600080fd5b50610c4f6004803603810190610c4a9190613850565b61231e565b005b348015610c5d57600080fd5b50610c786004803603810190610c7391906135fd565b6123a1565b005b348015610c8657600080fd5b50610ca16004803603810190610c9c91906135fd565b6123c6565b005b610cbd6004803603810190610cb89190613708565b6123eb565b005b348015610ccb57600080fd5b50610cd4612720565b604051610ce191906134e7565b60405180910390f35b60115481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d4b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d7b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610d8a612726565b80601460006101000a81548160ff02191690831515021790555050565b606060028054610db690613dff565b80601f0160208091040260200160405190810160405280929190818152602001828054610de290613dff565b8015610e2f5780601f10610e0457610100808354040283529160200191610e2f565b820191906000526020600020905b815481529060010190602001808311610e1257829003601f168201915b5050505050905090565b6000610e44826127a4565b610e7a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610ec590613dff565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef190613dff565b8015610f3e5780601f10610f1357610100808354040283529160200191610f3e565b820191906000526020600020905b815481529060010190602001808311610f2157829003601f168201915b505050505081565b6000610f518261162e565b90508073ffffffffffffffffffffffffffffffffffffffff16610f72612803565b73ffffffffffffffffffffffffffffffffffffffff1614610fd557610f9e81610f99612803565b6121c0565b610fd4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b600c5481565b61109e612726565b80600e8190555050565b60006110b261280b565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561128f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111315761112c848484612814565b61129b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161117a929190613e30565b602060405180830381865afa158015611197573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111bb9190613e6e565b801561124d57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161120b929190613e30565b602060405180830381865afa158015611228573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124c9190613e6e565b5b61128e57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112859190613776565b60405180910390fd5b5b61129a848484612814565b5b50505050565b601460039054906101000a900460ff1681565b6112bc612726565b8060138190555050565b60166020528060005260406000206000915090505481565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61133c612726565b611344612b36565b6000606480476113549190613eca565b61135e9190613f3b565b9050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156113c8573d6000803e3d6000fd5b50506113d2612b85565b565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156115a4573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361144657611441848484612b8f565b6115b0565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161148f929190613e30565b602060405180830381865afa1580156114ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d09190613e6e565b801561156257506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611520929190613e30565b602060405180830381865afa15801561153d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115619190613e6e565b5b6115a357336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161159a9190613776565b60405180910390fd5b5b6115af848484612b8f565b5b50505050565b6115be612726565b80600c8190555050565b6115d0612726565b80600f8190555050565b601460019054906101000a900460ff1681565b6115f5612726565b80600a90816116049190614118565b5050565b601460029054906101000a900460ff1681565b601460009054906101000a900460ff1681565b600061163982612baf565b9050919050565b600a805461164d90613dff565b80601f016020809104026020016040519081016040528092919081815260200182805461167990613dff565b80156116c65780601f1061169b576101008083540402835291602001916116c6565b820191906000526020600020905b8154815290600101906020018083116116a957829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361173b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611794612726565b61179e6000612c7b565b565b606060008060006117b0856116d4565b905060008167ffffffffffffffff8111156117ce576117cd613887565b5b6040519080825280602002602001820160405280156117fc5781602001602082028036833780820191505090505b50905061180761347f565b600061181161280b565b90505b8386146118d55761182481612d41565b915081604001516118ca57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461186f57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118c957808387806001019850815181106118bc576118bb6141ea565b5b6020026020010181815250505b5b806001019050611814565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611915612726565b80601460016101000a81548160ff02191690831515021790555050565b60606003805461194190613dff565b80601f016020809104026020016040519081016040528092919081815260200182805461196d90613dff565b80156119ba5780601f1061198f576101008083540402835291602001916119ba565b820191906000526020600020905b81548152906001019060200180831161199d57829003601f168201915b5050505050905090565b60156020528060005260406000206000915090505481565b6119e4612b36565b601460009054906101000a900460ff1615611a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2b90614265565b60405180910390fd5b601460039054906101000a900460ff16611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a906142d1565b60405180910390fd5b601254811115611ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abf9061433d565b60405180910390fd5b600e5481611ad46110a8565b611ade919061435d565b1115611b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b16906143dd565b60405180910390fd5b6010548160156000611b2f612803565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b74919061435d565b1115611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac90614449565b60405180910390fd5b80600c54611bc39190613eca565b341015611c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfc906144b5565b60405180910390fd5b8060156000611c12612803565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c5b919061435d565b92505081905550611c73611c6d612803565b82612d6c565b611c7b612b85565b50565b8060076000611c8b612803565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d38612803565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d7d91906135b6565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611f5a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dfc57611df785858585612d8a565b611f67565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611e45929190613e30565b602060405180830381865afa158015611e62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e869190613e6e565b8015611f1857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611ed6929190613e30565b602060405180830381865afa158015611ef3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f179190613e6e565b5b611f5957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611f509190613776565b60405180910390fd5b5b611f6685858585612d8a565b5b5050505050565b611f76612726565b611f7e612b36565b600e5482611f8a6110a8565b611f94919061435d565b1115611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc90614521565b60405180910390fd5b611fdf8183612d6c565b611fe7612b85565b5050565b60105481565b611ff9612726565b8060118190555050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612031612726565b8060128190555050565b6060612046826127a4565b612085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207c906145b3565b60405180910390fd5b60001515601460019054906101000a900460ff1615150361213257600b80546120ad90613dff565b80601f01602080910402602001604051908101604052809291908181526020018280546120d990613dff565b80156121265780601f106120fb57610100808354040283529160200191612126565b820191906000526020600020905b81548152906001019060200180831161210957829003601f168201915b5050505050905061218b565b600061213c612dfd565b9050600081511161215c5760405180602001604052806000815250612187565b8061216684612e8f565b60405160200161217792919061465b565b6040516020818303038152906040525b9150505b919050565b600e5481565b60135481565b60006121a782612edf565b9050919050565b6121b6612726565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61225c612726565b60005b81518110156122ed57600160176000848481518110612281576122806141ea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806122e59061468a565b91505061225f565b5050565b6122f9612726565b80600d8190555050565b61230b612726565b80600b908161231a9190614118565b5050565b612326612726565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c90614744565b60405180910390fd5b61239e81612c7b565b50565b6123a9612726565b80601460036101000a81548160ff02191690831515021790555050565b6123ce612726565b80601460026101000a81548160ff02191690831515021790555050565b6123f3612b36565b601460009054906101000a900460ff1615612443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243a90614265565b60405180910390fd5b601460029054906101000a900460ff16612492576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612489906147b0565b60405180910390fd5b6017600061249e612803565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c9061481c565b60405180910390fd5b6011548160166000612535612803565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461257a919061435d565b11156125bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b290614449565b60405180910390fd5b601354811115612600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f790614888565b60405180910390fd5b600f548161260c6110a8565b612616919061435d565b1115612657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264e906148f4565b60405180910390fd5b80600d546126659190613eca565b3410156126a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269e906144b5565b60405180910390fd5b80601660006126b4612803565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126fd919061435d565b9250508190555061271561270f612803565b82612d6c565b61271d612b85565b50565b60125481565b61272e612f36565b73ffffffffffffffffffffffffffffffffffffffff1661274c6118e3565b73ffffffffffffffffffffffffffffffffffffffff16146127a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279990614960565b60405180910390fd5b565b6000816127af61280b565b111580156127be575060005482105b80156127fc575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600061281f82612baf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612886576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061289284612f3e565b915091506128a881876128a3612803565b612f65565b6128f4576128bd866128b8612803565b6121c0565b6128f3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361295a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129678686866001612fa9565b801561297257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612a4085612a1c888887612faf565b7c020000000000000000000000000000000000000000000000000000000017612fd7565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612ac65760006001850190506000600460008381526020019081526020016000205403612ac4576000548114612ac3578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b2e8686866001613002565b505050505050565b600260095403612b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b72906149cc565b60405180910390fd5b6002600981905550565b6001600981905550565b612baa83838360405180602001604052806000815250611d89565b505050565b60008082905080612bbe61280b565b11612c4457600054811015612c435760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612c41575b60008103612c37576004600083600190039350838152602001908152602001600020549050612c0d565b8092505050612c76565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d4961347f565b612d656004600084815260200190815260200160002054613008565b9050919050565b612d868282604051806020016040528060008152506130be565b5050565b612d958484846110bf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612df757612dc08484848461315b565b612df6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a8054612e0c90613dff565b80601f0160208091040260200160405190810160405280929190818152602001828054612e3890613dff565b8015612e855780601f10612e5a57610100808354040283529160200191612e85565b820191906000526020600020905b815481529060010190602001808311612e6857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612eca57600184039350600a81066030018453600a8104905080612ea8575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612fc68686846132ab565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61301061347f565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6130c883836132b4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461315657600080549050600083820390505b613108600086838060010194508661315b565b61313e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106130f557816000541461315357600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613181612803565b8786866040518563ffffffff1660e01b81526004016131a39493929190614a41565b6020604051808303816000875af19250505080156131df57506040513d601f19601f820116820180604052508101906131dc9190614aa2565b60015b613258573d806000811461320f576040519150601f19603f3d011682016040523d82523d6000602084013e613214565b606091505b506000815103613250576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036132f4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133016000848385612fa9565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613378836133696000866000612faf565b6133728561346f565b17612fd7565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461341957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506133de565b5060008203613454576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061346a6000848385613002565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000819050919050565b6134e1816134ce565b82525050565b60006020820190506134fc60008301846134d8565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61354b81613516565b811461355657600080fd5b50565b60008135905061356881613542565b92915050565b6000602082840312156135845761358361350c565b5b600061359284828501613559565b91505092915050565b60008115159050919050565b6135b08161359b565b82525050565b60006020820190506135cb60008301846135a7565b92915050565b6135da8161359b565b81146135e557600080fd5b50565b6000813590506135f7816135d1565b92915050565b6000602082840312156136135761361261350c565b5b6000613621848285016135e8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613664578082015181840152602081019050613649565b60008484015250505050565b6000601f19601f8301169050919050565b600061368c8261362a565b6136968185613635565b93506136a6818560208601613646565b6136af81613670565b840191505092915050565b600060208201905081810360008301526136d48184613681565b905092915050565b6136e5816134ce565b81146136f057600080fd5b50565b600081359050613702816136dc565b92915050565b60006020828403121561371e5761371d61350c565b5b600061372c848285016136f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061376082613735565b9050919050565b61377081613755565b82525050565b600060208201905061378b6000830184613767565b92915050565b61379a81613755565b81146137a557600080fd5b50565b6000813590506137b781613791565b92915050565b600080604083850312156137d4576137d361350c565b5b60006137e2858286016137a8565b92505060206137f3858286016136f3565b9150509250929050565b6000806000606084860312156138165761381561350c565b5b6000613824868287016137a8565b9350506020613835868287016137a8565b9250506040613846868287016136f3565b9150509250925092565b6000602082840312156138665761386561350c565b5b6000613874848285016137a8565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138bf82613670565b810181811067ffffffffffffffff821117156138de576138dd613887565b5b80604052505050565b60006138f1613502565b90506138fd82826138b6565b919050565b600067ffffffffffffffff82111561391d5761391c613887565b5b61392682613670565b9050602081019050919050565b82818337600083830152505050565b600061395561395084613902565b6138e7565b90508281526020810184848401111561397157613970613882565b5b61397c848285613933565b509392505050565b600082601f8301126139995761399861387d565b5b81356139a9848260208601613942565b91505092915050565b6000602082840312156139c8576139c761350c565b5b600082013567ffffffffffffffff8111156139e6576139e5613511565b5b6139f284828501613984565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613a30816134ce565b82525050565b6000613a428383613a27565b60208301905092915050565b6000602082019050919050565b6000613a66826139fb565b613a708185613a06565b9350613a7b83613a17565b8060005b83811015613aac578151613a938882613a36565b9750613a9e83613a4e565b925050600181019050613a7f565b5085935050505092915050565b60006020820190508181036000830152613ad38184613a5b565b905092915050565b60008060408385031215613af257613af161350c565b5b6000613b00858286016137a8565b9250506020613b11858286016135e8565b9150509250929050565b600067ffffffffffffffff821115613b3657613b35613887565b5b613b3f82613670565b9050602081019050919050565b6000613b5f613b5a84613b1b565b6138e7565b905082815260208101848484011115613b7b57613b7a613882565b5b613b86848285613933565b509392505050565b600082601f830112613ba357613ba261387d565b5b8135613bb3848260208601613b4c565b91505092915050565b60008060008060808587031215613bd657613bd561350c565b5b6000613be4878288016137a8565b9450506020613bf5878288016137a8565b9350506040613c06878288016136f3565b925050606085013567ffffffffffffffff811115613c2757613c26613511565b5b613c3387828801613b8e565b91505092959194509250565b60008060408385031215613c5657613c5561350c565b5b6000613c64858286016136f3565b9250506020613c75858286016137a8565b9150509250929050565b60008060408385031215613c9657613c9561350c565b5b6000613ca4858286016137a8565b9250506020613cb5858286016137a8565b9150509250929050565b600067ffffffffffffffff821115613cda57613cd9613887565b5b602082029050602081019050919050565b600080fd5b6000613d03613cfe84613cbf565b6138e7565b90508083825260208201905060208402830185811115613d2657613d25613ceb565b5b835b81811015613d4f5780613d3b88826137a8565b845260208401935050602081019050613d28565b5050509392505050565b600082601f830112613d6e57613d6d61387d565b5b8135613d7e848260208601613cf0565b91505092915050565b600060208284031215613d9d57613d9c61350c565b5b600082013567ffffffffffffffff811115613dbb57613dba613511565b5b613dc784828501613d59565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e1757607f821691505b602082108103613e2a57613e29613dd0565b5b50919050565b6000604082019050613e456000830185613767565b613e526020830184613767565b9392505050565b600081519050613e68816135d1565b92915050565b600060208284031215613e8457613e8361350c565b5b6000613e9284828501613e59565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ed5826134ce565b9150613ee0836134ce565b9250828202613eee816134ce565b91508282048414831517613f0557613f04613e9b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f46826134ce565b9150613f51836134ce565b925082613f6157613f60613f0c565b5b828204905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613fce7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613f91565b613fd88683613f91565b95508019841693508086168417925050509392505050565b6000819050919050565b600061401561401061400b846134ce565b613ff0565b6134ce565b9050919050565b6000819050919050565b61402f83613ffa565b61404361403b8261401c565b848454613f9e565b825550505050565b600090565b61405861404b565b614063818484614026565b505050565b5b818110156140875761407c600082614050565b600181019050614069565b5050565b601f8211156140cc5761409d81613f6c565b6140a684613f81565b810160208510156140b5578190505b6140c96140c185613f81565b830182614068565b50505b505050565b600082821c905092915050565b60006140ef600019846008026140d1565b1980831691505092915050565b600061410883836140de565b9150826002028217905092915050565b6141218261362a565b67ffffffffffffffff81111561413a57614139613887565b5b6141448254613dff565b61414f82828561408b565b600060209050601f8311600181146141825760008415614170578287015190505b61417a85826140fc565b8655506141e2565b601f19841661419086613f6c565b60005b828110156141b857848901518255600182019150602085019450602081019050614193565b868310156141d557848901516141d1601f8916826140de565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b600061424f601783613635565b915061425a82614219565b602082019050919050565b6000602082019050818103600083015261427e81614242565b9050919050565b7f53616c65206861736e2774207374617274656420796574000000000000000000600082015250565b60006142bb601783613635565b91506142c682614285565b602082019050919050565b600060208201905081810360008301526142ea816142ae565b9050919050565b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b6000614327601f83613635565b9150614332826142f1565b602082019050919050565b600060208201905081810360008301526143568161431a565b9050919050565b6000614368826134ce565b9150614373836134ce565b925082820190508082111561438b5761438a613e9b565b5b92915050565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b60006143c7600a83613635565b91506143d282614391565b602082019050919050565b600060208201905081810360008301526143f6816143ba565b9050919050565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b6000614433601b83613635565b915061443e826143fd565b602082019050919050565b6000602082019050818103600083015261446281614426565b9050919050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b600061449f601283613635565b91506144aa82614469565b602082019050919050565b600060208201905081810360008301526144ce81614492565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b600061450b601683613635565b9150614516826144d5565b602082019050919050565b6000602082019050818103600083015261453a816144fe565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b600061459d603083613635565b91506145a882614541565b604082019050919050565b600060208201905081810360008301526145cc81614590565b9050919050565b600081905092915050565b60006145e98261362a565b6145f381856145d3565b9350614603818560208601613646565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006146456005836145d3565b91506146508261460f565b600582019050919050565b600061466782856145de565b915061467382846145de565b915061467e82614638565b91508190509392505050565b6000614695826134ce565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036146c7576146c6613e9b565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061472e602683613635565b9150614739826146d2565b604082019050919050565b6000602082019050818103600083015261475d81614721565b9050919050565b7f50726573616c65206861736e2774207374617274656420796574000000000000600082015250565b600061479a601a83613635565b91506147a582614764565b602082019050919050565b600060208201905081810360008301526147c98161478d565b9050919050565b7f596f7520617265204e6f742057686974656c6973746564000000000000000000600082015250565b6000614806601783613635565b9150614811826147d0565b602082019050919050565b60006020820190508181036000830152614835816147f9565b9050919050565b7f6d6178206d696e74207065722054782065786365656465640000000000000000600082015250565b6000614872601883613635565b915061487d8261483c565b602082019050919050565b600060208201905081810360008301526148a181614865565b9050919050565b7f57686974656c697374204d6178537570706c7920657863656564656400000000600082015250565b60006148de601c83613635565b91506148e9826148a8565b602082019050919050565b6000602082019050818103600083015261490d816148d1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061494a602083613635565b915061495582614914565b602082019050919050565b600060208201905081810360008301526149798161493d565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006149b6601f83613635565b91506149c182614980565b602082019050919050565b600060208201905081810360008301526149e5816149a9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614a13826149ec565b614a1d81856149f7565b9350614a2d818560208601613646565b614a3681613670565b840191505092915050565b6000608082019050614a566000830187613767565b614a636020830186613767565b614a7060408301856134d8565b8181036060830152614a828184614a08565b905095945050505050565b600081519050614a9c81613542565b92915050565b600060208284031215614ab857614ab761350c565b5b6000614ac684828501614a8d565b9150509291505056fea26469706673582212206d89690cd78fb13d6f91c9e42467a70e5c2f472d39c449bd6513d1a19620ea0864736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52374b36677731663448437975774e6a32653855375261524159445938344452573952467a5a4e65576574552f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d62316b4632767433664668755267555944594c4635457061554d6b537648697633775a6b5237516a696a42652f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmR7K6gw1f4HCyuwNj2e8U7RaRAYDY84DRW9RFzZNeWetU/
Arg [1] : _notRevealedUri (string): ipfs://Qmb1kF2vt3fFhuRgUYDYLF5EpaUMkSvHiv3wZkR7QjijBe/hidden.json

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d52374b36677731663448437975774e6a32653855375261
Arg [4] : 524159445938344452573952467a5a4e65576574552f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [6] : 697066733a2f2f516d62316b4632767433664668755267555944594c46354570
Arg [7] : 61554d6b537648697633775a6b5237516a696a42652f68696464656e2e6a736f
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

64275:7822:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64630:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29586:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70573:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30488:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36979:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64393:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36412:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64531:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64426;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69957:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26239:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71542:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64933:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69503:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65021:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70988:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71343:162;;;:::i;:::-;;71715:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69660:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70115:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64869:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70241:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64902:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64838;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31881:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64367:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64460:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27423:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10365:103;;;;;;;;;;;;;:::i;:::-;;68024:881;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9717:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68927:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30664:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64968:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65657:577;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37537:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71896:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67020:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64565:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69204:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65127:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69358:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67295:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64496:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64767:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67852:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69056:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37928:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71108:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69814:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70373:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10623:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70882:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70721:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66279:686;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64700:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64630:33;;;;:::o;29586:639::-;29671:4;30010:10;29995:25;;:11;:25;;;;:102;;;;30087:10;30072:25;;:11;:25;;;;29995:102;:179;;;;30164:10;30149:25;;:11;:25;;;;29995:179;29975:199;;29586:639;;;:::o;70573:73::-;9603:13;:11;:13::i;:::-;70634:6:::1;70625;;:15;;;;;;;;;;;;;;;;;;70573:73:::0;:::o;30488:100::-;30542:13;30575:5;30568:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30488:100;:::o;36979:218::-;37055:7;37080:16;37088:7;37080;:16::i;:::-;37075:64;;37105:34;;;;;;;;;;;;;;37075:64;37159:15;:24;37175:7;37159:24;;;;;;;;;;;:30;;;;;;;;;;;;37152:37;;36979:218;;;:::o;64393:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36412:408::-;36501:13;36517:16;36525:7;36517;:16::i;:::-;36501:32;;36573:5;36550:28;;:19;:17;:19::i;:::-;:28;;;36546:175;;36598:44;36615:5;36622:19;:17;:19::i;:::-;36598:16;:44::i;:::-;36593:128;;36670:35;;;;;;;;;;;;;;36593:128;36546:175;36766:2;36733:15;:24;36749:7;36733:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36804:7;36800:2;36784:28;;36793:5;36784:28;;;;;;;;;;;;36490:330;36412:408;;:::o;64531:29::-;;;;:::o;64426:::-;;;;:::o;69957:94::-;9603:13;:11;:13::i;:::-;70035:10:::1;70023:9;:22;;;;69957:94:::0;:::o;26239:323::-;26300:7;26528:15;:13;:15::i;:::-;26513:12;;26497:13;;:28;:46;26490:53;;26239:323;:::o;71542:165::-;71651:4;3630:1;2444:42;3584:43;;;:47;3580:699;;;3871:10;3863:18;;:4;:18;;;3859:85;;71664:37:::1;71683:4;71689:2;71693:7;71664:18;:37::i;:::-;3922:7:::0;;3859:85;2444:42;4004:40;;;4053:4;4060:10;4004:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2444:42;4100:40;;;4149:4;4156;4100:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4004:157;3958:310;;4241:10;4222:30;;;;;;;;;;;:::i;:::-;;;;;;;;3958:310;3580:699;71664:37:::1;71683:4;71689:2;71693:7;71664:18;:37::i;:::-;71542:165:::0;;;;;:::o;64933:30::-;;;;;;;;;;;;;:::o;69503:88::-;9603:13;:11;:13::i;:::-;69579:6:::1;69566:10;:19;;;;69503:88:::0;:::o;65021:51::-;;;;;;;;;;;;;;;;;:::o;70988:112::-;71047:4;71067:20;:27;71088:5;71067:27;;;;;;;;;;;;;;;;;;;;;;;;;71060:34;;70988:112;;;:::o;71343:162::-;9603:13;:11;:13::i;:::-;6988:21:::1;:19;:21::i;:::-;71410:14:::2;71457:3;71451::::0;71427:21:::2;:27;;;;:::i;:::-;:33;;;;:::i;:::-;71410:50;;71479:2;;;;;;;;;;;71471:20;;:28;71492:6;71471:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;71401:104;7032:20:::1;:18;:20::i;:::-;71343:162::o:0;71715:173::-;71828:4;3630:1;2444:42;3584:43;;;:47;3580:699;;;3871:10;3863:18;;:4;:18;;;3859:85;;71841:41:::1;71864:4;71870:2;71874:7;71841:22;:41::i;:::-;3922:7:::0;;3859:85;2444:42;4004:40;;;4053:4;4060:10;4004:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2444:42;4100:40;;;4149:4;4156;4100:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4004:157;3958:310;;4241:10;4222:30;;;;;;;;;;;:::i;:::-;;;;;;;;3958:310;3580:699;71841:41:::1;71864:4;71870:2;71874:7;71841:22;:41::i;:::-;71715:173:::0;;;;;:::o;69660:80::-;9603:13;:11;:13::i;:::-;69726:8:::1;69719:4;:15;;;;69660:80:::0;:::o;70115:92::-;9603:13;:11;:13::i;:::-;70191:10:::1;70180:8;:21;;;;70115:92:::0;:::o;64869:28::-;;;;;;;;;;;;;:::o;70241:98::-;9603:13;:11;:13::i;:::-;70322:11:::1;70312:7;:21;;;;;;:::i;:::-;;70241:98:::0;:::o;64902:26::-;;;;;;;;;;;;;:::o;64838:::-;;;;;;;;;;;;;:::o;31881:152::-;31953:7;31996:27;32015:7;31996:18;:27::i;:::-;31973:52;;31881:152;;;:::o;64367:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64460:31::-;;;;:::o;27423:233::-;27495:7;27536:1;27519:19;;:5;:19;;;27515:60;;27547:28;;;;;;;;;;;;;;27515:60;21582:13;27593:18;:25;27612:5;27593:25;;;;;;;;;;;;;;;;:55;27586:62;;27423:233;;;:::o;10365:103::-;9603:13;:11;:13::i;:::-;10430:30:::1;10457:1;10430:18;:30::i;:::-;10365:103::o:0;68024:881::-;68083:16;68137:19;68171:25;68211:22;68236:16;68246:5;68236:9;:16::i;:::-;68211:41;;68267:25;68309:14;68295:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68267:57;;68339:31;;:::i;:::-;68390:9;68402:15;:13;:15::i;:::-;68390:27;;68385:472;68434:14;68419:11;:29;68385:472;;68486:15;68499:1;68486:12;:15::i;:::-;68474:27;;68524:9;:16;;;68565:8;68520:73;68641:1;68615:28;;:9;:14;;;:28;;;68611:111;;68688:9;:14;;;68668:34;;68611:111;68765:5;68744:26;;:17;:26;;;68740:102;;68821:1;68795:8;68804:13;;;;;;68795:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;68740:102;68385:472;68450:3;;;;;68385:472;;;;68878:8;68871:15;;;;;;;68024:881;;;:::o;9717:87::-;9763:7;9790:6;;;;;;;;;;;9783:13;;9717:87;:::o;68927:78::-;9603:13;:11;:13::i;:::-;68993:6:::1;68982:8;;:17;;;;;;;;;;;;;;;;;;68927:78:::0;:::o;30664:104::-;30720:13;30753:7;30746:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30664:104;:::o;64968:48::-;;;;;;;;;;;;;;;;;:::o;65657:577::-;6988:21;:19;:21::i;:::-;65731:6:::1;;;;;;;;;;;65730:7;65722:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;65780:10;;;;;;;;;;;65772:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;65843:8;;65833:6;:18;;65825:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;65928:9;;65918:6;65902:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;65894:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;66013:12;;66003:6;65967:12;:33;65980:19;:17;:19::i;:::-;65967:33;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;:58;;65959:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;66092:6;66085:4;;:13;;;;:::i;:::-;66072:9;:26;;66064:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;66169:6;66132:12;:33;66145:19;:17;:19::i;:::-;66132:33;;;;;;;;;;;;;;;;:43;;;;;;;:::i;:::-;;;;;;;;66184:38;66194:19;:17;:19::i;:::-;66215:6;66184:9;:38::i;:::-;7032:20:::0;:18;:20::i;:::-;65657:577;:::o;37537:234::-;37684:8;37632:18;:39;37651:19;:17;:19::i;:::-;37632:39;;;;;;;;;;;;;;;:49;37672:8;37632:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;37744:8;37708:55;;37723:19;:17;:19::i;:::-;37708:55;;;37754:8;37708:55;;;;;;:::i;:::-;;;;;;;;37537:234;;:::o;71896:198::-;72028:4;3630:1;2444:42;3584:43;;;:47;3580:699;;;3871:10;3863:18;;:4;:18;;;3859:85;;72041:47:::1;72064:4;72070:2;72074:7;72083:4;72041:22;:47::i;:::-;3922:7:::0;;3859:85;2444:42;4004:40;;;4053:4;4060:10;4004:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2444:42;4100:40;;;4149:4;4156;4100:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4004:157;3958:310;;4241:10;4222:30;;;;;;;;;;;:::i;:::-;;;;;;;;3958:310;3580:699;72041:47:::1;72064:4;72070:2;72074:7;72083:4;72041:22;:47::i;:::-;71896:198:::0;;;;;;:::o;67020:223::-;9603:13;:11;:13::i;:::-;6988:21:::1;:19;:21::i;:::-;67155:9:::2;;67140:11;67124:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;67116:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;67202:35;67212:11;67225;67202:9;:35::i;:::-;7032:20:::1;:18;:20::i;:::-;67020:223:::0;;:::o;64565:31::-;;;;:::o;69204:96::-;9603:13;:11;:13::i;:::-;69288:6:::1;69271:14;:23;;;;69204:96:::0;:::o;65127:62::-;;;;;;;;;;;;;:::o;69358:84::-;9603:13;:11;:13::i;:::-;69430:6:::1;69419:8;:17;;;;69358:84:::0;:::o;67295:492::-;67393:13;67434:16;67442:7;67434;:16::i;:::-;67418:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;67544:5;67532:17;;:8;;;;;;;;;;;:17;;;67529:62;;67569:14;67562:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67529:62;67599:28;67630:10;:8;:10::i;:::-;67599:41;;67685:1;67660:14;67654:28;:32;:127;;;;;;;;;;;;;;;;;67722:14;67738:18;67748:7;67738:9;:18::i;:::-;67705:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67654:127;67647:134;;;67295:492;;;;:::o;64496:30::-;;;;:::o;64767:29::-;;;;:::o;67852:107::-;67910:7;67933:20;67947:5;67933:13;:20::i;:::-;67926:27;;67852:107;;;:::o;69056:92::-;9603:13;:11;:13::i;:::-;69136:6:::1;69121:12;:21;;;;69056:92:::0;:::o;37928:164::-;38025:4;38049:18;:25;38068:5;38049:25;;;;;;;;;;;;;;;:35;38075:8;38049:35;;;;;;;;;;;;;;;;;;;;;;;;;38042:42;;37928:164;;;;:::o;71108:186::-;9603:13;:11;:13::i;:::-;71189:9:::1;71184:105;71208:9;:16;71204:1;:20;71184:105;;;71277:4;71240:20;:34;71261:9;71271:1;71261:12;;;;;;;;:::i;:::-;;;;;;;;71240:34;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;71226:3;;;;;:::i;:::-;;;;71184:105;;;;71108:186:::0;:::o;69814:88::-;9603:13;:11;:13::i;:::-;69886:10:::1;69877:6;:19;;;;69814:88:::0;:::o;70373:120::-;9603:13;:11;:13::i;:::-;70472:15:::1;70455:14;:32;;;;;;:::i;:::-;;70373:120:::0;:::o;10623:201::-;9603:13;:11;:13::i;:::-;10732:1:::1;10712:22;;:8;:22;;::::0;10704:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10788:28;10807:8;10788:18;:28::i;:::-;10623:201:::0;:::o;70882:96::-;9603:13;:11;:13::i;:::-;70964:6:::1;70951:10;;:19;;;;;;;;;;;;;;;;;;70882:96:::0;:::o;70721:90::-;9603:13;:11;:13::i;:::-;70797:6:::1;70787:7;;:16;;;;;;;;;;;;;;;;;;70721:90:::0;:::o;66279:686::-;6988:21;:19;:21::i;:::-;66360:6:::1;;;;;;;;;;;66359:7;66351:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;66409:7;;;;;;;;;;;66401:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;66462:20;:41;66483:19;:17;:19::i;:::-;66462:41;;;;;;;;;;;;;;;;;;;;;;;;;66454:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;66595:14;;66585:6;66546:15;:36;66562:19;:17;:19::i;:::-;66546:36;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;:63;;66538:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;66666:10;;66656:6;:20;;66648:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;66746:8;;66736:6;66720:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;;66712:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;66824:6;66815;;:15;;;;:::i;:::-;66802:9;:28;;66794:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;66906:6;66866:15;:36;66882:19;:17;:19::i;:::-;66866:36;;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;;;;;;;66921:38;66931:19;:17;:19::i;:::-;66952:6;66921:9;:38::i;:::-;7032:20:::0;:18;:20::i;:::-;66279:686;:::o;64700:27::-;;;;:::o;9882:132::-;9957:12;:10;:12::i;:::-;9946:23;;:7;:5;:7::i;:::-;:23;;;9938:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9882:132::o;38350:282::-;38415:4;38471:7;38452:15;:13;:15::i;:::-;:26;;:66;;;;;38505:13;;38495:7;:23;38452:66;:153;;;;;38604:1;22358:8;38556:17;:26;38574:7;38556:26;;;;;;;;;;;;:44;:49;38452:153;38432:173;;38350:282;;;:::o;60658:105::-;60718:7;60745:10;60738:17;;60658:105;:::o;65521:101::-;65586:7;65613:1;65606:8;;65521:101;:::o;40618:2825::-;40760:27;40790;40809:7;40790:18;:27::i;:::-;40760:57;;40875:4;40834:45;;40850:19;40834:45;;;40830:86;;40888:28;;;;;;;;;;;;;;40830:86;40930:27;40959:23;40986:35;41013:7;40986:26;:35::i;:::-;40929:92;;;;41121:68;41146:15;41163:4;41169:19;:17;:19::i;:::-;41121:24;:68::i;:::-;41116:180;;41209:43;41226:4;41232:19;:17;:19::i;:::-;41209:16;:43::i;:::-;41204:92;;41261:35;;;;;;;;;;;;;;41204:92;41116:180;41327:1;41313:16;;:2;:16;;;41309:52;;41338:23;;;;;;;;;;;;;;41309:52;41374:43;41396:4;41402:2;41406:7;41415:1;41374:21;:43::i;:::-;41510:15;41507:160;;;41650:1;41629:19;41622:30;41507:160;42047:18;:24;42066:4;42047:24;;;;;;;;;;;;;;;;42045:26;;;;;;;;;;;;42116:18;:22;42135:2;42116:22;;;;;;;;;;;;;;;;42114:24;;;;;;;;;;;42438:146;42475:2;42524:45;42539:4;42545:2;42549:19;42524:14;:45::i;:::-;22638:8;42496:73;42438:18;:146::i;:::-;42409:17;:26;42427:7;42409:26;;;;;;;;;;;:175;;;;42755:1;22638:8;42704:19;:47;:52;42700:627;;42777:19;42809:1;42799:7;:11;42777:33;;42966:1;42932:17;:30;42950:11;42932:30;;;;;;;;;;;;:35;42928:384;;43070:13;;43055:11;:28;43051:242;;43250:19;43217:17;:30;43235:11;43217:30;;;;;;;;;;;:52;;;;43051:242;42928:384;42758:569;42700:627;43374:7;43370:2;43355:27;;43364:4;43355:27;;;;;;;;;;;;43393:42;43414:4;43420:2;43424:7;43433:1;43393:20;:42::i;:::-;40749:2694;;;40618:2825;;;:::o;7068:293::-;6470:1;7202:7;;:19;7194:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;6470:1;7335:7;:18;;;;7068:293::o;7369:213::-;6426:1;7552:7;:22;;;;7369:213::o;43539:193::-;43685:39;43702:4;43708:2;43712:7;43685:39;;;;;;;;;;;;:16;:39::i;:::-;43539:193;;;:::o;33036:1275::-;33103:7;33123:12;33138:7;33123:22;;33206:4;33187:15;:13;:15::i;:::-;:23;33183:1061;;33240:13;;33233:4;:20;33229:1015;;;33278:14;33295:17;:23;33313:4;33295:23;;;;;;;;;;;;33278:40;;33412:1;22358:8;33384:6;:24;:29;33380:845;;34049:113;34066:1;34056:6;:11;34049:113;;34109:17;:25;34127:6;;;;;;;34109:25;;;;;;;;;;;;34100:34;;34049:113;;;34195:6;34188:13;;;;;;33380:845;33255:989;33229:1015;33183:1061;34272:31;;;;;;;;;;;;;;33036:1275;;;;:::o;10984:191::-;11058:16;11077:6;;;;;;;;;;;11058:25;;11103:8;11094:6;;:17;;;;;;;;;;;;;;;;;;11158:8;11127:40;;11148:8;11127:40;;;;;;;;;;;;11047:128;10984:191;:::o;32484:161::-;32552:21;;:::i;:::-;32593:44;32612:17;:24;32630:5;32612:24;;;;;;;;;;;;32593:18;:44::i;:::-;32586:51;;32484:161;;;:::o;54490:112::-;54567:27;54577:2;54581:8;54567:27;;;;;;;;;;;;:9;:27::i;:::-;54490:112;;:::o;44330:407::-;44505:31;44518:4;44524:2;44528:7;44505:12;:31::i;:::-;44569:1;44551:2;:14;;;:19;44547:183;;44590:56;44621:4;44627:2;44631:7;44640:5;44590:30;:56::i;:::-;44585:145;;44674:40;;;;;;;;;;;;;;44585:145;44547:183;44330:407;;;;:::o;65411:102::-;65471:13;65500:7;65493:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65411:102;:::o;60865:1745::-;60930:17;61364:4;61357;61351:11;61347:22;61456:1;61450:4;61443:15;61531:4;61528:1;61524:12;61517:19;;61613:1;61608:3;61601:14;61717:3;61956:5;61938:428;61964:1;61938:428;;;62004:1;61999:3;61995:11;61988:18;;62175:2;62169:4;62165:13;62161:2;62157:22;62152:3;62144:36;62269:2;62263:4;62259:13;62251:21;;62336:4;61938:428;62326:25;61938:428;61942:21;62405:3;62400;62396:13;62520:4;62515:3;62511:14;62504:21;;62585:6;62580:3;62573:19;60969:1634;;;60865:1745;;;:::o;27738:178::-;27799:7;21582:13;21720:2;27827:18;:25;27846:5;27827:25;;;;;;;;;;;;;;;;:50;;27826:82;27819:89;;27738:178;;;:::o;8268:98::-;8321:7;8348:10;8341:17;;8268:98;:::o;39513:485::-;39615:27;39644:23;39685:38;39726:15;:24;39742:7;39726:24;;;;;;;;;;;39685:65;;39903:18;39880:41;;39960:19;39954:26;39935:45;;39865:126;39513:485;;;:::o;38741:659::-;38890:11;39055:16;39048:5;39044:28;39035:37;;39215:16;39204:9;39200:32;39187:45;;39365:15;39354:9;39351:30;39343:5;39332:9;39329:20;39326:56;39316:66;;38741:659;;;;;:::o;45399:159::-;;;;;:::o;59967:311::-;60102:7;60122:16;22762:3;60148:19;:41;;60122:68;;22762:3;60216:31;60227:4;60233:2;60237:9;60216:10;:31::i;:::-;60208:40;;:62;;60201:69;;;59967:311;;;;;:::o;34859:450::-;34939:14;35107:16;35100:5;35096:28;35087:37;;35284:5;35270:11;35245:23;35241:41;35238:52;35231:5;35228:63;35218:73;;34859:450;;;;:::o;46223:158::-;;;;;:::o;34410:366::-;34476:31;;:::i;:::-;34553:6;34520:9;:14;;:41;;;;;;;;;;;22241:3;34606:6;:33;;34572:9;:24;;:68;;;;;;;;;;;34698:1;22358:8;34670:6;:24;:29;;34651:9;:16;;:48;;;;;;;;;;;22762:3;34739:6;:28;;34710:9;:19;;:58;;;;;;;;;;;34410:366;;;:::o;53717:689::-;53848:19;53854:2;53858:8;53848:5;:19::i;:::-;53927:1;53909:2;:14;;;:19;53905:483;;53949:11;53963:13;;53949:27;;53995:13;54017:8;54011:3;:14;53995:30;;54044:233;54075:62;54114:1;54118:2;54122:7;;;;;;54131:5;54075:30;:62::i;:::-;54070:167;;54173:40;;;;;;;;;;;;;;54070:167;54272:3;54264:5;:11;54044:233;;54359:3;54342:13;;:20;54338:34;;54364:8;;;54338:34;53930:458;;53905:483;53717:689;;;:::o;46821:716::-;46984:4;47030:2;47005:45;;;47051:19;:17;:19::i;:::-;47072:4;47078:7;47087:5;47005:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47001:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47305:1;47288:6;:13;:18;47284:235;;47334:40;;;;;;;;;;;;;;47284:235;47477:6;47471:13;47462:6;47458:2;47454:15;47447:38;47001:529;47174:54;;;47164:64;;;:6;:64;;;;47157:71;;;46821:716;;;;;;:::o;59668:147::-;59805:6;59668:147;;;;;:::o;47999:2966::-;48072:20;48095:13;;48072:36;;48135:1;48123:8;:13;48119:44;;48145:18;;;;;;;;;;;;;;48119:44;48176:61;48206:1;48210:2;48214:12;48228:8;48176:21;:61::i;:::-;48720:1;21720:2;48690:1;:26;;48689:32;48677:8;:45;48651:18;:22;48670:2;48651:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;48999:139;49036:2;49090:33;49113:1;49117:2;49121:1;49090:14;:33::i;:::-;49057:30;49078:8;49057:20;:30::i;:::-;:66;48999:18;:139::i;:::-;48965:17;:31;48983:12;48965:31;;;;;;;;;;;:173;;;;49155:16;49186:11;49215:8;49200:12;:23;49186:37;;49736:16;49732:2;49728:25;49716:37;;50108:12;50068:8;50027:1;49965:25;49906:1;49845;49818:335;50479:1;50465:12;50461:20;50419:346;50520:3;50511:7;50508:16;50419:346;;50738:7;50728:8;50725:1;50698:25;50695:1;50692;50687:59;50573:1;50564:7;50560:15;50549:26;;50419:346;;;50423:77;50810:1;50798:8;:13;50794:45;;50820:19;;;;;;;;;;;;;;50794:45;50872:3;50856:13;:19;;;;48425:2462;;50897:60;50926:1;50930:2;50934:12;50948:8;50897:20;:60::i;:::-;48061:2904;47999:2966;;:::o;35411:324::-;35481:14;35714:1;35704:8;35701:15;35675:24;35671:46;35661:56;;35411:324;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:149;805:7;845:66;838:5;834:78;823:89;;769:149;;;:::o;924:120::-;996:23;1013:5;996:23;:::i;:::-;989:5;986:34;976:62;;1034:1;1031;1024:12;976:62;924:120;:::o;1050:137::-;1095:5;1133:6;1120:20;1111:29;;1149:32;1175:5;1149:32;:::i;:::-;1050:137;;;;:::o;1193:327::-;1251:6;1300:2;1288:9;1279:7;1275:23;1271:32;1268:119;;;1306:79;;:::i;:::-;1268:119;1426:1;1451:52;1495:7;1486:6;1475:9;1471:22;1451:52;:::i;:::-;1441:62;;1397:116;1193:327;;;;:::o;1526:90::-;1560:7;1603:5;1596:13;1589:21;1578:32;;1526:90;;;:::o;1622:109::-;1703:21;1718:5;1703:21;:::i;:::-;1698:3;1691:34;1622:109;;:::o;1737:210::-;1824:4;1862:2;1851:9;1847:18;1839:26;;1875:65;1937:1;1926:9;1922:17;1913:6;1875:65;:::i;:::-;1737:210;;;;:::o;1953:116::-;2023:21;2038:5;2023:21;:::i;:::-;2016:5;2013:32;2003:60;;2059:1;2056;2049:12;2003:60;1953:116;:::o;2075:133::-;2118:5;2156:6;2143:20;2134:29;;2172:30;2196:5;2172:30;:::i;:::-;2075:133;;;;:::o;2214:323::-;2270:6;2319:2;2307:9;2298:7;2294:23;2290:32;2287:119;;;2325:79;;:::i;:::-;2287:119;2445:1;2470:50;2512:7;2503:6;2492:9;2488:22;2470:50;:::i;:::-;2460:60;;2416:114;2214:323;;;;:::o;2543:99::-;2595:6;2629:5;2623:12;2613:22;;2543:99;;;:::o;2648:169::-;2732:11;2766:6;2761:3;2754:19;2806:4;2801:3;2797:14;2782:29;;2648:169;;;;:::o;2823:246::-;2904:1;2914:113;2928:6;2925:1;2922:13;2914:113;;;3013:1;3008:3;3004:11;2998:18;2994:1;2989:3;2985:11;2978:39;2950:2;2947:1;2943:10;2938:15;;2914:113;;;3061:1;3052:6;3047:3;3043:16;3036:27;2885:184;2823:246;;;:::o;3075:102::-;3116:6;3167:2;3163:7;3158:2;3151:5;3147:14;3143:28;3133:38;;3075:102;;;:::o;3183:377::-;3271:3;3299:39;3332:5;3299:39;:::i;:::-;3354:71;3418:6;3413:3;3354:71;:::i;:::-;3347:78;;3434:65;3492:6;3487:3;3480:4;3473:5;3469:16;3434:65;:::i;:::-;3524:29;3546:6;3524:29;:::i;:::-;3519:3;3515:39;3508:46;;3275:285;3183:377;;;;:::o;3566:313::-;3679:4;3717:2;3706:9;3702:18;3694:26;;3766:9;3760:4;3756:20;3752:1;3741:9;3737:17;3730:47;3794:78;3867:4;3858:6;3794:78;:::i;:::-;3786:86;;3566:313;;;;:::o;3885:122::-;3958:24;3976:5;3958:24;:::i;:::-;3951:5;3948:35;3938:63;;3997:1;3994;3987:12;3938:63;3885:122;:::o;4013:139::-;4059:5;4097:6;4084:20;4075:29;;4113:33;4140:5;4113:33;:::i;:::-;4013:139;;;;:::o;4158:329::-;4217:6;4266:2;4254:9;4245:7;4241:23;4237:32;4234:119;;;4272:79;;:::i;:::-;4234:119;4392:1;4417:53;4462:7;4453:6;4442:9;4438:22;4417:53;:::i;:::-;4407:63;;4363:117;4158:329;;;;:::o;4493:126::-;4530:7;4570:42;4563:5;4559:54;4548:65;;4493:126;;;:::o;4625:96::-;4662:7;4691:24;4709:5;4691:24;:::i;:::-;4680:35;;4625:96;;;:::o;4727:118::-;4814:24;4832:5;4814:24;:::i;:::-;4809:3;4802:37;4727:118;;:::o;4851:222::-;4944:4;4982:2;4971:9;4967:18;4959:26;;4995:71;5063:1;5052:9;5048:17;5039:6;4995:71;:::i;:::-;4851:222;;;;:::o;5079:122::-;5152:24;5170:5;5152:24;:::i;:::-;5145:5;5142:35;5132:63;;5191:1;5188;5181:12;5132:63;5079:122;:::o;5207:139::-;5253:5;5291:6;5278:20;5269:29;;5307:33;5334:5;5307:33;:::i;:::-;5207:139;;;;:::o;5352:474::-;5420:6;5428;5477:2;5465:9;5456:7;5452:23;5448:32;5445:119;;;5483:79;;:::i;:::-;5445:119;5603:1;5628:53;5673:7;5664:6;5653:9;5649:22;5628:53;:::i;:::-;5618:63;;5574:117;5730:2;5756:53;5801:7;5792:6;5781:9;5777:22;5756:53;:::i;:::-;5746:63;;5701:118;5352:474;;;;;:::o;5832:619::-;5909:6;5917;5925;5974:2;5962:9;5953:7;5949:23;5945:32;5942:119;;;5980:79;;:::i;:::-;5942:119;6100:1;6125:53;6170:7;6161:6;6150:9;6146:22;6125:53;:::i;:::-;6115:63;;6071:117;6227:2;6253:53;6298:7;6289:6;6278:9;6274:22;6253:53;:::i;:::-;6243:63;;6198:118;6355:2;6381:53;6426:7;6417:6;6406:9;6402:22;6381:53;:::i;:::-;6371:63;;6326:118;5832:619;;;;;:::o;6457:329::-;6516:6;6565:2;6553:9;6544:7;6540:23;6536:32;6533:119;;;6571:79;;:::i;:::-;6533:119;6691:1;6716:53;6761:7;6752:6;6741:9;6737:22;6716:53;:::i;:::-;6706:63;;6662:117;6457:329;;;;:::o;6792:117::-;6901:1;6898;6891:12;6915:117;7024:1;7021;7014:12;7038:180;7086:77;7083:1;7076:88;7183:4;7180:1;7173:15;7207:4;7204:1;7197:15;7224:281;7307:27;7329:4;7307:27;:::i;:::-;7299:6;7295:40;7437:6;7425:10;7422:22;7401:18;7389:10;7386:34;7383:62;7380:88;;;7448:18;;:::i;:::-;7380:88;7488:10;7484:2;7477:22;7267:238;7224:281;;:::o;7511:129::-;7545:6;7572:20;;:::i;:::-;7562:30;;7601:33;7629:4;7621:6;7601:33;:::i;:::-;7511:129;;;:::o;7646:308::-;7708:4;7798:18;7790:6;7787:30;7784:56;;;7820:18;;:::i;:::-;7784:56;7858:29;7880:6;7858:29;:::i;:::-;7850:37;;7942:4;7936;7932:15;7924:23;;7646:308;;;:::o;7960:146::-;8057:6;8052:3;8047;8034:30;8098:1;8089:6;8084:3;8080:16;8073:27;7960:146;;;:::o;8112:425::-;8190:5;8215:66;8231:49;8273:6;8231:49;:::i;:::-;8215:66;:::i;:::-;8206:75;;8304:6;8297:5;8290:21;8342:4;8335:5;8331:16;8380:3;8371:6;8366:3;8362:16;8359:25;8356:112;;;8387:79;;:::i;:::-;8356:112;8477:54;8524:6;8519:3;8514;8477:54;:::i;:::-;8196:341;8112:425;;;;;:::o;8557:340::-;8613:5;8662:3;8655:4;8647:6;8643:17;8639:27;8629:122;;8670:79;;:::i;:::-;8629:122;8787:6;8774:20;8812:79;8887:3;8879:6;8872:4;8864:6;8860:17;8812:79;:::i;:::-;8803:88;;8619:278;8557:340;;;;:::o;8903:509::-;8972:6;9021:2;9009:9;9000:7;8996:23;8992:32;8989:119;;;9027:79;;:::i;:::-;8989:119;9175:1;9164:9;9160:17;9147:31;9205:18;9197:6;9194:30;9191:117;;;9227:79;;:::i;:::-;9191:117;9332:63;9387:7;9378:6;9367:9;9363:22;9332:63;:::i;:::-;9322:73;;9118:287;8903:509;;;;:::o;9418:114::-;9485:6;9519:5;9513:12;9503:22;;9418:114;;;:::o;9538:184::-;9637:11;9671:6;9666:3;9659:19;9711:4;9706:3;9702:14;9687:29;;9538:184;;;;:::o;9728:132::-;9795:4;9818:3;9810:11;;9848:4;9843:3;9839:14;9831:22;;9728:132;;;:::o;9866:108::-;9943:24;9961:5;9943:24;:::i;:::-;9938:3;9931:37;9866:108;;:::o;9980:179::-;10049:10;10070:46;10112:3;10104:6;10070:46;:::i;:::-;10148:4;10143:3;10139:14;10125:28;;9980:179;;;;:::o;10165:113::-;10235:4;10267;10262:3;10258:14;10250:22;;10165:113;;;:::o;10314:732::-;10433:3;10462:54;10510:5;10462:54;:::i;:::-;10532:86;10611:6;10606:3;10532:86;:::i;:::-;10525:93;;10642:56;10692:5;10642:56;:::i;:::-;10721:7;10752:1;10737:284;10762:6;10759:1;10756:13;10737:284;;;10838:6;10832:13;10865:63;10924:3;10909:13;10865:63;:::i;:::-;10858:70;;10951:60;11004:6;10951:60;:::i;:::-;10941:70;;10797:224;10784:1;10781;10777:9;10772:14;;10737:284;;;10741:14;11037:3;11030:10;;10438:608;;;10314:732;;;;:::o;11052:373::-;11195:4;11233:2;11222:9;11218:18;11210:26;;11282:9;11276:4;11272:20;11268:1;11257:9;11253:17;11246:47;11310:108;11413:4;11404:6;11310:108;:::i;:::-;11302:116;;11052:373;;;;:::o;11431:468::-;11496:6;11504;11553:2;11541:9;11532:7;11528:23;11524:32;11521:119;;;11559:79;;:::i;:::-;11521:119;11679:1;11704:53;11749:7;11740:6;11729:9;11725:22;11704:53;:::i;:::-;11694:63;;11650:117;11806:2;11832:50;11874:7;11865:6;11854:9;11850:22;11832:50;:::i;:::-;11822:60;;11777:115;11431:468;;;;;:::o;11905:307::-;11966:4;12056:18;12048:6;12045:30;12042:56;;;12078:18;;:::i;:::-;12042:56;12116:29;12138:6;12116:29;:::i;:::-;12108:37;;12200:4;12194;12190:15;12182:23;;11905:307;;;:::o;12218:423::-;12295:5;12320:65;12336:48;12377:6;12336:48;:::i;:::-;12320:65;:::i;:::-;12311:74;;12408:6;12401:5;12394:21;12446:4;12439:5;12435:16;12484:3;12475:6;12470:3;12466:16;12463:25;12460:112;;;12491:79;;:::i;:::-;12460:112;12581:54;12628:6;12623:3;12618;12581:54;:::i;:::-;12301:340;12218:423;;;;;:::o;12660:338::-;12715:5;12764:3;12757:4;12749:6;12745:17;12741:27;12731:122;;12772:79;;:::i;:::-;12731:122;12889:6;12876:20;12914:78;12988:3;12980:6;12973:4;12965:6;12961:17;12914:78;:::i;:::-;12905:87;;12721:277;12660:338;;;;:::o;13004:943::-;13099:6;13107;13115;13123;13172:3;13160:9;13151:7;13147:23;13143:33;13140:120;;;13179:79;;:::i;:::-;13140:120;13299:1;13324:53;13369:7;13360:6;13349:9;13345:22;13324:53;:::i;:::-;13314:63;;13270:117;13426:2;13452:53;13497:7;13488:6;13477:9;13473:22;13452:53;:::i;:::-;13442:63;;13397:118;13554:2;13580:53;13625:7;13616:6;13605:9;13601:22;13580:53;:::i;:::-;13570:63;;13525:118;13710:2;13699:9;13695:18;13682:32;13741:18;13733:6;13730:30;13727:117;;;13763:79;;:::i;:::-;13727:117;13868:62;13922:7;13913:6;13902:9;13898:22;13868:62;:::i;:::-;13858:72;;13653:287;13004:943;;;;;;;:::o;13953:474::-;14021:6;14029;14078:2;14066:9;14057:7;14053:23;14049:32;14046:119;;;14084:79;;:::i;:::-;14046:119;14204:1;14229:53;14274:7;14265:6;14254:9;14250:22;14229:53;:::i;:::-;14219:63;;14175:117;14331:2;14357:53;14402:7;14393:6;14382:9;14378:22;14357:53;:::i;:::-;14347:63;;14302:118;13953:474;;;;;:::o;14433:::-;14501:6;14509;14558:2;14546:9;14537:7;14533:23;14529:32;14526:119;;;14564:79;;:::i;:::-;14526:119;14684:1;14709:53;14754:7;14745:6;14734:9;14730:22;14709:53;:::i;:::-;14699:63;;14655:117;14811:2;14837:53;14882:7;14873:6;14862:9;14858:22;14837:53;:::i;:::-;14827:63;;14782:118;14433:474;;;;;:::o;14913:311::-;14990:4;15080:18;15072:6;15069:30;15066:56;;;15102:18;;:::i;:::-;15066:56;15152:4;15144:6;15140:17;15132:25;;15212:4;15206;15202:15;15194:23;;14913:311;;;:::o;15230:117::-;15339:1;15336;15329:12;15370:710;15466:5;15491:81;15507:64;15564:6;15507:64;:::i;:::-;15491:81;:::i;:::-;15482:90;;15592:5;15621:6;15614:5;15607:21;15655:4;15648:5;15644:16;15637:23;;15708:4;15700:6;15696:17;15688:6;15684:30;15737:3;15729:6;15726:15;15723:122;;;15756:79;;:::i;:::-;15723:122;15871:6;15854:220;15888:6;15883:3;15880:15;15854:220;;;15963:3;15992:37;16025:3;16013:10;15992:37;:::i;:::-;15987:3;15980:50;16059:4;16054:3;16050:14;16043:21;;15930:144;15914:4;15909:3;15905:14;15898:21;;15854:220;;;15858:21;15472:608;;15370:710;;;;;:::o;16103:370::-;16174:5;16223:3;16216:4;16208:6;16204:17;16200:27;16190:122;;16231:79;;:::i;:::-;16190:122;16348:6;16335:20;16373:94;16463:3;16455:6;16448:4;16440:6;16436:17;16373:94;:::i;:::-;16364:103;;16180:293;16103:370;;;;:::o;16479:539::-;16563:6;16612:2;16600:9;16591:7;16587:23;16583:32;16580:119;;;16618:79;;:::i;:::-;16580:119;16766:1;16755:9;16751:17;16738:31;16796:18;16788:6;16785:30;16782:117;;;16818:79;;:::i;:::-;16782:117;16923:78;16993:7;16984:6;16973:9;16969:22;16923:78;:::i;:::-;16913:88;;16709:302;16479:539;;;;:::o;17024:180::-;17072:77;17069:1;17062:88;17169:4;17166:1;17159:15;17193:4;17190:1;17183:15;17210:320;17254:6;17291:1;17285:4;17281:12;17271:22;;17338:1;17332:4;17328:12;17359:18;17349:81;;17415:4;17407:6;17403:17;17393:27;;17349:81;17477:2;17469:6;17466:14;17446:18;17443:38;17440:84;;17496:18;;:::i;:::-;17440:84;17261:269;17210:320;;;:::o;17536:332::-;17657:4;17695:2;17684:9;17680:18;17672:26;;17708:71;17776:1;17765:9;17761:17;17752:6;17708:71;:::i;:::-;17789:72;17857:2;17846:9;17842:18;17833:6;17789:72;:::i;:::-;17536:332;;;;;:::o;17874:137::-;17928:5;17959:6;17953:13;17944:22;;17975:30;17999:5;17975:30;:::i;:::-;17874:137;;;;:::o;18017:345::-;18084:6;18133:2;18121:9;18112:7;18108:23;18104:32;18101:119;;;18139:79;;:::i;:::-;18101:119;18259:1;18284:61;18337:7;18328:6;18317:9;18313:22;18284:61;:::i;:::-;18274:71;;18230:125;18017:345;;;;:::o;18368:180::-;18416:77;18413:1;18406:88;18513:4;18510:1;18503:15;18537:4;18534:1;18527:15;18554:410;18594:7;18617:20;18635:1;18617:20;:::i;:::-;18612:25;;18651:20;18669:1;18651:20;:::i;:::-;18646:25;;18706:1;18703;18699:9;18728:30;18746:11;18728:30;:::i;:::-;18717:41;;18907:1;18898:7;18894:15;18891:1;18888:22;18868:1;18861:9;18841:83;18818:139;;18937:18;;:::i;:::-;18818:139;18602:362;18554:410;;;;:::o;18970:180::-;19018:77;19015:1;19008:88;19115:4;19112:1;19105:15;19139:4;19136:1;19129:15;19156:185;19196:1;19213:20;19231:1;19213:20;:::i;:::-;19208:25;;19247:20;19265:1;19247:20;:::i;:::-;19242:25;;19286:1;19276:35;;19291:18;;:::i;:::-;19276:35;19333:1;19330;19326:9;19321:14;;19156:185;;;;:::o;19347:141::-;19396:4;19419:3;19411:11;;19442:3;19439:1;19432:14;19476:4;19473:1;19463:18;19455:26;;19347:141;;;:::o;19494:93::-;19531:6;19578:2;19573;19566:5;19562:14;19558:23;19548:33;;19494:93;;;:::o;19593:107::-;19637:8;19687:5;19681:4;19677:16;19656:37;;19593:107;;;;:::o;19706:393::-;19775:6;19825:1;19813:10;19809:18;19848:97;19878:66;19867:9;19848:97;:::i;:::-;19966:39;19996:8;19985:9;19966:39;:::i;:::-;19954:51;;20038:4;20034:9;20027:5;20023:21;20014:30;;20087:4;20077:8;20073:19;20066:5;20063:30;20053:40;;19782:317;;19706:393;;;;;:::o;20105:60::-;20133:3;20154:5;20147:12;;20105:60;;;:::o;20171:142::-;20221:9;20254:53;20272:34;20281:24;20299:5;20281:24;:::i;:::-;20272:34;:::i;:::-;20254:53;:::i;:::-;20241:66;;20171:142;;;:::o;20319:75::-;20362:3;20383:5;20376:12;;20319:75;;;:::o;20400:269::-;20510:39;20541:7;20510:39;:::i;:::-;20571:91;20620:41;20644:16;20620:41;:::i;:::-;20612:6;20605:4;20599:11;20571:91;:::i;:::-;20565:4;20558:105;20476:193;20400:269;;;:::o;20675:73::-;20720:3;20675:73;:::o;20754:189::-;20831:32;;:::i;:::-;20872:65;20930:6;20922;20916:4;20872:65;:::i;:::-;20807:136;20754:189;;:::o;20949:186::-;21009:120;21026:3;21019:5;21016:14;21009:120;;;21080:39;21117:1;21110:5;21080:39;:::i;:::-;21053:1;21046:5;21042:13;21033:22;;21009:120;;;20949:186;;:::o;21141:543::-;21242:2;21237:3;21234:11;21231:446;;;21276:38;21308:5;21276:38;:::i;:::-;21360:29;21378:10;21360:29;:::i;:::-;21350:8;21346:44;21543:2;21531:10;21528:18;21525:49;;;21564:8;21549:23;;21525:49;21587:80;21643:22;21661:3;21643:22;:::i;:::-;21633:8;21629:37;21616:11;21587:80;:::i;:::-;21246:431;;21231:446;21141:543;;;:::o;21690:117::-;21744:8;21794:5;21788:4;21784:16;21763:37;;21690:117;;;;:::o;21813:169::-;21857:6;21890:51;21938:1;21934:6;21926:5;21923:1;21919:13;21890:51;:::i;:::-;21886:56;21971:4;21965;21961:15;21951:25;;21864:118;21813:169;;;;:::o;21987:295::-;22063:4;22209:29;22234:3;22228:4;22209:29;:::i;:::-;22201:37;;22271:3;22268:1;22264:11;22258:4;22255:21;22247:29;;21987:295;;;;:::o;22287:1395::-;22404:37;22437:3;22404:37;:::i;:::-;22506:18;22498:6;22495:30;22492:56;;;22528:18;;:::i;:::-;22492:56;22572:38;22604:4;22598:11;22572:38;:::i;:::-;22657:67;22717:6;22709;22703:4;22657:67;:::i;:::-;22751:1;22775:4;22762:17;;22807:2;22799:6;22796:14;22824:1;22819:618;;;;23481:1;23498:6;23495:77;;;23547:9;23542:3;23538:19;23532:26;23523:35;;23495:77;23598:67;23658:6;23651:5;23598:67;:::i;:::-;23592:4;23585:81;23454:222;22789:887;;22819:618;22871:4;22867:9;22859:6;22855:22;22905:37;22937:4;22905:37;:::i;:::-;22964:1;22978:208;22992:7;22989:1;22986:14;22978:208;;;23071:9;23066:3;23062:19;23056:26;23048:6;23041:42;23122:1;23114:6;23110:14;23100:24;;23169:2;23158:9;23154:18;23141:31;;23015:4;23012:1;23008:12;23003:17;;22978:208;;;23214:6;23205:7;23202:19;23199:179;;;23272:9;23267:3;23263:19;23257:26;23315:48;23357:4;23349:6;23345:17;23334:9;23315:48;:::i;:::-;23307:6;23300:64;23222:156;23199:179;23424:1;23420;23412:6;23408:14;23404:22;23398:4;23391:36;22826:611;;;22789:887;;22379:1303;;;22287:1395;;:::o;23688:180::-;23736:77;23733:1;23726:88;23833:4;23830:1;23823:15;23857:4;23854:1;23847:15;23874:173;24014:25;24010:1;24002:6;23998:14;23991:49;23874:173;:::o;24053:366::-;24195:3;24216:67;24280:2;24275:3;24216:67;:::i;:::-;24209:74;;24292:93;24381:3;24292:93;:::i;:::-;24410:2;24405:3;24401:12;24394:19;;24053:366;;;:::o;24425:419::-;24591:4;24629:2;24618:9;24614:18;24606:26;;24678:9;24672:4;24668:20;24664:1;24653:9;24649:17;24642:47;24706:131;24832:4;24706:131;:::i;:::-;24698:139;;24425:419;;;:::o;24850:173::-;24990:25;24986:1;24978:6;24974:14;24967:49;24850:173;:::o;25029:366::-;25171:3;25192:67;25256:2;25251:3;25192:67;:::i;:::-;25185:74;;25268:93;25357:3;25268:93;:::i;:::-;25386:2;25381:3;25377:12;25370:19;;25029:366;;;:::o;25401:419::-;25567:4;25605:2;25594:9;25590:18;25582:26;;25654:9;25648:4;25644:20;25640:1;25629:9;25625:17;25618:47;25682:131;25808:4;25682:131;:::i;:::-;25674:139;;25401:419;;;:::o;25826:181::-;25966:33;25962:1;25954:6;25950:14;25943:57;25826:181;:::o;26013:366::-;26155:3;26176:67;26240:2;26235:3;26176:67;:::i;:::-;26169:74;;26252:93;26341:3;26252:93;:::i;:::-;26370:2;26365:3;26361:12;26354:19;;26013:366;;;:::o;26385:419::-;26551:4;26589:2;26578:9;26574:18;26566:26;;26638:9;26632:4;26628:20;26624:1;26613:9;26609:17;26602:47;26666:131;26792:4;26666:131;:::i;:::-;26658:139;;26385:419;;;:::o;26810:191::-;26850:3;26869:20;26887:1;26869:20;:::i;:::-;26864:25;;26903:20;26921:1;26903:20;:::i;:::-;26898:25;;26946:1;26943;26939:9;26932:16;;26967:3;26964:1;26961:10;26958:36;;;26974:18;;:::i;:::-;26958:36;26810:191;;;;:::o;27007:160::-;27147:12;27143:1;27135:6;27131:14;27124:36;27007:160;:::o;27173:366::-;27315:3;27336:67;27400:2;27395:3;27336:67;:::i;:::-;27329:74;;27412:93;27501:3;27412:93;:::i;:::-;27530:2;27525:3;27521:12;27514:19;;27173:366;;;:::o;27545:419::-;27711:4;27749:2;27738:9;27734:18;27726:26;;27798:9;27792:4;27788:20;27784:1;27773:9;27769:17;27762:47;27826:131;27952:4;27826:131;:::i;:::-;27818:139;;27545:419;;;:::o;27970:177::-;28110:29;28106:1;28098:6;28094:14;28087:53;27970:177;:::o;28153:366::-;28295:3;28316:67;28380:2;28375:3;28316:67;:::i;:::-;28309:74;;28392:93;28481:3;28392:93;:::i;:::-;28510:2;28505:3;28501:12;28494:19;;28153:366;;;:::o;28525:419::-;28691:4;28729:2;28718:9;28714:18;28706:26;;28778:9;28772:4;28768:20;28764:1;28753:9;28749:17;28742:47;28806:131;28932:4;28806:131;:::i;:::-;28798:139;;28525:419;;;:::o;28950:168::-;29090:20;29086:1;29078:6;29074:14;29067:44;28950:168;:::o;29124:366::-;29266:3;29287:67;29351:2;29346:3;29287:67;:::i;:::-;29280:74;;29363:93;29452:3;29363:93;:::i;:::-;29481:2;29476:3;29472:12;29465:19;;29124:366;;;:::o;29496:419::-;29662:4;29700:2;29689:9;29685:18;29677:26;;29749:9;29743:4;29739:20;29735:1;29724:9;29720:17;29713:47;29777:131;29903:4;29777:131;:::i;:::-;29769:139;;29496:419;;;:::o;29921:172::-;30061:24;30057:1;30049:6;30045:14;30038:48;29921:172;:::o;30099:366::-;30241:3;30262:67;30326:2;30321:3;30262:67;:::i;:::-;30255:74;;30338:93;30427:3;30338:93;:::i;:::-;30456:2;30451:3;30447:12;30440:19;;30099:366;;;:::o;30471:419::-;30637:4;30675:2;30664:9;30660:18;30652:26;;30724:9;30718:4;30714:20;30710:1;30699:9;30695:17;30688:47;30752:131;30878:4;30752:131;:::i;:::-;30744:139;;30471:419;;;:::o;30896:235::-;31036:34;31032:1;31024:6;31020:14;31013:58;31105:18;31100:2;31092:6;31088:15;31081:43;30896:235;:::o;31137:366::-;31279:3;31300:67;31364:2;31359:3;31300:67;:::i;:::-;31293:74;;31376:93;31465:3;31376:93;:::i;:::-;31494:2;31489:3;31485:12;31478:19;;31137:366;;;:::o;31509:419::-;31675:4;31713:2;31702:9;31698:18;31690:26;;31762:9;31756:4;31752:20;31748:1;31737:9;31733:17;31726:47;31790:131;31916:4;31790:131;:::i;:::-;31782:139;;31509:419;;;:::o;31934:148::-;32036:11;32073:3;32058:18;;31934:148;;;;:::o;32088:390::-;32194:3;32222:39;32255:5;32222:39;:::i;:::-;32277:89;32359:6;32354:3;32277:89;:::i;:::-;32270:96;;32375:65;32433:6;32428:3;32421:4;32414:5;32410:16;32375:65;:::i;:::-;32465:6;32460:3;32456:16;32449:23;;32198:280;32088:390;;;;:::o;32484:155::-;32624:7;32620:1;32612:6;32608:14;32601:31;32484:155;:::o;32645:400::-;32805:3;32826:84;32908:1;32903:3;32826:84;:::i;:::-;32819:91;;32919:93;33008:3;32919:93;:::i;:::-;33037:1;33032:3;33028:11;33021:18;;32645:400;;;:::o;33051:701::-;33332:3;33354:95;33445:3;33436:6;33354:95;:::i;:::-;33347:102;;33466:95;33557:3;33548:6;33466:95;:::i;:::-;33459:102;;33578:148;33722:3;33578:148;:::i;:::-;33571:155;;33743:3;33736:10;;33051:701;;;;;:::o;33758:233::-;33797:3;33820:24;33838:5;33820:24;:::i;:::-;33811:33;;33866:66;33859:5;33856:77;33853:103;;33936:18;;:::i;:::-;33853:103;33983:1;33976:5;33972:13;33965:20;;33758:233;;;:::o;33997:225::-;34137:34;34133:1;34125:6;34121:14;34114:58;34206:8;34201:2;34193:6;34189:15;34182:33;33997:225;:::o;34228:366::-;34370:3;34391:67;34455:2;34450:3;34391:67;:::i;:::-;34384:74;;34467:93;34556:3;34467:93;:::i;:::-;34585:2;34580:3;34576:12;34569:19;;34228:366;;;:::o;34600:419::-;34766:4;34804:2;34793:9;34789:18;34781:26;;34853:9;34847:4;34843:20;34839:1;34828:9;34824:17;34817:47;34881:131;35007:4;34881:131;:::i;:::-;34873:139;;34600:419;;;:::o;35025:176::-;35165:28;35161:1;35153:6;35149:14;35142:52;35025:176;:::o;35207:366::-;35349:3;35370:67;35434:2;35429:3;35370:67;:::i;:::-;35363:74;;35446:93;35535:3;35446:93;:::i;:::-;35564:2;35559:3;35555:12;35548:19;;35207:366;;;:::o;35579:419::-;35745:4;35783:2;35772:9;35768:18;35760:26;;35832:9;35826:4;35822:20;35818:1;35807:9;35803:17;35796:47;35860:131;35986:4;35860:131;:::i;:::-;35852:139;;35579:419;;;:::o;36004:173::-;36144:25;36140:1;36132:6;36128:14;36121:49;36004:173;:::o;36183:366::-;36325:3;36346:67;36410:2;36405:3;36346:67;:::i;:::-;36339:74;;36422:93;36511:3;36422:93;:::i;:::-;36540:2;36535:3;36531:12;36524:19;;36183:366;;;:::o;36555:419::-;36721:4;36759:2;36748:9;36744:18;36736:26;;36808:9;36802:4;36798:20;36794:1;36783:9;36779:17;36772:47;36836:131;36962:4;36836:131;:::i;:::-;36828:139;;36555:419;;;:::o;36980:174::-;37120:26;37116:1;37108:6;37104:14;37097:50;36980:174;:::o;37160:366::-;37302:3;37323:67;37387:2;37382:3;37323:67;:::i;:::-;37316:74;;37399:93;37488:3;37399:93;:::i;:::-;37517:2;37512:3;37508:12;37501:19;;37160:366;;;:::o;37532:419::-;37698:4;37736:2;37725:9;37721:18;37713:26;;37785:9;37779:4;37775:20;37771:1;37760:9;37756:17;37749:47;37813:131;37939:4;37813:131;:::i;:::-;37805:139;;37532:419;;;:::o;37957:178::-;38097:30;38093:1;38085:6;38081:14;38074:54;37957:178;:::o;38141:366::-;38283:3;38304:67;38368:2;38363:3;38304:67;:::i;:::-;38297:74;;38380:93;38469:3;38380:93;:::i;:::-;38498:2;38493:3;38489:12;38482:19;;38141:366;;;:::o;38513:419::-;38679:4;38717:2;38706:9;38702:18;38694:26;;38766:9;38760:4;38756:20;38752:1;38741:9;38737:17;38730:47;38794:131;38920:4;38794:131;:::i;:::-;38786:139;;38513:419;;;:::o;38938:182::-;39078:34;39074:1;39066:6;39062:14;39055:58;38938:182;:::o;39126:366::-;39268:3;39289:67;39353:2;39348:3;39289:67;:::i;:::-;39282:74;;39365:93;39454:3;39365:93;:::i;:::-;39483:2;39478:3;39474:12;39467:19;;39126:366;;;:::o;39498:419::-;39664:4;39702:2;39691:9;39687:18;39679:26;;39751:9;39745:4;39741:20;39737:1;39726:9;39722:17;39715:47;39779:131;39905:4;39779:131;:::i;:::-;39771:139;;39498:419;;;:::o;39923:181::-;40063:33;40059:1;40051:6;40047:14;40040:57;39923:181;:::o;40110:366::-;40252:3;40273:67;40337:2;40332:3;40273:67;:::i;:::-;40266:74;;40349:93;40438:3;40349:93;:::i;:::-;40467:2;40462:3;40458:12;40451:19;;40110:366;;;:::o;40482:419::-;40648:4;40686:2;40675:9;40671:18;40663:26;;40735:9;40729:4;40725:20;40721:1;40710:9;40706:17;40699:47;40763:131;40889:4;40763:131;:::i;:::-;40755:139;;40482:419;;;:::o;40907:98::-;40958:6;40992:5;40986:12;40976:22;;40907:98;;;:::o;41011:168::-;41094:11;41128:6;41123:3;41116:19;41168:4;41163:3;41159:14;41144:29;;41011:168;;;;:::o;41185:373::-;41271:3;41299:38;41331:5;41299:38;:::i;:::-;41353:70;41416:6;41411:3;41353:70;:::i;:::-;41346:77;;41432:65;41490:6;41485:3;41478:4;41471:5;41467:16;41432:65;:::i;:::-;41522:29;41544:6;41522:29;:::i;:::-;41517:3;41513:39;41506:46;;41275:283;41185:373;;;;:::o;41564:640::-;41759:4;41797:3;41786:9;41782:19;41774:27;;41811:71;41879:1;41868:9;41864:17;41855:6;41811:71;:::i;:::-;41892:72;41960:2;41949:9;41945:18;41936:6;41892:72;:::i;:::-;41974;42042:2;42031:9;42027:18;42018:6;41974:72;:::i;:::-;42093:9;42087:4;42083:20;42078:2;42067:9;42063:18;42056:48;42121:76;42192:4;42183:6;42121:76;:::i;:::-;42113:84;;41564:640;;;;;;;:::o;42210:141::-;42266:5;42297:6;42291:13;42282:22;;42313:32;42339:5;42313:32;:::i;:::-;42210:141;;;;:::o;42357:349::-;42426:6;42475:2;42463:9;42454:7;42450:23;42446:32;42443:119;;;42481:79;;:::i;:::-;42443:119;42601:1;42626:63;42681:7;42672:6;42661:9;42657:22;42626:63;:::i;:::-;42616:73;;42572:127;42357:349;;;;:::o

Swarm Source

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