ETH Price: $3,089.49 (-6.48%)
Gas: 11 Gwei

Token

XORE-Pioneer (XP)
 

Overview

Max Total Supply

333 XP

Holders

298

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
drstoned.eth
Balance
1 XP
0x733a0b136088e2155d37129b43885eee2fca70a0
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-12-11
*/

// 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 unregister(address addr) 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;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        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(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // 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) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

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


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
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/PioneerFinal.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 = 333;
  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[] calldata destination) public onlyOwner {
    require(totalSupply() + _mintAmount <= maxSupply, "max NFT limit exceeded");
    for(uint256 i = 0; i < destination.length; i++) {
      _mint(destination[i], _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":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"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"}]

60806040526000600c556000600d5561014d600e5561014d600f5560016010556001601155600160125560016013556000601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff0219169083151502179055506001601460026101000a81548160ff0219169083151502179055506000601460036101000a81548160ff02191690831515021790555073def889a07c5608f2eeaabb13bb6da45cf21ef2a5601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000fc57600080fd5b506040516200552738038062005527833981810160405281019062000122919062000799565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600c81526020017f584f52452d50696f6e65657200000000000000000000000000000000000000008152506040518060400160405280600281526020017f58500000000000000000000000000000000000000000000000000000000000008152508160029081620001b6919062000a69565b508060039081620001c8919062000a69565b50620001d96200042a60201b60201c565b600081905550505062000201620001f56200043360201b60201c565b6200043b60201b60201c565b600160098190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003fe578015620002c4576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200028a92919062000b95565b600060405180830381600087803b158015620002a557600080fd5b505af1158015620002ba573d6000803e3d6000fd5b50505050620003fd565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200037e576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200034492919062000b95565b600060405180830381600087803b1580156200035f57600080fd5b505af115801562000374573d6000803e3d6000fd5b50505050620003fc565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003c7919062000bc2565b600060405180830381600087803b158015620003e257600080fd5b505af1158015620003f7573d6000803e3d6000fd5b505050505b5b5b505062000411826200050160201b60201c565b62000422816200052660201b60201c565b505062000c62565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005116200054b60201b60201c565b80600a908162000522919062000a69565b5050565b620005366200054b60201b60201c565b80600b908162000547919062000a69565b5050565b6200055b6200043360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000581620005dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d19062000c40565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200066f8262000624565b810181811067ffffffffffffffff8211171562000691576200069062000635565b5b80604052505050565b6000620006a662000606565b9050620006b4828262000664565b919050565b600067ffffffffffffffff821115620006d757620006d662000635565b5b620006e28262000624565b9050602081019050919050565b60005b838110156200070f578082015181840152602081019050620006f2565b60008484015250505050565b6000620007326200072c84620006b9565b6200069a565b9050828152602081018484840111156200075157620007506200061f565b5b6200075e848285620006ef565b509392505050565b600082601f8301126200077e576200077d6200061a565b5b8151620007908482602086016200071b565b91505092915050565b60008060408385031215620007b357620007b262000610565b5b600083015167ffffffffffffffff811115620007d457620007d362000615565b5b620007e28582860162000766565b925050602083015167ffffffffffffffff81111562000806576200080562000615565b5b620008148582860162000766565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200087157607f821691505b60208210810362000887576200088662000829565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008f17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008b2565b620008fd8683620008b2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200094a620009446200093e8462000915565b6200091f565b62000915565b9050919050565b6000819050919050565b620009668362000929565b6200097e620009758262000951565b848454620008bf565b825550505050565b600090565b6200099562000986565b620009a28184846200095b565b505050565b5b81811015620009ca57620009be6000826200098b565b600181019050620009a8565b5050565b601f82111562000a1957620009e3816200088d565b620009ee84620008a2565b81016020851015620009fe578190505b62000a1662000a0d85620008a2565b830182620009a7565b50505b505050565b600082821c905092915050565b600062000a3e6000198460080262000a1e565b1980831691505092915050565b600062000a59838362000a2b565b9150826002028217905092915050565b62000a74826200081e565b67ffffffffffffffff81111562000a905762000a8f62000635565b5b62000a9c825462000858565b62000aa9828285620009ce565b600060209050601f83116001811462000ae1576000841562000acc578287015190505b62000ad8858262000a4b565b86555062000b48565b601f19841662000af1866200088d565b60005b8281101562000b1b5784890151825560018201915060208501945060208101905062000af4565b8683101562000b3b578489015162000b37601f89168262000a2b565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b7d8262000b50565b9050919050565b62000b8f8162000b70565b82525050565b600060408201905062000bac600083018562000b84565b62000bbb602083018462000b84565b9392505050565b600060208201905062000bd9600083018462000b84565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c2860208362000bdf565b915062000c358262000bf0565b602082019050919050565b6000602082019050818103600083015262000c5b8162000c19565b9050919050565b6148b58062000c726000396000f3fe6080604052600436106103755760003560e01c806370a08231116101d1578063c6f6f21611610102578063edec5f27116100a0578063f3257cdd1161006f578063f3257cdd14610c87578063fea0e05814610cb0578063ff2e666c14610cd9578063ff64569114610cf557610375565b8063edec5f2714610be3578063f12f6d5d14610c0c578063f2c4ce1e14610c35578063f2fde38b14610c5e57610375565b8063d8ed370c116100dc578063d8ed370c14610b15578063dc33e68114610b40578063e268e4d314610b7d578063e985e9c514610ba657610375565b8063c6f6f21614610a84578063c87b56dd14610aad578063d5abeb0114610aea57610375565b8063a0712d681161016f578063bd7a199811610149578063bd7a1998146109dc578063bde0608a14610a07578063bdf7a8e614610a30578063c2a2747b14610a5957610375565b8063a0712d681461097b578063a22cb46514610997578063b88d4fde146109c057610375565b80638da5cb5b116101ab5780638da5cb5b146108bf578063940cd05b146108ea57806395d89b41146109135780639f404eef1461093e57610375565b806370a082311461082e578063715018a61461086b5780638462151c1461088257610375565b806335f90f43116102ab57806351830227116102495780635c975abb116102235780635c975abb146107705780636352211e1461079b5780636c0360eb146107d85780636c2d3c4f1461080357610375565b806351830227146106f157806355f804b31461071c5780635a7adf7f1461074557610375565b806341f434341161028557806341f434341461065857806342842e0e1461068357806344a0d68a1461069f578063458c4f9e146106c857610375565b806335f90f43146105d45780633af32abf146106115780633ccfd60b1461064e57610375565b80630bddb6131161031857806318160ddd116102f257806318160ddd1461053957806323b872dd1461056457806333bc1c5c1461058057806334aa3dfa146105ab57610375565b80630bddb613146104ba57806313faede6146104e5578063149835a01461051057610375565b806306fdde031161035457806306fdde031461040b578063081812fc14610436578063081c8c4414610473578063095ea7b31461049e57610375565b806277ec051461037a57806301ffc9a7146103a557806302329a29146103e2575b600080fd5b34801561038657600080fd5b5061038f610d20565b60405161039c91906131ac565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190613233565b610d26565b6040516103d9919061327b565b60405180910390f35b3480156103ee57600080fd5b50610409600480360381019061040491906132c2565b610db8565b005b34801561041757600080fd5b50610420610ddd565b60405161042d919061337f565b60405180910390f35b34801561044257600080fd5b5061045d600480360381019061045891906133cd565b610e6f565b60405161046a919061343b565b60405180910390f35b34801561047f57600080fd5b50610488610eee565b604051610495919061337f565b60405180910390f35b6104b860048036038101906104b39190613482565b610f7c565b005b3480156104c657600080fd5b506104cf6110c0565b6040516104dc91906131ac565b60405180910390f35b3480156104f157600080fd5b506104fa6110c6565b60405161050791906131ac565b60405180910390f35b34801561051c57600080fd5b50610537600480360381019061053291906133cd565b6110cc565b005b34801561054557600080fd5b5061054e6110de565b60405161055b91906131ac565b60405180910390f35b61057e600480360381019061057991906134c2565b6110f5565b005b34801561058c57600080fd5b50610595611144565b6040516105a2919061327b565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd91906133cd565b611157565b005b3480156105e057600080fd5b506105fb60048036038101906105f69190613515565b611169565b60405161060891906131ac565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190613515565b611181565b604051610645919061327b565b60405180910390f35b6106566111d7565b005b34801561066457600080fd5b5061066d611277565b60405161067a91906135a1565b60405180910390f35b61069d600480360381019061069891906134c2565b611289565b005b3480156106ab57600080fd5b506106c660048036038101906106c191906133cd565b6112d8565b005b3480156106d457600080fd5b506106ef60048036038101906106ea91906133cd565b6112ea565b005b3480156106fd57600080fd5b506107066112fc565b604051610713919061327b565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e91906136f1565b61130f565b005b34801561075157600080fd5b5061075a61132a565b604051610767919061327b565b60405180910390f35b34801561077c57600080fd5b5061078561133d565b604051610792919061327b565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd91906133cd565b611350565b6040516107cf919061343b565b60405180910390f35b3480156107e457600080fd5b506107ed611362565b6040516107fa919061337f565b60405180910390f35b34801561080f57600080fd5b506108186113f0565b60405161082591906131ac565b60405180910390f35b34801561083a57600080fd5b5061085560048036038101906108509190613515565b6113f6565b60405161086291906131ac565b60405180910390f35b34801561087757600080fd5b506108806114ae565b005b34801561088e57600080fd5b506108a960048036038101906108a49190613515565b6114c2565b6040516108b691906137f8565b60405180910390f35b3480156108cb57600080fd5b506108d4611605565b6040516108e1919061343b565b60405180910390f35b3480156108f657600080fd5b50610911600480360381019061090c91906132c2565b61162f565b005b34801561091f57600080fd5b50610928611654565b604051610935919061337f565b60405180910390f35b34801561094a57600080fd5b5061096560048036038101906109609190613515565b6116e6565b60405161097291906131ac565b60405180910390f35b610995600480360381019061099091906133cd565b6116fe565b005b3480156109a357600080fd5b506109be60048036038101906109b9919061381a565b6119a0565b005b6109da60048036038101906109d591906138fb565b611aab565b005b3480156109e857600080fd5b506109f1611afc565b6040516109fe91906131ac565b60405180910390f35b348015610a1357600080fd5b50610a2e6004803603810190610a2991906133cd565b611b02565b005b348015610a3c57600080fd5b50610a576004803603810190610a5291906139de565b611b14565b005b348015610a6557600080fd5b50610a6e611bcb565b604051610a7b919061343b565b60405180910390f35b348015610a9057600080fd5b50610aab6004803603810190610aa691906133cd565b611bf1565b005b348015610ab957600080fd5b50610ad46004803603810190610acf91906133cd565b611c03565b604051610ae1919061337f565b60405180910390f35b348015610af657600080fd5b50610aff611d58565b604051610b0c91906131ac565b60405180910390f35b348015610b2157600080fd5b50610b2a611d5e565b604051610b3791906131ac565b60405180910390f35b348015610b4c57600080fd5b50610b676004803603810190610b629190613515565b611d64565b604051610b7491906131ac565b60405180910390f35b348015610b8957600080fd5b50610ba46004803603810190610b9f91906133cd565b611d76565b005b348015610bb257600080fd5b50610bcd6004803603810190610bc89190613a3e565b611d88565b604051610bda919061327b565b60405180910390f35b348015610bef57600080fd5b50610c0a6004803603810190610c059190613b41565b611e1c565b005b348015610c1857600080fd5b50610c336004803603810190610c2e91906133cd565b611eb9565b005b348015610c4157600080fd5b50610c5c6004803603810190610c5791906136f1565b611ecb565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190613515565b611ee6565b005b348015610c9357600080fd5b50610cae6004803603810190610ca991906132c2565b611f69565b005b348015610cbc57600080fd5b50610cd76004803603810190610cd291906132c2565b611f8e565b005b610cf36004803603810190610cee91906133cd565b611fb3565b005b348015610d0157600080fd5b50610d0a6122e8565b604051610d1791906131ac565b60405180910390f35b60115481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d8157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610db15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610dc06122ee565b80601460006101000a81548160ff02191690831515021790555050565b606060028054610dec90613bb9565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1890613bb9565b8015610e655780601f10610e3a57610100808354040283529160200191610e65565b820191906000526020600020905b815481529060010190602001808311610e4857829003601f168201915b5050505050905090565b6000610e7a8261236c565b610eb0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610efb90613bb9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2790613bb9565b8015610f745780601f10610f4957610100808354040283529160200191610f74565b820191906000526020600020905b815481529060010190602001808311610f5757829003601f168201915b505050505081565b6000610f8782611350565b90508073ffffffffffffffffffffffffffffffffffffffff16610fa86123cb565b73ffffffffffffffffffffffffffffffffffffffff161461100b57610fd481610fcf6123cb565b611d88565b61100a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b600c5481565b6110d46122ee565b80600e8190555050565b60006110e86123d3565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461113357611132336123dc565b5b61113e8484846124d9565b50505050565b601460039054906101000a900460ff1681565b61115f6122ee565b8060138190555050565b60166020528060005260406000206000915090505481565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6111df6122ee565b6111e76127fb565b6000606480476111f79190613c19565b6112019190613c8a565b9050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561126b573d6000803e3d6000fd5b505061127561284a565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112c7576112c6336123dc565b5b6112d2848484612854565b50505050565b6112e06122ee565b80600c8190555050565b6112f26122ee565b80600f8190555050565b601460019054906101000a900460ff1681565b6113176122ee565b80600a90816113269190613e5d565b5050565b601460029054906101000a900460ff1681565b601460009054906101000a900460ff1681565b600061135b82612874565b9050919050565b600a805461136f90613bb9565b80601f016020809104026020016040519081016040528092919081815260200182805461139b90613bb9565b80156113e85780601f106113bd576101008083540402835291602001916113e8565b820191906000526020600020905b8154815290600101906020018083116113cb57829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361145d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114b66122ee565b6114c06000612940565b565b606060008060006114d2856113f6565b905060008167ffffffffffffffff8111156114f0576114ef6135c6565b5b60405190808252806020026020018201604052801561151e5781602001602082028036833780820191505090505b509050611529613144565b60006115336123d3565b90505b8386146115f75761154681612a06565b915081604001516115ec57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461159157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036115eb57808387806001019850815181106115de576115dd613f2f565b5b6020026020010181815250505b5b806001019050611536565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116376122ee565b80601460016101000a81548160ff02191690831515021790555050565b60606003805461166390613bb9565b80601f016020809104026020016040519081016040528092919081815260200182805461168f90613bb9565b80156116dc5780601f106116b1576101008083540402835291602001916116dc565b820191906000526020600020905b8154815290600101906020018083116116bf57829003601f168201915b5050505050905090565b60156020528060005260406000206000915090505481565b6117066127fb565b601460009054906101000a900460ff1615611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90613faa565b60405180910390fd5b601460039054906101000a900460ff166117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c90614016565b60405180910390fd5b6012548111156117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190614082565b60405180910390fd5b600e54816117f66110de565b61180091906140a2565b1115611841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183890614122565b60405180910390fd5b60105481601560006118516123cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461189691906140a2565b11156118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce9061418e565b60405180910390fd5b80600c546118e59190613c19565b341015611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e906141fa565b60405180910390fd5b80601560006119346123cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461197d91906140a2565b9250508190555061199561198f6123cb565b82612a31565b61199d61284a565b50565b80600760006119ad6123cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5a6123cb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a9f919061327b565b60405180910390a35050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ae957611ae8336123dc565b5b611af585858585612a4f565b5050505050565b60105481565b611b0a6122ee565b8060118190555050565b611b1c6122ee565b600e5483611b286110de565b611b3291906140a2565b1115611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a90614266565b60405180910390fd5b60005b82829050811015611bc557611bb2838383818110611b9757611b96613f2f565b5b9050602002016020810190611bac9190613515565b85612ac2565b8080611bbd90614286565b915050611b76565b50505050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611bf96122ee565b8060128190555050565b6060611c0e8261236c565b611c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4490614340565b60405180910390fd5b60001515601460019054906101000a900460ff16151503611cfa57600b8054611c7590613bb9565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca190613bb9565b8015611cee5780601f10611cc357610100808354040283529160200191611cee565b820191906000526020600020905b815481529060010190602001808311611cd157829003601f168201915b50505050509050611d53565b6000611d04612c7d565b90506000815111611d245760405180602001604052806000815250611d4f565b80611d2e84612d0f565b604051602001611d3f9291906143e8565b6040516020818303038152906040525b9150505b919050565b600e5481565b60135481565b6000611d6f82612d5f565b9050919050565b611d7e6122ee565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e246122ee565b60005b8151811015611eb557600160176000848481518110611e4957611e48613f2f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611ead90614286565b915050611e27565b5050565b611ec16122ee565b80600d8190555050565b611ed36122ee565b80600b9081611ee29190613e5d565b5050565b611eee6122ee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5490614489565b60405180910390fd5b611f6681612940565b50565b611f716122ee565b80601460036101000a81548160ff02191690831515021790555050565b611f966122ee565b80601460026101000a81548160ff02191690831515021790555050565b611fbb6127fb565b601460009054906101000a900460ff161561200b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200290613faa565b60405180910390fd5b601460029054906101000a900460ff1661205a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612051906144f5565b60405180910390fd5b601760006120666123cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166120ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e490614561565b60405180910390fd5b60115481601660006120fd6123cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461214291906140a2565b1115612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217a9061418e565b60405180910390fd5b6013548111156121c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bf906145cd565b60405180910390fd5b600f54816121d46110de565b6121de91906140a2565b111561221f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221690614639565b60405180910390fd5b80600d5461222d9190613c19565b34101561226f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612266906141fa565b60405180910390fd5b806016600061227c6123cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122c591906140a2565b925050819055506122dd6122d76123cb565b82612a31565b6122e561284a565b50565b60125481565b6122f6612db6565b73ffffffffffffffffffffffffffffffffffffffff16612314611605565b73ffffffffffffffffffffffffffffffffffffffff161461236a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612361906146a5565b60405180910390fd5b565b6000816123776123d3565b11158015612386575060005482105b80156123c4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156124d6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016124539291906146c5565b602060405180830381865afa158015612470573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124949190614703565b6124d557806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016124cc919061343b565b60405180910390fd5b5b50565b60006124e482612874565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461254b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061255784612dbe565b9150915061256d81876125686123cb565b612de5565b6125b9576125828661257d6123cb565b611d88565b6125b8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361261f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61262c8686866001612e29565b801561263757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612705856126e1888887612e2f565b7c020000000000000000000000000000000000000000000000000000000017612e57565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361278b5760006001850190506000600460008381526020019081526020016000205403612789576000548114612788578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127f38686866001612e82565b505050505050565b600260095403612840576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128379061477c565b60405180910390fd5b6002600981905550565b6001600981905550565b61286f83838360405180602001604052806000815250611aab565b505050565b600080829050806128836123d3565b11612909576000548110156129085760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612906575b600081036128fc5760046000836001900393508381526020019081526020016000205490506128d2565b809250505061293b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a0e613144565b612a2a6004600084815260200190815260200160002054612e88565b9050919050565b612a4b828260405180602001604052806000815250612f3e565b5050565b612a5a8484846110f5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612abc57612a8584848484612fdb565b612abb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60008054905060008203612b02576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b0f6000848385612e29565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612b8683612b776000866000612e2f565b612b808561312b565b17612e57565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612c2757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612bec565b5060008203612c62576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612c786000848385612e82565b505050565b6060600a8054612c8c90613bb9565b80601f0160208091040260200160405190810160405280929190818152602001828054612cb890613bb9565b8015612d055780601f10612cda57610100808354040283529160200191612d05565b820191906000526020600020905b815481529060010190602001808311612ce857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612d4a57600184039350600a81066030018453600a8104905080612d28575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612e4686868461313b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612e90613144565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b612f488383612ac2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612fd657600080549050600083820390505b612f886000868380600101945086612fdb565b612fbe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612f75578160005414612fd357600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130016123cb565b8786866040518563ffffffff1660e01b815260040161302394939291906147f1565b6020604051808303816000875af192505050801561305f57506040513d601f19601f8201168201806040525081019061305c9190614852565b60015b6130d8573d806000811461308f576040519150601f19603f3d011682016040523d82523d6000602084013e613094565b606091505b5060008151036130d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60006001821460e11b9050919050565b60009392505050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000819050919050565b6131a681613193565b82525050565b60006020820190506131c1600083018461319d565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613210816131db565b811461321b57600080fd5b50565b60008135905061322d81613207565b92915050565b600060208284031215613249576132486131d1565b5b60006132578482850161321e565b91505092915050565b60008115159050919050565b61327581613260565b82525050565b6000602082019050613290600083018461326c565b92915050565b61329f81613260565b81146132aa57600080fd5b50565b6000813590506132bc81613296565b92915050565b6000602082840312156132d8576132d76131d1565b5b60006132e6848285016132ad565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561332957808201518184015260208101905061330e565b60008484015250505050565b6000601f19601f8301169050919050565b6000613351826132ef565b61335b81856132fa565b935061336b81856020860161330b565b61337481613335565b840191505092915050565b600060208201905081810360008301526133998184613346565b905092915050565b6133aa81613193565b81146133b557600080fd5b50565b6000813590506133c7816133a1565b92915050565b6000602082840312156133e3576133e26131d1565b5b60006133f1848285016133b8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613425826133fa565b9050919050565b6134358161341a565b82525050565b6000602082019050613450600083018461342c565b92915050565b61345f8161341a565b811461346a57600080fd5b50565b60008135905061347c81613456565b92915050565b60008060408385031215613499576134986131d1565b5b60006134a78582860161346d565b92505060206134b8858286016133b8565b9150509250929050565b6000806000606084860312156134db576134da6131d1565b5b60006134e98682870161346d565b93505060206134fa8682870161346d565b925050604061350b868287016133b8565b9150509250925092565b60006020828403121561352b5761352a6131d1565b5b60006135398482850161346d565b91505092915050565b6000819050919050565b600061356761356261355d846133fa565b613542565b6133fa565b9050919050565b60006135798261354c565b9050919050565b600061358b8261356e565b9050919050565b61359b81613580565b82525050565b60006020820190506135b66000830184613592565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135fe82613335565b810181811067ffffffffffffffff8211171561361d5761361c6135c6565b5b80604052505050565b60006136306131c7565b905061363c82826135f5565b919050565b600067ffffffffffffffff82111561365c5761365b6135c6565b5b61366582613335565b9050602081019050919050565b82818337600083830152505050565b600061369461368f84613641565b613626565b9050828152602081018484840111156136b0576136af6135c1565b5b6136bb848285613672565b509392505050565b600082601f8301126136d8576136d76135bc565b5b81356136e8848260208601613681565b91505092915050565b600060208284031215613707576137066131d1565b5b600082013567ffffffffffffffff811115613725576137246131d6565b5b613731848285016136c3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61376f81613193565b82525050565b60006137818383613766565b60208301905092915050565b6000602082019050919050565b60006137a58261373a565b6137af8185613745565b93506137ba83613756565b8060005b838110156137eb5781516137d28882613775565b97506137dd8361378d565b9250506001810190506137be565b5085935050505092915050565b60006020820190508181036000830152613812818461379a565b905092915050565b60008060408385031215613831576138306131d1565b5b600061383f8582860161346d565b9250506020613850858286016132ad565b9150509250929050565b600067ffffffffffffffff821115613875576138746135c6565b5b61387e82613335565b9050602081019050919050565b600061389e6138998461385a565b613626565b9050828152602081018484840111156138ba576138b96135c1565b5b6138c5848285613672565b509392505050565b600082601f8301126138e2576138e16135bc565b5b81356138f284826020860161388b565b91505092915050565b60008060008060808587031215613915576139146131d1565b5b60006139238782880161346d565b94505060206139348782880161346d565b9350506040613945878288016133b8565b925050606085013567ffffffffffffffff811115613966576139656131d6565b5b613972878288016138cd565b91505092959194509250565b600080fd5b600080fd5b60008083601f84011261399e5761399d6135bc565b5b8235905067ffffffffffffffff8111156139bb576139ba61397e565b5b6020830191508360208202830111156139d7576139d6613983565b5b9250929050565b6000806000604084860312156139f7576139f66131d1565b5b6000613a05868287016133b8565b935050602084013567ffffffffffffffff811115613a2657613a256131d6565b5b613a3286828701613988565b92509250509250925092565b60008060408385031215613a5557613a546131d1565b5b6000613a638582860161346d565b9250506020613a748582860161346d565b9150509250929050565b600067ffffffffffffffff821115613a9957613a986135c6565b5b602082029050602081019050919050565b6000613abd613ab884613a7e565b613626565b90508083825260208201905060208402830185811115613ae057613adf613983565b5b835b81811015613b095780613af5888261346d565b845260208401935050602081019050613ae2565b5050509392505050565b600082601f830112613b2857613b276135bc565b5b8135613b38848260208601613aaa565b91505092915050565b600060208284031215613b5757613b566131d1565b5b600082013567ffffffffffffffff811115613b7557613b746131d6565b5b613b8184828501613b13565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613bd157607f821691505b602082108103613be457613be3613b8a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c2482613193565b9150613c2f83613193565b9250828202613c3d81613193565b91508282048414831517613c5457613c53613bea565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c9582613193565b9150613ca083613193565b925082613cb057613caf613c5b565b5b828204905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613d1d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613ce0565b613d278683613ce0565b95508019841693508086168417925050509392505050565b6000613d5a613d55613d5084613193565b613542565b613193565b9050919050565b6000819050919050565b613d7483613d3f565b613d88613d8082613d61565b848454613ced565b825550505050565b600090565b613d9d613d90565b613da8818484613d6b565b505050565b5b81811015613dcc57613dc1600082613d95565b600181019050613dae565b5050565b601f821115613e1157613de281613cbb565b613deb84613cd0565b81016020851015613dfa578190505b613e0e613e0685613cd0565b830182613dad565b50505b505050565b600082821c905092915050565b6000613e3460001984600802613e16565b1980831691505092915050565b6000613e4d8383613e23565b9150826002028217905092915050565b613e66826132ef565b67ffffffffffffffff811115613e7f57613e7e6135c6565b5b613e898254613bb9565b613e94828285613dd0565b600060209050601f831160018114613ec75760008415613eb5578287015190505b613ebf8582613e41565b865550613f27565b601f198416613ed586613cbb565b60005b82811015613efd57848901518255600182019150602085019450602081019050613ed8565b86831015613f1a5784890151613f16601f891682613e23565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b6000613f946017836132fa565b9150613f9f82613f5e565b602082019050919050565b60006020820190508181036000830152613fc381613f87565b9050919050565b7f53616c65206861736e2774207374617274656420796574000000000000000000600082015250565b60006140006017836132fa565b915061400b82613fca565b602082019050919050565b6000602082019050818103600083015261402f81613ff3565b9050919050565b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b600061406c601f836132fa565b915061407782614036565b602082019050919050565b6000602082019050818103600083015261409b8161405f565b9050919050565b60006140ad82613193565b91506140b883613193565b92508282019050808211156140d0576140cf613bea565b5b92915050565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b600061410c600a836132fa565b9150614117826140d6565b602082019050919050565b6000602082019050818103600083015261413b816140ff565b9050919050565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b6000614178601b836132fa565b915061418382614142565b602082019050919050565b600060208201905081810360008301526141a78161416b565b9050919050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006141e46012836132fa565b91506141ef826141ae565b602082019050919050565b60006020820190508181036000830152614213816141d7565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b60006142506016836132fa565b915061425b8261421a565b602082019050919050565b6000602082019050818103600083015261427f81614243565b9050919050565b600061429182613193565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036142c3576142c2613bea565b5b600182019050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b600061432a6030836132fa565b9150614335826142ce565b604082019050919050565b600060208201905081810360008301526143598161431d565b9050919050565b600081905092915050565b6000614376826132ef565b6143808185614360565b935061439081856020860161330b565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006143d2600583614360565b91506143dd8261439c565b600582019050919050565b60006143f4828561436b565b9150614400828461436b565b915061440b826143c5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144736026836132fa565b915061447e82614417565b604082019050919050565b600060208201905081810360008301526144a281614466565b9050919050565b7f50726573616c65206861736e2774207374617274656420796574000000000000600082015250565b60006144df601a836132fa565b91506144ea826144a9565b602082019050919050565b6000602082019050818103600083015261450e816144d2565b9050919050565b7f596f7520617265204e6f742057686974656c6973746564000000000000000000600082015250565b600061454b6017836132fa565b915061455682614515565b602082019050919050565b6000602082019050818103600083015261457a8161453e565b9050919050565b7f6d6178206d696e74207065722054782065786365656465640000000000000000600082015250565b60006145b76018836132fa565b91506145c282614581565b602082019050919050565b600060208201905081810360008301526145e6816145aa565b9050919050565b7f57686974656c697374204d6178537570706c7920657863656564656400000000600082015250565b6000614623601c836132fa565b915061462e826145ed565b602082019050919050565b6000602082019050818103600083015261465281614616565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061468f6020836132fa565b915061469a82614659565b602082019050919050565b600060208201905081810360008301526146be81614682565b9050919050565b60006040820190506146da600083018561342c565b6146e7602083018461342c565b9392505050565b6000815190506146fd81613296565b92915050565b600060208284031215614719576147186131d1565b5b6000614727848285016146ee565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614766601f836132fa565b915061477182614730565b602082019050919050565b6000602082019050818103600083015261479581614759565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006147c38261479c565b6147cd81856147a7565b93506147dd81856020860161330b565b6147e681613335565b840191505092915050565b6000608082019050614806600083018761342c565b614813602083018661342c565b614820604083018561319d565b818103606083015261483281846147b8565b905095945050505050565b60008151905061484c81613207565b92915050565b600060208284031215614868576148676131d1565b5b60006148768482850161483d565b9150509291505056fea264697066735822122064073df293bd0171d603087888c111f7f5a7676024d171af4816f6b2f4d1c4bf64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6362566e637a724c763444466972327541456f546262395156524c35357a31517962685371736863746670642f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d6362566e637a724c763444466972327541456f546262395156524c35357a31517962685371736863746670642f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103755760003560e01c806370a08231116101d1578063c6f6f21611610102578063edec5f27116100a0578063f3257cdd1161006f578063f3257cdd14610c87578063fea0e05814610cb0578063ff2e666c14610cd9578063ff64569114610cf557610375565b8063edec5f2714610be3578063f12f6d5d14610c0c578063f2c4ce1e14610c35578063f2fde38b14610c5e57610375565b8063d8ed370c116100dc578063d8ed370c14610b15578063dc33e68114610b40578063e268e4d314610b7d578063e985e9c514610ba657610375565b8063c6f6f21614610a84578063c87b56dd14610aad578063d5abeb0114610aea57610375565b8063a0712d681161016f578063bd7a199811610149578063bd7a1998146109dc578063bde0608a14610a07578063bdf7a8e614610a30578063c2a2747b14610a5957610375565b8063a0712d681461097b578063a22cb46514610997578063b88d4fde146109c057610375565b80638da5cb5b116101ab5780638da5cb5b146108bf578063940cd05b146108ea57806395d89b41146109135780639f404eef1461093e57610375565b806370a082311461082e578063715018a61461086b5780638462151c1461088257610375565b806335f90f43116102ab57806351830227116102495780635c975abb116102235780635c975abb146107705780636352211e1461079b5780636c0360eb146107d85780636c2d3c4f1461080357610375565b806351830227146106f157806355f804b31461071c5780635a7adf7f1461074557610375565b806341f434341161028557806341f434341461065857806342842e0e1461068357806344a0d68a1461069f578063458c4f9e146106c857610375565b806335f90f43146105d45780633af32abf146106115780633ccfd60b1461064e57610375565b80630bddb6131161031857806318160ddd116102f257806318160ddd1461053957806323b872dd1461056457806333bc1c5c1461058057806334aa3dfa146105ab57610375565b80630bddb613146104ba57806313faede6146104e5578063149835a01461051057610375565b806306fdde031161035457806306fdde031461040b578063081812fc14610436578063081c8c4414610473578063095ea7b31461049e57610375565b806277ec051461037a57806301ffc9a7146103a557806302329a29146103e2575b600080fd5b34801561038657600080fd5b5061038f610d20565b60405161039c91906131ac565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190613233565b610d26565b6040516103d9919061327b565b60405180910390f35b3480156103ee57600080fd5b50610409600480360381019061040491906132c2565b610db8565b005b34801561041757600080fd5b50610420610ddd565b60405161042d919061337f565b60405180910390f35b34801561044257600080fd5b5061045d600480360381019061045891906133cd565b610e6f565b60405161046a919061343b565b60405180910390f35b34801561047f57600080fd5b50610488610eee565b604051610495919061337f565b60405180910390f35b6104b860048036038101906104b39190613482565b610f7c565b005b3480156104c657600080fd5b506104cf6110c0565b6040516104dc91906131ac565b60405180910390f35b3480156104f157600080fd5b506104fa6110c6565b60405161050791906131ac565b60405180910390f35b34801561051c57600080fd5b50610537600480360381019061053291906133cd565b6110cc565b005b34801561054557600080fd5b5061054e6110de565b60405161055b91906131ac565b60405180910390f35b61057e600480360381019061057991906134c2565b6110f5565b005b34801561058c57600080fd5b50610595611144565b6040516105a2919061327b565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd91906133cd565b611157565b005b3480156105e057600080fd5b506105fb60048036038101906105f69190613515565b611169565b60405161060891906131ac565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190613515565b611181565b604051610645919061327b565b60405180910390f35b6106566111d7565b005b34801561066457600080fd5b5061066d611277565b60405161067a91906135a1565b60405180910390f35b61069d600480360381019061069891906134c2565b611289565b005b3480156106ab57600080fd5b506106c660048036038101906106c191906133cd565b6112d8565b005b3480156106d457600080fd5b506106ef60048036038101906106ea91906133cd565b6112ea565b005b3480156106fd57600080fd5b506107066112fc565b604051610713919061327b565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e91906136f1565b61130f565b005b34801561075157600080fd5b5061075a61132a565b604051610767919061327b565b60405180910390f35b34801561077c57600080fd5b5061078561133d565b604051610792919061327b565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd91906133cd565b611350565b6040516107cf919061343b565b60405180910390f35b3480156107e457600080fd5b506107ed611362565b6040516107fa919061337f565b60405180910390f35b34801561080f57600080fd5b506108186113f0565b60405161082591906131ac565b60405180910390f35b34801561083a57600080fd5b5061085560048036038101906108509190613515565b6113f6565b60405161086291906131ac565b60405180910390f35b34801561087757600080fd5b506108806114ae565b005b34801561088e57600080fd5b506108a960048036038101906108a49190613515565b6114c2565b6040516108b691906137f8565b60405180910390f35b3480156108cb57600080fd5b506108d4611605565b6040516108e1919061343b565b60405180910390f35b3480156108f657600080fd5b50610911600480360381019061090c91906132c2565b61162f565b005b34801561091f57600080fd5b50610928611654565b604051610935919061337f565b60405180910390f35b34801561094a57600080fd5b5061096560048036038101906109609190613515565b6116e6565b60405161097291906131ac565b60405180910390f35b610995600480360381019061099091906133cd565b6116fe565b005b3480156109a357600080fd5b506109be60048036038101906109b9919061381a565b6119a0565b005b6109da60048036038101906109d591906138fb565b611aab565b005b3480156109e857600080fd5b506109f1611afc565b6040516109fe91906131ac565b60405180910390f35b348015610a1357600080fd5b50610a2e6004803603810190610a2991906133cd565b611b02565b005b348015610a3c57600080fd5b50610a576004803603810190610a5291906139de565b611b14565b005b348015610a6557600080fd5b50610a6e611bcb565b604051610a7b919061343b565b60405180910390f35b348015610a9057600080fd5b50610aab6004803603810190610aa691906133cd565b611bf1565b005b348015610ab957600080fd5b50610ad46004803603810190610acf91906133cd565b611c03565b604051610ae1919061337f565b60405180910390f35b348015610af657600080fd5b50610aff611d58565b604051610b0c91906131ac565b60405180910390f35b348015610b2157600080fd5b50610b2a611d5e565b604051610b3791906131ac565b60405180910390f35b348015610b4c57600080fd5b50610b676004803603810190610b629190613515565b611d64565b604051610b7491906131ac565b60405180910390f35b348015610b8957600080fd5b50610ba46004803603810190610b9f91906133cd565b611d76565b005b348015610bb257600080fd5b50610bcd6004803603810190610bc89190613a3e565b611d88565b604051610bda919061327b565b60405180910390f35b348015610bef57600080fd5b50610c0a6004803603810190610c059190613b41565b611e1c565b005b348015610c1857600080fd5b50610c336004803603810190610c2e91906133cd565b611eb9565b005b348015610c4157600080fd5b50610c5c6004803603810190610c5791906136f1565b611ecb565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190613515565b611ee6565b005b348015610c9357600080fd5b50610cae6004803603810190610ca991906132c2565b611f69565b005b348015610cbc57600080fd5b50610cd76004803603810190610cd291906132c2565b611f8e565b005b610cf36004803603810190610cee91906133cd565b611fb3565b005b348015610d0157600080fd5b50610d0a6122e8565b604051610d1791906131ac565b60405180910390f35b60115481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d8157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610db15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610dc06122ee565b80601460006101000a81548160ff02191690831515021790555050565b606060028054610dec90613bb9565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1890613bb9565b8015610e655780601f10610e3a57610100808354040283529160200191610e65565b820191906000526020600020905b815481529060010190602001808311610e4857829003601f168201915b5050505050905090565b6000610e7a8261236c565b610eb0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610efb90613bb9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2790613bb9565b8015610f745780601f10610f4957610100808354040283529160200191610f74565b820191906000526020600020905b815481529060010190602001808311610f5757829003601f168201915b505050505081565b6000610f8782611350565b90508073ffffffffffffffffffffffffffffffffffffffff16610fa86123cb565b73ffffffffffffffffffffffffffffffffffffffff161461100b57610fd481610fcf6123cb565b611d88565b61100a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b600c5481565b6110d46122ee565b80600e8190555050565b60006110e86123d3565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461113357611132336123dc565b5b61113e8484846124d9565b50505050565b601460039054906101000a900460ff1681565b61115f6122ee565b8060138190555050565b60166020528060005260406000206000915090505481565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6111df6122ee565b6111e76127fb565b6000606480476111f79190613c19565b6112019190613c8a565b9050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561126b573d6000803e3d6000fd5b505061127561284a565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112c7576112c6336123dc565b5b6112d2848484612854565b50505050565b6112e06122ee565b80600c8190555050565b6112f26122ee565b80600f8190555050565b601460019054906101000a900460ff1681565b6113176122ee565b80600a90816113269190613e5d565b5050565b601460029054906101000a900460ff1681565b601460009054906101000a900460ff1681565b600061135b82612874565b9050919050565b600a805461136f90613bb9565b80601f016020809104026020016040519081016040528092919081815260200182805461139b90613bb9565b80156113e85780601f106113bd576101008083540402835291602001916113e8565b820191906000526020600020905b8154815290600101906020018083116113cb57829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361145d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114b66122ee565b6114c06000612940565b565b606060008060006114d2856113f6565b905060008167ffffffffffffffff8111156114f0576114ef6135c6565b5b60405190808252806020026020018201604052801561151e5781602001602082028036833780820191505090505b509050611529613144565b60006115336123d3565b90505b8386146115f75761154681612a06565b915081604001516115ec57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461159157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036115eb57808387806001019850815181106115de576115dd613f2f565b5b6020026020010181815250505b5b806001019050611536565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116376122ee565b80601460016101000a81548160ff02191690831515021790555050565b60606003805461166390613bb9565b80601f016020809104026020016040519081016040528092919081815260200182805461168f90613bb9565b80156116dc5780601f106116b1576101008083540402835291602001916116dc565b820191906000526020600020905b8154815290600101906020018083116116bf57829003601f168201915b5050505050905090565b60156020528060005260406000206000915090505481565b6117066127fb565b601460009054906101000a900460ff1615611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90613faa565b60405180910390fd5b601460039054906101000a900460ff166117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c90614016565b60405180910390fd5b6012548111156117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190614082565b60405180910390fd5b600e54816117f66110de565b61180091906140a2565b1115611841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183890614122565b60405180910390fd5b60105481601560006118516123cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461189691906140a2565b11156118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce9061418e565b60405180910390fd5b80600c546118e59190613c19565b341015611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e906141fa565b60405180910390fd5b80601560006119346123cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461197d91906140a2565b9250508190555061199561198f6123cb565b82612a31565b61199d61284a565b50565b80600760006119ad6123cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5a6123cb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a9f919061327b565b60405180910390a35050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ae957611ae8336123dc565b5b611af585858585612a4f565b5050505050565b60105481565b611b0a6122ee565b8060118190555050565b611b1c6122ee565b600e5483611b286110de565b611b3291906140a2565b1115611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a90614266565b60405180910390fd5b60005b82829050811015611bc557611bb2838383818110611b9757611b96613f2f565b5b9050602002016020810190611bac9190613515565b85612ac2565b8080611bbd90614286565b915050611b76565b50505050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611bf96122ee565b8060128190555050565b6060611c0e8261236c565b611c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4490614340565b60405180910390fd5b60001515601460019054906101000a900460ff16151503611cfa57600b8054611c7590613bb9565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca190613bb9565b8015611cee5780601f10611cc357610100808354040283529160200191611cee565b820191906000526020600020905b815481529060010190602001808311611cd157829003601f168201915b50505050509050611d53565b6000611d04612c7d565b90506000815111611d245760405180602001604052806000815250611d4f565b80611d2e84612d0f565b604051602001611d3f9291906143e8565b6040516020818303038152906040525b9150505b919050565b600e5481565b60135481565b6000611d6f82612d5f565b9050919050565b611d7e6122ee565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e246122ee565b60005b8151811015611eb557600160176000848481518110611e4957611e48613f2f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611ead90614286565b915050611e27565b5050565b611ec16122ee565b80600d8190555050565b611ed36122ee565b80600b9081611ee29190613e5d565b5050565b611eee6122ee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5490614489565b60405180910390fd5b611f6681612940565b50565b611f716122ee565b80601460036101000a81548160ff02191690831515021790555050565b611f966122ee565b80601460026101000a81548160ff02191690831515021790555050565b611fbb6127fb565b601460009054906101000a900460ff161561200b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200290613faa565b60405180910390fd5b601460029054906101000a900460ff1661205a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612051906144f5565b60405180910390fd5b601760006120666123cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166120ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e490614561565b60405180910390fd5b60115481601660006120fd6123cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461214291906140a2565b1115612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217a9061418e565b60405180910390fd5b6013548111156121c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bf906145cd565b60405180910390fd5b600f54816121d46110de565b6121de91906140a2565b111561221f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221690614639565b60405180910390fd5b80600d5461222d9190613c19565b34101561226f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612266906141fa565b60405180910390fd5b806016600061227c6123cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122c591906140a2565b925050819055506122dd6122d76123cb565b82612a31565b6122e561284a565b50565b60125481565b6122f6612db6565b73ffffffffffffffffffffffffffffffffffffffff16612314611605565b73ffffffffffffffffffffffffffffffffffffffff161461236a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612361906146a5565b60405180910390fd5b565b6000816123776123d3565b11158015612386575060005482105b80156123c4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156124d6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016124539291906146c5565b602060405180830381865afa158015612470573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124949190614703565b6124d557806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016124cc919061343b565b60405180910390fd5b5b50565b60006124e482612874565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461254b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061255784612dbe565b9150915061256d81876125686123cb565b612de5565b6125b9576125828661257d6123cb565b611d88565b6125b8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361261f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61262c8686866001612e29565b801561263757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612705856126e1888887612e2f565b7c020000000000000000000000000000000000000000000000000000000017612e57565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361278b5760006001850190506000600460008381526020019081526020016000205403612789576000548114612788578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127f38686866001612e82565b505050505050565b600260095403612840576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128379061477c565b60405180910390fd5b6002600981905550565b6001600981905550565b61286f83838360405180602001604052806000815250611aab565b505050565b600080829050806128836123d3565b11612909576000548110156129085760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612906575b600081036128fc5760046000836001900393508381526020019081526020016000205490506128d2565b809250505061293b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a0e613144565b612a2a6004600084815260200190815260200160002054612e88565b9050919050565b612a4b828260405180602001604052806000815250612f3e565b5050565b612a5a8484846110f5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612abc57612a8584848484612fdb565b612abb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60008054905060008203612b02576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b0f6000848385612e29565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612b8683612b776000866000612e2f565b612b808561312b565b17612e57565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612c2757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612bec565b5060008203612c62576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612c786000848385612e82565b505050565b6060600a8054612c8c90613bb9565b80601f0160208091040260200160405190810160405280929190818152602001828054612cb890613bb9565b8015612d055780601f10612cda57610100808354040283529160200191612d05565b820191906000526020600020905b815481529060010190602001808311612ce857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612d4a57600184039350600a81066030018453600a8104905080612d28575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612e4686868461313b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612e90613144565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b612f488383612ac2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612fd657600080549050600083820390505b612f886000868380600101945086612fdb565b612fbe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612f75578160005414612fd357600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130016123cb565b8786866040518563ffffffff1660e01b815260040161302394939291906147f1565b6020604051808303816000875af192505050801561305f57506040513d601f19601f8201168201806040525081019061305c9190614852565b60015b6130d8573d806000811461308f576040519150601f19603f3d011682016040523d82523d6000602084013e613094565b606091505b5060008151036130d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60006001821460e11b9050919050565b60009392505050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000819050919050565b6131a681613193565b82525050565b60006020820190506131c1600083018461319d565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613210816131db565b811461321b57600080fd5b50565b60008135905061322d81613207565b92915050565b600060208284031215613249576132486131d1565b5b60006132578482850161321e565b91505092915050565b60008115159050919050565b61327581613260565b82525050565b6000602082019050613290600083018461326c565b92915050565b61329f81613260565b81146132aa57600080fd5b50565b6000813590506132bc81613296565b92915050565b6000602082840312156132d8576132d76131d1565b5b60006132e6848285016132ad565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561332957808201518184015260208101905061330e565b60008484015250505050565b6000601f19601f8301169050919050565b6000613351826132ef565b61335b81856132fa565b935061336b81856020860161330b565b61337481613335565b840191505092915050565b600060208201905081810360008301526133998184613346565b905092915050565b6133aa81613193565b81146133b557600080fd5b50565b6000813590506133c7816133a1565b92915050565b6000602082840312156133e3576133e26131d1565b5b60006133f1848285016133b8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613425826133fa565b9050919050565b6134358161341a565b82525050565b6000602082019050613450600083018461342c565b92915050565b61345f8161341a565b811461346a57600080fd5b50565b60008135905061347c81613456565b92915050565b60008060408385031215613499576134986131d1565b5b60006134a78582860161346d565b92505060206134b8858286016133b8565b9150509250929050565b6000806000606084860312156134db576134da6131d1565b5b60006134e98682870161346d565b93505060206134fa8682870161346d565b925050604061350b868287016133b8565b9150509250925092565b60006020828403121561352b5761352a6131d1565b5b60006135398482850161346d565b91505092915050565b6000819050919050565b600061356761356261355d846133fa565b613542565b6133fa565b9050919050565b60006135798261354c565b9050919050565b600061358b8261356e565b9050919050565b61359b81613580565b82525050565b60006020820190506135b66000830184613592565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135fe82613335565b810181811067ffffffffffffffff8211171561361d5761361c6135c6565b5b80604052505050565b60006136306131c7565b905061363c82826135f5565b919050565b600067ffffffffffffffff82111561365c5761365b6135c6565b5b61366582613335565b9050602081019050919050565b82818337600083830152505050565b600061369461368f84613641565b613626565b9050828152602081018484840111156136b0576136af6135c1565b5b6136bb848285613672565b509392505050565b600082601f8301126136d8576136d76135bc565b5b81356136e8848260208601613681565b91505092915050565b600060208284031215613707576137066131d1565b5b600082013567ffffffffffffffff811115613725576137246131d6565b5b613731848285016136c3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61376f81613193565b82525050565b60006137818383613766565b60208301905092915050565b6000602082019050919050565b60006137a58261373a565b6137af8185613745565b93506137ba83613756565b8060005b838110156137eb5781516137d28882613775565b97506137dd8361378d565b9250506001810190506137be565b5085935050505092915050565b60006020820190508181036000830152613812818461379a565b905092915050565b60008060408385031215613831576138306131d1565b5b600061383f8582860161346d565b9250506020613850858286016132ad565b9150509250929050565b600067ffffffffffffffff821115613875576138746135c6565b5b61387e82613335565b9050602081019050919050565b600061389e6138998461385a565b613626565b9050828152602081018484840111156138ba576138b96135c1565b5b6138c5848285613672565b509392505050565b600082601f8301126138e2576138e16135bc565b5b81356138f284826020860161388b565b91505092915050565b60008060008060808587031215613915576139146131d1565b5b60006139238782880161346d565b94505060206139348782880161346d565b9350506040613945878288016133b8565b925050606085013567ffffffffffffffff811115613966576139656131d6565b5b613972878288016138cd565b91505092959194509250565b600080fd5b600080fd5b60008083601f84011261399e5761399d6135bc565b5b8235905067ffffffffffffffff8111156139bb576139ba61397e565b5b6020830191508360208202830111156139d7576139d6613983565b5b9250929050565b6000806000604084860312156139f7576139f66131d1565b5b6000613a05868287016133b8565b935050602084013567ffffffffffffffff811115613a2657613a256131d6565b5b613a3286828701613988565b92509250509250925092565b60008060408385031215613a5557613a546131d1565b5b6000613a638582860161346d565b9250506020613a748582860161346d565b9150509250929050565b600067ffffffffffffffff821115613a9957613a986135c6565b5b602082029050602081019050919050565b6000613abd613ab884613a7e565b613626565b90508083825260208201905060208402830185811115613ae057613adf613983565b5b835b81811015613b095780613af5888261346d565b845260208401935050602081019050613ae2565b5050509392505050565b600082601f830112613b2857613b276135bc565b5b8135613b38848260208601613aaa565b91505092915050565b600060208284031215613b5757613b566131d1565b5b600082013567ffffffffffffffff811115613b7557613b746131d6565b5b613b8184828501613b13565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613bd157607f821691505b602082108103613be457613be3613b8a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c2482613193565b9150613c2f83613193565b9250828202613c3d81613193565b91508282048414831517613c5457613c53613bea565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c9582613193565b9150613ca083613193565b925082613cb057613caf613c5b565b5b828204905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613d1d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613ce0565b613d278683613ce0565b95508019841693508086168417925050509392505050565b6000613d5a613d55613d5084613193565b613542565b613193565b9050919050565b6000819050919050565b613d7483613d3f565b613d88613d8082613d61565b848454613ced565b825550505050565b600090565b613d9d613d90565b613da8818484613d6b565b505050565b5b81811015613dcc57613dc1600082613d95565b600181019050613dae565b5050565b601f821115613e1157613de281613cbb565b613deb84613cd0565b81016020851015613dfa578190505b613e0e613e0685613cd0565b830182613dad565b50505b505050565b600082821c905092915050565b6000613e3460001984600802613e16565b1980831691505092915050565b6000613e4d8383613e23565b9150826002028217905092915050565b613e66826132ef565b67ffffffffffffffff811115613e7f57613e7e6135c6565b5b613e898254613bb9565b613e94828285613dd0565b600060209050601f831160018114613ec75760008415613eb5578287015190505b613ebf8582613e41565b865550613f27565b601f198416613ed586613cbb565b60005b82811015613efd57848901518255600182019150602085019450602081019050613ed8565b86831015613f1a5784890151613f16601f891682613e23565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b6000613f946017836132fa565b9150613f9f82613f5e565b602082019050919050565b60006020820190508181036000830152613fc381613f87565b9050919050565b7f53616c65206861736e2774207374617274656420796574000000000000000000600082015250565b60006140006017836132fa565b915061400b82613fca565b602082019050919050565b6000602082019050818103600083015261402f81613ff3565b9050919050565b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b600061406c601f836132fa565b915061407782614036565b602082019050919050565b6000602082019050818103600083015261409b8161405f565b9050919050565b60006140ad82613193565b91506140b883613193565b92508282019050808211156140d0576140cf613bea565b5b92915050565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b600061410c600a836132fa565b9150614117826140d6565b602082019050919050565b6000602082019050818103600083015261413b816140ff565b9050919050565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b6000614178601b836132fa565b915061418382614142565b602082019050919050565b600060208201905081810360008301526141a78161416b565b9050919050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006141e46012836132fa565b91506141ef826141ae565b602082019050919050565b60006020820190508181036000830152614213816141d7565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b60006142506016836132fa565b915061425b8261421a565b602082019050919050565b6000602082019050818103600083015261427f81614243565b9050919050565b600061429182613193565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036142c3576142c2613bea565b5b600182019050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b600061432a6030836132fa565b9150614335826142ce565b604082019050919050565b600060208201905081810360008301526143598161431d565b9050919050565b600081905092915050565b6000614376826132ef565b6143808185614360565b935061439081856020860161330b565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006143d2600583614360565b91506143dd8261439c565b600582019050919050565b60006143f4828561436b565b9150614400828461436b565b915061440b826143c5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144736026836132fa565b915061447e82614417565b604082019050919050565b600060208201905081810360008301526144a281614466565b9050919050565b7f50726573616c65206861736e2774207374617274656420796574000000000000600082015250565b60006144df601a836132fa565b91506144ea826144a9565b602082019050919050565b6000602082019050818103600083015261450e816144d2565b9050919050565b7f596f7520617265204e6f742057686974656c6973746564000000000000000000600082015250565b600061454b6017836132fa565b915061455682614515565b602082019050919050565b6000602082019050818103600083015261457a8161453e565b9050919050565b7f6d6178206d696e74207065722054782065786365656465640000000000000000600082015250565b60006145b76018836132fa565b91506145c282614581565b602082019050919050565b600060208201905081810360008301526145e6816145aa565b9050919050565b7f57686974656c697374204d6178537570706c7920657863656564656400000000600082015250565b6000614623601c836132fa565b915061462e826145ed565b602082019050919050565b6000602082019050818103600083015261465281614616565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061468f6020836132fa565b915061469a82614659565b602082019050919050565b600060208201905081810360008301526146be81614682565b9050919050565b60006040820190506146da600083018561342c565b6146e7602083018461342c565b9392505050565b6000815190506146fd81613296565b92915050565b600060208284031215614719576147186131d1565b5b6000614727848285016146ee565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614766601f836132fa565b915061477182614730565b602082019050919050565b6000602082019050818103600083015261479581614759565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006147c38261479c565b6147cd81856147a7565b93506147dd81856020860161330b565b6147e681613335565b840191505092915050565b6000608082019050614806600083018761342c565b614813602083018661342c565b614820604083018561319d565b818103606083015261483281846147b8565b905095945050505050565b60008151905061484c81613207565b92915050565b600060208284031215614868576148676131d1565b5b60006148768482850161483d565b9150509291505056fea264697066735822122064073df293bd0171d603087888c111f7f5a7676024d171af4816f6b2f4d1c4bf64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6362566e637a724c763444466972327541456f546262395156524c35357a31517962685371736863746670642f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d6362566e637a724c763444466972327541456f546262395156524c35357a31517962685371736863746670642f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

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

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d6362566e637a724c763444466972327541456f54626239
Arg [4] : 5156524c35357a31517962685371736863746670642f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [6] : 697066733a2f2f516d6362566e637a724c763444466972327541456f54626239
Arg [7] : 5156524c35357a31517962685371736863746670642f68696464656e2e6a736f
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

64963:7879:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65318:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30368:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71318:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31270:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37761:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65081:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37194:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65219:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70702:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27021:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72287:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65621:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70248:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65709:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71733:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72088:162;;;:::i;:::-;;2927:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72460:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70405:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70860:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65557:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70986:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65590:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65526;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32663:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65055:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65148:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28205:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11147:103;;;;;;;;;;;;;:::i;:::-;;68769:881;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10499:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69672:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31446:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65656:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66345:577;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38319:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72641:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65253:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69949:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67708:280;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65815:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70103:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68040:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65184:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65455:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68597:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69801:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38710:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71853:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70559:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71118:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11405:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71627:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71466:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66967:686;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65388:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65318:33;;;;:::o;30368:639::-;30453:4;30792:10;30777:25;;:11;:25;;;;:102;;;;30869:10;30854:25;;:11;:25;;;;30777:102;:179;;;;30946:10;30931:25;;:11;:25;;;;30777:179;30757:199;;30368:639;;;:::o;71318:73::-;10385:13;:11;:13::i;:::-;71379:6:::1;71370;;:15;;;;;;;;;;;;;;;;;;71318:73:::0;:::o;31270:100::-;31324:13;31357:5;31350:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31270:100;:::o;37761:218::-;37837:7;37862:16;37870:7;37862;:16::i;:::-;37857:64;;37887:34;;;;;;;;;;;;;;37857:64;37941:15;:24;37957:7;37941:24;;;;;;;;;;;:30;;;;;;;;;;;;37934:37;;37761:218;;;:::o;65081:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37194:408::-;37283:13;37299:16;37307:7;37299;:16::i;:::-;37283:32;;37355:5;37332:28;;:19;:17;:19::i;:::-;:28;;;37328:175;;37380:44;37397:5;37404:19;:17;:19::i;:::-;37380:16;:44::i;:::-;37375:128;;37452:35;;;;;;;;;;;;;;37375:128;37328:175;37548:2;37515:15;:24;37531:7;37515:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37586:7;37582:2;37566:28;;37575:5;37566:28;;;;;;;;;;;;37272:330;37194:408;;:::o;65219:29::-;;;;:::o;65114:::-;;;;:::o;70702:94::-;10385:13;:11;:13::i;:::-;70780:10:::1;70768:9;:22;;;;70702:94:::0;:::o;27021:323::-;27082:7;27310:15;:13;:15::i;:::-;27295:12;;27279:13;;:28;:46;27272:53;;27021:323;:::o;72287:165::-;72396:4;4276:10;4268:18;;:4;:18;;;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;4264:83;72409:37:::1;72428:4;72434:2;72438:7;72409:18;:37::i;:::-;72287:165:::0;;;;:::o;65621:30::-;;;;;;;;;;;;;:::o;70248:88::-;10385:13;:11;:13::i;:::-;70324:6:::1;70311:10;:19;;;;70248:88:::0;:::o;65709:51::-;;;;;;;;;;;;;;;;;:::o;71733:112::-;71792:4;71812:20;:27;71833:5;71812:27;;;;;;;;;;;;;;;;;;;;;;;;;71805:34;;71733:112;;;:::o;72088:162::-;10385:13;:11;:13::i;:::-;7770:21:::1;:19;:21::i;:::-;72155:14:::2;72202:3;72196::::0;72172:21:::2;:27;;;;:::i;:::-;:33;;;;:::i;:::-;72155:50;;72224:2;;;;;;;;;;;72216:20;;:28;72237:6;72216:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;72146:104;7814:20:::1;:18;:20::i;:::-;72088:162::o:0;2927:143::-;3027:42;2927:143;:::o;72460:173::-;72573:4;4276:10;4268:18;;:4;:18;;;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;4264:83;72586:41:::1;72609:4;72615:2;72619:7;72586:22;:41::i;:::-;72460:173:::0;;;;:::o;70405:80::-;10385:13;:11;:13::i;:::-;70471:8:::1;70464:4;:15;;;;70405:80:::0;:::o;70860:92::-;10385:13;:11;:13::i;:::-;70936:10:::1;70925:8;:21;;;;70860:92:::0;:::o;65557:28::-;;;;;;;;;;;;;:::o;70986:98::-;10385:13;:11;:13::i;:::-;71067:11:::1;71057:7;:21;;;;;;:::i;:::-;;70986:98:::0;:::o;65590:26::-;;;;;;;;;;;;;:::o;65526:::-;;;;;;;;;;;;;:::o;32663:152::-;32735:7;32778:27;32797:7;32778:18;:27::i;:::-;32755:52;;32663:152;;;:::o;65055:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65148:31::-;;;;:::o;28205:233::-;28277:7;28318:1;28301:19;;:5;:19;;;28297:60;;28329:28;;;;;;;;;;;;;;28297:60;22364:13;28375:18;:25;28394:5;28375:25;;;;;;;;;;;;;;;;:55;28368:62;;28205:233;;;:::o;11147:103::-;10385:13;:11;:13::i;:::-;11212:30:::1;11239:1;11212:18;:30::i;:::-;11147:103::o:0;68769:881::-;68828:16;68882:19;68916:25;68956:22;68981:16;68991:5;68981:9;:16::i;:::-;68956:41;;69012:25;69054:14;69040:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69012:57;;69084:31;;:::i;:::-;69135:9;69147:15;:13;:15::i;:::-;69135:27;;69130:472;69179:14;69164:11;:29;69130:472;;69231:15;69244:1;69231:12;:15::i;:::-;69219:27;;69269:9;:16;;;69310:8;69265:73;69386:1;69360:28;;:9;:14;;;:28;;;69356:111;;69433:9;:14;;;69413:34;;69356:111;69510:5;69489:26;;:17;:26;;;69485:102;;69566:1;69540:8;69549:13;;;;;;69540:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;69485:102;69130:472;69195:3;;;;;69130:472;;;;69623:8;69616:15;;;;;;;68769:881;;;:::o;10499:87::-;10545:7;10572:6;;;;;;;;;;;10565:13;;10499:87;:::o;69672:78::-;10385:13;:11;:13::i;:::-;69738:6:::1;69727:8;;:17;;;;;;;;;;;;;;;;;;69672:78:::0;:::o;31446:104::-;31502:13;31535:7;31528:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31446:104;:::o;65656:48::-;;;;;;;;;;;;;;;;;:::o;66345:577::-;7770:21;:19;:21::i;:::-;66419:6:::1;;;;;;;;;;;66418:7;66410:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;66468:10;;;;;;;;;;;66460:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;66531:8;;66521:6;:18;;66513:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;66616:9;;66606:6;66590:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;66582:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;66701:12;;66691:6;66655:12;:33;66668:19;:17;:19::i;:::-;66655:33;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;:58;;66647:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;66780:6;66773:4;;:13;;;;:::i;:::-;66760:9;:26;;66752:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;66857:6;66820:12;:33;66833:19;:17;:19::i;:::-;66820:33;;;;;;;;;;;;;;;;:43;;;;;;;:::i;:::-;;;;;;;;66872:38;66882:19;:17;:19::i;:::-;66903:6;66872:9;:38::i;:::-;7814:20:::0;:18;:20::i;:::-;66345:577;:::o;38319:234::-;38466:8;38414:18;:39;38433:19;:17;:19::i;:::-;38414:39;;;;;;;;;;;;;;;:49;38454:8;38414:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;38526:8;38490:55;;38505:19;:17;:19::i;:::-;38490:55;;;38536:8;38490:55;;;;;;:::i;:::-;;;;;;;;38319:234;;:::o;72641:198::-;72773:4;4276:10;4268:18;;:4;:18;;;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;4264:83;72786:47:::1;72809:4;72815:2;72819:7;72828:4;72786:22;:47::i;:::-;72641:198:::0;;;;;:::o;65253:31::-;;;;:::o;69949:96::-;10385:13;:11;:13::i;:::-;70033:6:::1;70016:14;:23;;;;69949:96:::0;:::o;67708:280::-;10385:13;:11;:13::i;:::-;67841:9:::1;;67826:11;67810:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;67802:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;67888:9;67884:99;67907:11;;:18;;67903:1;:22;67884:99;;;67941:34;67947:11;;67959:1;67947:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;67963:11;67941:5;:34::i;:::-;67927:3;;;;;:::i;:::-;;;;67884:99;;;;67708:280:::0;;;:::o;65815:62::-;;;;;;;;;;;;;:::o;70103:84::-;10385:13;:11;:13::i;:::-;70175:6:::1;70164:8;:17;;;;70103:84:::0;:::o;68040:492::-;68138:13;68179:16;68187:7;68179;:16::i;:::-;68163:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;68289:5;68277:17;;:8;;;;;;;;;;;:17;;;68274:62;;68314:14;68307:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68274:62;68344:28;68375:10;:8;:10::i;:::-;68344:41;;68430:1;68405:14;68399:28;:32;:127;;;;;;;;;;;;;;;;;68467:14;68483:18;68493:7;68483:9;:18::i;:::-;68450:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68399:127;68392:134;;;68040:492;;;;:::o;65184:30::-;;;;:::o;65455:29::-;;;;:::o;68597:107::-;68655:7;68678:20;68692:5;68678:13;:20::i;:::-;68671:27;;68597:107;;;:::o;69801:92::-;10385:13;:11;:13::i;:::-;69881:6:::1;69866:12;:21;;;;69801:92:::0;:::o;38710:164::-;38807:4;38831:18;:25;38850:5;38831:25;;;;;;;;;;;;;;;:35;38857:8;38831:35;;;;;;;;;;;;;;;;;;;;;;;;;38824:42;;38710:164;;;;:::o;71853:186::-;10385:13;:11;:13::i;:::-;71934:9:::1;71929:105;71953:9;:16;71949:1;:20;71929:105;;;72022:4;71985:20;:34;72006:9;72016:1;72006:12;;;;;;;;:::i;:::-;;;;;;;;71985:34;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;71971:3;;;;;:::i;:::-;;;;71929:105;;;;71853:186:::0;:::o;70559:88::-;10385:13;:11;:13::i;:::-;70631:10:::1;70622:6;:19;;;;70559:88:::0;:::o;71118:120::-;10385:13;:11;:13::i;:::-;71217:15:::1;71200:14;:32;;;;;;:::i;:::-;;71118:120:::0;:::o;11405:201::-;10385:13;:11;:13::i;:::-;11514:1:::1;11494:22;;:8;:22;;::::0;11486:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;11570:28;11589:8;11570:18;:28::i;:::-;11405:201:::0;:::o;71627:96::-;10385:13;:11;:13::i;:::-;71709:6:::1;71696:10;;:19;;;;;;;;;;;;;;;;;;71627:96:::0;:::o;71466:90::-;10385:13;:11;:13::i;:::-;71542:6:::1;71532:7;;:16;;;;;;;;;;;;;;;;;;71466:90:::0;:::o;66967:686::-;7770:21;:19;:21::i;:::-;67048:6:::1;;;;;;;;;;;67047:7;67039:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;67097:7;;;;;;;;;;;67089:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;67150:20;:41;67171:19;:17;:19::i;:::-;67150:41;;;;;;;;;;;;;;;;;;;;;;;;;67142:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;67283:14;;67273:6;67234:15;:36;67250:19;:17;:19::i;:::-;67234:36;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;:63;;67226:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;67354:10;;67344:6;:20;;67336:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;67434:8;;67424:6;67408:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;;67400:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;67512:6;67503;;:15;;;;:::i;:::-;67490:9;:28;;67482:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;67594:6;67554:15;:36;67570:19;:17;:19::i;:::-;67554:36;;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;;;;;;;67609:38;67619:19;:17;:19::i;:::-;67640:6;67609:9;:38::i;:::-;7814:20:::0;:18;:20::i;:::-;66967:686;:::o;65388:27::-;;;;:::o;10664:132::-;10739:12;:10;:12::i;:::-;10728:23;;:7;:5;:7::i;:::-;:23;;;10720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10664:132::o;39132:282::-;39197:4;39253:7;39234:15;:13;:15::i;:::-;:26;;:66;;;;;39287:13;;39277:7;:23;39234:66;:153;;;;;39386:1;23140:8;39338:17;:26;39356:7;39338:26;;;;;;;;;;;;:44;:49;39234:153;39214:173;;39132:282;;;:::o;61440:105::-;61500:7;61527:10;61520:17;;61440:105;:::o;66209:101::-;66274:7;66301:1;66294:8;;66209:101;:::o;4506:419::-;4745:1;3027:42;4697:45;;;:49;4693:225;;;3027:42;4768;;;4819:4;4826:8;4768:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4763:144;;4882:8;4863:28;;;;;;;;;;;:::i;:::-;;;;;;;;4763:144;4693:225;4506:419;:::o;41400:2825::-;41542:27;41572;41591:7;41572:18;:27::i;:::-;41542:57;;41657:4;41616:45;;41632:19;41616:45;;;41612:86;;41670:28;;;;;;;;;;;;;;41612:86;41712:27;41741:23;41768:35;41795:7;41768:26;:35::i;:::-;41711:92;;;;41903:68;41928:15;41945:4;41951:19;:17;:19::i;:::-;41903:24;:68::i;:::-;41898:180;;41991:43;42008:4;42014:19;:17;:19::i;:::-;41991:16;:43::i;:::-;41986:92;;42043:35;;;;;;;;;;;;;;41986:92;41898:180;42109:1;42095:16;;:2;:16;;;42091:52;;42120:23;;;;;;;;;;;;;;42091:52;42156:43;42178:4;42184:2;42188:7;42197:1;42156:21;:43::i;:::-;42292:15;42289:160;;;42432:1;42411:19;42404:30;42289:160;42829:18;:24;42848:4;42829:24;;;;;;;;;;;;;;;;42827:26;;;;;;;;;;;;42898:18;:22;42917:2;42898:22;;;;;;;;;;;;;;;;42896:24;;;;;;;;;;;43220:146;43257:2;43306:45;43321:4;43327:2;43331:19;43306:14;:45::i;:::-;23420:8;43278:73;43220:18;:146::i;:::-;43191:17;:26;43209:7;43191:26;;;;;;;;;;;:175;;;;43537:1;23420:8;43486:19;:47;:52;43482:627;;43559:19;43591:1;43581:7;:11;43559:33;;43748:1;43714:17;:30;43732:11;43714:30;;;;;;;;;;;;:35;43710:384;;43852:13;;43837:11;:28;43833:242;;44032:19;43999:17;:30;44017:11;43999:30;;;;;;;;;;;:52;;;;43833:242;43710:384;43540:569;43482:627;44156:7;44152:2;44137:27;;44146:4;44137:27;;;;;;;;;;;;44175:42;44196:4;44202:2;44206:7;44215:1;44175:20;:42::i;:::-;41531:2694;;;41400:2825;;;:::o;7850:293::-;7252:1;7984:7;;:19;7976:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7252:1;8117:7;:18;;;;7850:293::o;8151:213::-;7208:1;8334:7;:22;;;;8151:213::o;44321:193::-;44467:39;44484:4;44490:2;44494:7;44467:39;;;;;;;;;;;;:16;:39::i;:::-;44321:193;;;:::o;33818:1275::-;33885:7;33905:12;33920:7;33905:22;;33988:4;33969:15;:13;:15::i;:::-;:23;33965:1061;;34022:13;;34015:4;:20;34011:1015;;;34060:14;34077:17;:23;34095:4;34077:23;;;;;;;;;;;;34060:40;;34194:1;23140:8;34166:6;:24;:29;34162:845;;34831:113;34848:1;34838:6;:11;34831:113;;34891:17;:25;34909:6;;;;;;;34891:25;;;;;;;;;;;;34882:34;;34831:113;;;34977:6;34970:13;;;;;;34162:845;34037:989;34011:1015;33965:1061;35054:31;;;;;;;;;;;;;;33818:1275;;;;:::o;11766:191::-;11840:16;11859:6;;;;;;;;;;;11840:25;;11885:8;11876:6;;:17;;;;;;;;;;;;;;;;;;11940:8;11909:40;;11930:8;11909:40;;;;;;;;;;;;11829:128;11766:191;:::o;33266:161::-;33334:21;;:::i;:::-;33375:44;33394:17;:24;33412:5;33394:24;;;;;;;;;;;;33375:18;:44::i;:::-;33368:51;;33266:161;;;:::o;55272:112::-;55349:27;55359:2;55363:8;55349:27;;;;;;;;;;;;:9;:27::i;:::-;55272:112;;:::o;45112:407::-;45287:31;45300:4;45306:2;45310:7;45287:12;:31::i;:::-;45351:1;45333:2;:14;;;:19;45329:183;;45372:56;45403:4;45409:2;45413:7;45422:5;45372:30;:56::i;:::-;45367:145;;45456:40;;;;;;;;;;;;;;45367:145;45329:183;45112:407;;;;:::o;48781:2966::-;48854:20;48877:13;;48854:36;;48917:1;48905:8;:13;48901:44;;48927:18;;;;;;;;;;;;;;48901:44;48958:61;48988:1;48992:2;48996:12;49010:8;48958:21;:61::i;:::-;49502:1;22502:2;49472:1;:26;;49471:32;49459:8;:45;49433:18;:22;49452:2;49433:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;49781:139;49818:2;49872:33;49895:1;49899:2;49903:1;49872:14;:33::i;:::-;49839:30;49860:8;49839:20;:30::i;:::-;:66;49781:18;:139::i;:::-;49747:17;:31;49765:12;49747:31;;;;;;;;;;;:173;;;;49937:16;49968:11;49997:8;49982:12;:23;49968:37;;50518:16;50514:2;50510:25;50498:37;;50890:12;50850:8;50809:1;50747:25;50688:1;50627;50600:335;51261:1;51247:12;51243:20;51201:346;51302:3;51293:7;51290:16;51201:346;;51520:7;51510:8;51507:1;51480:25;51477:1;51474;51469:59;51355:1;51346:7;51342:15;51331:26;;51201:346;;;51205:77;51592:1;51580:8;:13;51576:45;;51602:19;;;;;;;;;;;;;;51576:45;51654:3;51638:13;:19;;;;49207:2462;;51679:60;51708:1;51712:2;51716:12;51730:8;51679:20;:60::i;:::-;48843:2904;48781:2966;;:::o;66099:102::-;66159:13;66188:7;66181:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66099:102;:::o;61647:1745::-;61712:17;62146:4;62139;62133:11;62129:22;62238:1;62232:4;62225:15;62313:4;62310:1;62306:12;62299:19;;62395:1;62390:3;62383:14;62499:3;62738:5;62720:428;62746:1;62720:428;;;62786:1;62781:3;62777:11;62770:18;;62957:2;62951:4;62947:13;62943:2;62939:22;62934:3;62926:36;63051:2;63045:4;63041:13;63033:21;;63118:4;62720:428;63108:25;62720:428;62724:21;63187:3;63182;63178:13;63302:4;63297:3;63293:14;63286:21;;63367:6;63362:3;63355:19;61751:1634;;;61647:1745;;;:::o;28520:178::-;28581:7;22364:13;22502:2;28609:18;:25;28628:5;28609:25;;;;;;;;;;;;;;;;:50;;28608:82;28601:89;;28520:178;;;:::o;9050:98::-;9103:7;9130:10;9123:17;;9050:98;:::o;40295:485::-;40397:27;40426:23;40467:38;40508:15;:24;40524:7;40508:24;;;;;;;;;;;40467:65;;40685:18;40662:41;;40742:19;40736:26;40717:45;;40647:126;40295:485;;;:::o;39523:659::-;39672:11;39837:16;39830:5;39826:28;39817:37;;39997:16;39986:9;39982:32;39969:45;;40147:15;40136:9;40133:30;40125:5;40114:9;40111:20;40108:56;40098:66;;39523:659;;;;;:::o;46181:159::-;;;;;:::o;60749:311::-;60884:7;60904:16;23544:3;60930:19;:41;;60904:68;;23544:3;60998:31;61009:4;61015:2;61019:9;60998:10;:31::i;:::-;60990:40;;:62;;60983:69;;;60749:311;;;;;:::o;35641:450::-;35721:14;35889:16;35882:5;35878:28;35869:37;;36066:5;36052:11;36027:23;36023:41;36020:52;36013:5;36010:63;36000:73;;35641:450;;;;:::o;47005:158::-;;;;;:::o;35192:366::-;35258:31;;:::i;:::-;35335:6;35302:9;:14;;:41;;;;;;;;;;;23023:3;35388:6;:33;;35354:9;:24;;:68;;;;;;;;;;;35480:1;23140:8;35452:6;:24;:29;;35433:9;:16;;:48;;;;;;;;;;;23544:3;35521:6;:28;;35492:9;:19;;:58;;;;;;;;;;;35192:366;;;:::o;54499:689::-;54630:19;54636:2;54640:8;54630:5;:19::i;:::-;54709:1;54691:2;:14;;;:19;54687:483;;54731:11;54745:13;;54731:27;;54777:13;54799:8;54793:3;:14;54777:30;;54826:233;54857:62;54896:1;54900:2;54904:7;;;;;;54913:5;54857:30;:62::i;:::-;54852:167;;54955:40;;;;;;;;;;;;;;54852:167;55054:3;55046:5;:11;54826:233;;55141:3;55124:13;;:20;55120:34;;55146:8;;;55120:34;54712:458;;54687:483;54499:689;;;:::o;47603:716::-;47766:4;47812:2;47787:45;;;47833:19;:17;:19::i;:::-;47854:4;47860:7;47869:5;47787:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47783:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48087:1;48070:6;:13;:18;48066:235;;48116:40;;;;;;;;;;;;;;48066:235;48259:6;48253:13;48244:6;48240:2;48236:15;48229:38;47783:529;47956:54;;;47946:64;;;:6;:64;;;;47939:71;;;47603:716;;;;;;:::o;36193:324::-;36263:14;36496:1;36486:8;36483:15;36457:24;36453:46;36443:56;;36193:324;;;:::o;60450:147::-;60587:6;60450:147;;;;;:::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:60::-;6820:3;6841:5;6834:12;;6792:60;;;:::o;6858:142::-;6908:9;6941:53;6959:34;6968:24;6986:5;6968:24;:::i;:::-;6959:34;:::i;:::-;6941:53;:::i;:::-;6928:66;;6858:142;;;:::o;7006:126::-;7056:9;7089:37;7120:5;7089:37;:::i;:::-;7076:50;;7006:126;;;:::o;7138:157::-;7219:9;7252:37;7283:5;7252:37;:::i;:::-;7239:50;;7138:157;;;:::o;7301:193::-;7419:68;7481:5;7419:68;:::i;:::-;7414:3;7407:81;7301:193;;:::o;7500:284::-;7624:4;7662:2;7651:9;7647:18;7639:26;;7675:102;7774:1;7763:9;7759:17;7750:6;7675:102;:::i;:::-;7500:284;;;;:::o;7790:117::-;7899:1;7896;7889:12;7913:117;8022:1;8019;8012:12;8036:180;8084:77;8081:1;8074:88;8181:4;8178:1;8171:15;8205:4;8202:1;8195:15;8222:281;8305:27;8327:4;8305:27;:::i;:::-;8297:6;8293:40;8435:6;8423:10;8420:22;8399:18;8387:10;8384:34;8381:62;8378:88;;;8446:18;;:::i;:::-;8378:88;8486:10;8482:2;8475:22;8265:238;8222:281;;:::o;8509:129::-;8543:6;8570:20;;:::i;:::-;8560:30;;8599:33;8627:4;8619:6;8599:33;:::i;:::-;8509:129;;;:::o;8644:308::-;8706:4;8796:18;8788:6;8785:30;8782:56;;;8818:18;;:::i;:::-;8782:56;8856:29;8878:6;8856:29;:::i;:::-;8848:37;;8940:4;8934;8930:15;8922:23;;8644:308;;;:::o;8958:146::-;9055:6;9050:3;9045;9032:30;9096:1;9087:6;9082:3;9078:16;9071:27;8958:146;;;:::o;9110:425::-;9188:5;9213:66;9229:49;9271:6;9229:49;:::i;:::-;9213:66;:::i;:::-;9204:75;;9302:6;9295:5;9288:21;9340:4;9333:5;9329:16;9378:3;9369:6;9364:3;9360:16;9357:25;9354:112;;;9385:79;;:::i;:::-;9354:112;9475:54;9522:6;9517:3;9512;9475:54;:::i;:::-;9194:341;9110:425;;;;;:::o;9555:340::-;9611:5;9660:3;9653:4;9645:6;9641:17;9637:27;9627:122;;9668:79;;:::i;:::-;9627:122;9785:6;9772:20;9810:79;9885:3;9877:6;9870:4;9862:6;9858:17;9810:79;:::i;:::-;9801:88;;9617:278;9555:340;;;;:::o;9901:509::-;9970:6;10019:2;10007:9;9998:7;9994:23;9990:32;9987:119;;;10025:79;;:::i;:::-;9987:119;10173:1;10162:9;10158:17;10145:31;10203:18;10195:6;10192:30;10189:117;;;10225:79;;:::i;:::-;10189:117;10330:63;10385:7;10376:6;10365:9;10361:22;10330:63;:::i;:::-;10320:73;;10116:287;9901:509;;;;:::o;10416:114::-;10483:6;10517:5;10511:12;10501:22;;10416:114;;;:::o;10536:184::-;10635:11;10669:6;10664:3;10657:19;10709:4;10704:3;10700:14;10685:29;;10536:184;;;;:::o;10726:132::-;10793:4;10816:3;10808:11;;10846:4;10841:3;10837:14;10829:22;;10726:132;;;:::o;10864:108::-;10941:24;10959:5;10941:24;:::i;:::-;10936:3;10929:37;10864:108;;:::o;10978:179::-;11047:10;11068:46;11110:3;11102:6;11068:46;:::i;:::-;11146:4;11141:3;11137:14;11123:28;;10978:179;;;;:::o;11163:113::-;11233:4;11265;11260:3;11256:14;11248:22;;11163:113;;;:::o;11312:732::-;11431:3;11460:54;11508:5;11460:54;:::i;:::-;11530:86;11609:6;11604:3;11530:86;:::i;:::-;11523:93;;11640:56;11690:5;11640:56;:::i;:::-;11719:7;11750:1;11735:284;11760:6;11757:1;11754:13;11735:284;;;11836:6;11830:13;11863:63;11922:3;11907:13;11863:63;:::i;:::-;11856:70;;11949:60;12002:6;11949:60;:::i;:::-;11939:70;;11795:224;11782:1;11779;11775:9;11770:14;;11735:284;;;11739:14;12035:3;12028:10;;11436:608;;;11312:732;;;;:::o;12050:373::-;12193:4;12231:2;12220:9;12216:18;12208:26;;12280:9;12274:4;12270:20;12266:1;12255:9;12251:17;12244:47;12308:108;12411:4;12402:6;12308:108;:::i;:::-;12300:116;;12050:373;;;;:::o;12429:468::-;12494:6;12502;12551:2;12539:9;12530:7;12526:23;12522:32;12519:119;;;12557:79;;:::i;:::-;12519:119;12677:1;12702:53;12747:7;12738:6;12727:9;12723:22;12702:53;:::i;:::-;12692:63;;12648:117;12804:2;12830:50;12872:7;12863:6;12852:9;12848:22;12830:50;:::i;:::-;12820:60;;12775:115;12429:468;;;;;:::o;12903:307::-;12964:4;13054:18;13046:6;13043:30;13040:56;;;13076:18;;:::i;:::-;13040:56;13114:29;13136:6;13114:29;:::i;:::-;13106:37;;13198:4;13192;13188:15;13180:23;;12903:307;;;:::o;13216:423::-;13293:5;13318:65;13334:48;13375:6;13334:48;:::i;:::-;13318:65;:::i;:::-;13309:74;;13406:6;13399:5;13392:21;13444:4;13437:5;13433:16;13482:3;13473:6;13468:3;13464:16;13461:25;13458:112;;;13489:79;;:::i;:::-;13458:112;13579:54;13626:6;13621:3;13616;13579:54;:::i;:::-;13299:340;13216:423;;;;;:::o;13658:338::-;13713:5;13762:3;13755:4;13747:6;13743:17;13739:27;13729:122;;13770:79;;:::i;:::-;13729:122;13887:6;13874:20;13912:78;13986:3;13978:6;13971:4;13963:6;13959:17;13912:78;:::i;:::-;13903:87;;13719:277;13658:338;;;;:::o;14002:943::-;14097:6;14105;14113;14121;14170:3;14158:9;14149:7;14145:23;14141:33;14138:120;;;14177:79;;:::i;:::-;14138:120;14297:1;14322:53;14367:7;14358:6;14347:9;14343:22;14322:53;:::i;:::-;14312:63;;14268:117;14424:2;14450:53;14495:7;14486:6;14475:9;14471:22;14450:53;:::i;:::-;14440:63;;14395:118;14552:2;14578:53;14623:7;14614:6;14603:9;14599:22;14578:53;:::i;:::-;14568:63;;14523:118;14708:2;14697:9;14693:18;14680:32;14739:18;14731:6;14728:30;14725:117;;;14761:79;;:::i;:::-;14725:117;14866:62;14920:7;14911:6;14900:9;14896:22;14866:62;:::i;:::-;14856:72;;14651:287;14002:943;;;;;;;:::o;14951:117::-;15060:1;15057;15050:12;15074:117;15183:1;15180;15173:12;15214:568;15287:8;15297:6;15347:3;15340:4;15332:6;15328:17;15324:27;15314:122;;15355:79;;:::i;:::-;15314:122;15468:6;15455:20;15445:30;;15498:18;15490:6;15487:30;15484:117;;;15520:79;;:::i;:::-;15484:117;15634:4;15626:6;15622:17;15610:29;;15688:3;15680:4;15672:6;15668:17;15658:8;15654:32;15651:41;15648:128;;;15695:79;;:::i;:::-;15648:128;15214:568;;;;;:::o;15788:704::-;15883:6;15891;15899;15948:2;15936:9;15927:7;15923:23;15919:32;15916:119;;;15954:79;;:::i;:::-;15916:119;16074:1;16099:53;16144:7;16135:6;16124:9;16120:22;16099:53;:::i;:::-;16089:63;;16045:117;16229:2;16218:9;16214:18;16201:32;16260:18;16252:6;16249:30;16246:117;;;16282:79;;:::i;:::-;16246:117;16395:80;16467:7;16458:6;16447:9;16443:22;16395:80;:::i;:::-;16377:98;;;;16172:313;15788:704;;;;;:::o;16498:474::-;16566:6;16574;16623:2;16611:9;16602:7;16598:23;16594:32;16591:119;;;16629:79;;:::i;:::-;16591:119;16749:1;16774:53;16819:7;16810:6;16799:9;16795:22;16774:53;:::i;:::-;16764:63;;16720:117;16876:2;16902:53;16947:7;16938:6;16927:9;16923:22;16902:53;:::i;:::-;16892:63;;16847:118;16498:474;;;;;:::o;16978:311::-;17055:4;17145:18;17137:6;17134:30;17131:56;;;17167:18;;:::i;:::-;17131:56;17217:4;17209:6;17205:17;17197:25;;17277:4;17271;17267:15;17259:23;;16978:311;;;:::o;17312:710::-;17408:5;17433:81;17449:64;17506:6;17449:64;:::i;:::-;17433:81;:::i;:::-;17424:90;;17534:5;17563:6;17556:5;17549:21;17597:4;17590:5;17586:16;17579:23;;17650:4;17642:6;17638:17;17630:6;17626:30;17679:3;17671:6;17668:15;17665:122;;;17698:79;;:::i;:::-;17665:122;17813:6;17796:220;17830:6;17825:3;17822:15;17796:220;;;17905:3;17934:37;17967:3;17955:10;17934:37;:::i;:::-;17929:3;17922:50;18001:4;17996:3;17992:14;17985:21;;17872:144;17856:4;17851:3;17847:14;17840:21;;17796:220;;;17800:21;17414:608;;17312:710;;;;;:::o;18045:370::-;18116:5;18165:3;18158:4;18150:6;18146:17;18142:27;18132:122;;18173:79;;:::i;:::-;18132:122;18290:6;18277:20;18315:94;18405:3;18397:6;18390:4;18382:6;18378:17;18315:94;:::i;:::-;18306:103;;18122:293;18045:370;;;;:::o;18421:539::-;18505:6;18554:2;18542:9;18533:7;18529:23;18525:32;18522:119;;;18560:79;;:::i;:::-;18522:119;18708:1;18697:9;18693:17;18680:31;18738:18;18730:6;18727:30;18724:117;;;18760:79;;:::i;:::-;18724:117;18865:78;18935:7;18926:6;18915:9;18911:22;18865:78;:::i;:::-;18855:88;;18651:302;18421:539;;;;:::o;18966:180::-;19014:77;19011:1;19004:88;19111:4;19108:1;19101:15;19135:4;19132:1;19125:15;19152:320;19196:6;19233:1;19227:4;19223:12;19213:22;;19280:1;19274:4;19270:12;19301:18;19291:81;;19357:4;19349:6;19345:17;19335:27;;19291:81;19419:2;19411:6;19408:14;19388:18;19385:38;19382:84;;19438:18;;:::i;:::-;19382:84;19203:269;19152:320;;;:::o;19478:180::-;19526:77;19523:1;19516:88;19623:4;19620:1;19613:15;19647:4;19644:1;19637:15;19664:410;19704:7;19727:20;19745:1;19727:20;:::i;:::-;19722:25;;19761:20;19779:1;19761:20;:::i;:::-;19756:25;;19816:1;19813;19809:9;19838:30;19856:11;19838:30;:::i;:::-;19827:41;;20017:1;20008:7;20004:15;20001:1;19998:22;19978:1;19971:9;19951:83;19928:139;;20047:18;;:::i;:::-;19928:139;19712:362;19664:410;;;;:::o;20080:180::-;20128:77;20125:1;20118:88;20225:4;20222:1;20215:15;20249:4;20246:1;20239:15;20266:185;20306:1;20323:20;20341:1;20323:20;:::i;:::-;20318:25;;20357:20;20375:1;20357:20;:::i;:::-;20352:25;;20396:1;20386:35;;20401:18;;:::i;:::-;20386:35;20443:1;20440;20436:9;20431:14;;20266:185;;;;:::o;20457:141::-;20506:4;20529:3;20521:11;;20552:3;20549:1;20542:14;20586:4;20583:1;20573:18;20565:26;;20457:141;;;:::o;20604:93::-;20641:6;20688:2;20683;20676:5;20672:14;20668:23;20658:33;;20604:93;;;:::o;20703:107::-;20747:8;20797:5;20791:4;20787:16;20766:37;;20703:107;;;;:::o;20816:393::-;20885:6;20935:1;20923:10;20919:18;20958:97;20988:66;20977:9;20958:97;:::i;:::-;21076:39;21106:8;21095:9;21076:39;:::i;:::-;21064:51;;21148:4;21144:9;21137:5;21133:21;21124:30;;21197:4;21187:8;21183:19;21176:5;21173:30;21163:40;;20892:317;;20816:393;;;;;:::o;21215:142::-;21265:9;21298:53;21316:34;21325:24;21343:5;21325:24;:::i;:::-;21316:34;:::i;:::-;21298:53;:::i;:::-;21285:66;;21215:142;;;:::o;21363:75::-;21406:3;21427:5;21420:12;;21363:75;;;:::o;21444:269::-;21554:39;21585:7;21554:39;:::i;:::-;21615:91;21664:41;21688:16;21664:41;:::i;:::-;21656:6;21649:4;21643:11;21615:91;:::i;:::-;21609:4;21602:105;21520:193;21444:269;;;:::o;21719:73::-;21764:3;21719:73;:::o;21798:189::-;21875:32;;:::i;:::-;21916:65;21974:6;21966;21960:4;21916:65;:::i;:::-;21851:136;21798:189;;:::o;21993:186::-;22053:120;22070:3;22063:5;22060:14;22053:120;;;22124:39;22161:1;22154:5;22124:39;:::i;:::-;22097:1;22090:5;22086:13;22077:22;;22053:120;;;21993:186;;:::o;22185:543::-;22286:2;22281:3;22278:11;22275:446;;;22320:38;22352:5;22320:38;:::i;:::-;22404:29;22422:10;22404:29;:::i;:::-;22394:8;22390:44;22587:2;22575:10;22572:18;22569:49;;;22608:8;22593:23;;22569:49;22631:80;22687:22;22705:3;22687:22;:::i;:::-;22677:8;22673:37;22660:11;22631:80;:::i;:::-;22290:431;;22275:446;22185:543;;;:::o;22734:117::-;22788:8;22838:5;22832:4;22828:16;22807:37;;22734:117;;;;:::o;22857:169::-;22901:6;22934:51;22982:1;22978:6;22970:5;22967:1;22963:13;22934:51;:::i;:::-;22930:56;23015:4;23009;23005:15;22995:25;;22908:118;22857:169;;;;:::o;23031:295::-;23107:4;23253:29;23278:3;23272:4;23253:29;:::i;:::-;23245:37;;23315:3;23312:1;23308:11;23302:4;23299:21;23291:29;;23031:295;;;;:::o;23331:1395::-;23448:37;23481:3;23448:37;:::i;:::-;23550:18;23542:6;23539:30;23536:56;;;23572:18;;:::i;:::-;23536:56;23616:38;23648:4;23642:11;23616:38;:::i;:::-;23701:67;23761:6;23753;23747:4;23701:67;:::i;:::-;23795:1;23819:4;23806:17;;23851:2;23843:6;23840:14;23868:1;23863:618;;;;24525:1;24542:6;24539:77;;;24591:9;24586:3;24582:19;24576:26;24567:35;;24539:77;24642:67;24702:6;24695:5;24642:67;:::i;:::-;24636:4;24629:81;24498:222;23833:887;;23863:618;23915:4;23911:9;23903:6;23899:22;23949:37;23981:4;23949:37;:::i;:::-;24008:1;24022:208;24036:7;24033:1;24030:14;24022:208;;;24115:9;24110:3;24106:19;24100:26;24092:6;24085:42;24166:1;24158:6;24154:14;24144:24;;24213:2;24202:9;24198:18;24185:31;;24059:4;24056:1;24052:12;24047:17;;24022:208;;;24258:6;24249:7;24246:19;24243:179;;;24316:9;24311:3;24307:19;24301:26;24359:48;24401:4;24393:6;24389:17;24378:9;24359:48;:::i;:::-;24351:6;24344:64;24266:156;24243:179;24468:1;24464;24456:6;24452:14;24448:22;24442:4;24435:36;23870:611;;;23833:887;;23423:1303;;;23331:1395;;:::o;24732:180::-;24780:77;24777:1;24770:88;24877:4;24874:1;24867:15;24901:4;24898:1;24891:15;24918:173;25058:25;25054:1;25046:6;25042:14;25035:49;24918:173;:::o;25097:366::-;25239:3;25260:67;25324:2;25319:3;25260:67;:::i;:::-;25253:74;;25336:93;25425:3;25336:93;:::i;:::-;25454:2;25449:3;25445:12;25438:19;;25097:366;;;:::o;25469:419::-;25635:4;25673:2;25662:9;25658:18;25650:26;;25722:9;25716:4;25712:20;25708:1;25697:9;25693:17;25686:47;25750:131;25876:4;25750:131;:::i;:::-;25742:139;;25469:419;;;:::o;25894:173::-;26034:25;26030:1;26022:6;26018:14;26011:49;25894:173;:::o;26073:366::-;26215:3;26236:67;26300:2;26295:3;26236:67;:::i;:::-;26229:74;;26312:93;26401:3;26312:93;:::i;:::-;26430:2;26425:3;26421:12;26414:19;;26073:366;;;:::o;26445:419::-;26611:4;26649:2;26638:9;26634:18;26626:26;;26698:9;26692:4;26688:20;26684:1;26673:9;26669:17;26662:47;26726:131;26852:4;26726:131;:::i;:::-;26718:139;;26445:419;;;:::o;26870:181::-;27010:33;27006:1;26998:6;26994:14;26987:57;26870:181;:::o;27057:366::-;27199:3;27220:67;27284:2;27279:3;27220:67;:::i;:::-;27213:74;;27296:93;27385:3;27296:93;:::i;:::-;27414:2;27409:3;27405:12;27398:19;;27057:366;;;:::o;27429:419::-;27595:4;27633:2;27622:9;27618:18;27610:26;;27682:9;27676:4;27672:20;27668:1;27657:9;27653:17;27646:47;27710:131;27836:4;27710:131;:::i;:::-;27702:139;;27429:419;;;:::o;27854:191::-;27894:3;27913:20;27931:1;27913:20;:::i;:::-;27908:25;;27947:20;27965:1;27947:20;:::i;:::-;27942:25;;27990:1;27987;27983:9;27976:16;;28011:3;28008:1;28005:10;28002:36;;;28018:18;;:::i;:::-;28002:36;27854:191;;;;:::o;28051:160::-;28191:12;28187:1;28179:6;28175:14;28168:36;28051:160;:::o;28217:366::-;28359:3;28380:67;28444:2;28439:3;28380:67;:::i;:::-;28373:74;;28456:93;28545:3;28456:93;:::i;:::-;28574:2;28569:3;28565:12;28558:19;;28217:366;;;:::o;28589:419::-;28755:4;28793:2;28782:9;28778:18;28770:26;;28842:9;28836:4;28832:20;28828:1;28817:9;28813:17;28806:47;28870:131;28996:4;28870:131;:::i;:::-;28862:139;;28589:419;;;:::o;29014:177::-;29154:29;29150:1;29142:6;29138:14;29131:53;29014:177;:::o;29197:366::-;29339:3;29360:67;29424:2;29419:3;29360:67;:::i;:::-;29353:74;;29436:93;29525:3;29436:93;:::i;:::-;29554:2;29549:3;29545:12;29538:19;;29197:366;;;:::o;29569:419::-;29735:4;29773:2;29762:9;29758:18;29750:26;;29822:9;29816:4;29812:20;29808:1;29797:9;29793:17;29786:47;29850:131;29976:4;29850:131;:::i;:::-;29842:139;;29569:419;;;:::o;29994:168::-;30134:20;30130:1;30122:6;30118:14;30111:44;29994:168;:::o;30168:366::-;30310:3;30331:67;30395:2;30390:3;30331:67;:::i;:::-;30324:74;;30407:93;30496:3;30407:93;:::i;:::-;30525:2;30520:3;30516:12;30509:19;;30168:366;;;:::o;30540:419::-;30706:4;30744:2;30733:9;30729:18;30721:26;;30793:9;30787:4;30783:20;30779:1;30768:9;30764:17;30757:47;30821:131;30947:4;30821:131;:::i;:::-;30813:139;;30540:419;;;:::o;30965:172::-;31105:24;31101:1;31093:6;31089:14;31082:48;30965:172;:::o;31143:366::-;31285:3;31306:67;31370:2;31365:3;31306:67;:::i;:::-;31299:74;;31382:93;31471:3;31382:93;:::i;:::-;31500:2;31495:3;31491:12;31484:19;;31143:366;;;:::o;31515:419::-;31681:4;31719:2;31708:9;31704:18;31696:26;;31768:9;31762:4;31758:20;31754:1;31743:9;31739:17;31732:47;31796:131;31922:4;31796:131;:::i;:::-;31788:139;;31515:419;;;:::o;31940:233::-;31979:3;32002:24;32020:5;32002:24;:::i;:::-;31993:33;;32048:66;32041:5;32038:77;32035:103;;32118:18;;:::i;:::-;32035:103;32165:1;32158:5;32154:13;32147:20;;31940:233;;;:::o;32179:235::-;32319:34;32315:1;32307:6;32303:14;32296:58;32388:18;32383:2;32375:6;32371:15;32364:43;32179:235;:::o;32420:366::-;32562:3;32583:67;32647:2;32642:3;32583:67;:::i;:::-;32576:74;;32659:93;32748:3;32659:93;:::i;:::-;32777:2;32772:3;32768:12;32761:19;;32420:366;;;:::o;32792:419::-;32958:4;32996:2;32985:9;32981:18;32973:26;;33045:9;33039:4;33035:20;33031:1;33020:9;33016:17;33009:47;33073:131;33199:4;33073:131;:::i;:::-;33065:139;;32792:419;;;:::o;33217:148::-;33319:11;33356:3;33341:18;;33217:148;;;;:::o;33371:390::-;33477:3;33505:39;33538:5;33505:39;:::i;:::-;33560:89;33642:6;33637:3;33560:89;:::i;:::-;33553:96;;33658:65;33716:6;33711:3;33704:4;33697:5;33693:16;33658:65;:::i;:::-;33748:6;33743:3;33739:16;33732:23;;33481:280;33371:390;;;;:::o;33767:155::-;33907:7;33903:1;33895:6;33891:14;33884:31;33767:155;:::o;33928:400::-;34088:3;34109:84;34191:1;34186:3;34109:84;:::i;:::-;34102:91;;34202:93;34291:3;34202:93;:::i;:::-;34320:1;34315:3;34311:11;34304:18;;33928:400;;;:::o;34334:701::-;34615:3;34637:95;34728:3;34719:6;34637:95;:::i;:::-;34630:102;;34749:95;34840:3;34831:6;34749:95;:::i;:::-;34742:102;;34861:148;35005:3;34861:148;:::i;:::-;34854:155;;35026:3;35019:10;;34334:701;;;;;:::o;35041:225::-;35181:34;35177:1;35169:6;35165:14;35158:58;35250:8;35245:2;35237:6;35233:15;35226:33;35041:225;:::o;35272:366::-;35414:3;35435:67;35499:2;35494:3;35435:67;:::i;:::-;35428:74;;35511:93;35600:3;35511:93;:::i;:::-;35629:2;35624:3;35620:12;35613:19;;35272:366;;;:::o;35644:419::-;35810:4;35848:2;35837:9;35833:18;35825:26;;35897:9;35891:4;35887:20;35883:1;35872:9;35868:17;35861:47;35925:131;36051:4;35925:131;:::i;:::-;35917:139;;35644:419;;;:::o;36069:176::-;36209:28;36205:1;36197:6;36193:14;36186:52;36069:176;:::o;36251:366::-;36393:3;36414:67;36478:2;36473:3;36414:67;:::i;:::-;36407:74;;36490:93;36579:3;36490:93;:::i;:::-;36608:2;36603:3;36599:12;36592:19;;36251:366;;;:::o;36623:419::-;36789:4;36827:2;36816:9;36812:18;36804:26;;36876:9;36870:4;36866:20;36862:1;36851:9;36847:17;36840:47;36904:131;37030:4;36904:131;:::i;:::-;36896:139;;36623:419;;;:::o;37048:173::-;37188:25;37184:1;37176:6;37172:14;37165:49;37048:173;:::o;37227:366::-;37369:3;37390:67;37454:2;37449:3;37390:67;:::i;:::-;37383:74;;37466:93;37555:3;37466:93;:::i;:::-;37584:2;37579:3;37575:12;37568:19;;37227:366;;;:::o;37599:419::-;37765:4;37803:2;37792:9;37788:18;37780:26;;37852:9;37846:4;37842:20;37838:1;37827:9;37823:17;37816:47;37880:131;38006:4;37880:131;:::i;:::-;37872:139;;37599:419;;;:::o;38024:174::-;38164:26;38160:1;38152:6;38148:14;38141:50;38024:174;:::o;38204:366::-;38346:3;38367:67;38431:2;38426:3;38367:67;:::i;:::-;38360:74;;38443:93;38532:3;38443:93;:::i;:::-;38561:2;38556:3;38552:12;38545:19;;38204:366;;;:::o;38576:419::-;38742:4;38780:2;38769:9;38765:18;38757:26;;38829:9;38823:4;38819:20;38815:1;38804:9;38800:17;38793:47;38857:131;38983:4;38857:131;:::i;:::-;38849:139;;38576:419;;;:::o;39001:178::-;39141:30;39137:1;39129:6;39125:14;39118:54;39001:178;:::o;39185:366::-;39327:3;39348:67;39412:2;39407:3;39348:67;:::i;:::-;39341:74;;39424:93;39513:3;39424:93;:::i;:::-;39542:2;39537:3;39533:12;39526:19;;39185:366;;;:::o;39557:419::-;39723:4;39761:2;39750:9;39746:18;39738:26;;39810:9;39804:4;39800:20;39796:1;39785:9;39781:17;39774:47;39838:131;39964:4;39838:131;:::i;:::-;39830:139;;39557:419;;;:::o;39982:182::-;40122:34;40118:1;40110:6;40106:14;40099:58;39982:182;:::o;40170:366::-;40312:3;40333:67;40397:2;40392:3;40333:67;:::i;:::-;40326:74;;40409:93;40498:3;40409:93;:::i;:::-;40527:2;40522:3;40518:12;40511:19;;40170:366;;;:::o;40542:419::-;40708:4;40746:2;40735:9;40731:18;40723:26;;40795:9;40789:4;40785:20;40781:1;40770:9;40766:17;40759:47;40823:131;40949:4;40823:131;:::i;:::-;40815:139;;40542:419;;;:::o;40967:332::-;41088:4;41126:2;41115:9;41111:18;41103:26;;41139:71;41207:1;41196:9;41192:17;41183:6;41139:71;:::i;:::-;41220:72;41288:2;41277:9;41273:18;41264:6;41220:72;:::i;:::-;40967:332;;;;;:::o;41305:137::-;41359:5;41390:6;41384:13;41375:22;;41406:30;41430:5;41406:30;:::i;:::-;41305:137;;;;:::o;41448:345::-;41515:6;41564:2;41552:9;41543:7;41539:23;41535:32;41532:119;;;41570:79;;:::i;:::-;41532:119;41690:1;41715:61;41768:7;41759:6;41748:9;41744:22;41715:61;:::i;:::-;41705:71;;41661:125;41448:345;;;;:::o;41799:181::-;41939:33;41935:1;41927:6;41923:14;41916:57;41799:181;:::o;41986:366::-;42128:3;42149:67;42213:2;42208:3;42149:67;:::i;:::-;42142:74;;42225:93;42314:3;42225:93;:::i;:::-;42343:2;42338:3;42334:12;42327:19;;41986:366;;;:::o;42358:419::-;42524:4;42562:2;42551:9;42547:18;42539:26;;42611:9;42605:4;42601:20;42597:1;42586:9;42582:17;42575:47;42639:131;42765:4;42639:131;:::i;:::-;42631:139;;42358:419;;;:::o;42783:98::-;42834:6;42868:5;42862:12;42852:22;;42783:98;;;:::o;42887:168::-;42970:11;43004:6;42999:3;42992:19;43044:4;43039:3;43035:14;43020:29;;42887:168;;;;:::o;43061:373::-;43147:3;43175:38;43207:5;43175:38;:::i;:::-;43229:70;43292:6;43287:3;43229:70;:::i;:::-;43222:77;;43308:65;43366:6;43361:3;43354:4;43347:5;43343:16;43308:65;:::i;:::-;43398:29;43420:6;43398:29;:::i;:::-;43393:3;43389:39;43382:46;;43151:283;43061:373;;;;:::o;43440:640::-;43635:4;43673:3;43662:9;43658:19;43650:27;;43687:71;43755:1;43744:9;43740:17;43731:6;43687:71;:::i;:::-;43768:72;43836:2;43825:9;43821:18;43812:6;43768:72;:::i;:::-;43850;43918:2;43907:9;43903:18;43894:6;43850:72;:::i;:::-;43969:9;43963:4;43959:20;43954:2;43943:9;43939:18;43932:48;43997:76;44068:4;44059:6;43997:76;:::i;:::-;43989:84;;43440:640;;;;;;;:::o;44086:141::-;44142:5;44173:6;44167:13;44158:22;;44189:32;44215:5;44189:32;:::i;:::-;44086:141;;;;:::o;44233:349::-;44302:6;44351:2;44339:9;44330:7;44326:23;44322:32;44319:119;;;44357:79;;:::i;:::-;44319:119;44477:1;44502:63;44557:7;44548:6;44537:9;44533:22;44502:63;:::i;:::-;44492:73;;44448:127;44233:349;;;;:::o

Swarm Source

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