ETH Price: $3,387.96 (-2.67%)
Gas: 1 Gwei

Token

Create Cards (CREATECARDS)
 

Overview

Max Total Supply

3,002 CREATECARDS

Holders

650

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CREATECARDS
0xc8fc4f75009b69ba5769d525da49a3b2bca143a5
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:
CreateCards

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.2
// 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();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

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

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

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

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

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

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

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

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

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](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.2
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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



pragma solidity ^0.8.7;





interface IVoyagers {
    function ownerOf(uint256 tokenId) external view returns (address);
}

contract CreateCards is ERC721A, Ownable, ReentrancyGuard {

    event CardMinted(uint256 tokenId);
    event PointsSpent(uint256 points);

    struct Card {
        uint256 savedCredits;
        uint256 savedBlock;
    }

  mapping(uint256 => Card) public cards;
  mapping(address => bool) public isAdmin;
  mapping(uint256 => bool) public hasVoyagerMinted;
  
  address public voyagersContract = 0x4591c791790f352685a29111eca67Abdc878863E;
  bool public VOYAGER_MINT_ACTIVE = false;
  bool public PUBLIC_MINT_ACTIVE = false;
  uint256 public constant MAX_SUPPLY = 10000;

  string public metadataURI;

  constructor() ERC721A("Create Cards", "CREATECARDS") {}

  // MINT ---------------------------------------------

  function voyagerMint(uint256 voyagerId) public {
      uint256 tokenId = totalSupply();

      require(VOYAGER_MINT_ACTIVE, "Voyager mint not active.");
      require(IVoyagers(voyagersContract).ownerOf(voyagerId) == msg.sender, "You do not own that Voyager.");
      require(!hasVoyagerMinted[voyagerId], "Already claimed.");
      require(totalSupply() + 1 <= MAX_SUPPLY, "Sold out.");   

      hasVoyagerMinted[voyagerId] = true;  
      cards[tokenId].savedBlock = block.number; 
      _safeMint(msg.sender, 1);

    emit CardMinted(tokenId);
  }

  function publicMint() public payable nonReentrant {
      uint256 tokenId = totalSupply();

      require(PUBLIC_MINT_ACTIVE, "Public mint not active.");
      require(totalSupply() + 1 <= MAX_SUPPLY, "Sold out.");
      require(msg.value == .03 ether, "Incorrect ETH sent.");
      
      cards[tokenId].savedBlock = block.number; 
      _safeMint(msg.sender, 1);

      emit CardMinted(tokenId);
  }

  // CREDITS ---------------------------------------------

  function getCredits(uint256 tokenId) public view returns (uint256) {
    return block.number - cards[tokenId].savedBlock + cards[tokenId].savedCredits;
  }

  function spendCredits(uint256 tokenId, uint256 quantity) public {
    uint256 currentCredits = getCredits(tokenId);

    require(msg.sender == ownerOf(tokenId) || isAdmin[msg.sender], "You do not have permission to spend credits.");
    require(quantity <= currentCredits, "Not enough credits.");

    cards[tokenId].savedCredits = currentCredits - quantity;
    cards[tokenId].savedBlock = block.number;

    emit PointsSpent(quantity);
  }

  // CONTRACT MANAGEMENT ---------------------------------------------
  
  function setMetadataURI(string memory _metadataURI) public onlyOwner {
    metadataURI = _metadataURI;
  }

  function toggleVoyagerMint() public onlyOwner {
    VOYAGER_MINT_ACTIVE = !VOYAGER_MINT_ACTIVE;
  }

  function togglePublicMint() public onlyOwner {
    PUBLIC_MINT_ACTIVE = !PUBLIC_MINT_ACTIVE;
  }

  // ADMIN ---------------------------------------------

  function addAdmin(address _address) public onlyOwner {
    isAdmin[_address] = true;
  }

  function removeAdmin(address _address) public onlyOwner {
    isAdmin[_address] = false;
  }

  // OVERRIDES ---------------------------------------------

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

  // WITHDRAW ---------------------------------------------

  function withdraw() public onlyOwner {
      (bool success,) = msg.sender.call{value: address(this).balance}("");
      require(success, "Failed to withdraw ETH.");
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"CardMinted","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":false,"internalType":"uint256","name":"points","type":"uint256"}],"name":"PointsSpent","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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VOYAGER_MINT_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cards","outputs":[{"internalType":"uint256","name":"savedCredits","type":"uint256"},{"internalType":"uint256","name":"savedBlock","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getCredits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"hasVoyagerMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_metadataURI","type":"string"}],"name":"setMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"spendCredits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleVoyagerMint","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"voyagerId","type":"uint256"}],"name":"voyagerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"voyagersContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052734591c791790f352685a29111eca67abdc878863e600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d60146101000a81548160ff0219169083151502179055506000600d60156101000a81548160ff0219169083151502179055503480156200009c57600080fd5b506040518060400160405280600c81526020017f43726561746520436172647300000000000000000000000000000000000000008152506040518060400160405280600b81526020017f435245415445434152445300000000000000000000000000000000000000000081525081600290805190602001906200012192919062000254565b5080600390805190602001906200013a92919062000254565b506200014b6200018160201b60201c565b600081905550505062000173620001676200018660201b60201c565b6200018e60201b60201c565b600160098190555062000369565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002629062000304565b90600052602060002090601f016020900481019282620002865760008555620002d2565b82601f10620002a157805160ff1916838001178555620002d2565b82800160010185558215620002d2579182015b82811115620002d1578251825591602001919060010190620002b4565b5b509050620002e19190620002e5565b5090565b5b8082111562000300576000816000905550600101620002e6565b5090565b600060028204905060018216806200031d57607f821691505b602082108114156200033457620003336200033a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61358480620003796000396000f3fe6080604052600436106102045760003560e01c80634cffe36e1161011857806395d89b41116100a0578063d5d54e131161006f578063d5d54e1314610735578063e246b46f1461075e578063e985e9c514610789578063ef7ee197146107c6578063f2fde38b146107ef57610204565b806395d89b411461067b578063a22cb465146106a6578063b88d4fde146106cf578063c87b56dd146106f857610204565b806370a08231116100e757806370a0823114610595578063715018a6146105d2578063750521f5146105e95780638da5cb5b146106125780638dc107681461063d57610204565b80634cffe36e146104db5780636352211e146104f25780636878f3e21461052f578063704802751461056c57610204565b806323b872dd1161019b57806332cb6b0c1161016a57806332cb6b0c1461042e57806338eb114d146104595780633ccfd60b146104845780634047638d1461049b57806342842e0e146104b257610204565b806323b872dd1461039357806324d7806c146103bc57806326092b83146103f95780632f463f0f1461040357610204565b8063095ea7b3116101d7578063095ea7b3146102d95780631785f53c1461030257806318160ddd1461032b57806319389b951461035657610204565b806301ffc9a71461020957806303ee438c1461024657806306fdde0314610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612945565b610818565b60405161023d9190612d8c565b60405180910390f35b34801561025257600080fd5b5061025b6108aa565b6040516102689190612da7565b60405180910390f35b34801561027d57600080fd5b50610286610938565b6040516102939190612da7565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906129e8565b6109ca565b6040516102d09190612d25565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190612905565b610a49565b005b34801561030e57600080fd5b5061032960048036038101906103249190612755565b610b8d565b005b34801561033757600080fd5b50610340610bf0565b60405161034d9190612f49565b60405180910390f35b34801561036257600080fd5b5061037d600480360381019061037891906129e8565b610c07565b60405161038a9190612f49565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b591906127ef565b610c53565b005b3480156103c857600080fd5b506103e360048036038101906103de9190612755565b610f78565b6040516103f09190612d8c565b60405180910390f35b610401610f98565b005b34801561040f57600080fd5b5061041861114a565b6040516104259190612d25565b60405180910390f35b34801561043a57600080fd5b50610443611170565b6040516104509190612f49565b60405180910390f35b34801561046557600080fd5b5061046e611176565b60405161047b9190612d8c565b60405180910390f35b34801561049057600080fd5b50610499611189565b005b3480156104a757600080fd5b506104b0611240565b005b3480156104be57600080fd5b506104d960048036038101906104d491906127ef565b611274565b005b3480156104e757600080fd5b506104f0611294565b005b3480156104fe57600080fd5b50610519600480360381019061051491906129e8565b6112c8565b6040516105269190612d25565b60405180910390f35b34801561053b57600080fd5b50610556600480360381019061055191906129e8565b6112da565b6040516105639190612d8c565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190612755565b6112fa565b005b3480156105a157600080fd5b506105bc60048036038101906105b79190612755565b61135d565b6040516105c99190612f49565b60405180910390f35b3480156105de57600080fd5b506105e7611416565b005b3480156105f557600080fd5b50610610600480360381019061060b919061299f565b61142a565b005b34801561061e57600080fd5b5061062761144c565b6040516106349190612d25565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f91906129e8565b611476565b604051610672929190612f64565b60405180910390f35b34801561068757600080fd5b5061069061149a565b60405161069d9190612da7565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c891906128c5565b61152c565b005b3480156106db57600080fd5b506106f660048036038101906106f19190612842565b6116a4565b005b34801561070457600080fd5b5061071f600480360381019061071a91906129e8565b611717565b60405161072c9190612da7565b60405180910390f35b34801561074157600080fd5b5061075c600480360381019061075791906129e8565b6117b6565b005b34801561076a57600080fd5b50610773611a6f565b6040516107809190612d8c565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab91906127af565b611a82565b6040516107bd9190612d8c565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190612a15565b611b16565b005b3480156107fb57600080fd5b5061081660048036038101906108119190612755565b611cad565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e80546108b7906131a2565b80601f01602080910402602001604051908101604052809291908181526020018280546108e3906131a2565b80156109305780601f1061090557610100808354040283529160200191610930565b820191906000526020600020905b81548152906001019060200180831161091357829003601f168201915b505050505081565b606060028054610947906131a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610973906131a2565b80156109c05780601f10610995576101008083540402835291602001916109c0565b820191906000526020600020905b8154815290600101906020018083116109a357829003601f168201915b5050505050905090565b60006109d582611d31565b610a0b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a54826112c8565b90508073ffffffffffffffffffffffffffffffffffffffff16610a75611d90565b73ffffffffffffffffffffffffffffffffffffffff1614610ad857610aa181610a9c611d90565b611a82565b610ad7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b95611d98565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610bfa611e16565b6001546000540303905090565b6000600a600083815260200190815260200160002060000154600a60008481526020019081526020016000206001015443610c4291906130b8565b610c4c9190613062565b9050919050565b6000610c5e82611e1b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cc5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610cd184611ee9565b91509150610ce78187610ce2611d90565b611f10565b610d3357610cfc86610cf7611d90565b611a82565b610d32576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d9a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610da78686866001611f54565b8015610db257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e8085610e5c888887611f5a565b7c020000000000000000000000000000000000000000000000000000000017611f82565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f08576000600185019050600060046000838152602001908152602001600020541415610f06576000548114610f05578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f708686866001611fad565b505050505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b60026009541415610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590612f29565b60405180910390fd5b60026009819055506000610ff0610bf0565b9050600d60159054906101000a900460ff16611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890612e69565b60405180910390fd5b612710600161104e610bf0565b6110589190613062565b1115611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090612f09565b60405180910390fd5b666a94d74f43000034146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990612e09565b60405180910390fd5b43600a600083815260200190815260200160002060010181905550611108336001611fb3565b7f220b53d3db6f7694ac363d118b95866fad85b0e6b18b77cbe36eb044996994a0816040516111379190612f49565b60405180910390a1506001600981905550565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61271081565b600d60149054906101000a900460ff1681565b611191611d98565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516111b790612d10565b60006040518083038185875af1925050503d80600081146111f4576040519150601f19603f3d011682016040523d82523d6000602084013e6111f9565b606091505b505090508061123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490612ec9565b60405180910390fd5b50565b611248611d98565b600d60159054906101000a900460ff1615600d60156101000a81548160ff021916908315150217905550565b61128f838383604051806020016040528060008152506116a4565b505050565b61129c611d98565b600d60149054906101000a900460ff1615600d60146101000a81548160ff021916908315150217905550565b60006112d382611e1b565b9050919050565b600c6020528060005260406000206000915054906101000a900460ff1681565b611302611d98565b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61141e611d98565b6114286000611fd1565b565b611432611d98565b80600e9080519060200190611448929190612554565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a6020528060005260406000206000915090508060000154908060010154905082565b6060600380546114a9906131a2565b80601f01602080910402602001604051908101604052809291908181526020018280546114d5906131a2565b80156115225780601f106114f757610100808354040283529160200191611522565b820191906000526020600020905b81548152906001019060200180831161150557829003601f168201915b5050505050905090565b611534611d90565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611599576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115a6611d90565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611653611d90565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116989190612d8c565b60405180910390a35050565b6116af848484610c53565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611711576116da84848484612097565b611710576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061172282611d31565b611758576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006117626121f7565b905060008151141561178357604051806020016040528060008152506117ae565b8061178d84612289565b60405160200161179e929190612cec565b6040516020818303038152906040525b915050919050565b60006117c0610bf0565b9050600d60149054906101000a900460ff16611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890612ea9565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b81526004016118839190612f49565b60206040518083038186803b15801561189b57600080fd5b505afa1580156118af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d39190612782565b73ffffffffffffffffffffffffffffffffffffffff1614611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090612e89565b60405180910390fd5b600c600083815260200190815260200160002060009054906101000a900460ff161561198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190612e49565b60405180910390fd5b6127106001611997610bf0565b6119a19190613062565b11156119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d990612f09565b60405180910390fd5b6001600c600084815260200190815260200160002060006101000a81548160ff02191690831515021790555043600a600083815260200190815260200160002060010181905550611a34336001611fb3565b7f220b53d3db6f7694ac363d118b95866fad85b0e6b18b77cbe36eb044996994a081604051611a639190612f49565b60405180910390a15050565b600d60159054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000611b2183610c07565b9050611b2c836112c8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611bae5750600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490612dc9565b60405180910390fd5b80821115611c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2790612e29565b60405180910390fd5b8181611c3c91906130b8565b600a60008581526020019081526020016000206000018190555043600a6000858152602001908152602001600020600101819055507f234ca50c5c7922eb72a858f839d3cda368f6ae573138bec95c822323b110a35582604051611ca09190612f49565b60405180910390a1505050565b611cb5611d98565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90612de9565b60405180910390fd5b611d2e81611fd1565b50565b600081611d3c611e16565b11158015611d4b575060005482105b8015611d89575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611da06122d9565b73ffffffffffffffffffffffffffffffffffffffff16611dbe61144c565b73ffffffffffffffffffffffffffffffffffffffff1614611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b90612ee9565b60405180910390fd5b565b600090565b60008082905080611e2a611e16565b11611eb257600054811015611eb15760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611eaf575b6000811415611ea5576004600083600190039350838152602001908152602001600020549050611e7a565b8092505050611ee4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f718686846122e1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611fcd8282604051806020016040528060008152506122ea565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120bd611d90565b8786866040518563ffffffff1660e01b81526004016120df9493929190612d40565b602060405180830381600087803b1580156120f957600080fd5b505af192505050801561212a57506040513d601f19601f820116820180604052508101906121279190612972565b60015b6121a4573d806000811461215a576040519150601f19603f3d011682016040523d82523d6000602084013e61215f565b606091505b5060008151141561219c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054612206906131a2565b80601f0160208091040260200160405190810160405280929190818152602001828054612232906131a2565b801561227f5780601f106122545761010080835404028352916020019161227f565b820191906000526020600020905b81548152906001019060200180831161226257829003601f168201915b5050505050905090565b606060806040510190508060405280825b6001156122c557600183039250600a81066030018353600a81049050806122c0576122c5565b61229a565b508181036020830392508083525050919050565b600033905090565b60009392505050565b6122f48383612387565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461238257600080549050600083820390505b6123346000868380600101945086612097565b61236a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061232157816000541461237f57600080fd5b50505b505050565b60008054905060008214156123c8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123d56000848385611f54565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061244c8361243d6000866000611f5a565b61244685612544565b17611f82565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146124ed57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506124b2565b506000821415612529576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061253f6000848385611fad565b505050565b60006001821460e11b9050919050565b828054612560906131a2565b90600052602060002090601f01602090048101928261258257600085556125c9565b82601f1061259b57805160ff19168380011785556125c9565b828001600101855582156125c9579182015b828111156125c85782518255916020019190600101906125ad565b5b5090506125d691906125da565b5090565b5b808211156125f35760008160009055506001016125db565b5090565b600061260a61260584612fb2565b612f8d565b90508281526020810184848401111561262657612625613297565b5b612631848285613160565b509392505050565b600061264c61264784612fe3565b612f8d565b90508281526020810184848401111561266857612667613297565b5b612673848285613160565b509392505050565b60008135905061268a816134f2565b92915050565b60008151905061269f816134f2565b92915050565b6000813590506126b481613509565b92915050565b6000813590506126c981613520565b92915050565b6000815190506126de81613520565b92915050565b600082601f8301126126f9576126f8613292565b5b81356127098482602086016125f7565b91505092915050565b600082601f83011261272757612726613292565b5b8135612737848260208601612639565b91505092915050565b60008135905061274f81613537565b92915050565b60006020828403121561276b5761276a6132a1565b5b60006127798482850161267b565b91505092915050565b600060208284031215612798576127976132a1565b5b60006127a684828501612690565b91505092915050565b600080604083850312156127c6576127c56132a1565b5b60006127d48582860161267b565b92505060206127e58582860161267b565b9150509250929050565b600080600060608486031215612808576128076132a1565b5b60006128168682870161267b565b93505060206128278682870161267b565b925050604061283886828701612740565b9150509250925092565b6000806000806080858703121561285c5761285b6132a1565b5b600061286a8782880161267b565b945050602061287b8782880161267b565b935050604061288c87828801612740565b925050606085013567ffffffffffffffff8111156128ad576128ac61329c565b5b6128b9878288016126e4565b91505092959194509250565b600080604083850312156128dc576128db6132a1565b5b60006128ea8582860161267b565b92505060206128fb858286016126a5565b9150509250929050565b6000806040838503121561291c5761291b6132a1565b5b600061292a8582860161267b565b925050602061293b85828601612740565b9150509250929050565b60006020828403121561295b5761295a6132a1565b5b6000612969848285016126ba565b91505092915050565b600060208284031215612988576129876132a1565b5b6000612996848285016126cf565b91505092915050565b6000602082840312156129b5576129b46132a1565b5b600082013567ffffffffffffffff8111156129d3576129d261329c565b5b6129df84828501612712565b91505092915050565b6000602082840312156129fe576129fd6132a1565b5b6000612a0c84828501612740565b91505092915050565b60008060408385031215612a2c57612a2b6132a1565b5b6000612a3a85828601612740565b9250506020612a4b85828601612740565b9150509250929050565b612a5e816130ec565b82525050565b612a6d816130fe565b82525050565b6000612a7e82613014565b612a88818561302a565b9350612a9881856020860161316f565b612aa1816132a6565b840191505092915050565b6000612ab78261301f565b612ac18185613046565b9350612ad181856020860161316f565b612ada816132a6565b840191505092915050565b6000612af08261301f565b612afa8185613057565b9350612b0a81856020860161316f565b80840191505092915050565b6000612b23602c83613046565b9150612b2e826132b7565b604082019050919050565b6000612b46602683613046565b9150612b5182613306565b604082019050919050565b6000612b69601383613046565b9150612b7482613355565b602082019050919050565b6000612b8c601383613046565b9150612b978261337e565b602082019050919050565b6000612baf601083613046565b9150612bba826133a7565b602082019050919050565b6000612bd2601783613046565b9150612bdd826133d0565b602082019050919050565b6000612bf5601c83613046565b9150612c00826133f9565b602082019050919050565b6000612c18601883613046565b9150612c2382613422565b602082019050919050565b6000612c3b601783613046565b9150612c468261344b565b602082019050919050565b6000612c5e602083613046565b9150612c6982613474565b602082019050919050565b6000612c8160008361303b565b9150612c8c8261349d565b600082019050919050565b6000612ca4600983613046565b9150612caf826134a0565b602082019050919050565b6000612cc7601f83613046565b9150612cd2826134c9565b602082019050919050565b612ce681613156565b82525050565b6000612cf88285612ae5565b9150612d048284612ae5565b91508190509392505050565b6000612d1b82612c74565b9150819050919050565b6000602082019050612d3a6000830184612a55565b92915050565b6000608082019050612d556000830187612a55565b612d626020830186612a55565b612d6f6040830185612cdd565b8181036060830152612d818184612a73565b905095945050505050565b6000602082019050612da16000830184612a64565b92915050565b60006020820190508181036000830152612dc18184612aac565b905092915050565b60006020820190508181036000830152612de281612b16565b9050919050565b60006020820190508181036000830152612e0281612b39565b9050919050565b60006020820190508181036000830152612e2281612b5c565b9050919050565b60006020820190508181036000830152612e4281612b7f565b9050919050565b60006020820190508181036000830152612e6281612ba2565b9050919050565b60006020820190508181036000830152612e8281612bc5565b9050919050565b60006020820190508181036000830152612ea281612be8565b9050919050565b60006020820190508181036000830152612ec281612c0b565b9050919050565b60006020820190508181036000830152612ee281612c2e565b9050919050565b60006020820190508181036000830152612f0281612c51565b9050919050565b60006020820190508181036000830152612f2281612c97565b9050919050565b60006020820190508181036000830152612f4281612cba565b9050919050565b6000602082019050612f5e6000830184612cdd565b92915050565b6000604082019050612f796000830185612cdd565b612f866020830184612cdd565b9392505050565b6000612f97612fa8565b9050612fa382826131d4565b919050565b6000604051905090565b600067ffffffffffffffff821115612fcd57612fcc613263565b5b612fd6826132a6565b9050602081019050919050565b600067ffffffffffffffff821115612ffe57612ffd613263565b5b613007826132a6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061306d82613156565b915061307883613156565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130ad576130ac613205565b5b828201905092915050565b60006130c382613156565b91506130ce83613156565b9250828210156130e1576130e0613205565b5b828203905092915050565b60006130f782613136565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561318d578082015181840152602081019050613172565b8381111561319c576000848401525b50505050565b600060028204905060018216806131ba57607f821691505b602082108114156131ce576131cd613234565b5b50919050565b6131dd826132a6565b810181811067ffffffffffffffff821117156131fc576131fb613263565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f7520646f206e6f742068617665207065726d697373696f6e20746f20737060008201527f656e6420637265646974732e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482073656e742e00000000000000000000000000600082015250565b7f4e6f7420656e6f75676820637265646974732e00000000000000000000000000600082015250565b7f416c726561647920636c61696d65642e00000000000000000000000000000000600082015250565b7f5075626c6963206d696e74206e6f74206163746976652e000000000000000000600082015250565b7f596f7520646f206e6f74206f776e207468617420566f79616765722e00000000600082015250565b7f566f7961676572206d696e74206e6f74206163746976652e0000000000000000600082015250565b7f4661696c656420746f207769746864726177204554482e000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f536f6c64206f75742e0000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6134fb816130ec565b811461350657600080fd5b50565b613512816130fe565b811461351d57600080fd5b50565b6135298161310a565b811461353457600080fd5b50565b61354081613156565b811461354b57600080fd5b5056fea264697066735822122037ecaa97f82e3052b64caca4d3af787c8c48b8491874fe2101f43b5d6de1233b64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80634cffe36e1161011857806395d89b41116100a0578063d5d54e131161006f578063d5d54e1314610735578063e246b46f1461075e578063e985e9c514610789578063ef7ee197146107c6578063f2fde38b146107ef57610204565b806395d89b411461067b578063a22cb465146106a6578063b88d4fde146106cf578063c87b56dd146106f857610204565b806370a08231116100e757806370a0823114610595578063715018a6146105d2578063750521f5146105e95780638da5cb5b146106125780638dc107681461063d57610204565b80634cffe36e146104db5780636352211e146104f25780636878f3e21461052f578063704802751461056c57610204565b806323b872dd1161019b57806332cb6b0c1161016a57806332cb6b0c1461042e57806338eb114d146104595780633ccfd60b146104845780634047638d1461049b57806342842e0e146104b257610204565b806323b872dd1461039357806324d7806c146103bc57806326092b83146103f95780632f463f0f1461040357610204565b8063095ea7b3116101d7578063095ea7b3146102d95780631785f53c1461030257806318160ddd1461032b57806319389b951461035657610204565b806301ffc9a71461020957806303ee438c1461024657806306fdde0314610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612945565b610818565b60405161023d9190612d8c565b60405180910390f35b34801561025257600080fd5b5061025b6108aa565b6040516102689190612da7565b60405180910390f35b34801561027d57600080fd5b50610286610938565b6040516102939190612da7565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906129e8565b6109ca565b6040516102d09190612d25565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190612905565b610a49565b005b34801561030e57600080fd5b5061032960048036038101906103249190612755565b610b8d565b005b34801561033757600080fd5b50610340610bf0565b60405161034d9190612f49565b60405180910390f35b34801561036257600080fd5b5061037d600480360381019061037891906129e8565b610c07565b60405161038a9190612f49565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b591906127ef565b610c53565b005b3480156103c857600080fd5b506103e360048036038101906103de9190612755565b610f78565b6040516103f09190612d8c565b60405180910390f35b610401610f98565b005b34801561040f57600080fd5b5061041861114a565b6040516104259190612d25565b60405180910390f35b34801561043a57600080fd5b50610443611170565b6040516104509190612f49565b60405180910390f35b34801561046557600080fd5b5061046e611176565b60405161047b9190612d8c565b60405180910390f35b34801561049057600080fd5b50610499611189565b005b3480156104a757600080fd5b506104b0611240565b005b3480156104be57600080fd5b506104d960048036038101906104d491906127ef565b611274565b005b3480156104e757600080fd5b506104f0611294565b005b3480156104fe57600080fd5b50610519600480360381019061051491906129e8565b6112c8565b6040516105269190612d25565b60405180910390f35b34801561053b57600080fd5b50610556600480360381019061055191906129e8565b6112da565b6040516105639190612d8c565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190612755565b6112fa565b005b3480156105a157600080fd5b506105bc60048036038101906105b79190612755565b61135d565b6040516105c99190612f49565b60405180910390f35b3480156105de57600080fd5b506105e7611416565b005b3480156105f557600080fd5b50610610600480360381019061060b919061299f565b61142a565b005b34801561061e57600080fd5b5061062761144c565b6040516106349190612d25565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f91906129e8565b611476565b604051610672929190612f64565b60405180910390f35b34801561068757600080fd5b5061069061149a565b60405161069d9190612da7565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c891906128c5565b61152c565b005b3480156106db57600080fd5b506106f660048036038101906106f19190612842565b6116a4565b005b34801561070457600080fd5b5061071f600480360381019061071a91906129e8565b611717565b60405161072c9190612da7565b60405180910390f35b34801561074157600080fd5b5061075c600480360381019061075791906129e8565b6117b6565b005b34801561076a57600080fd5b50610773611a6f565b6040516107809190612d8c565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab91906127af565b611a82565b6040516107bd9190612d8c565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190612a15565b611b16565b005b3480156107fb57600080fd5b5061081660048036038101906108119190612755565b611cad565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e80546108b7906131a2565b80601f01602080910402602001604051908101604052809291908181526020018280546108e3906131a2565b80156109305780601f1061090557610100808354040283529160200191610930565b820191906000526020600020905b81548152906001019060200180831161091357829003601f168201915b505050505081565b606060028054610947906131a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610973906131a2565b80156109c05780601f10610995576101008083540402835291602001916109c0565b820191906000526020600020905b8154815290600101906020018083116109a357829003601f168201915b5050505050905090565b60006109d582611d31565b610a0b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a54826112c8565b90508073ffffffffffffffffffffffffffffffffffffffff16610a75611d90565b73ffffffffffffffffffffffffffffffffffffffff1614610ad857610aa181610a9c611d90565b611a82565b610ad7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b95611d98565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610bfa611e16565b6001546000540303905090565b6000600a600083815260200190815260200160002060000154600a60008481526020019081526020016000206001015443610c4291906130b8565b610c4c9190613062565b9050919050565b6000610c5e82611e1b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cc5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610cd184611ee9565b91509150610ce78187610ce2611d90565b611f10565b610d3357610cfc86610cf7611d90565b611a82565b610d32576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d9a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610da78686866001611f54565b8015610db257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e8085610e5c888887611f5a565b7c020000000000000000000000000000000000000000000000000000000017611f82565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f08576000600185019050600060046000838152602001908152602001600020541415610f06576000548114610f05578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f708686866001611fad565b505050505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b60026009541415610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590612f29565b60405180910390fd5b60026009819055506000610ff0610bf0565b9050600d60159054906101000a900460ff16611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890612e69565b60405180910390fd5b612710600161104e610bf0565b6110589190613062565b1115611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090612f09565b60405180910390fd5b666a94d74f43000034146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990612e09565b60405180910390fd5b43600a600083815260200190815260200160002060010181905550611108336001611fb3565b7f220b53d3db6f7694ac363d118b95866fad85b0e6b18b77cbe36eb044996994a0816040516111379190612f49565b60405180910390a1506001600981905550565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61271081565b600d60149054906101000a900460ff1681565b611191611d98565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516111b790612d10565b60006040518083038185875af1925050503d80600081146111f4576040519150601f19603f3d011682016040523d82523d6000602084013e6111f9565b606091505b505090508061123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490612ec9565b60405180910390fd5b50565b611248611d98565b600d60159054906101000a900460ff1615600d60156101000a81548160ff021916908315150217905550565b61128f838383604051806020016040528060008152506116a4565b505050565b61129c611d98565b600d60149054906101000a900460ff1615600d60146101000a81548160ff021916908315150217905550565b60006112d382611e1b565b9050919050565b600c6020528060005260406000206000915054906101000a900460ff1681565b611302611d98565b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61141e611d98565b6114286000611fd1565b565b611432611d98565b80600e9080519060200190611448929190612554565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a6020528060005260406000206000915090508060000154908060010154905082565b6060600380546114a9906131a2565b80601f01602080910402602001604051908101604052809291908181526020018280546114d5906131a2565b80156115225780601f106114f757610100808354040283529160200191611522565b820191906000526020600020905b81548152906001019060200180831161150557829003601f168201915b5050505050905090565b611534611d90565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611599576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115a6611d90565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611653611d90565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116989190612d8c565b60405180910390a35050565b6116af848484610c53565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611711576116da84848484612097565b611710576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061172282611d31565b611758576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006117626121f7565b905060008151141561178357604051806020016040528060008152506117ae565b8061178d84612289565b60405160200161179e929190612cec565b6040516020818303038152906040525b915050919050565b60006117c0610bf0565b9050600d60149054906101000a900460ff16611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890612ea9565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b81526004016118839190612f49565b60206040518083038186803b15801561189b57600080fd5b505afa1580156118af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d39190612782565b73ffffffffffffffffffffffffffffffffffffffff1614611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090612e89565b60405180910390fd5b600c600083815260200190815260200160002060009054906101000a900460ff161561198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190612e49565b60405180910390fd5b6127106001611997610bf0565b6119a19190613062565b11156119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d990612f09565b60405180910390fd5b6001600c600084815260200190815260200160002060006101000a81548160ff02191690831515021790555043600a600083815260200190815260200160002060010181905550611a34336001611fb3565b7f220b53d3db6f7694ac363d118b95866fad85b0e6b18b77cbe36eb044996994a081604051611a639190612f49565b60405180910390a15050565b600d60159054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000611b2183610c07565b9050611b2c836112c8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611bae5750600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490612dc9565b60405180910390fd5b80821115611c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2790612e29565b60405180910390fd5b8181611c3c91906130b8565b600a60008581526020019081526020016000206000018190555043600a6000858152602001908152602001600020600101819055507f234ca50c5c7922eb72a858f839d3cda368f6ae573138bec95c822323b110a35582604051611ca09190612f49565b60405180910390a1505050565b611cb5611d98565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90612de9565b60405180910390fd5b611d2e81611fd1565b50565b600081611d3c611e16565b11158015611d4b575060005482105b8015611d89575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611da06122d9565b73ffffffffffffffffffffffffffffffffffffffff16611dbe61144c565b73ffffffffffffffffffffffffffffffffffffffff1614611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b90612ee9565b60405180910390fd5b565b600090565b60008082905080611e2a611e16565b11611eb257600054811015611eb15760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611eaf575b6000811415611ea5576004600083600190039350838152602001908152602001600020549050611e7a565b8092505050611ee4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f718686846122e1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611fcd8282604051806020016040528060008152506122ea565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120bd611d90565b8786866040518563ffffffff1660e01b81526004016120df9493929190612d40565b602060405180830381600087803b1580156120f957600080fd5b505af192505050801561212a57506040513d601f19601f820116820180604052508101906121279190612972565b60015b6121a4573d806000811461215a576040519150601f19603f3d011682016040523d82523d6000602084013e61215f565b606091505b5060008151141561219c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054612206906131a2565b80601f0160208091040260200160405190810160405280929190818152602001828054612232906131a2565b801561227f5780601f106122545761010080835404028352916020019161227f565b820191906000526020600020905b81548152906001019060200180831161226257829003601f168201915b5050505050905090565b606060806040510190508060405280825b6001156122c557600183039250600a81066030018353600a81049050806122c0576122c5565b61229a565b508181036020830392508083525050919050565b600033905090565b60009392505050565b6122f48383612387565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461238257600080549050600083820390505b6123346000868380600101945086612097565b61236a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061232157816000541461237f57600080fd5b50505b505050565b60008054905060008214156123c8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123d56000848385611f54565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061244c8361243d6000866000611f5a565b61244685612544565b17611f82565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146124ed57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506124b2565b506000821415612529576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061253f6000848385611fad565b505050565b60006001821460e11b9050919050565b828054612560906131a2565b90600052602060002090601f01602090048101928261258257600085556125c9565b82601f1061259b57805160ff19168380011785556125c9565b828001600101855582156125c9579182015b828111156125c85782518255916020019190600101906125ad565b5b5090506125d691906125da565b5090565b5b808211156125f35760008160009055506001016125db565b5090565b600061260a61260584612fb2565b612f8d565b90508281526020810184848401111561262657612625613297565b5b612631848285613160565b509392505050565b600061264c61264784612fe3565b612f8d565b90508281526020810184848401111561266857612667613297565b5b612673848285613160565b509392505050565b60008135905061268a816134f2565b92915050565b60008151905061269f816134f2565b92915050565b6000813590506126b481613509565b92915050565b6000813590506126c981613520565b92915050565b6000815190506126de81613520565b92915050565b600082601f8301126126f9576126f8613292565b5b81356127098482602086016125f7565b91505092915050565b600082601f83011261272757612726613292565b5b8135612737848260208601612639565b91505092915050565b60008135905061274f81613537565b92915050565b60006020828403121561276b5761276a6132a1565b5b60006127798482850161267b565b91505092915050565b600060208284031215612798576127976132a1565b5b60006127a684828501612690565b91505092915050565b600080604083850312156127c6576127c56132a1565b5b60006127d48582860161267b565b92505060206127e58582860161267b565b9150509250929050565b600080600060608486031215612808576128076132a1565b5b60006128168682870161267b565b93505060206128278682870161267b565b925050604061283886828701612740565b9150509250925092565b6000806000806080858703121561285c5761285b6132a1565b5b600061286a8782880161267b565b945050602061287b8782880161267b565b935050604061288c87828801612740565b925050606085013567ffffffffffffffff8111156128ad576128ac61329c565b5b6128b9878288016126e4565b91505092959194509250565b600080604083850312156128dc576128db6132a1565b5b60006128ea8582860161267b565b92505060206128fb858286016126a5565b9150509250929050565b6000806040838503121561291c5761291b6132a1565b5b600061292a8582860161267b565b925050602061293b85828601612740565b9150509250929050565b60006020828403121561295b5761295a6132a1565b5b6000612969848285016126ba565b91505092915050565b600060208284031215612988576129876132a1565b5b6000612996848285016126cf565b91505092915050565b6000602082840312156129b5576129b46132a1565b5b600082013567ffffffffffffffff8111156129d3576129d261329c565b5b6129df84828501612712565b91505092915050565b6000602082840312156129fe576129fd6132a1565b5b6000612a0c84828501612740565b91505092915050565b60008060408385031215612a2c57612a2b6132a1565b5b6000612a3a85828601612740565b9250506020612a4b85828601612740565b9150509250929050565b612a5e816130ec565b82525050565b612a6d816130fe565b82525050565b6000612a7e82613014565b612a88818561302a565b9350612a9881856020860161316f565b612aa1816132a6565b840191505092915050565b6000612ab78261301f565b612ac18185613046565b9350612ad181856020860161316f565b612ada816132a6565b840191505092915050565b6000612af08261301f565b612afa8185613057565b9350612b0a81856020860161316f565b80840191505092915050565b6000612b23602c83613046565b9150612b2e826132b7565b604082019050919050565b6000612b46602683613046565b9150612b5182613306565b604082019050919050565b6000612b69601383613046565b9150612b7482613355565b602082019050919050565b6000612b8c601383613046565b9150612b978261337e565b602082019050919050565b6000612baf601083613046565b9150612bba826133a7565b602082019050919050565b6000612bd2601783613046565b9150612bdd826133d0565b602082019050919050565b6000612bf5601c83613046565b9150612c00826133f9565b602082019050919050565b6000612c18601883613046565b9150612c2382613422565b602082019050919050565b6000612c3b601783613046565b9150612c468261344b565b602082019050919050565b6000612c5e602083613046565b9150612c6982613474565b602082019050919050565b6000612c8160008361303b565b9150612c8c8261349d565b600082019050919050565b6000612ca4600983613046565b9150612caf826134a0565b602082019050919050565b6000612cc7601f83613046565b9150612cd2826134c9565b602082019050919050565b612ce681613156565b82525050565b6000612cf88285612ae5565b9150612d048284612ae5565b91508190509392505050565b6000612d1b82612c74565b9150819050919050565b6000602082019050612d3a6000830184612a55565b92915050565b6000608082019050612d556000830187612a55565b612d626020830186612a55565b612d6f6040830185612cdd565b8181036060830152612d818184612a73565b905095945050505050565b6000602082019050612da16000830184612a64565b92915050565b60006020820190508181036000830152612dc18184612aac565b905092915050565b60006020820190508181036000830152612de281612b16565b9050919050565b60006020820190508181036000830152612e0281612b39565b9050919050565b60006020820190508181036000830152612e2281612b5c565b9050919050565b60006020820190508181036000830152612e4281612b7f565b9050919050565b60006020820190508181036000830152612e6281612ba2565b9050919050565b60006020820190508181036000830152612e8281612bc5565b9050919050565b60006020820190508181036000830152612ea281612be8565b9050919050565b60006020820190508181036000830152612ec281612c0b565b9050919050565b60006020820190508181036000830152612ee281612c2e565b9050919050565b60006020820190508181036000830152612f0281612c51565b9050919050565b60006020820190508181036000830152612f2281612c97565b9050919050565b60006020820190508181036000830152612f4281612cba565b9050919050565b6000602082019050612f5e6000830184612cdd565b92915050565b6000604082019050612f796000830185612cdd565b612f866020830184612cdd565b9392505050565b6000612f97612fa8565b9050612fa382826131d4565b919050565b6000604051905090565b600067ffffffffffffffff821115612fcd57612fcc613263565b5b612fd6826132a6565b9050602081019050919050565b600067ffffffffffffffff821115612ffe57612ffd613263565b5b613007826132a6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061306d82613156565b915061307883613156565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130ad576130ac613205565b5b828201905092915050565b60006130c382613156565b91506130ce83613156565b9250828210156130e1576130e0613205565b5b828203905092915050565b60006130f782613136565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561318d578082015181840152602081019050613172565b8381111561319c576000848401525b50505050565b600060028204905060018216806131ba57607f821691505b602082108114156131ce576131cd613234565b5b50919050565b6131dd826132a6565b810181811067ffffffffffffffff821117156131fc576131fb613263565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f7520646f206e6f742068617665207065726d697373696f6e20746f20737060008201527f656e6420637265646974732e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482073656e742e00000000000000000000000000600082015250565b7f4e6f7420656e6f75676820637265646974732e00000000000000000000000000600082015250565b7f416c726561647920636c61696d65642e00000000000000000000000000000000600082015250565b7f5075626c6963206d696e74206e6f74206163746976652e000000000000000000600082015250565b7f596f7520646f206e6f74206f776e207468617420566f79616765722e00000000600082015250565b7f566f7961676572206d696e74206e6f74206163746976652e0000000000000000600082015250565b7f4661696c656420746f207769746864726177204554482e000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f536f6c64206f75742e0000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6134fb816130ec565b811461350657600080fd5b50565b613512816130fe565b811461351d57600080fd5b50565b6135298161310a565b811461353457600080fd5b50565b61354081613156565b811461354b57600080fd5b5056fea264697066735822122037ecaa97f82e3052b64caca4d3af787c8c48b8491874fe2101f43b5d6de1233b64736f6c63430008070033

Deployed Bytecode Sourcemap

57355:3479:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24787:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57950:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25689:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32172:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31613:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60329:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21440:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59152:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35879:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57632:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58672:412;;;:::i;:::-;;57733:76;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57901:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57814:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60660:171;;;;;;;;;;;;;:::i;:::-;;60069:98;;;;;;;;;;;;;:::i;:::-;;38792:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59962:101;;;;;;;;;;;;;:::i;:::-;;27082:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57676:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60233:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22624:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5535:103;;;;;;;;;;;;;:::i;:::-;;59848:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4887:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57590:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;25865:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32730:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39575:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26075:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58102:564;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57858:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33195:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59315:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5793:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24787:639;24872:4;25211:10;25196:25;;:11;:25;;;;:102;;;;25288:10;25273:25;;:11;:25;;;;25196:102;:179;;;;25365:10;25350:25;;:11;:25;;;;25196:179;25176:199;;24787:639;;;:::o;57950:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25689:100::-;25743:13;25776:5;25769:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25689:100;:::o;32172:218::-;32248:7;32273:16;32281:7;32273;:16::i;:::-;32268:64;;32298:34;;;;;;;;;;;;;;32268:64;32352:15;:24;32368:7;32352:24;;;;;;;;;;;:30;;;;;;;;;;;;32345:37;;32172:218;;;:::o;31613:400::-;31694:13;31710:16;31718:7;31710;:16::i;:::-;31694:32;;31766:5;31743:28;;:19;:17;:19::i;:::-;:28;;;31739:175;;31791:44;31808:5;31815:19;:17;:19::i;:::-;31791:16;:44::i;:::-;31786:128;;31863:35;;;;;;;;;;;;;;31786:128;31739:175;31959:2;31926:15;:24;31942:7;31926:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31997:7;31993:2;31977:28;;31986:5;31977:28;;;;;;;;;;;;31683:330;31613:400;;:::o;60329:94::-;4773:13;:11;:13::i;:::-;60412:5:::1;60392:7;:17;60400:8;60392:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;60329:94:::0;:::o;21440:323::-;21501:7;21729:15;:13;:15::i;:::-;21714:12;;21698:13;;:28;:46;21691:53;;21440:323;:::o;59152:157::-;59210:7;59276:5;:14;59282:7;59276:14;;;;;;;;;;;:27;;;59248:5;:14;59254:7;59248:14;;;;;;;;;;;:25;;;59233:12;:40;;;;:::i;:::-;:70;;;;:::i;:::-;59226:77;;59152:157;;;:::o;35879:2817::-;36013:27;36043;36062:7;36043:18;:27::i;:::-;36013:57;;36128:4;36087:45;;36103:19;36087:45;;;36083:86;;36141:28;;;;;;;;;;;;;;36083:86;36183:27;36212:23;36239:35;36266:7;36239:26;:35::i;:::-;36182:92;;;;36374:68;36399:15;36416:4;36422:19;:17;:19::i;:::-;36374:24;:68::i;:::-;36369:180;;36462:43;36479:4;36485:19;:17;:19::i;:::-;36462:16;:43::i;:::-;36457:92;;36514:35;;;;;;;;;;;;;;36457:92;36369:180;36580:1;36566:16;;:2;:16;;;36562:52;;;36591:23;;;;;;;;;;;;;;36562:52;36627:43;36649:4;36655:2;36659:7;36668:1;36627:21;:43::i;:::-;36763:15;36760:160;;;36903:1;36882:19;36875:30;36760:160;37300:18;:24;37319:4;37300:24;;;;;;;;;;;;;;;;37298:26;;;;;;;;;;;;37369:18;:22;37388:2;37369:22;;;;;;;;;;;;;;;;37367:24;;;;;;;;;;;37691:146;37728:2;37777:45;37792:4;37798:2;37802:19;37777:14;:45::i;:::-;17839:8;37749:73;37691:18;:146::i;:::-;37662:17;:26;37680:7;37662:26;;;;;;;;;;;:175;;;;38008:1;17839:8;37957:19;:47;:52;37953:627;;;38030:19;38062:1;38052:7;:11;38030:33;;38219:1;38185:17;:30;38203:11;38185:30;;;;;;;;;;;;:35;38181:384;;;38323:13;;38308:11;:28;38304:242;;38503:19;38470:17;:30;38488:11;38470:30;;;;;;;;;;;:52;;;;38304:242;38181:384;38011:569;37953:627;38627:7;38623:2;38608:27;;38617:4;38608:27;;;;;;;;;;;;38646:42;38667:4;38673:2;38677:7;38686:1;38646:20;:42::i;:::-;36002:2694;;;35879:2817;;;:::o;57632:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;58672:412::-;1812:1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;58731:15:::1;58749:13;:11;:13::i;:::-;58731:31;;58781:18;;;;;;;;;;;58773:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57938:5;58860:1;58844:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:31;;58836:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;58919:9;58906;:22;58898:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;58997:12;58969:5;:14;58975:7;58969:14;;;;;;;;;;;:25;;:40;;;;59019:24;59029:10;59041:1;59019:9;:24::i;:::-;59059:19;59070:7;59059:19;;;;;;:::i;:::-;;;;;;;;58722:362;1768:1:::0;2722:7;:22;;;;58672:412::o;57733:76::-;;;;;;;;;;;;;:::o;57901:42::-;57938:5;57901:42;:::o;57814:39::-;;;;;;;;;;;;;:::o;60660:171::-;4773:13;:11;:13::i;:::-;60707:12:::1;60724:10;:15;;60747:21;60724:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60706:67;;;60790:7;60782:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;60697:134;60660:171::o:0;60069:98::-;4773:13;:11;:13::i;:::-;60143:18:::1;;;;;;;;;;;60142:19;60121:18;;:40;;;;;;;;;;;;;;;;;;60069:98::o:0;38792:185::-;38930:39;38947:4;38953:2;38957:7;38930:39;;;;;;;;;;;;:16;:39::i;:::-;38792:185;;;:::o;59962:101::-;4773:13;:11;:13::i;:::-;60038:19:::1;;;;;;;;;;;60037:20;60015:19;;:42;;;;;;;;;;;;;;;;;;59962:101::o:0;27082:152::-;27154:7;27197:27;27216:7;27197:18;:27::i;:::-;27174:52;;27082:152;;;:::o;57676:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;60233:90::-;4773:13;:11;:13::i;:::-;60313:4:::1;60293:7;:17;60301:8;60293:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;60233:90:::0;:::o;22624:233::-;22696:7;22737:1;22720:19;;:5;:19;;;22716:60;;;22748:28;;;;;;;;;;;;;;22716:60;16783:13;22794:18;:25;22813:5;22794:25;;;;;;;;;;;;;;;;:55;22787:62;;22624:233;;;:::o;5535:103::-;4773:13;:11;:13::i;:::-;5600:30:::1;5627:1;5600:18;:30::i;:::-;5535:103::o:0;59848:108::-;4773:13;:11;:13::i;:::-;59938:12:::1;59924:11;:26;;;;;;;;;;;;:::i;:::-;;59848:108:::0;:::o;4887:87::-;4933:7;4960:6;;;;;;;;;;;4953:13;;4887:87;:::o;57590:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25865:104::-;25921:13;25954:7;25947:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25865:104;:::o;32730:308::-;32841:19;:17;:19::i;:::-;32829:31;;:8;:31;;;32825:61;;;32869:17;;;;;;;;;;;;;;32825:61;32951:8;32899:18;:39;32918:19;:17;:19::i;:::-;32899:39;;;;;;;;;;;;;;;:49;32939:8;32899:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33011:8;32975:55;;32990:19;:17;:19::i;:::-;32975:55;;;33021:8;32975:55;;;;;;:::i;:::-;;;;;;;;32730:308;;:::o;39575:399::-;39742:31;39755:4;39761:2;39765:7;39742:12;:31::i;:::-;39806:1;39788:2;:14;;;:19;39784:183;;39827:56;39858:4;39864:2;39868:7;39877:5;39827:30;:56::i;:::-;39822:145;;39911:40;;;;;;;;;;;;;;39822:145;39784:183;39575:399;;;;:::o;26075:318::-;26148:13;26179:16;26187:7;26179;:16::i;:::-;26174:59;;26204:29;;;;;;;;;;;;;;26174:59;26246:21;26270:10;:8;:10::i;:::-;26246:34;;26323:1;26304:7;26298:21;:26;;:87;;;;;;;;;;;;;;;;;26351:7;26360:18;26370:7;26360:9;:18::i;:::-;26334:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26298:87;26291:94;;;26075:318;;;:::o;58102:564::-;58158:15;58176:13;:11;:13::i;:::-;58158:31;;58208:19;;;;;;;;;;;58200:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;58323:10;58273:60;;58283:16;;;;;;;;;;;58273:35;;;58309:9;58273:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:60;;;58265:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;58384:16;:27;58401:9;58384:27;;;;;;;;;;;;;;;;;;;;;58383:28;58375:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;57938:5;58465:1;58449:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:31;;58441:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;58538:4;58508:16;:27;58525:9;58508:27;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;58581:12;58553:5;:14;58559:7;58553:14;;;;;;;;;;;:25;;:40;;;;58603:24;58613:10;58625:1;58603:9;:24::i;:::-;58641:19;58652:7;58641:19;;;;;;:::i;:::-;;;;;;;;58149:517;58102:564;:::o;57858:38::-;;;;;;;;;;;;;:::o;33195:164::-;33292:4;33316:18;:25;33335:5;33316:25;;;;;;;;;;;;;;;:35;33342:8;33316:35;;;;;;;;;;;;;;;;;;;;;;;;;33309:42;;33195:164;;;;:::o;59315:451::-;59386:22;59411:19;59422:7;59411:10;:19::i;:::-;59386:44;;59461:16;59469:7;59461;:16::i;:::-;59447:30;;:10;:30;;;:53;;;;59481:7;:19;59489:10;59481:19;;;;;;;;;;;;;;;;;;;;;;;;;59447:53;59439:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;59576:14;59564:8;:26;;59556:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59670:8;59653:14;:25;;;;:::i;:::-;59623:5;:14;59629:7;59623:14;;;;;;;;;;;:27;;:55;;;;59713:12;59685:5;:14;59691:7;59685:14;;;;;;;;;;;:25;;:40;;;;59739:21;59751:8;59739:21;;;;;;:::i;:::-;;;;;;;;59379:387;59315:451;;:::o;5793:201::-;4773:13;:11;:13::i;:::-;5902:1:::1;5882:22;;:8;:22;;;;5874:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5958:28;5977:8;5958:18;:28::i;:::-;5793:201:::0;:::o;33617:282::-;33682:4;33738:7;33719:15;:13;:15::i;:::-;:26;;:66;;;;;33772:13;;33762:7;:23;33719:66;:153;;;;;33871:1;17559:8;33823:17;:26;33841:7;33823:26;;;;;;;;;;;;:44;:49;33719:153;33699:173;;33617:282;;;:::o;55383:105::-;55443:7;55470:10;55463:17;;55383:105;:::o;5052:132::-;5127:12;:10;:12::i;:::-;5116:23;;:7;:5;:7::i;:::-;:23;;;5108:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5052:132::o;20956:92::-;21012:7;20956:92;:::o;28237:1275::-;28304:7;28324:12;28339:7;28324:22;;28407:4;28388:15;:13;:15::i;:::-;:23;28384:1061;;28441:13;;28434:4;:20;28430:1015;;;28479:14;28496:17;:23;28514:4;28496:23;;;;;;;;;;;;28479:40;;28613:1;17559:8;28585:6;:24;:29;28581:845;;;29250:113;29267:1;29257:6;:11;29250:113;;;29310:17;:25;29328:6;;;;;;;29310:25;;;;;;;;;;;;29301:34;;29250:113;;;29396:6;29389:13;;;;;;28581:845;28456:989;28430:1015;28384:1061;29473:31;;;;;;;;;;;;;;28237:1275;;;;:::o;34780:479::-;34882:27;34911:23;34952:38;34993:15;:24;35009:7;34993:24;;;;;;;;;;;34952:65;;35164:18;35141:41;;35221:19;35215:26;35196:45;;35126:126;34780:479;;;:::o;34008:659::-;34157:11;34322:16;34315:5;34311:28;34302:37;;34482:16;34471:9;34467:32;34454:45;;34632:15;34621:9;34618:30;34610:5;34599:9;34596:20;34593:56;34583:66;;34008:659;;;;;:::o;40636:159::-;;;;;:::o;54692:311::-;54827:7;54847:16;17963:3;54873:19;:41;;54847:68;;17963:3;54941:31;54952:4;54958:2;54962:9;54941:10;:31::i;:::-;54933:40;;:62;;54926:69;;;54692:311;;;;;:::o;30060:450::-;30140:14;30308:16;30301:5;30297:28;30288:37;;30485:5;30471:11;30446:23;30442:41;30439:52;30432:5;30429:63;30419:73;;30060:450;;;;:::o;41460:158::-;;;;;:::o;49215:112::-;49292:27;49302:2;49306:8;49292:27;;;;;;;;;;;;:9;:27::i;:::-;49215:112;;:::o;6154:191::-;6228:16;6247:6;;;;;;;;;;;6228:25;;6273:8;6264:6;;:17;;;;;;;;;;;;;;;;;;6328:8;6297:40;;6318:8;6297:40;;;;;;;;;;;;6217:128;6154:191;:::o;42058:716::-;42221:4;42267:2;42242:45;;;42288:19;:17;:19::i;:::-;42309:4;42315:7;42324:5;42242:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42238:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42542:1;42525:6;:13;:18;42521:235;;;42571:40;;;;;;;;;;;;;;42521:235;42714:6;42708:13;42699:6;42695:2;42691:15;42684:38;42238:529;42411:54;;;42401:64;;;:6;:64;;;;42394:71;;;42058:716;;;;;;:::o;60493:98::-;60545:13;60574:11;60567:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60493:98;:::o;55590:1581::-;55655:17;56080:4;56073;56067:11;56063:22;56056:29;;56172:3;56166:4;56159:17;56278:3;56517:5;56499:428;56525:1;56499:428;;;56565:1;56560:3;56556:11;56549:18;;56736:2;56730:4;56726:13;56722:2;56718:22;56713:3;56705:36;56830:2;56824:4;56820:13;56812:21;;56897:4;56887:25;;56905:5;;56887:25;56499:428;;;56503:21;56966:3;56961;56957:13;57081:4;57076:3;57072:14;57065:21;;57146:6;57141:3;57134:19;55694:1470;;55590:1581;;;:::o;3438:98::-;3491:7;3518:10;3511:17;;3438:98;:::o;54393:147::-;54530:6;54393:147;;;;;:::o;48442:689::-;48573:19;48579:2;48583:8;48573:5;:19::i;:::-;48652:1;48634:2;:14;;;:19;48630:483;;48674:11;48688:13;;48674:27;;48720:13;48742:8;48736:3;:14;48720:30;;48769:233;48800:62;48839:1;48843:2;48847:7;;;;;;48856:5;48800:30;:62::i;:::-;48795:167;;48898:40;;;;;;;;;;;;;;48795:167;48997:3;48989:5;:11;48769:233;;49084:3;49067:13;;:20;49063:34;;49089:8;;;49063:34;48655:458;;48630:483;48442:689;;;:::o;43236:2454::-;43309:20;43332:13;;43309:36;;43372:1;43360:8;:13;43356:44;;;43382:18;;;;;;;;;;;;;;43356:44;43413:61;43443:1;43447:2;43451:12;43465:8;43413:21;:61::i;:::-;43957:1;16921:2;43927:1;:26;;43926:32;43914:8;:45;43888:18;:22;43907:2;43888:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44236:139;44273:2;44327:33;44350:1;44354:2;44358:1;44327:14;:33::i;:::-;44294:30;44315:8;44294:20;:30::i;:::-;:66;44236:18;:139::i;:::-;44202:17;:31;44220:12;44202:31;;;;;;;;;;;:173;;;;44392:16;44423:11;44452:8;44437:12;:23;44423:37;;44707:16;44703:2;44699:25;44687:37;;45079:12;45039:8;44998:1;44936:25;44877:1;44816;44789:335;45204:1;45190:12;45186:20;45144:346;45245:3;45236:7;45233:16;45144:346;;45463:7;45453:8;45450:1;45423:25;45420:1;45417;45412:59;45298:1;45289:7;45285:15;45274:26;;45144:346;;;45148:77;45535:1;45523:8;:13;45519:45;;;45545:19;;;;;;;;;;;;;;45519:45;45597:3;45581:13;:19;;;;43662:1950;;45622:60;45651:1;45655:2;45659:12;45673:8;45622:20;:60::i;:::-;43298:2392;43236:2454;;:::o;30612:324::-;30682:14;30915:1;30905:8;30902:15;30876:24;30872:46;30862:56;;30612:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:143::-;1043:5;1074:6;1068:13;1059:22;;1090:33;1117:5;1090:33;:::i;:::-;986:143;;;;:::o;1135:133::-;1178:5;1216:6;1203:20;1194:29;;1232:30;1256:5;1232:30;:::i;:::-;1135:133;;;;:::o;1274:137::-;1319:5;1357:6;1344:20;1335:29;;1373:32;1399:5;1373:32;:::i;:::-;1274:137;;;;:::o;1417:141::-;1473:5;1504:6;1498:13;1489:22;;1520:32;1546:5;1520:32;:::i;:::-;1417:141;;;;:::o;1577:338::-;1632:5;1681:3;1674:4;1666:6;1662:17;1658:27;1648:122;;1689:79;;:::i;:::-;1648:122;1806:6;1793:20;1831:78;1905:3;1897:6;1890:4;1882:6;1878:17;1831:78;:::i;:::-;1822:87;;1638:277;1577:338;;;;:::o;1935:340::-;1991:5;2040:3;2033:4;2025:6;2021:17;2017:27;2007:122;;2048:79;;:::i;:::-;2007:122;2165:6;2152:20;2190:79;2265:3;2257:6;2250:4;2242:6;2238:17;2190:79;:::i;:::-;2181:88;;1997:278;1935:340;;;;:::o;2281:139::-;2327:5;2365:6;2352:20;2343:29;;2381:33;2408:5;2381:33;:::i;:::-;2281:139;;;;:::o;2426:329::-;2485:6;2534:2;2522:9;2513:7;2509:23;2505:32;2502:119;;;2540:79;;:::i;:::-;2502:119;2660:1;2685:53;2730:7;2721:6;2710:9;2706:22;2685:53;:::i;:::-;2675:63;;2631:117;2426:329;;;;:::o;2761:351::-;2831:6;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:64;3087:7;3078:6;3067:9;3063:22;3031:64;:::i;:::-;3021:74;;2977:128;2761:351;;;;:::o;3118:474::-;3186:6;3194;3243:2;3231:9;3222:7;3218:23;3214:32;3211:119;;;3249:79;;:::i;:::-;3211:119;3369:1;3394:53;3439:7;3430:6;3419:9;3415:22;3394:53;:::i;:::-;3384:63;;3340:117;3496:2;3522:53;3567:7;3558:6;3547:9;3543:22;3522:53;:::i;:::-;3512:63;;3467:118;3118:474;;;;;:::o;3598:619::-;3675:6;3683;3691;3740:2;3728:9;3719:7;3715:23;3711:32;3708:119;;;3746:79;;:::i;:::-;3708:119;3866:1;3891:53;3936:7;3927:6;3916:9;3912:22;3891:53;:::i;:::-;3881:63;;3837:117;3993:2;4019:53;4064:7;4055:6;4044:9;4040:22;4019:53;:::i;:::-;4009:63;;3964:118;4121:2;4147:53;4192:7;4183:6;4172:9;4168:22;4147:53;:::i;:::-;4137:63;;4092:118;3598:619;;;;;:::o;4223:943::-;4318:6;4326;4334;4342;4391:3;4379:9;4370:7;4366:23;4362:33;4359:120;;;4398:79;;:::i;:::-;4359:120;4518:1;4543:53;4588:7;4579:6;4568:9;4564:22;4543:53;:::i;:::-;4533:63;;4489:117;4645:2;4671:53;4716:7;4707:6;4696:9;4692:22;4671:53;:::i;:::-;4661:63;;4616:118;4773:2;4799:53;4844:7;4835:6;4824:9;4820:22;4799:53;:::i;:::-;4789:63;;4744:118;4929:2;4918:9;4914:18;4901:32;4960:18;4952:6;4949:30;4946:117;;;4982:79;;:::i;:::-;4946:117;5087:62;5141:7;5132:6;5121:9;5117:22;5087:62;:::i;:::-;5077:72;;4872:287;4223:943;;;;;;;:::o;5172:468::-;5237:6;5245;5294:2;5282:9;5273:7;5269:23;5265:32;5262:119;;;5300:79;;:::i;:::-;5262:119;5420:1;5445:53;5490:7;5481:6;5470:9;5466:22;5445:53;:::i;:::-;5435:63;;5391:117;5547:2;5573:50;5615:7;5606:6;5595:9;5591:22;5573:50;:::i;:::-;5563:60;;5518:115;5172:468;;;;;:::o;5646:474::-;5714:6;5722;5771:2;5759:9;5750:7;5746:23;5742:32;5739:119;;;5777:79;;:::i;:::-;5739:119;5897:1;5922:53;5967:7;5958:6;5947:9;5943:22;5922:53;:::i;:::-;5912:63;;5868:117;6024:2;6050:53;6095:7;6086:6;6075:9;6071:22;6050:53;:::i;:::-;6040:63;;5995:118;5646:474;;;;;:::o;6126:327::-;6184:6;6233:2;6221:9;6212:7;6208:23;6204:32;6201:119;;;6239:79;;:::i;:::-;6201:119;6359:1;6384:52;6428:7;6419:6;6408:9;6404:22;6384:52;:::i;:::-;6374:62;;6330:116;6126:327;;;;:::o;6459:349::-;6528:6;6577:2;6565:9;6556:7;6552:23;6548:32;6545:119;;;6583:79;;:::i;:::-;6545:119;6703:1;6728:63;6783:7;6774:6;6763:9;6759:22;6728:63;:::i;:::-;6718:73;;6674:127;6459:349;;;;:::o;6814:509::-;6883:6;6932:2;6920:9;6911:7;6907:23;6903:32;6900:119;;;6938:79;;:::i;:::-;6900:119;7086:1;7075:9;7071:17;7058:31;7116:18;7108:6;7105:30;7102:117;;;7138:79;;:::i;:::-;7102:117;7243:63;7298:7;7289:6;7278:9;7274:22;7243:63;:::i;:::-;7233:73;;7029:287;6814:509;;;;:::o;7329:329::-;7388:6;7437:2;7425:9;7416:7;7412:23;7408:32;7405:119;;;7443:79;;:::i;:::-;7405:119;7563:1;7588:53;7633:7;7624:6;7613:9;7609:22;7588:53;:::i;:::-;7578:63;;7534:117;7329:329;;;;:::o;7664:474::-;7732:6;7740;7789:2;7777:9;7768:7;7764:23;7760:32;7757:119;;;7795:79;;:::i;:::-;7757:119;7915:1;7940:53;7985:7;7976:6;7965:9;7961:22;7940:53;:::i;:::-;7930:63;;7886:117;8042:2;8068:53;8113:7;8104:6;8093:9;8089:22;8068:53;:::i;:::-;8058:63;;8013:118;7664:474;;;;;:::o;8144:118::-;8231:24;8249:5;8231:24;:::i;:::-;8226:3;8219:37;8144:118;;:::o;8268:109::-;8349:21;8364:5;8349:21;:::i;:::-;8344:3;8337:34;8268:109;;:::o;8383:360::-;8469:3;8497:38;8529:5;8497:38;:::i;:::-;8551:70;8614:6;8609:3;8551:70;:::i;:::-;8544:77;;8630:52;8675:6;8670:3;8663:4;8656:5;8652:16;8630:52;:::i;:::-;8707:29;8729:6;8707:29;:::i;:::-;8702:3;8698:39;8691:46;;8473:270;8383:360;;;;:::o;8749:364::-;8837:3;8865:39;8898:5;8865:39;:::i;:::-;8920:71;8984:6;8979:3;8920:71;:::i;:::-;8913:78;;9000:52;9045:6;9040:3;9033:4;9026:5;9022:16;9000:52;:::i;:::-;9077:29;9099:6;9077:29;:::i;:::-;9072:3;9068:39;9061:46;;8841:272;8749:364;;;;:::o;9119:377::-;9225:3;9253:39;9286:5;9253:39;:::i;:::-;9308:89;9390:6;9385:3;9308:89;:::i;:::-;9301:96;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:6;9478:3;9474:16;9467:23;;9229:267;9119:377;;;;:::o;9502:366::-;9644:3;9665:67;9729:2;9724:3;9665:67;:::i;:::-;9658:74;;9741:93;9830:3;9741:93;:::i;:::-;9859:2;9854:3;9850:12;9843:19;;9502:366;;;:::o;9874:::-;10016:3;10037:67;10101:2;10096:3;10037:67;:::i;:::-;10030:74;;10113:93;10202:3;10113:93;:::i;:::-;10231:2;10226:3;10222:12;10215:19;;9874:366;;;:::o;10246:::-;10388:3;10409:67;10473:2;10468:3;10409:67;:::i;:::-;10402:74;;10485:93;10574:3;10485:93;:::i;:::-;10603:2;10598:3;10594:12;10587:19;;10246:366;;;:::o;10618:::-;10760:3;10781:67;10845:2;10840:3;10781:67;:::i;:::-;10774:74;;10857:93;10946:3;10857:93;:::i;:::-;10975:2;10970:3;10966:12;10959:19;;10618:366;;;:::o;10990:::-;11132:3;11153:67;11217:2;11212:3;11153:67;:::i;:::-;11146:74;;11229:93;11318:3;11229:93;:::i;:::-;11347:2;11342:3;11338:12;11331:19;;10990:366;;;:::o;11362:::-;11504:3;11525:67;11589:2;11584:3;11525:67;:::i;:::-;11518:74;;11601:93;11690:3;11601:93;:::i;:::-;11719:2;11714:3;11710:12;11703:19;;11362:366;;;:::o;11734:::-;11876:3;11897:67;11961:2;11956:3;11897:67;:::i;:::-;11890:74;;11973:93;12062:3;11973:93;:::i;:::-;12091:2;12086:3;12082:12;12075:19;;11734:366;;;:::o;12106:::-;12248:3;12269:67;12333:2;12328:3;12269:67;:::i;:::-;12262:74;;12345:93;12434:3;12345:93;:::i;:::-;12463:2;12458:3;12454:12;12447:19;;12106:366;;;:::o;12478:::-;12620:3;12641:67;12705:2;12700:3;12641:67;:::i;:::-;12634:74;;12717:93;12806:3;12717:93;:::i;:::-;12835:2;12830:3;12826:12;12819:19;;12478:366;;;:::o;12850:::-;12992:3;13013:67;13077:2;13072:3;13013:67;:::i;:::-;13006:74;;13089:93;13178:3;13089:93;:::i;:::-;13207:2;13202:3;13198:12;13191:19;;12850:366;;;:::o;13222:398::-;13381:3;13402:83;13483:1;13478:3;13402:83;:::i;:::-;13395:90;;13494:93;13583:3;13494:93;:::i;:::-;13612:1;13607:3;13603:11;13596:18;;13222:398;;;:::o;13626:365::-;13768:3;13789:66;13853:1;13848:3;13789:66;:::i;:::-;13782:73;;13864:93;13953:3;13864:93;:::i;:::-;13982:2;13977:3;13973:12;13966:19;;13626:365;;;:::o;13997:366::-;14139:3;14160:67;14224:2;14219:3;14160:67;:::i;:::-;14153:74;;14236:93;14325:3;14236:93;:::i;:::-;14354:2;14349:3;14345:12;14338:19;;13997:366;;;:::o;14369:118::-;14456:24;14474:5;14456:24;:::i;:::-;14451:3;14444:37;14369:118;;:::o;14493:435::-;14673:3;14695:95;14786:3;14777:6;14695:95;:::i;:::-;14688:102;;14807:95;14898:3;14889:6;14807:95;:::i;:::-;14800:102;;14919:3;14912:10;;14493:435;;;;;:::o;14934:379::-;15118:3;15140:147;15283:3;15140:147;:::i;:::-;15133:154;;15304:3;15297:10;;14934:379;;;:::o;15319:222::-;15412:4;15450:2;15439:9;15435:18;15427:26;;15463:71;15531:1;15520:9;15516:17;15507:6;15463:71;:::i;:::-;15319:222;;;;:::o;15547:640::-;15742:4;15780:3;15769:9;15765:19;15757:27;;15794:71;15862:1;15851:9;15847:17;15838:6;15794:71;:::i;:::-;15875:72;15943:2;15932:9;15928:18;15919:6;15875:72;:::i;:::-;15957;16025:2;16014:9;16010:18;16001:6;15957:72;:::i;:::-;16076:9;16070:4;16066:20;16061:2;16050:9;16046:18;16039:48;16104:76;16175:4;16166:6;16104:76;:::i;:::-;16096:84;;15547:640;;;;;;;:::o;16193:210::-;16280:4;16318:2;16307:9;16303:18;16295:26;;16331:65;16393:1;16382:9;16378:17;16369:6;16331:65;:::i;:::-;16193:210;;;;:::o;16409:313::-;16522:4;16560:2;16549:9;16545:18;16537:26;;16609:9;16603:4;16599:20;16595:1;16584:9;16580:17;16573:47;16637:78;16710:4;16701:6;16637:78;:::i;:::-;16629:86;;16409:313;;;;:::o;16728:419::-;16894:4;16932:2;16921:9;16917:18;16909:26;;16981:9;16975:4;16971:20;16967:1;16956:9;16952:17;16945:47;17009:131;17135:4;17009:131;:::i;:::-;17001:139;;16728:419;;;:::o;17153:::-;17319:4;17357:2;17346:9;17342:18;17334:26;;17406:9;17400:4;17396:20;17392:1;17381:9;17377:17;17370:47;17434:131;17560:4;17434:131;:::i;:::-;17426:139;;17153:419;;;:::o;17578:::-;17744:4;17782:2;17771:9;17767:18;17759:26;;17831:9;17825:4;17821:20;17817:1;17806:9;17802:17;17795:47;17859:131;17985:4;17859:131;:::i;:::-;17851:139;;17578:419;;;:::o;18003:::-;18169:4;18207:2;18196:9;18192:18;18184:26;;18256:9;18250:4;18246:20;18242:1;18231:9;18227:17;18220:47;18284:131;18410:4;18284:131;:::i;:::-;18276:139;;18003:419;;;:::o;18428:::-;18594:4;18632:2;18621:9;18617:18;18609:26;;18681:9;18675:4;18671:20;18667:1;18656:9;18652:17;18645:47;18709:131;18835:4;18709:131;:::i;:::-;18701:139;;18428:419;;;:::o;18853:::-;19019:4;19057:2;19046:9;19042:18;19034:26;;19106:9;19100:4;19096:20;19092:1;19081:9;19077:17;19070:47;19134:131;19260:4;19134:131;:::i;:::-;19126:139;;18853:419;;;:::o;19278:::-;19444:4;19482:2;19471:9;19467:18;19459:26;;19531:9;19525:4;19521:20;19517:1;19506:9;19502:17;19495:47;19559:131;19685:4;19559:131;:::i;:::-;19551:139;;19278:419;;;:::o;19703:::-;19869:4;19907:2;19896:9;19892:18;19884:26;;19956:9;19950:4;19946:20;19942:1;19931:9;19927:17;19920:47;19984:131;20110:4;19984:131;:::i;:::-;19976:139;;19703:419;;;:::o;20128:::-;20294:4;20332:2;20321:9;20317:18;20309:26;;20381:9;20375:4;20371:20;20367:1;20356:9;20352:17;20345:47;20409:131;20535:4;20409:131;:::i;:::-;20401:139;;20128:419;;;:::o;20553:::-;20719:4;20757:2;20746:9;20742:18;20734:26;;20806:9;20800:4;20796:20;20792:1;20781:9;20777:17;20770:47;20834:131;20960:4;20834:131;:::i;:::-;20826:139;;20553:419;;;:::o;20978:::-;21144:4;21182:2;21171:9;21167:18;21159:26;;21231:9;21225:4;21221:20;21217:1;21206:9;21202:17;21195:47;21259:131;21385:4;21259:131;:::i;:::-;21251:139;;20978:419;;;:::o;21403:::-;21569:4;21607:2;21596:9;21592:18;21584:26;;21656:9;21650:4;21646:20;21642:1;21631:9;21627:17;21620:47;21684:131;21810:4;21684:131;:::i;:::-;21676:139;;21403:419;;;:::o;21828:222::-;21921:4;21959:2;21948:9;21944:18;21936:26;;21972:71;22040:1;22029:9;22025:17;22016:6;21972:71;:::i;:::-;21828:222;;;;:::o;22056:332::-;22177:4;22215:2;22204:9;22200:18;22192:26;;22228:71;22296:1;22285:9;22281:17;22272:6;22228:71;:::i;:::-;22309:72;22377:2;22366:9;22362:18;22353:6;22309:72;:::i;:::-;22056:332;;;;;:::o;22394:129::-;22428:6;22455:20;;:::i;:::-;22445:30;;22484:33;22512:4;22504:6;22484:33;:::i;:::-;22394:129;;;:::o;22529:75::-;22562:6;22595:2;22589:9;22579:19;;22529:75;:::o;22610:307::-;22671:4;22761:18;22753:6;22750:30;22747:56;;;22783:18;;:::i;:::-;22747:56;22821:29;22843:6;22821:29;:::i;:::-;22813:37;;22905:4;22899;22895:15;22887:23;;22610:307;;;:::o;22923:308::-;22985:4;23075:18;23067:6;23064:30;23061:56;;;23097:18;;:::i;:::-;23061:56;23135:29;23157:6;23135:29;:::i;:::-;23127:37;;23219:4;23213;23209:15;23201:23;;22923:308;;;:::o;23237:98::-;23288:6;23322:5;23316:12;23306:22;;23237:98;;;:::o;23341:99::-;23393:6;23427:5;23421:12;23411:22;;23341:99;;;:::o;23446:168::-;23529:11;23563:6;23558:3;23551:19;23603:4;23598:3;23594:14;23579:29;;23446:168;;;;:::o;23620:147::-;23721:11;23758:3;23743:18;;23620:147;;;;:::o;23773:169::-;23857:11;23891:6;23886:3;23879:19;23931:4;23926:3;23922:14;23907:29;;23773:169;;;;:::o;23948:148::-;24050:11;24087:3;24072:18;;23948:148;;;;:::o;24102:305::-;24142:3;24161:20;24179:1;24161:20;:::i;:::-;24156:25;;24195:20;24213:1;24195:20;:::i;:::-;24190:25;;24349:1;24281:66;24277:74;24274:1;24271:81;24268:107;;;24355:18;;:::i;:::-;24268:107;24399:1;24396;24392:9;24385:16;;24102:305;;;;:::o;24413:191::-;24453:4;24473:20;24491:1;24473:20;:::i;:::-;24468:25;;24507:20;24525:1;24507:20;:::i;:::-;24502:25;;24546:1;24543;24540:8;24537:34;;;24551:18;;:::i;:::-;24537:34;24596:1;24593;24589:9;24581:17;;24413:191;;;;:::o;24610:96::-;24647:7;24676:24;24694:5;24676:24;:::i;:::-;24665:35;;24610:96;;;:::o;24712:90::-;24746:7;24789:5;24782:13;24775:21;24764:32;;24712:90;;;:::o;24808:149::-;24844:7;24884:66;24877:5;24873:78;24862:89;;24808:149;;;:::o;24963:126::-;25000:7;25040:42;25033:5;25029:54;25018:65;;24963:126;;;:::o;25095:77::-;25132:7;25161:5;25150:16;;25095:77;;;:::o;25178:154::-;25262:6;25257:3;25252;25239:30;25324:1;25315:6;25310:3;25306:16;25299:27;25178:154;;;:::o;25338:307::-;25406:1;25416:113;25430:6;25427:1;25424:13;25416:113;;;25515:1;25510:3;25506:11;25500:18;25496:1;25491:3;25487:11;25480:39;25452:2;25449:1;25445:10;25440:15;;25416:113;;;25547:6;25544:1;25541:13;25538:101;;;25627:1;25618:6;25613:3;25609:16;25602:27;25538:101;25387:258;25338:307;;;:::o;25651:320::-;25695:6;25732:1;25726:4;25722:12;25712:22;;25779:1;25773:4;25769:12;25800:18;25790:81;;25856:4;25848:6;25844:17;25834:27;;25790:81;25918:2;25910:6;25907:14;25887:18;25884:38;25881:84;;;25937:18;;:::i;:::-;25881:84;25702:269;25651:320;;;:::o;25977:281::-;26060:27;26082:4;26060:27;:::i;:::-;26052:6;26048:40;26190:6;26178:10;26175:22;26154:18;26142:10;26139:34;26136:62;26133:88;;;26201:18;;:::i;:::-;26133:88;26241:10;26237:2;26230:22;26020:238;25977:281;;:::o;26264:180::-;26312:77;26309:1;26302:88;26409:4;26406:1;26399:15;26433:4;26430:1;26423:15;26450:180;26498:77;26495:1;26488:88;26595:4;26592:1;26585:15;26619:4;26616:1;26609:15;26636:180;26684:77;26681:1;26674:88;26781:4;26778:1;26771:15;26805:4;26802:1;26795:15;26822:117;26931:1;26928;26921:12;26945:117;27054:1;27051;27044:12;27068:117;27177:1;27174;27167:12;27191:117;27300:1;27297;27290:12;27314:102;27355:6;27406:2;27402:7;27397:2;27390:5;27386:14;27382:28;27372:38;;27314:102;;;:::o;27422:231::-;27562:34;27558:1;27550:6;27546:14;27539:58;27631:14;27626:2;27618:6;27614:15;27607:39;27422:231;:::o;27659:225::-;27799:34;27795:1;27787:6;27783:14;27776:58;27868:8;27863:2;27855:6;27851:15;27844:33;27659:225;:::o;27890:169::-;28030:21;28026:1;28018:6;28014:14;28007:45;27890:169;:::o;28065:::-;28205:21;28201:1;28193:6;28189:14;28182:45;28065:169;:::o;28240:166::-;28380:18;28376:1;28368:6;28364:14;28357:42;28240:166;:::o;28412:173::-;28552:25;28548:1;28540:6;28536:14;28529:49;28412:173;:::o;28591:178::-;28731:30;28727:1;28719:6;28715:14;28708:54;28591:178;:::o;28775:174::-;28915:26;28911:1;28903:6;28899:14;28892:50;28775:174;:::o;28955:173::-;29095:25;29091:1;29083:6;29079:14;29072:49;28955:173;:::o;29134:182::-;29274:34;29270:1;29262:6;29258:14;29251:58;29134:182;:::o;29322:114::-;;:::o;29442:159::-;29582:11;29578:1;29570:6;29566:14;29559:35;29442:159;:::o;29607:181::-;29747:33;29743:1;29735:6;29731:14;29724:57;29607:181;:::o;29794:122::-;29867:24;29885:5;29867:24;:::i;:::-;29860:5;29857:35;29847:63;;29906:1;29903;29896:12;29847:63;29794:122;:::o;29922:116::-;29992:21;30007:5;29992:21;:::i;:::-;29985:5;29982:32;29972:60;;30028:1;30025;30018:12;29972:60;29922:116;:::o;30044:120::-;30116:23;30133:5;30116:23;:::i;:::-;30109:5;30106:34;30096:62;;30154:1;30151;30144:12;30096:62;30044:120;:::o;30170:122::-;30243:24;30261:5;30243:24;:::i;:::-;30236:5;30233:35;30223:63;;30282:1;30279;30272:12;30223:63;30170:122;:::o

Swarm Source

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