ETH Price: $3,447.46 (+1.65%)
Gas: 4 Gwei

Token

Mosaic (MOSAIC)
 

Overview

Max Total Supply

983 MOSAIC

Holders

272

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
grip710.eth
Balance
1 MOSAIC
0x94f64856e55ab61447f22f90e49ebef60d39b9a1
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:
Mosaic

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-10-02
*/

// 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.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external payable;

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

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

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

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

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

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

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

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

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

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

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

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

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

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

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

// File: contracts/Mosaic.sol



pragma solidity ^0.8.7;




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

contract Mosaic is ERC721A, Ownable, ReentrancyGuard {

  mapping(uint256 => bool) public hasCreateCardMinted;
  
  address public createCardContract = 0x5e7Dd1e569E75A7C2c1395d625daC3275Dc94012;
  bool public MINT_ACTIVE = false;
  uint256 public constant MAX_SUPPLY = 3002;

  string public metadataURI;

  constructor() ERC721A("Mosaic", "MOSAIC") {}

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

  function mint(uint256 createCardId) public {
      require(MINT_ACTIVE, "Mint inactive.");
      require(ICreateCards(createCardContract).ownerOf(createCardId) == msg.sender, "You don't own that Create Card.");
      require(!hasCreateCardMinted[createCardId], "Already minted.");
      require(totalSupply() + 1 <= MAX_SUPPLY, "Sold out.");
      require(ICreateCards(createCardContract).getCredits(createCardId) >= 5000, "You must have 5k Create Credits.");

      hasCreateCardMinted[createCardId] = true;  
      _safeMint(msg.sender, 1);
  }

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

  function toggleMint() public onlyOwner {
    MINT_ACTIVE = !MINT_ACTIVE;
  }

  // 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":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createCardContract","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"","type":"uint256"}],"name":"hasCreateCardMinted","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":[{"internalType":"uint256","name":"createCardId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_metadataURI","type":"string"}],"name":"setMetadataURI","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":"toggleMint","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052735e7dd1e569e75a7c2c1395d625dac3275dc94012600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600b60146101000a81548160ff0219169083151502179055503480156200008157600080fd5b506040518060400160405280600681526020017f4d6f7361696300000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4d4f53414943000000000000000000000000000000000000000000000000000081525081600290805190602001906200010692919062000239565b5080600390805190602001906200011f92919062000239565b50620001306200016660201b60201c565b6000819055505050620001586200014c6200016b60201b60201c565b6200017360201b60201c565b60016009819055506200034e565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024790620002e9565b90600052602060002090601f0160209004810192826200026b5760008555620002b7565b82601f106200028657805160ff1916838001178555620002b7565b82800160010185558215620002b7579182015b82811115620002b657825182559160200191906001019062000299565b5b509050620002c69190620002ca565b5090565b5b80821115620002e5576000816000905550600101620002cb565b5090565b600060028204905060018216806200030257607f821691505b602082108114156200031957620003186200031f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612c63806200035e6000396000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610528578063d3dd5fe014610565578063e985e9c51461057c578063f2fde38b146105b957610181565b8063a0712d68146104ba578063a22cb465146104e3578063b88d4fde1461050c57610181565b806370a08231146103bc578063715018a6146103f9578063750521f5146104105780637b6ad3e4146104395780638da5cb5b1461046457806395d89b411461048f57610181565b80631a5aba5e1161013e5780633ccfd60b116101185780633ccfd60b1461030f57806342842e0e1461032657806349678b22146103425780636352211e1461037f57610181565b80631a5aba5e1461029d57806323b872dd146102c857806332cb6b0c146102e457610181565b806301ffc9a71461018657806303ee438c146101c357806306fdde03146101ee578063081812fc14610219578063095ea7b31461025657806318160ddd14610272575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a8919061226a565b6105e2565b6040516101ba9190612612565b60405180910390f35b3480156101cf57600080fd5b506101d8610674565b6040516101e5919061262d565b60405180910390f35b3480156101fa57600080fd5b50610203610702565b604051610210919061262d565b60405180910390f35b34801561022557600080fd5b50610240600480360381019061023b919061230d565b610794565b60405161024d91906125ab565b60405180910390f35b610270600480360381019061026b919061222a565b610813565b005b34801561027e57600080fd5b50610287610957565b604051610294919061274f565b60405180910390f35b3480156102a957600080fd5b506102b261096e565b6040516102bf9190612612565b60405180910390f35b6102e260048036038101906102dd9190612114565b610981565b005b3480156102f057600080fd5b506102f9610ca6565b604051610306919061274f565b60405180910390f35b34801561031b57600080fd5b50610324610cac565b005b610340600480360381019061033b9190612114565b610d63565b005b34801561034e57600080fd5b506103696004803603810190610364919061230d565b610d83565b6040516103769190612612565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a1919061230d565b610da3565b6040516103b391906125ab565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de919061207a565b610db5565b6040516103f0919061274f565b60405180910390f35b34801561040557600080fd5b5061040e610e6e565b005b34801561041c57600080fd5b50610437600480360381019061043291906122c4565b610e82565b005b34801561044557600080fd5b5061044e610ea4565b60405161045b91906125ab565b60405180910390f35b34801561047057600080fd5b50610479610eca565b60405161048691906125ab565b60405180910390f35b34801561049b57600080fd5b506104a4610ef4565b6040516104b1919061262d565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc919061230d565b610f86565b005b3480156104ef57600080fd5b5061050a600480360381019061050591906121ea565b6112cf565b005b61052660048036038101906105219190612167565b6113da565b005b34801561053457600080fd5b5061054f600480360381019061054a919061230d565b61144d565b60405161055c919061262d565b60405180910390f35b34801561057157600080fd5b5061057a6114ec565b005b34801561058857600080fd5b506105a3600480360381019061059e91906120d4565b611520565b6040516105b09190612612565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db919061207a565b6115b4565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061066d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c80546106819061294b565b80601f01602080910402602001604051908101604052809291908181526020018280546106ad9061294b565b80156106fa5780601f106106cf576101008083540402835291602001916106fa565b820191906000526020600020905b8154815290600101906020018083116106dd57829003601f168201915b505050505081565b6060600280546107119061294b565b80601f016020809104026020016040519081016040528092919081815260200182805461073d9061294b565b801561078a5780601f1061075f5761010080835404028352916020019161078a565b820191906000526020600020905b81548152906001019060200180831161076d57829003601f168201915b5050505050905090565b600061079f82611638565b6107d5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081e82610da3565b90508073ffffffffffffffffffffffffffffffffffffffff1661083f611697565b73ffffffffffffffffffffffffffffffffffffffff16146108a25761086b81610866611697565b611520565b6108a1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061096161169f565b6001546000540303905090565b600b60149054906101000a900460ff1681565b600061098c826116a4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109ff84611772565b91509150610a158187610a10611697565b611799565b610a6157610a2a86610a25611697565b611520565b610a60576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ac8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad586868660016117dd565b8015610ae057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bae85610b8a8888876117e3565b7c02000000000000000000000000000000000000000000000000000000001761180b565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c36576000600185019050600060046000838152602001908152602001600020541415610c34576000548114610c33578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c9e8686866001611836565b505050505050565b610bba81565b610cb461183c565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610cda90612596565b60006040518083038185875af1925050503d8060008114610d17576040519150601f19603f3d011682016040523d82523d6000602084013e610d1c565b606091505b5050905080610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d579061268f565b60405180910390fd5b50565b610d7e838383604051806020016040528060008152506113da565b505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000610dae826116a4565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e1d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e7661183c565b610e8060006118ba565b565b610e8a61183c565b80600c9080519060200190610ea0929190611e64565b5050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f039061294b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2f9061294b565b8015610f7c5780601f10610f5157610100808354040283529160200191610f7c565b820191906000526020600020905b815481529060010190602001808311610f5f57829003601f168201915b5050505050905090565b600b60149054906101000a900460ff16610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc9061272f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611047919061274f565b60206040518083038186803b15801561105f57600080fd5b505afa158015611073573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109791906120a7565b73ffffffffffffffffffffffffffffffffffffffff16146110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e4906126ef565b60405180910390fd5b600a600082815260200190815260200160002060009054906101000a900460ff161561114e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111459061266f565b60405180910390fd5b610bba600161115b610957565b611165919061283f565b11156111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d9061270f565b60405180910390fd5b611388600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166319389b95836040518263ffffffff1660e01b8152600401611204919061274f565b60206040518083038186803b15801561121c57600080fd5b505afa158015611230573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611254919061233a565b1015611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c906126cf565b60405180910390fd5b6001600a600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506112cc336001611980565b50565b80600760006112dc611697565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611389611697565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ce9190612612565b60405180910390a35050565b6113e5848484610981565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611447576114108484848461199e565b611446576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061145882611638565b61148e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611498611afe565b90506000815114156114b957604051806020016040528060008152506114e4565b806114c384611b90565b6040516020016114d4929190612572565b6040516020818303038152906040525b915050919050565b6114f461183c565b600b60149054906101000a900460ff1615600b60146101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115bc61183c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561162c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116239061264f565b60405180910390fd5b611635816118ba565b50565b60008161164361169f565b11158015611652575060005482105b8015611690575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806116b361169f565b1161173b5760005481101561173a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611738575b600081141561172e576004600083600190039350838152602001908152602001600020549050611703565b809250505061176d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117fa868684611be9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611844611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611862610eca565b73ffffffffffffffffffffffffffffffffffffffff16146118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af906126af565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61199a828260405180602001604052806000815250611bfa565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119c4611697565b8786866040518563ffffffff1660e01b81526004016119e694939291906125c6565b602060405180830381600087803b158015611a0057600080fd5b505af1925050508015611a3157506040513d601f19601f82011682018060405250810190611a2e9190612297565b60015b611aab573d8060008114611a61576040519150601f19603f3d011682016040523d82523d6000602084013e611a66565b606091505b50600081511415611aa3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611b0d9061294b565b80601f0160208091040260200160405190810160405280929190818152602001828054611b399061294b565b8015611b865780601f10611b5b57610100808354040283529160200191611b86565b820191906000526020600020905b815481529060010190602001808311611b6957829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611bd457600184039350600a81066030018453600a8104905080611bcf57611bd4565b611ba9565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b611c048383611c97565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c9257600080549050600083820390505b611c44600086838060010194508661199e565b611c7a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c31578160005414611c8f57600080fd5b50505b505050565b6000805490506000821415611cd8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ce560008483856117dd565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d5c83611d4d60008660006117e3565b611d5685611e54565b1761180b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611dfd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611dc2565b506000821415611e39576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e4f6000848385611836565b505050565b60006001821460e11b9050919050565b828054611e709061294b565b90600052602060002090601f016020900481019282611e925760008555611ed9565b82601f10611eab57805160ff1916838001178555611ed9565b82800160010185558215611ed9579182015b82811115611ed8578251825591602001919060010190611ebd565b5b509050611ee69190611eea565b5090565b5b80821115611f03576000816000905550600101611eeb565b5090565b6000611f1a611f158461278f565b61276a565b905082815260208101848484011115611f3657611f35612a40565b5b611f41848285612909565b509392505050565b6000611f5c611f57846127c0565b61276a565b905082815260208101848484011115611f7857611f77612a40565b5b611f83848285612909565b509392505050565b600081359050611f9a81612bd1565b92915050565b600081519050611faf81612bd1565b92915050565b600081359050611fc481612be8565b92915050565b600081359050611fd981612bff565b92915050565b600081519050611fee81612bff565b92915050565b600082601f83011261200957612008612a3b565b5b8135612019848260208601611f07565b91505092915050565b600082601f83011261203757612036612a3b565b5b8135612047848260208601611f49565b91505092915050565b60008135905061205f81612c16565b92915050565b60008151905061207481612c16565b92915050565b6000602082840312156120905761208f612a4a565b5b600061209e84828501611f8b565b91505092915050565b6000602082840312156120bd576120bc612a4a565b5b60006120cb84828501611fa0565b91505092915050565b600080604083850312156120eb576120ea612a4a565b5b60006120f985828601611f8b565b925050602061210a85828601611f8b565b9150509250929050565b60008060006060848603121561212d5761212c612a4a565b5b600061213b86828701611f8b565b935050602061214c86828701611f8b565b925050604061215d86828701612050565b9150509250925092565b6000806000806080858703121561218157612180612a4a565b5b600061218f87828801611f8b565b94505060206121a087828801611f8b565b93505060406121b187828801612050565b925050606085013567ffffffffffffffff8111156121d2576121d1612a45565b5b6121de87828801611ff4565b91505092959194509250565b6000806040838503121561220157612200612a4a565b5b600061220f85828601611f8b565b925050602061222085828601611fb5565b9150509250929050565b6000806040838503121561224157612240612a4a565b5b600061224f85828601611f8b565b925050602061226085828601612050565b9150509250929050565b6000602082840312156122805761227f612a4a565b5b600061228e84828501611fca565b91505092915050565b6000602082840312156122ad576122ac612a4a565b5b60006122bb84828501611fdf565b91505092915050565b6000602082840312156122da576122d9612a4a565b5b600082013567ffffffffffffffff8111156122f8576122f7612a45565b5b61230484828501612022565b91505092915050565b60006020828403121561232357612322612a4a565b5b600061233184828501612050565b91505092915050565b6000602082840312156123505761234f612a4a565b5b600061235e84828501612065565b91505092915050565b61237081612895565b82525050565b61237f816128a7565b82525050565b6000612390826127f1565b61239a8185612807565b93506123aa818560208601612918565b6123b381612a4f565b840191505092915050565b60006123c9826127fc565b6123d38185612823565b93506123e3818560208601612918565b6123ec81612a4f565b840191505092915050565b6000612402826127fc565b61240c8185612834565b935061241c818560208601612918565b80840191505092915050565b6000612435602683612823565b915061244082612a60565b604082019050919050565b6000612458600f83612823565b915061246382612aaf565b602082019050919050565b600061247b601783612823565b915061248682612ad8565b602082019050919050565b600061249e602083612823565b91506124a982612b01565b602082019050919050565b60006124c1602083612823565b91506124cc82612b2a565b602082019050919050565b60006124e4600083612818565b91506124ef82612b53565b600082019050919050565b6000612507601f83612823565b915061251282612b56565b602082019050919050565b600061252a600983612823565b915061253582612b7f565b602082019050919050565b600061254d600e83612823565b915061255882612ba8565b602082019050919050565b61256c816128ff565b82525050565b600061257e82856123f7565b915061258a82846123f7565b91508190509392505050565b60006125a1826124d7565b9150819050919050565b60006020820190506125c06000830184612367565b92915050565b60006080820190506125db6000830187612367565b6125e86020830186612367565b6125f56040830185612563565b81810360608301526126078184612385565b905095945050505050565b60006020820190506126276000830184612376565b92915050565b6000602082019050818103600083015261264781846123be565b905092915050565b6000602082019050818103600083015261266881612428565b9050919050565b600060208201905081810360008301526126888161244b565b9050919050565b600060208201905081810360008301526126a88161246e565b9050919050565b600060208201905081810360008301526126c881612491565b9050919050565b600060208201905081810360008301526126e8816124b4565b9050919050565b60006020820190508181036000830152612708816124fa565b9050919050565b600060208201905081810360008301526127288161251d565b9050919050565b6000602082019050818103600083015261274881612540565b9050919050565b60006020820190506127646000830184612563565b92915050565b6000612774612785565b9050612780828261297d565b919050565b6000604051905090565b600067ffffffffffffffff8211156127aa576127a9612a0c565b5b6127b382612a4f565b9050602081019050919050565b600067ffffffffffffffff8211156127db576127da612a0c565b5b6127e482612a4f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061284a826128ff565b9150612855836128ff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561288a576128896129ae565b5b828201905092915050565b60006128a0826128df565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561293657808201518184015260208101905061291b565b83811115612945576000848401525b50505050565b6000600282049050600182168061296357607f821691505b60208210811415612977576129766129dd565b5b50919050565b61298682612a4f565b810181811067ffffffffffffffff821117156129a5576129a4612a0c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c7265616479206d696e7465642e0000000000000000000000000000000000600082015250565b7f4661696c656420746f207769746864726177204554482e000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f75206d757374206861766520356b2043726561746520437265646974732e600082015250565b50565b7f596f7520646f6e2774206f776e20746861742043726561746520436172642e00600082015250565b7f536f6c64206f75742e0000000000000000000000000000000000000000000000600082015250565b7f4d696e7420696e6163746976652e000000000000000000000000000000000000600082015250565b612bda81612895565b8114612be557600080fd5b50565b612bf1816128a7565b8114612bfc57600080fd5b50565b612c08816128b3565b8114612c1357600080fd5b50565b612c1f816128ff565b8114612c2a57600080fd5b5056fea264697066735822122059c287222d5b8b6e634af54a5e9e6f2c306757c53133bf8ee7b32de2971ac8e564736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101815760003560e01c806370a08231116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610528578063d3dd5fe014610565578063e985e9c51461057c578063f2fde38b146105b957610181565b8063a0712d68146104ba578063a22cb465146104e3578063b88d4fde1461050c57610181565b806370a08231146103bc578063715018a6146103f9578063750521f5146104105780637b6ad3e4146104395780638da5cb5b1461046457806395d89b411461048f57610181565b80631a5aba5e1161013e5780633ccfd60b116101185780633ccfd60b1461030f57806342842e0e1461032657806349678b22146103425780636352211e1461037f57610181565b80631a5aba5e1461029d57806323b872dd146102c857806332cb6b0c146102e457610181565b806301ffc9a71461018657806303ee438c146101c357806306fdde03146101ee578063081812fc14610219578063095ea7b31461025657806318160ddd14610272575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a8919061226a565b6105e2565b6040516101ba9190612612565b60405180910390f35b3480156101cf57600080fd5b506101d8610674565b6040516101e5919061262d565b60405180910390f35b3480156101fa57600080fd5b50610203610702565b604051610210919061262d565b60405180910390f35b34801561022557600080fd5b50610240600480360381019061023b919061230d565b610794565b60405161024d91906125ab565b60405180910390f35b610270600480360381019061026b919061222a565b610813565b005b34801561027e57600080fd5b50610287610957565b604051610294919061274f565b60405180910390f35b3480156102a957600080fd5b506102b261096e565b6040516102bf9190612612565b60405180910390f35b6102e260048036038101906102dd9190612114565b610981565b005b3480156102f057600080fd5b506102f9610ca6565b604051610306919061274f565b60405180910390f35b34801561031b57600080fd5b50610324610cac565b005b610340600480360381019061033b9190612114565b610d63565b005b34801561034e57600080fd5b506103696004803603810190610364919061230d565b610d83565b6040516103769190612612565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a1919061230d565b610da3565b6040516103b391906125ab565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de919061207a565b610db5565b6040516103f0919061274f565b60405180910390f35b34801561040557600080fd5b5061040e610e6e565b005b34801561041c57600080fd5b50610437600480360381019061043291906122c4565b610e82565b005b34801561044557600080fd5b5061044e610ea4565b60405161045b91906125ab565b60405180910390f35b34801561047057600080fd5b50610479610eca565b60405161048691906125ab565b60405180910390f35b34801561049b57600080fd5b506104a4610ef4565b6040516104b1919061262d565b60405180910390f35b3480156104c657600080fd5b506104e160048036038101906104dc919061230d565b610f86565b005b3480156104ef57600080fd5b5061050a600480360381019061050591906121ea565b6112cf565b005b61052660048036038101906105219190612167565b6113da565b005b34801561053457600080fd5b5061054f600480360381019061054a919061230d565b61144d565b60405161055c919061262d565b60405180910390f35b34801561057157600080fd5b5061057a6114ec565b005b34801561058857600080fd5b506105a3600480360381019061059e91906120d4565b611520565b6040516105b09190612612565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db919061207a565b6115b4565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061066d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c80546106819061294b565b80601f01602080910402602001604051908101604052809291908181526020018280546106ad9061294b565b80156106fa5780601f106106cf576101008083540402835291602001916106fa565b820191906000526020600020905b8154815290600101906020018083116106dd57829003601f168201915b505050505081565b6060600280546107119061294b565b80601f016020809104026020016040519081016040528092919081815260200182805461073d9061294b565b801561078a5780601f1061075f5761010080835404028352916020019161078a565b820191906000526020600020905b81548152906001019060200180831161076d57829003601f168201915b5050505050905090565b600061079f82611638565b6107d5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081e82610da3565b90508073ffffffffffffffffffffffffffffffffffffffff1661083f611697565b73ffffffffffffffffffffffffffffffffffffffff16146108a25761086b81610866611697565b611520565b6108a1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061096161169f565b6001546000540303905090565b600b60149054906101000a900460ff1681565b600061098c826116a4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109ff84611772565b91509150610a158187610a10611697565b611799565b610a6157610a2a86610a25611697565b611520565b610a60576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ac8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad586868660016117dd565b8015610ae057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bae85610b8a8888876117e3565b7c02000000000000000000000000000000000000000000000000000000001761180b565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c36576000600185019050600060046000838152602001908152602001600020541415610c34576000548114610c33578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c9e8686866001611836565b505050505050565b610bba81565b610cb461183c565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610cda90612596565b60006040518083038185875af1925050503d8060008114610d17576040519150601f19603f3d011682016040523d82523d6000602084013e610d1c565b606091505b5050905080610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d579061268f565b60405180910390fd5b50565b610d7e838383604051806020016040528060008152506113da565b505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000610dae826116a4565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e1d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e7661183c565b610e8060006118ba565b565b610e8a61183c565b80600c9080519060200190610ea0929190611e64565b5050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f039061294b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2f9061294b565b8015610f7c5780601f10610f5157610100808354040283529160200191610f7c565b820191906000526020600020905b815481529060010190602001808311610f5f57829003601f168201915b5050505050905090565b600b60149054906101000a900460ff16610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc9061272f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611047919061274f565b60206040518083038186803b15801561105f57600080fd5b505afa158015611073573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109791906120a7565b73ffffffffffffffffffffffffffffffffffffffff16146110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e4906126ef565b60405180910390fd5b600a600082815260200190815260200160002060009054906101000a900460ff161561114e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111459061266f565b60405180910390fd5b610bba600161115b610957565b611165919061283f565b11156111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d9061270f565b60405180910390fd5b611388600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166319389b95836040518263ffffffff1660e01b8152600401611204919061274f565b60206040518083038186803b15801561121c57600080fd5b505afa158015611230573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611254919061233a565b1015611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c906126cf565b60405180910390fd5b6001600a600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506112cc336001611980565b50565b80600760006112dc611697565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611389611697565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ce9190612612565b60405180910390a35050565b6113e5848484610981565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611447576114108484848461199e565b611446576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061145882611638565b61148e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611498611afe565b90506000815114156114b957604051806020016040528060008152506114e4565b806114c384611b90565b6040516020016114d4929190612572565b6040516020818303038152906040525b915050919050565b6114f461183c565b600b60149054906101000a900460ff1615600b60146101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115bc61183c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561162c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116239061264f565b60405180910390fd5b611635816118ba565b50565b60008161164361169f565b11158015611652575060005482105b8015611690575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806116b361169f565b1161173b5760005481101561173a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611738575b600081141561172e576004600083600190039350838152602001908152602001600020549050611703565b809250505061176d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117fa868684611be9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611844611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611862610eca565b73ffffffffffffffffffffffffffffffffffffffff16146118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af906126af565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61199a828260405180602001604052806000815250611bfa565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119c4611697565b8786866040518563ffffffff1660e01b81526004016119e694939291906125c6565b602060405180830381600087803b158015611a0057600080fd5b505af1925050508015611a3157506040513d601f19601f82011682018060405250810190611a2e9190612297565b60015b611aab573d8060008114611a61576040519150601f19603f3d011682016040523d82523d6000602084013e611a66565b606091505b50600081511415611aa3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611b0d9061294b565b80601f0160208091040260200160405190810160405280929190818152602001828054611b399061294b565b8015611b865780601f10611b5b57610100808354040283529160200191611b86565b820191906000526020600020905b815481529060010190602001808311611b6957829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611bd457600184039350600a81066030018453600a8104905080611bcf57611bd4565b611ba9565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b611c048383611c97565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c9257600080549050600083820390505b611c44600086838060010194508661199e565b611c7a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c31578160005414611c8f57600080fd5b50505b505050565b6000805490506000821415611cd8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ce560008483856117dd565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d5c83611d4d60008660006117e3565b611d5685611e54565b1761180b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611dfd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611dc2565b506000821415611e39576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e4f6000848385611836565b505050565b60006001821460e11b9050919050565b828054611e709061294b565b90600052602060002090601f016020900481019282611e925760008555611ed9565b82601f10611eab57805160ff1916838001178555611ed9565b82800160010185558215611ed9579182015b82811115611ed8578251825591602001919060010190611ebd565b5b509050611ee69190611eea565b5090565b5b80821115611f03576000816000905550600101611eeb565b5090565b6000611f1a611f158461278f565b61276a565b905082815260208101848484011115611f3657611f35612a40565b5b611f41848285612909565b509392505050565b6000611f5c611f57846127c0565b61276a565b905082815260208101848484011115611f7857611f77612a40565b5b611f83848285612909565b509392505050565b600081359050611f9a81612bd1565b92915050565b600081519050611faf81612bd1565b92915050565b600081359050611fc481612be8565b92915050565b600081359050611fd981612bff565b92915050565b600081519050611fee81612bff565b92915050565b600082601f83011261200957612008612a3b565b5b8135612019848260208601611f07565b91505092915050565b600082601f83011261203757612036612a3b565b5b8135612047848260208601611f49565b91505092915050565b60008135905061205f81612c16565b92915050565b60008151905061207481612c16565b92915050565b6000602082840312156120905761208f612a4a565b5b600061209e84828501611f8b565b91505092915050565b6000602082840312156120bd576120bc612a4a565b5b60006120cb84828501611fa0565b91505092915050565b600080604083850312156120eb576120ea612a4a565b5b60006120f985828601611f8b565b925050602061210a85828601611f8b565b9150509250929050565b60008060006060848603121561212d5761212c612a4a565b5b600061213b86828701611f8b565b935050602061214c86828701611f8b565b925050604061215d86828701612050565b9150509250925092565b6000806000806080858703121561218157612180612a4a565b5b600061218f87828801611f8b565b94505060206121a087828801611f8b565b93505060406121b187828801612050565b925050606085013567ffffffffffffffff8111156121d2576121d1612a45565b5b6121de87828801611ff4565b91505092959194509250565b6000806040838503121561220157612200612a4a565b5b600061220f85828601611f8b565b925050602061222085828601611fb5565b9150509250929050565b6000806040838503121561224157612240612a4a565b5b600061224f85828601611f8b565b925050602061226085828601612050565b9150509250929050565b6000602082840312156122805761227f612a4a565b5b600061228e84828501611fca565b91505092915050565b6000602082840312156122ad576122ac612a4a565b5b60006122bb84828501611fdf565b91505092915050565b6000602082840312156122da576122d9612a4a565b5b600082013567ffffffffffffffff8111156122f8576122f7612a45565b5b61230484828501612022565b91505092915050565b60006020828403121561232357612322612a4a565b5b600061233184828501612050565b91505092915050565b6000602082840312156123505761234f612a4a565b5b600061235e84828501612065565b91505092915050565b61237081612895565b82525050565b61237f816128a7565b82525050565b6000612390826127f1565b61239a8185612807565b93506123aa818560208601612918565b6123b381612a4f565b840191505092915050565b60006123c9826127fc565b6123d38185612823565b93506123e3818560208601612918565b6123ec81612a4f565b840191505092915050565b6000612402826127fc565b61240c8185612834565b935061241c818560208601612918565b80840191505092915050565b6000612435602683612823565b915061244082612a60565b604082019050919050565b6000612458600f83612823565b915061246382612aaf565b602082019050919050565b600061247b601783612823565b915061248682612ad8565b602082019050919050565b600061249e602083612823565b91506124a982612b01565b602082019050919050565b60006124c1602083612823565b91506124cc82612b2a565b602082019050919050565b60006124e4600083612818565b91506124ef82612b53565b600082019050919050565b6000612507601f83612823565b915061251282612b56565b602082019050919050565b600061252a600983612823565b915061253582612b7f565b602082019050919050565b600061254d600e83612823565b915061255882612ba8565b602082019050919050565b61256c816128ff565b82525050565b600061257e82856123f7565b915061258a82846123f7565b91508190509392505050565b60006125a1826124d7565b9150819050919050565b60006020820190506125c06000830184612367565b92915050565b60006080820190506125db6000830187612367565b6125e86020830186612367565b6125f56040830185612563565b81810360608301526126078184612385565b905095945050505050565b60006020820190506126276000830184612376565b92915050565b6000602082019050818103600083015261264781846123be565b905092915050565b6000602082019050818103600083015261266881612428565b9050919050565b600060208201905081810360008301526126888161244b565b9050919050565b600060208201905081810360008301526126a88161246e565b9050919050565b600060208201905081810360008301526126c881612491565b9050919050565b600060208201905081810360008301526126e8816124b4565b9050919050565b60006020820190508181036000830152612708816124fa565b9050919050565b600060208201905081810360008301526127288161251d565b9050919050565b6000602082019050818103600083015261274881612540565b9050919050565b60006020820190506127646000830184612563565b92915050565b6000612774612785565b9050612780828261297d565b919050565b6000604051905090565b600067ffffffffffffffff8211156127aa576127a9612a0c565b5b6127b382612a4f565b9050602081019050919050565b600067ffffffffffffffff8211156127db576127da612a0c565b5b6127e482612a4f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061284a826128ff565b9150612855836128ff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561288a576128896129ae565b5b828201905092915050565b60006128a0826128df565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561293657808201518184015260208101905061291b565b83811115612945576000848401525b50505050565b6000600282049050600182168061296357607f821691505b60208210811415612977576129766129dd565b5b50919050565b61298682612a4f565b810181811067ffffffffffffffff821117156129a5576129a4612a0c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c7265616479206d696e7465642e0000000000000000000000000000000000600082015250565b7f4661696c656420746f207769746864726177204554482e000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f75206d757374206861766520356b2043726561746520437265646974732e600082015250565b50565b7f596f7520646f6e2774206f776e20746861742043726561746520436172642e00600082015250565b7f536f6c64206f75742e0000000000000000000000000000000000000000000000600082015250565b7f4d696e7420696e6163746976652e000000000000000000000000000000000000600082015250565b612bda81612895565b8114612be557600080fd5b50565b612bf1816128a7565b8114612bfc57600080fd5b50565b612c08816128b3565b8114612c1357600080fd5b50565b612c1f816128ff565b8114612c2a57600080fd5b5056fea264697066735822122059c287222d5b8b6e634af54a5e9e6f2c306757c53133bf8ee7b32de2971ac8e564736f6c63430008070033

Deployed Bytecode Sourcemap

58035:1668:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24756:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58322:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25658:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32149:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31582:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21409:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58238:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35788:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58274:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59529:171;;;;;;;;;;;;;:::i;:::-;;38709:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58095:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27051:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22593:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5535:103;;;;;;;;;;;;;:::i;:::-;;59100:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58155:78;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4887:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25834:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58463:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32707:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39500:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26044:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59214:78;;;;;;;;;;;;;:::i;:::-;;33098:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5793:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24756:639;24841:4;25180:10;25165:25;;:11;:25;;;;:102;;;;25257:10;25242:25;;:11;:25;;;;25165:102;:179;;;;25334:10;25319:25;;:11;:25;;;;25165:179;25145:199;;24756:639;;;:::o;58322:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25658:100::-;25712:13;25745:5;25738:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25658:100;:::o;32149:218::-;32225:7;32250:16;32258:7;32250;:16::i;:::-;32245:64;;32275:34;;;;;;;;;;;;;;32245:64;32329:15;:24;32345:7;32329:24;;;;;;;;;;;:30;;;;;;;;;;;;32322:37;;32149:218;;;:::o;31582:408::-;31671:13;31687:16;31695:7;31687;:16::i;:::-;31671:32;;31743:5;31720:28;;:19;:17;:19::i;:::-;:28;;;31716:175;;31768:44;31785:5;31792:19;:17;:19::i;:::-;31768:16;:44::i;:::-;31763:128;;31840:35;;;;;;;;;;;;;;31763:128;31716:175;31936:2;31903:15;:24;31919:7;31903:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31974:7;31970:2;31954:28;;31963:5;31954:28;;;;;;;;;;;;31660:330;31582:408;;:::o;21409:323::-;21470:7;21698:15;:13;:15::i;:::-;21683:12;;21667:13;;:28;:46;21660:53;;21409:323;:::o;58238:31::-;;;;;;;;;;;;;:::o;35788:2825::-;35930:27;35960;35979:7;35960:18;:27::i;:::-;35930:57;;36045:4;36004:45;;36020:19;36004:45;;;36000:86;;36058:28;;;;;;;;;;;;;;36000:86;36100:27;36129:23;36156:35;36183:7;36156:26;:35::i;:::-;36099:92;;;;36291:68;36316:15;36333:4;36339:19;:17;:19::i;:::-;36291:24;:68::i;:::-;36286:180;;36379:43;36396:4;36402:19;:17;:19::i;:::-;36379:16;:43::i;:::-;36374:92;;36431:35;;;;;;;;;;;;;;36374:92;36286:180;36497:1;36483:16;;:2;:16;;;36479:52;;;36508:23;;;;;;;;;;;;;;36479:52;36544:43;36566:4;36572:2;36576:7;36585:1;36544:21;:43::i;:::-;36680:15;36677:160;;;36820:1;36799:19;36792:30;36677:160;37217:18;:24;37236:4;37217:24;;;;;;;;;;;;;;;;37215:26;;;;;;;;;;;;37286:18;:22;37305:2;37286:22;;;;;;;;;;;;;;;;37284:24;;;;;;;;;;;37608:146;37645:2;37694:45;37709:4;37715:2;37719:19;37694:14;:45::i;:::-;17808:8;37666:73;37608:18;:146::i;:::-;37579:17;:26;37597:7;37579:26;;;;;;;;;;;:175;;;;37925:1;17808:8;37874:19;:47;:52;37870:627;;;37947:19;37979:1;37969:7;:11;37947:33;;38136:1;38102:17;:30;38120:11;38102:30;;;;;;;;;;;;:35;38098:384;;;38240:13;;38225:11;:28;38221:242;;38420:19;38387:17;:30;38405:11;38387:30;;;;;;;;;;;:52;;;;38221:242;38098:384;37928:569;37870:627;38544:7;38540:2;38525:27;;38534:4;38525:27;;;;;;;;;;;;38563:42;38584:4;38590:2;38594:7;38603:1;38563:20;:42::i;:::-;35919:2694;;;35788:2825;;;:::o;58274:41::-;58311:4;58274:41;:::o;59529:171::-;4773:13;:11;:13::i;:::-;59576:12:::1;59593:10;:15;;59616:21;59593:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59575:67;;;59659:7;59651:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;59566:134;59529:171::o:0;38709:193::-;38855:39;38872:4;38878:2;38882:7;38855:39;;;;;;;;;;;;:16;:39::i;:::-;38709:193;;;:::o;58095:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;27051:152::-;27123:7;27166:27;27185:7;27166:18;:27::i;:::-;27143:52;;27051:152;;;:::o;22593:233::-;22665:7;22706:1;22689:19;;:5;:19;;;22685:60;;;22717:28;;;;;;;;;;;;;;22685:60;16752:13;22763:18;:25;22782:5;22763:25;;;;;;;;;;;;;;;;:55;22756:62;;22593:233;;;:::o;5535:103::-;4773:13;:11;:13::i;:::-;5600:30:::1;5627:1;5600:18;:30::i;:::-;5535:103::o:0;59100:108::-;4773:13;:11;:13::i;:::-;59190:12:::1;59176:11;:26;;;;;;;;;;;;:::i;:::-;;59100:108:::0;:::o;58155:78::-;;;;;;;;;;;;;:::o;4887:87::-;4933:7;4960:6;;;;;;;;;;;4953:13;;4887:87;:::o;25834:104::-;25890:13;25923:7;25916:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25834:104;:::o;58463:555::-;58523:11;;;;;;;;;;;58515:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;58628:10;58570:68;;58583:18;;;;;;;;;;;58570:40;;;58611:12;58570:54;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:68;;;58562:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;58692:19;:33;58712:12;58692:33;;;;;;;;;;;;;;;;;;;;;58691:34;58683:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;58311:4;58778:1;58762:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:31;;58754:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;58885:4;58837:18;;;;;;;;;;;58824:43;;;58868:12;58824:57;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:65;;58816:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;58973:4;58937:19;:33;58957:12;58937:33;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;58988:24;58998:10;59010:1;58988:9;:24::i;:::-;58463:555;:::o;32707:234::-;32854:8;32802:18;:39;32821:19;:17;:19::i;:::-;32802:39;;;;;;;;;;;;;;;:49;32842:8;32802:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32914:8;32878:55;;32893:19;:17;:19::i;:::-;32878:55;;;32924:8;32878:55;;;;;;:::i;:::-;;;;;;;;32707:234;;:::o;39500:407::-;39675:31;39688:4;39694:2;39698:7;39675:12;:31::i;:::-;39739:1;39721:2;:14;;;:19;39717:183;;39760:56;39791:4;39797:2;39801:7;39810:5;39760:30;:56::i;:::-;39755:145;;39844:40;;;;;;;;;;;;;;39755:145;39717:183;39500:407;;;;:::o;26044:318::-;26117:13;26148:16;26156:7;26148;:16::i;:::-;26143:59;;26173:29;;;;;;;;;;;;;;26143:59;26215:21;26239:10;:8;:10::i;:::-;26215:34;;26292:1;26273:7;26267:21;:26;;:87;;;;;;;;;;;;;;;;;26320:7;26329:18;26339:7;26329:9;:18::i;:::-;26303:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26267:87;26260:94;;;26044:318;;;:::o;59214:78::-;4773:13;:11;:13::i;:::-;59275:11:::1;;;;;;;;;;;59274:12;59260:11;;:26;;;;;;;;;;;;;;;;;;59214:78::o:0;33098:164::-;33195:4;33219:18;:25;33238:5;33219:25;;;;;;;;;;;;;;;:35;33245:8;33219:35;;;;;;;;;;;;;;;;;;;;;;;;;33212:42;;33098:164;;;;:::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;33520:282::-;33585:4;33641:7;33622:15;:13;:15::i;:::-;:26;;:66;;;;;33675:13;;33665:7;:23;33622:66;:153;;;;;33774:1;17528:8;33726:17;:26;33744:7;33726:26;;;;;;;;;;;;:44;:49;33622:153;33602:173;;33520:282;;;:::o;55828:105::-;55888:7;55915:10;55908:17;;55828:105;:::o;20925:92::-;20981:7;20925:92;:::o;28206:1275::-;28273:7;28293:12;28308:7;28293:22;;28376:4;28357:15;:13;:15::i;:::-;:23;28353:1061;;28410:13;;28403:4;:20;28399:1015;;;28448:14;28465:17;:23;28483:4;28465:23;;;;;;;;;;;;28448:40;;28582:1;17528:8;28554:6;:24;:29;28550:845;;;29219:113;29236:1;29226:6;:11;29219:113;;;29279:17;:25;29297:6;;;;;;;29279:25;;;;;;;;;;;;29270:34;;29219:113;;;29365:6;29358:13;;;;;;28550:845;28425:989;28399:1015;28353:1061;29442:31;;;;;;;;;;;;;;28206:1275;;;;:::o;34683:485::-;34785:27;34814:23;34855:38;34896:15;:24;34912:7;34896:24;;;;;;;;;;;34855:65;;35073:18;35050:41;;35130:19;35124:26;35105:45;;35035:126;34683:485;;;:::o;33911:659::-;34060:11;34225:16;34218:5;34214:28;34205:37;;34385:16;34374:9;34370:32;34357:45;;34535:15;34524:9;34521:30;34513:5;34502:9;34499:20;34496:56;34486:66;;33911:659;;;;;:::o;40569:159::-;;;;;:::o;55137:311::-;55272:7;55292:16;17932:3;55318:19;:41;;55292:68;;17932:3;55386:31;55397:4;55403:2;55407:9;55386:10;:31::i;:::-;55378:40;;:62;;55371:69;;;55137:311;;;;;:::o;30029:450::-;30109:14;30277:16;30270:5;30266:28;30257:37;;30454:5;30440:11;30415:23;30411:41;30408:52;30401:5;30398:63;30388:73;;30029:450;;;;:::o;41393:158::-;;;;;:::o;5052:132::-;5127:12;:10;:12::i;:::-;5116:23;;:7;:5;:7::i;:::-;:23;;;5108:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5052:132::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;49660:112::-;49737:27;49747:2;49751:8;49737:27;;;;;;;;;;;;:9;:27::i;:::-;49660:112;;:::o;41991:716::-;42154:4;42200:2;42175:45;;;42221:19;:17;:19::i;:::-;42242:4;42248:7;42257:5;42175:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42171:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42475:1;42458:6;:13;:18;42454:235;;;42504:40;;;;;;;;;;;;;;42454:235;42647:6;42641:13;42632:6;42628:2;42624:15;42617:38;42171:529;42344:54;;;42334:64;;;:6;:64;;;;42327:71;;;41991:716;;;;;;:::o;59362:98::-;59414:13;59443:11;59436:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59362:98;:::o;56035:1745::-;56100:17;56534:4;56527;56521:11;56517:22;56626:1;56620:4;56613:15;56701:4;56698:1;56694:12;56687:19;;56783:1;56778:3;56771:14;56887:3;57126:5;57108:428;57134:1;57108:428;;;57174:1;57169:3;57165:11;57158:18;;57345:2;57339:4;57335:13;57331:2;57327:22;57322:3;57314:36;57439:2;57433:4;57429:13;57421:21;;57506:4;57496:25;;57514:5;;57496:25;57108:428;;;57112:21;57575:3;57570;57566:13;57690:4;57685:3;57681:14;57674:21;;57755:6;57750:3;57743:19;56139:1634;;;56035:1745;;;:::o;54838:147::-;54975:6;54838:147;;;;;:::o;3438:98::-;3491:7;3518:10;3511:17;;3438:98;:::o;48887:689::-;49018:19;49024:2;49028:8;49018:5;:19::i;:::-;49097:1;49079:2;:14;;;:19;49075:483;;49119:11;49133:13;;49119:27;;49165:13;49187:8;49181:3;:14;49165:30;;49214:233;49245:62;49284:1;49288:2;49292:7;;;;;;49301:5;49245:30;:62::i;:::-;49240:167;;49343:40;;;;;;;;;;;;;;49240:167;49442:3;49434:5;:11;49214:233;;49529:3;49512:13;;:20;49508:34;;49534:8;;;49508:34;49100:458;;49075:483;48887:689;;;:::o;43169:2966::-;43242:20;43265:13;;43242:36;;43305:1;43293:8;:13;43289:44;;;43315:18;;;;;;;;;;;;;;43289:44;43346:61;43376:1;43380:2;43384:12;43398:8;43346:21;:61::i;:::-;43890:1;16890:2;43860:1;:26;;43859:32;43847:8;:45;43821:18;:22;43840:2;43821:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44169:139;44206:2;44260:33;44283:1;44287:2;44291:1;44260:14;:33::i;:::-;44227:30;44248:8;44227:20;:30::i;:::-;:66;44169:18;:139::i;:::-;44135:17;:31;44153:12;44135:31;;;;;;;;;;;:173;;;;44325:16;44356:11;44385:8;44370:12;:23;44356:37;;44906:16;44902:2;44898:25;44886:37;;45278:12;45238:8;45197:1;45135:25;45076:1;45015;44988:335;45649:1;45635:12;45631:20;45589:346;45690:3;45681:7;45678:16;45589:346;;45908:7;45898:8;45895:1;45868:25;45865:1;45862;45857:59;45743:1;45734:7;45730:15;45719:26;;45589:346;;;45593:77;45980:1;45968:8;:13;45964:45;;;45990:19;;;;;;;;;;;;;;45964:45;46042:3;46026:13;:19;;;;43595:2462;;46067:60;46096:1;46100:2;46104:12;46118:8;46067:20;:60::i;:::-;43231:2904;43169:2966;;:::o;30581:324::-;30651:14;30884:1;30874:8;30871:15;30845:24;30841:46;30831:56;;30581: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:143::-;2483:5;2514:6;2508:13;2499:22;;2530:33;2557:5;2530:33;:::i;:::-;2426:143;;;;:::o;2575:329::-;2634:6;2683:2;2671:9;2662:7;2658:23;2654:32;2651:119;;;2689:79;;:::i;:::-;2651:119;2809:1;2834:53;2879:7;2870:6;2859:9;2855:22;2834:53;:::i;:::-;2824:63;;2780:117;2575:329;;;;:::o;2910:351::-;2980:6;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:64;3236:7;3227:6;3216:9;3212:22;3180:64;:::i;:::-;3170:74;;3126:128;2910:351;;;;:::o;3267:474::-;3335:6;3343;3392:2;3380:9;3371:7;3367:23;3363:32;3360:119;;;3398:79;;:::i;:::-;3360:119;3518:1;3543:53;3588:7;3579:6;3568:9;3564:22;3543:53;:::i;:::-;3533:63;;3489:117;3645:2;3671:53;3716:7;3707:6;3696:9;3692:22;3671:53;:::i;:::-;3661:63;;3616:118;3267:474;;;;;:::o;3747:619::-;3824:6;3832;3840;3889:2;3877:9;3868:7;3864:23;3860:32;3857:119;;;3895:79;;:::i;:::-;3857:119;4015:1;4040:53;4085:7;4076:6;4065:9;4061:22;4040:53;:::i;:::-;4030:63;;3986:117;4142:2;4168:53;4213:7;4204:6;4193:9;4189:22;4168:53;:::i;:::-;4158:63;;4113:118;4270:2;4296:53;4341:7;4332:6;4321:9;4317:22;4296:53;:::i;:::-;4286:63;;4241:118;3747:619;;;;;:::o;4372:943::-;4467:6;4475;4483;4491;4540:3;4528:9;4519:7;4515:23;4511:33;4508:120;;;4547:79;;:::i;:::-;4508:120;4667:1;4692:53;4737:7;4728:6;4717:9;4713:22;4692:53;:::i;:::-;4682:63;;4638:117;4794:2;4820:53;4865:7;4856:6;4845:9;4841:22;4820:53;:::i;:::-;4810:63;;4765:118;4922:2;4948:53;4993:7;4984:6;4973:9;4969:22;4948:53;:::i;:::-;4938:63;;4893:118;5078:2;5067:9;5063:18;5050:32;5109:18;5101:6;5098:30;5095:117;;;5131:79;;:::i;:::-;5095:117;5236:62;5290:7;5281:6;5270:9;5266:22;5236:62;:::i;:::-;5226:72;;5021:287;4372:943;;;;;;;:::o;5321:468::-;5386:6;5394;5443:2;5431:9;5422:7;5418:23;5414:32;5411:119;;;5449:79;;:::i;:::-;5411:119;5569:1;5594:53;5639:7;5630:6;5619:9;5615:22;5594:53;:::i;:::-;5584:63;;5540:117;5696:2;5722:50;5764:7;5755:6;5744:9;5740:22;5722:50;:::i;:::-;5712:60;;5667:115;5321:468;;;;;:::o;5795:474::-;5863:6;5871;5920:2;5908:9;5899:7;5895:23;5891:32;5888:119;;;5926:79;;:::i;:::-;5888:119;6046:1;6071:53;6116:7;6107:6;6096:9;6092:22;6071:53;:::i;:::-;6061:63;;6017:117;6173:2;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6144:118;5795:474;;;;;:::o;6275:327::-;6333:6;6382:2;6370:9;6361:7;6357:23;6353:32;6350:119;;;6388:79;;:::i;:::-;6350:119;6508:1;6533:52;6577:7;6568:6;6557:9;6553:22;6533:52;:::i;:::-;6523:62;;6479:116;6275:327;;;;:::o;6608:349::-;6677:6;6726:2;6714:9;6705:7;6701:23;6697:32;6694:119;;;6732:79;;:::i;:::-;6694:119;6852:1;6877:63;6932:7;6923:6;6912:9;6908:22;6877:63;:::i;:::-;6867:73;;6823:127;6608:349;;;;:::o;6963:509::-;7032:6;7081:2;7069:9;7060:7;7056:23;7052:32;7049:119;;;7087:79;;:::i;:::-;7049:119;7235:1;7224:9;7220:17;7207:31;7265:18;7257:6;7254:30;7251:117;;;7287:79;;:::i;:::-;7251:117;7392:63;7447:7;7438:6;7427:9;7423:22;7392:63;:::i;:::-;7382:73;;7178:287;6963:509;;;;:::o;7478:329::-;7537:6;7586:2;7574:9;7565:7;7561:23;7557:32;7554:119;;;7592:79;;:::i;:::-;7554:119;7712:1;7737:53;7782:7;7773:6;7762:9;7758:22;7737:53;:::i;:::-;7727:63;;7683:117;7478:329;;;;:::o;7813:351::-;7883:6;7932:2;7920:9;7911:7;7907:23;7903:32;7900:119;;;7938:79;;:::i;:::-;7900:119;8058:1;8083:64;8139:7;8130:6;8119:9;8115:22;8083:64;:::i;:::-;8073:74;;8029:128;7813:351;;;;:::o;8170:118::-;8257:24;8275:5;8257:24;:::i;:::-;8252:3;8245:37;8170:118;;:::o;8294:109::-;8375:21;8390:5;8375:21;:::i;:::-;8370:3;8363:34;8294:109;;:::o;8409:360::-;8495:3;8523:38;8555:5;8523:38;:::i;:::-;8577:70;8640:6;8635:3;8577:70;:::i;:::-;8570:77;;8656:52;8701:6;8696:3;8689:4;8682:5;8678:16;8656:52;:::i;:::-;8733:29;8755:6;8733:29;:::i;:::-;8728:3;8724:39;8717:46;;8499:270;8409:360;;;;:::o;8775:364::-;8863:3;8891:39;8924:5;8891:39;:::i;:::-;8946:71;9010:6;9005:3;8946:71;:::i;:::-;8939:78;;9026:52;9071:6;9066:3;9059:4;9052:5;9048:16;9026:52;:::i;:::-;9103:29;9125:6;9103:29;:::i;:::-;9098:3;9094:39;9087:46;;8867:272;8775:364;;;;:::o;9145:377::-;9251:3;9279:39;9312:5;9279:39;:::i;:::-;9334:89;9416:6;9411:3;9334:89;:::i;:::-;9327:96;;9432:52;9477:6;9472:3;9465:4;9458:5;9454:16;9432:52;:::i;:::-;9509:6;9504:3;9500:16;9493:23;;9255:267;9145:377;;;;:::o;9528:366::-;9670:3;9691:67;9755:2;9750:3;9691:67;:::i;:::-;9684:74;;9767:93;9856:3;9767:93;:::i;:::-;9885:2;9880:3;9876:12;9869:19;;9528:366;;;:::o;9900:::-;10042:3;10063:67;10127:2;10122:3;10063:67;:::i;:::-;10056:74;;10139:93;10228:3;10139:93;:::i;:::-;10257:2;10252:3;10248:12;10241:19;;9900:366;;;:::o;10272:::-;10414:3;10435:67;10499:2;10494:3;10435:67;:::i;:::-;10428:74;;10511:93;10600:3;10511:93;:::i;:::-;10629:2;10624:3;10620:12;10613:19;;10272:366;;;:::o;10644:::-;10786:3;10807:67;10871:2;10866:3;10807:67;:::i;:::-;10800:74;;10883:93;10972:3;10883:93;:::i;:::-;11001:2;10996:3;10992:12;10985:19;;10644:366;;;:::o;11016:::-;11158:3;11179:67;11243:2;11238:3;11179:67;:::i;:::-;11172:74;;11255:93;11344:3;11255:93;:::i;:::-;11373:2;11368:3;11364:12;11357:19;;11016:366;;;:::o;11388:398::-;11547:3;11568:83;11649:1;11644:3;11568:83;:::i;:::-;11561:90;;11660:93;11749:3;11660:93;:::i;:::-;11778:1;11773:3;11769:11;11762:18;;11388:398;;;:::o;11792:366::-;11934:3;11955:67;12019:2;12014:3;11955:67;:::i;:::-;11948:74;;12031:93;12120:3;12031:93;:::i;:::-;12149:2;12144:3;12140:12;12133:19;;11792:366;;;:::o;12164:365::-;12306:3;12327:66;12391:1;12386:3;12327:66;:::i;:::-;12320:73;;12402:93;12491:3;12402:93;:::i;:::-;12520:2;12515:3;12511:12;12504:19;;12164:365;;;:::o;12535:366::-;12677:3;12698:67;12762:2;12757:3;12698:67;:::i;:::-;12691:74;;12774:93;12863:3;12774:93;:::i;:::-;12892:2;12887:3;12883:12;12876:19;;12535:366;;;:::o;12907:118::-;12994:24;13012:5;12994:24;:::i;:::-;12989:3;12982:37;12907:118;;:::o;13031:435::-;13211:3;13233:95;13324:3;13315:6;13233:95;:::i;:::-;13226:102;;13345:95;13436:3;13427:6;13345:95;:::i;:::-;13338:102;;13457:3;13450:10;;13031:435;;;;;:::o;13472:379::-;13656:3;13678:147;13821:3;13678:147;:::i;:::-;13671:154;;13842:3;13835:10;;13472:379;;;:::o;13857:222::-;13950:4;13988:2;13977:9;13973:18;13965:26;;14001:71;14069:1;14058:9;14054:17;14045:6;14001:71;:::i;:::-;13857:222;;;;:::o;14085:640::-;14280:4;14318:3;14307:9;14303:19;14295:27;;14332:71;14400:1;14389:9;14385:17;14376:6;14332:71;:::i;:::-;14413:72;14481:2;14470:9;14466:18;14457:6;14413:72;:::i;:::-;14495;14563:2;14552:9;14548:18;14539:6;14495:72;:::i;:::-;14614:9;14608:4;14604:20;14599:2;14588:9;14584:18;14577:48;14642:76;14713:4;14704:6;14642:76;:::i;:::-;14634:84;;14085:640;;;;;;;:::o;14731:210::-;14818:4;14856:2;14845:9;14841:18;14833:26;;14869:65;14931:1;14920:9;14916:17;14907:6;14869:65;:::i;:::-;14731:210;;;;:::o;14947:313::-;15060:4;15098:2;15087:9;15083:18;15075:26;;15147:9;15141:4;15137:20;15133:1;15122:9;15118:17;15111:47;15175:78;15248:4;15239:6;15175:78;:::i;:::-;15167:86;;14947:313;;;;:::o;15266:419::-;15432:4;15470:2;15459:9;15455:18;15447:26;;15519:9;15513:4;15509:20;15505:1;15494:9;15490:17;15483:47;15547:131;15673:4;15547:131;:::i;:::-;15539:139;;15266:419;;;:::o;15691:::-;15857:4;15895:2;15884:9;15880:18;15872:26;;15944:9;15938:4;15934:20;15930:1;15919:9;15915:17;15908:47;15972:131;16098:4;15972:131;:::i;:::-;15964:139;;15691:419;;;:::o;16116:::-;16282:4;16320:2;16309:9;16305:18;16297:26;;16369:9;16363:4;16359:20;16355:1;16344:9;16340:17;16333:47;16397:131;16523:4;16397:131;:::i;:::-;16389:139;;16116:419;;;:::o;16541:::-;16707:4;16745:2;16734:9;16730:18;16722:26;;16794:9;16788:4;16784:20;16780:1;16769:9;16765:17;16758:47;16822:131;16948:4;16822:131;:::i;:::-;16814:139;;16541:419;;;:::o;16966:::-;17132:4;17170:2;17159:9;17155:18;17147:26;;17219:9;17213:4;17209:20;17205:1;17194:9;17190:17;17183:47;17247:131;17373:4;17247:131;:::i;:::-;17239:139;;16966:419;;;:::o;17391:::-;17557:4;17595:2;17584:9;17580:18;17572:26;;17644:9;17638:4;17634:20;17630:1;17619:9;17615:17;17608:47;17672:131;17798:4;17672:131;:::i;:::-;17664:139;;17391:419;;;:::o;17816:::-;17982:4;18020:2;18009:9;18005:18;17997:26;;18069:9;18063:4;18059:20;18055:1;18044:9;18040:17;18033:47;18097:131;18223:4;18097:131;:::i;:::-;18089:139;;17816:419;;;:::o;18241:::-;18407:4;18445:2;18434:9;18430:18;18422:26;;18494:9;18488:4;18484:20;18480:1;18469:9;18465:17;18458:47;18522:131;18648:4;18522:131;:::i;:::-;18514:139;;18241:419;;;:::o;18666:222::-;18759:4;18797:2;18786:9;18782:18;18774:26;;18810:71;18878:1;18867:9;18863:17;18854:6;18810:71;:::i;:::-;18666:222;;;;:::o;18894:129::-;18928:6;18955:20;;:::i;:::-;18945:30;;18984:33;19012:4;19004:6;18984:33;:::i;:::-;18894:129;;;:::o;19029:75::-;19062:6;19095:2;19089:9;19079:19;;19029:75;:::o;19110:307::-;19171:4;19261:18;19253:6;19250:30;19247:56;;;19283:18;;:::i;:::-;19247:56;19321:29;19343:6;19321:29;:::i;:::-;19313:37;;19405:4;19399;19395:15;19387:23;;19110:307;;;:::o;19423:308::-;19485:4;19575:18;19567:6;19564:30;19561:56;;;19597:18;;:::i;:::-;19561:56;19635:29;19657:6;19635:29;:::i;:::-;19627:37;;19719:4;19713;19709:15;19701:23;;19423:308;;;:::o;19737:98::-;19788:6;19822:5;19816:12;19806:22;;19737:98;;;:::o;19841:99::-;19893:6;19927:5;19921:12;19911:22;;19841:99;;;:::o;19946:168::-;20029:11;20063:6;20058:3;20051:19;20103:4;20098:3;20094:14;20079:29;;19946:168;;;;:::o;20120:147::-;20221:11;20258:3;20243:18;;20120:147;;;;:::o;20273:169::-;20357:11;20391:6;20386:3;20379:19;20431:4;20426:3;20422:14;20407:29;;20273:169;;;;:::o;20448:148::-;20550:11;20587:3;20572:18;;20448:148;;;;:::o;20602:305::-;20642:3;20661:20;20679:1;20661:20;:::i;:::-;20656:25;;20695:20;20713:1;20695:20;:::i;:::-;20690:25;;20849:1;20781:66;20777:74;20774:1;20771:81;20768:107;;;20855:18;;:::i;:::-;20768:107;20899:1;20896;20892:9;20885:16;;20602:305;;;;:::o;20913:96::-;20950:7;20979:24;20997:5;20979:24;:::i;:::-;20968:35;;20913:96;;;:::o;21015:90::-;21049:7;21092:5;21085:13;21078:21;21067:32;;21015:90;;;:::o;21111:149::-;21147:7;21187:66;21180:5;21176:78;21165:89;;21111:149;;;:::o;21266:126::-;21303:7;21343:42;21336:5;21332:54;21321:65;;21266:126;;;:::o;21398:77::-;21435:7;21464:5;21453:16;;21398:77;;;:::o;21481:154::-;21565:6;21560:3;21555;21542:30;21627:1;21618:6;21613:3;21609:16;21602:27;21481:154;;;:::o;21641:307::-;21709:1;21719:113;21733:6;21730:1;21727:13;21719:113;;;21818:1;21813:3;21809:11;21803:18;21799:1;21794:3;21790:11;21783:39;21755:2;21752:1;21748:10;21743:15;;21719:113;;;21850:6;21847:1;21844:13;21841:101;;;21930:1;21921:6;21916:3;21912:16;21905:27;21841:101;21690:258;21641:307;;;:::o;21954:320::-;21998:6;22035:1;22029:4;22025:12;22015:22;;22082:1;22076:4;22072:12;22103:18;22093:81;;22159:4;22151:6;22147:17;22137:27;;22093:81;22221:2;22213:6;22210:14;22190:18;22187:38;22184:84;;;22240:18;;:::i;:::-;22184:84;22005:269;21954:320;;;:::o;22280:281::-;22363:27;22385:4;22363:27;:::i;:::-;22355:6;22351:40;22493:6;22481:10;22478:22;22457:18;22445:10;22442:34;22439:62;22436:88;;;22504:18;;:::i;:::-;22436:88;22544:10;22540:2;22533:22;22323:238;22280:281;;:::o;22567:180::-;22615:77;22612:1;22605:88;22712:4;22709:1;22702:15;22736:4;22733:1;22726:15;22753:180;22801:77;22798:1;22791:88;22898:4;22895:1;22888:15;22922:4;22919:1;22912:15;22939:180;22987:77;22984:1;22977:88;23084:4;23081:1;23074:15;23108:4;23105:1;23098:15;23125:117;23234:1;23231;23224:12;23248:117;23357:1;23354;23347:12;23371:117;23480:1;23477;23470:12;23494:117;23603:1;23600;23593:12;23617:102;23658:6;23709:2;23705:7;23700:2;23693:5;23689:14;23685:28;23675:38;;23617:102;;;:::o;23725:225::-;23865:34;23861:1;23853:6;23849:14;23842:58;23934:8;23929:2;23921:6;23917:15;23910:33;23725:225;:::o;23956:165::-;24096:17;24092:1;24084:6;24080:14;24073:41;23956:165;:::o;24127:173::-;24267:25;24263:1;24255:6;24251:14;24244:49;24127:173;:::o;24306:182::-;24446:34;24442:1;24434:6;24430:14;24423:58;24306:182;:::o;24494:::-;24634:34;24630:1;24622:6;24618:14;24611:58;24494:182;:::o;24682:114::-;;:::o;24802:181::-;24942:33;24938:1;24930:6;24926:14;24919:57;24802:181;:::o;24989:159::-;25129:11;25125:1;25117:6;25113:14;25106:35;24989:159;:::o;25154:164::-;25294:16;25290:1;25282:6;25278:14;25271:40;25154:164;:::o;25324:122::-;25397:24;25415:5;25397:24;:::i;:::-;25390:5;25387:35;25377:63;;25436:1;25433;25426:12;25377:63;25324:122;:::o;25452:116::-;25522:21;25537:5;25522:21;:::i;:::-;25515:5;25512:32;25502:60;;25558:1;25555;25548:12;25502:60;25452:116;:::o;25574:120::-;25646:23;25663:5;25646:23;:::i;:::-;25639:5;25636:34;25626:62;;25684:1;25681;25674:12;25626:62;25574:120;:::o;25700:122::-;25773:24;25791:5;25773:24;:::i;:::-;25766:5;25763:35;25753:63;;25812:1;25809;25802:12;25753:63;25700:122;:::o

Swarm Source

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