ETH Price: $3,101.49 (+1.14%)
Gas: 2 Gwei

Token

GlowSticks (GS)
 

Overview

Max Total Supply

43,142 GS

Holders

0

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
10 GS

Value
$0.00
0xe0d95ab9289895fedd3341918c2112d174e9104e
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:
GlowSticks

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-25
*/

// SPDX-License-Identifier: MIT
// File: contracts/vglowsticks/IOperatorFilterRegistry.sol


pragma solidity ^0.8.0;

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


pragma solidity ^0.8.0;


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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

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

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


pragma solidity ^0.8.0;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
// File: 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: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// 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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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: contracts/vglowsticks/GlowSticks.sol


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

pragma solidity ^0.8.0;








contract GlowSticks is ERC721A, ERC2981, Ownable, DefaultOperatorFilterer {
    using SafeMath for uint256;

    uint256 public constant MAX_SUPPLY = 100000;
    uint256 public constant FREE_SUPPLY = 1;
    uint256 public constant PAID_SUPPLY = 10;

    uint256 private _flag;
    string private _baseTokenURI = "";

    mapping(address => bool) private _hasMinted;

    event NewMint(address indexed msgSender, uint256 indexed mintQuantity);

    constructor() ERC721A("GlowSticks", "GS") {
        _setDefaultRoyalty(msg.sender, 0);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981)
    returns (bool) {
      return super.supportsInterface(interfaceId);
    }

    function _startTokenId() internal view override virtual returns (uint256) {
        return 1;
    }

    function transferOut(address _to) public onlyOwner {
        uint256 balance = address(this).balance;
        payable(_to).transfer(balance);
    }

    function changeTokenURIFlag(uint256 flag) external onlyOwner {
        _flag = flag;
    }

    function changeURI(string calldata _tokenURI) external onlyOwner {
        _baseTokenURI = _tokenURI;
    }

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

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        if (_flag == 0) {
            return "https://ipfs.io/ipfs/QmRsfrTtoRBfaxK4BGNjqHDtPWmn1aTv2u3GGGkAqBG2h6";
        } else {
            require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
            return string(abi.encodePacked(_baseTokenURI, Strings.toString(tokenId)));
        }
    }

    function mint(uint256 quantity) public payable {
        require(totalSupply() + quantity <= MAX_SUPPLY, "ERC721: Exceeds maximum supply");
        require(quantity == FREE_SUPPLY || quantity == PAID_SUPPLY, "ERC721: Invalid quantity");

        if (quantity == FREE_SUPPLY) {
            _safeMint(msg.sender,quantity);
        } else {
            require(msg.value >= 0.0001 ether, "ERC721: Insufficient payment");
            _safeMint(msg.sender,quantity);
        }
        
        emit NewMint(msg.sender, quantity);
    }

}

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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"msgSender","type":"address"},{"indexed":true,"internalType":"uint256","name":"mintQuantity","type":"uint256"}],"name":"NewMint","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":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"flag","type":"uint256"}],"name":"changeTokenURIFlag","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"changeURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"_to","type":"address"}],"name":"transferOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600c908162000024919062000820565b503480156200003257600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600a81526020017f476c6f77537469636b73000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f47530000000000000000000000000000000000000000000000000000000000008152508160029081620000c7919062000820565b508060039081620000d9919062000820565b50620000ea6200032260201b60201c565b600081905550505062000112620001066200032b60201b60201c565b6200033360201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000307578015620001cd576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001939291906200094c565b600060405180830381600087803b158015620001ae57600080fd5b505af1158015620001c3573d6000803e3d6000fd5b5050505062000306565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000287576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200024d9291906200094c565b600060405180830381600087803b1580156200026857600080fd5b505af11580156200027d573d6000803e3d6000fd5b5050505062000305565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002d0919062000979565b600060405180830381600087803b158015620002eb57600080fd5b505af115801562000300573d6000803e3d6000fd5b505050505b5b5b50506200031c336000620003f960201b60201c565b62000ab1565b60006001905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004096200059c60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156200046a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004619062000a1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004d39062000a8f565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200062857607f821691505b6020821081036200063e576200063d620005e0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006a87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000669565b620006b4868362000669565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000701620006fb620006f584620006cc565b620006d6565b620006cc565b9050919050565b6000819050919050565b6200071d83620006e0565b620007356200072c8262000708565b84845462000676565b825550505050565b600090565b6200074c6200073d565b6200075981848462000712565b505050565b5b8181101562000781576200077560008262000742565b6001810190506200075f565b5050565b601f821115620007d0576200079a8162000644565b620007a58462000659565b81016020851015620007b5578190505b620007cd620007c48562000659565b8301826200075e565b50505b505050565b600082821c905092915050565b6000620007f560001984600802620007d5565b1980831691505092915050565b6000620008108383620007e2565b9150826002028217905092915050565b6200082b82620005a6565b67ffffffffffffffff811115620008475762000846620005b1565b5b6200085382546200060f565b6200086082828562000785565b600060209050601f83116001811462000898576000841562000883578287015190505b6200088f858262000802565b865550620008ff565b601f198416620008a88662000644565b60005b82811015620008d257848901518255600182019150602085019450602081019050620008ab565b86831015620008f25784890151620008ee601f891682620007e2565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009348262000907565b9050919050565b620009468162000927565b82525050565b60006040820190506200096360008301856200093b565b6200097260208301846200093b565b9392505050565b60006020820190506200099060008301846200093b565b92915050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000a05602a8362000996565b915062000a1282620009a7565b604082019050919050565b6000602082019050818103600083015262000a3881620009f6565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000a7760198362000996565b915062000a848262000a3f565b602082019050919050565b6000602082019050818103600083015262000aaa8162000a68565b9050919050565b6130dd8062000ac16000396000f3fe6080604052600436106101815760003560e01c8063715018a6116100d1578063a22cb4651161008a578063e5e01c1111610064578063e5e01c1114610540578063e985e9c514610569578063f2fde38b146105a6578063fe878b1d146105cf57610181565b8063a22cb465146104be578063b88d4fde146104e7578063c87b56dd1461050357610181565b8063715018a6146103e15780638da5cb5b146103f857806395d89b41146104235780639858cf191461044e5780639894ba7c14610479578063a0712d68146104a257610181565b80632a55205a1161013e57806342842e0e1161011857806342842e0e14610322578063528c06cc1461033e5780636352211e1461036757806370a08231146103a457610181565b80632a55205a1461028e57806332cb6b0c146102cc57806341f43434146102f757610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461024757806323b872dd14610272575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a8919061202e565b6105fa565b6040516101ba9190612076565b60405180910390f35b3480156101cf57600080fd5b506101d861060c565b6040516101e59190612121565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612179565b61069e565b60405161022291906121e7565b60405180910390f35b6102456004803603810190610240919061222e565b61071d565b005b34801561025357600080fd5b5061025c610861565b604051610269919061227d565b60405180910390f35b61028c60048036038101906102879190612298565b610878565b005b34801561029a57600080fd5b506102b560048036038101906102b091906122eb565b610b9a565b6040516102c392919061232b565b60405180910390f35b3480156102d857600080fd5b506102e1610d84565b6040516102ee919061227d565b60405180910390f35b34801561030357600080fd5b5061030c610d8b565b60405161031991906123b3565b60405180910390f35b61033c60048036038101906103379190612298565b610d9d565b005b34801561034a57600080fd5b5061036560048036038101906103609190612179565b610dbd565b005b34801561037357600080fd5b5061038e60048036038101906103899190612179565b610e43565b60405161039b91906121e7565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c691906123ce565b610e55565b6040516103d8919061227d565b60405180910390f35b3480156103ed57600080fd5b506103f6610f0d565b005b34801561040457600080fd5b5061040d610f95565b60405161041a91906121e7565b60405180910390f35b34801561042f57600080fd5b50610438610fbf565b6040516104459190612121565b60405180910390f35b34801561045a57600080fd5b50610463611051565b604051610470919061227d565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b91906123ce565b611056565b005b6104bc60048036038101906104b79190612179565b611122565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190612427565b61127a565b005b61050160048036038101906104fc919061259c565b611385565b005b34801561050f57600080fd5b5061052a60048036038101906105259190612179565b6113f8565b6040516105379190612121565b60405180910390f35b34801561054c57600080fd5b506105676004803603810190610562919061267f565b61149f565b005b34801561057557600080fd5b50610590600480360381019061058b91906126cc565b611531565b60405161059d9190612076565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c891906123ce565b6115c5565b005b3480156105db57600080fd5b506105e46116bc565b6040516105f1919061227d565b60405180910390f35b6000610605826116c1565b9050919050565b60606002805461061b9061273b565b80601f01602080910402602001604051908101604052809291908181526020018280546106479061273b565b80156106945780601f1061066957610100808354040283529160200191610694565b820191906000526020600020905b81548152906001019060200180831161067757829003601f168201915b5050505050905090565b60006106a98261173b565b6106df576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061072882610e43565b90508073ffffffffffffffffffffffffffffffffffffffff1661074961179a565b73ffffffffffffffffffffffffffffffffffffffff16146107ac576107758161077061179a565b611531565b6107ab576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061086b6117a2565b6001546000540303905090565b6000610883826117ab565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108ea576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108f684611877565b9150915061090c818761090761179a565b61189e565b610958576109218661091c61179a565b611531565b610957576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036109be576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109cb86868660016118e2565b80156109d657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610aa485610a808888876118e8565b7c020000000000000000000000000000000000000000000000000000000017611910565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610b2a5760006001850190506000600460008381526020019081526020016000205403610b28576000548114610b27578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b92868686600161193b565b505050505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610d2f5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610d39611941565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610d65919061279b565b610d6f919061280c565b90508160000151819350935050509250929050565b620186a081565b6daaeb6d7670e522a718067333cd4e81565b610db883838360405180602001604052806000815250611385565b505050565b610dc561194b565b73ffffffffffffffffffffffffffffffffffffffff16610de3610f95565b73ffffffffffffffffffffffffffffffffffffffff1614610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090612889565b60405180910390fd5b80600b8190555050565b6000610e4e826117ab565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ebc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f1561194b565b73ffffffffffffffffffffffffffffffffffffffff16610f33610f95565b73ffffffffffffffffffffffffffffffffffffffff1614610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090612889565b60405180910390fd5b610f936000611953565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fce9061273b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffa9061273b565b80156110475780601f1061101c57610100808354040283529160200191611047565b820191906000526020600020905b81548152906001019060200180831161102a57829003601f168201915b5050505050905090565b600181565b61105e61194b565b73ffffffffffffffffffffffffffffffffffffffff1661107c610f95565b73ffffffffffffffffffffffffffffffffffffffff16146110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990612889565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561111d573d6000803e3d6000fd5b505050565b620186a08161112f610861565b61113991906128a9565b111561117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190612929565b60405180910390fd5b60018114806111895750600a81145b6111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf90612995565b60405180910390fd5b600181036111df576111da3382611a19565b611233565b655af3107a4000341015611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f90612a01565b60405180910390fd5b6112323382611a19565b5b803373ffffffffffffffffffffffffffffffffffffffff167f52277f0b4a9b555c5aa96900a13546f972bda413737ec164aac947c87eec602460405160405180910390a350565b806007600061128761179a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133461179a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113799190612076565b60405180910390a35050565b611390848484610878565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113f2576113bb84848484611a37565b6113f1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606000600b54036114245760405180608001604052806043815260200161306560439139905061149a565b61142d8261173b565b61146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390612a93565b60405180910390fd5b600c61147783611b87565b604051602001611488929190612b87565b60405160208183030381529060405290505b919050565b6114a761194b565b73ffffffffffffffffffffffffffffffffffffffff166114c5610f95565b73ffffffffffffffffffffffffffffffffffffffff161461151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151290612889565b60405180910390fd5b8181600c918261152c929190612d43565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115cd61194b565b73ffffffffffffffffffffffffffffffffffffffff166115eb610f95565b73ffffffffffffffffffffffffffffffffffffffff1614611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890612889565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a790612e85565b60405180910390fd5b6116b981611953565b50565b600a81565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611734575061173382611ce7565b5b9050919050565b6000816117466117a2565b11158015611755575060005482105b8015611793575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806117ba6117a2565b116118405760005481101561183f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361183d575b60008103611833576004600083600190039350838152602001908152602001600020549050611809565b8092505050611872565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118ff868684611d51565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000612710905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a33828260405180602001604052806000815250611d5a565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a5d61179a565b8786866040518563ffffffff1660e01b8152600401611a7f9493929190612efa565b6020604051808303816000875af1925050508015611abb57506040513d601f19601f82011682018060405250810190611ab89190612f5b565b60015b611b34573d8060008114611aeb576040519150601f19603f3d011682016040523d82523d6000602084013e611af0565b606091505b506000815103611b2c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611bce576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ce2565b600082905060005b60008214611c00578080611be990612f88565b915050600a82611bf9919061280c565b9150611bd6565b60008167ffffffffffffffff811115611c1c57611c1b612471565b5b6040519080825280601f01601f191660200182016040528015611c4e5781602001600182028036833780820191505090505b5090505b60008514611cdb57600182611c679190612fd0565b9150600a85611c769190613004565b6030611c8291906128a9565b60f81b818381518110611c9857611c97613035565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cd4919061280c565b9450611c52565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60009392505050565b611d648383611df7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611df257600080549050600083820390505b611da46000868380600101945086611a37565b611dda576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d91578160005414611def57600080fd5b50505b505050565b60008054905060008203611e37576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e4460008483856118e2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ebb83611eac60008660006118e8565b611eb585611fb2565b17611910565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f5c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f21565b5060008203611f97576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611fad600084838561193b565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61200b81611fd6565b811461201657600080fd5b50565b60008135905061202881612002565b92915050565b60006020828403121561204457612043611fcc565b5b600061205284828501612019565b91505092915050565b60008115159050919050565b6120708161205b565b82525050565b600060208201905061208b6000830184612067565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120cb5780820151818401526020810190506120b0565b60008484015250505050565b6000601f19601f8301169050919050565b60006120f382612091565b6120fd818561209c565b935061210d8185602086016120ad565b612116816120d7565b840191505092915050565b6000602082019050818103600083015261213b81846120e8565b905092915050565b6000819050919050565b61215681612143565b811461216157600080fd5b50565b6000813590506121738161214d565b92915050565b60006020828403121561218f5761218e611fcc565b5b600061219d84828501612164565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121d1826121a6565b9050919050565b6121e1816121c6565b82525050565b60006020820190506121fc60008301846121d8565b92915050565b61220b816121c6565b811461221657600080fd5b50565b60008135905061222881612202565b92915050565b6000806040838503121561224557612244611fcc565b5b600061225385828601612219565b925050602061226485828601612164565b9150509250929050565b61227781612143565b82525050565b6000602082019050612292600083018461226e565b92915050565b6000806000606084860312156122b1576122b0611fcc565b5b60006122bf86828701612219565b93505060206122d086828701612219565b92505060406122e186828701612164565b9150509250925092565b6000806040838503121561230257612301611fcc565b5b600061231085828601612164565b925050602061232185828601612164565b9150509250929050565b600060408201905061234060008301856121d8565b61234d602083018461226e565b9392505050565b6000819050919050565b600061237961237461236f846121a6565b612354565b6121a6565b9050919050565b600061238b8261235e565b9050919050565b600061239d82612380565b9050919050565b6123ad81612392565b82525050565b60006020820190506123c860008301846123a4565b92915050565b6000602082840312156123e4576123e3611fcc565b5b60006123f284828501612219565b91505092915050565b6124048161205b565b811461240f57600080fd5b50565b600081359050612421816123fb565b92915050565b6000806040838503121561243e5761243d611fcc565b5b600061244c85828601612219565b925050602061245d85828601612412565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124a9826120d7565b810181811067ffffffffffffffff821117156124c8576124c7612471565b5b80604052505050565b60006124db611fc2565b90506124e782826124a0565b919050565b600067ffffffffffffffff82111561250757612506612471565b5b612510826120d7565b9050602081019050919050565b82818337600083830152505050565b600061253f61253a846124ec565b6124d1565b90508281526020810184848401111561255b5761255a61246c565b5b61256684828561251d565b509392505050565b600082601f83011261258357612582612467565b5b813561259384826020860161252c565b91505092915050565b600080600080608085870312156125b6576125b5611fcc565b5b60006125c487828801612219565b94505060206125d587828801612219565b93505060406125e687828801612164565b925050606085013567ffffffffffffffff81111561260757612606611fd1565b5b6126138782880161256e565b91505092959194509250565b600080fd5b600080fd5b60008083601f84011261263f5761263e612467565b5b8235905067ffffffffffffffff81111561265c5761265b61261f565b5b60208301915083600182028301111561267857612677612624565b5b9250929050565b6000806020838503121561269657612695611fcc565b5b600083013567ffffffffffffffff8111156126b4576126b3611fd1565b5b6126c085828601612629565b92509250509250929050565b600080604083850312156126e3576126e2611fcc565b5b60006126f185828601612219565b925050602061270285828601612219565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061275357607f821691505b6020821081036127665761276561270c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127a682612143565b91506127b183612143565b92508282026127bf81612143565b915082820484148315176127d6576127d561276c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061281782612143565b915061282283612143565b925082612832576128316127dd565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061287360208361209c565b915061287e8261283d565b602082019050919050565b600060208201905081810360008301526128a281612866565b9050919050565b60006128b482612143565b91506128bf83612143565b92508282019050808211156128d7576128d661276c565b5b92915050565b7f4552433732313a2045786365656473206d6178696d756d20737570706c790000600082015250565b6000612913601e8361209c565b915061291e826128dd565b602082019050919050565b6000602082019050818103600083015261294281612906565b9050919050565b7f4552433732313a20496e76616c6964207175616e746974790000000000000000600082015250565b600061297f60188361209c565b915061298a82612949565b602082019050919050565b600060208201905081810360008301526129ae81612972565b9050919050565b7f4552433732313a20496e73756666696369656e74207061796d656e7400000000600082015250565b60006129eb601c8361209c565b91506129f6826129b5565b602082019050919050565b60006020820190508181036000830152612a1a816129de565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612a7d602f8361209c565b9150612a8882612a21565b604082019050919050565b60006020820190508181036000830152612aac81612a70565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612ae08161273b565b612aea8186612ab3565b94506001821660008114612b055760018114612b1a57612b4d565b60ff1983168652811515820286019350612b4d565b612b2385612abe565b60005b83811015612b4557815481890152600182019150602081019050612b26565b838801955050505b50505092915050565b6000612b6182612091565b612b6b8185612ab3565b9350612b7b8185602086016120ad565b80840191505092915050565b6000612b938285612ad3565b9150612b9f8284612b56565b91508190509392505050565b600082905092915050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612c037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612bc6565b612c0d8683612bc6565b95508019841693508086168417925050509392505050565b6000612c40612c3b612c3684612143565b612354565b612143565b9050919050565b6000819050919050565b612c5a83612c25565b612c6e612c6682612c47565b848454612bd3565b825550505050565b600090565b612c83612c76565b612c8e818484612c51565b505050565b5b81811015612cb257612ca7600082612c7b565b600181019050612c94565b5050565b601f821115612cf757612cc881612abe565b612cd184612bb6565b81016020851015612ce0578190505b612cf4612cec85612bb6565b830182612c93565b50505b505050565b600082821c905092915050565b6000612d1a60001984600802612cfc565b1980831691505092915050565b6000612d338383612d09565b9150826002028217905092915050565b612d4d8383612bab565b67ffffffffffffffff811115612d6657612d65612471565b5b612d70825461273b565b612d7b828285612cb6565b6000601f831160018114612daa5760008415612d98578287013590505b612da28582612d27565b865550612e0a565b601f198416612db886612abe565b60005b82811015612de057848901358255600182019150602085019450602081019050612dbb565b86831015612dfd5784890135612df9601f891682612d09565b8355505b6001600288020188555050505b50505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e6f60268361209c565b9150612e7a82612e13565b604082019050919050565b60006020820190508181036000830152612e9e81612e62565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612ecc82612ea5565b612ed68185612eb0565b9350612ee68185602086016120ad565b612eef816120d7565b840191505092915050565b6000608082019050612f0f60008301876121d8565b612f1c60208301866121d8565b612f29604083018561226e565b8181036060830152612f3b8184612ec1565b905095945050505050565b600081519050612f5581612002565b92915050565b600060208284031215612f7157612f70611fcc565b5b6000612f7f84828501612f46565b91505092915050565b6000612f9382612143565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612fc557612fc461276c565b5b600182019050919050565b6000612fdb82612143565b9150612fe683612143565b9250828203905081811115612ffe57612ffd61276c565b5b92915050565b600061300f82612143565b915061301a83612143565b92508261302a576130296127dd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfe68747470733a2f2f697066732e696f2f697066732f516d5273667254746f52426661784b3442474e6a7148447450576d6e316154763275334747476b41714247326836a26469706673582212201af422f09615bd8f1298b8816c435fb73417325bcfb869a75fc4b25a213b5e2664736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101815760003560e01c8063715018a6116100d1578063a22cb4651161008a578063e5e01c1111610064578063e5e01c1114610540578063e985e9c514610569578063f2fde38b146105a6578063fe878b1d146105cf57610181565b8063a22cb465146104be578063b88d4fde146104e7578063c87b56dd1461050357610181565b8063715018a6146103e15780638da5cb5b146103f857806395d89b41146104235780639858cf191461044e5780639894ba7c14610479578063a0712d68146104a257610181565b80632a55205a1161013e57806342842e0e1161011857806342842e0e14610322578063528c06cc1461033e5780636352211e1461036757806370a08231146103a457610181565b80632a55205a1461028e57806332cb6b0c146102cc57806341f43434146102f757610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461024757806323b872dd14610272575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a8919061202e565b6105fa565b6040516101ba9190612076565b60405180910390f35b3480156101cf57600080fd5b506101d861060c565b6040516101e59190612121565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612179565b61069e565b60405161022291906121e7565b60405180910390f35b6102456004803603810190610240919061222e565b61071d565b005b34801561025357600080fd5b5061025c610861565b604051610269919061227d565b60405180910390f35b61028c60048036038101906102879190612298565b610878565b005b34801561029a57600080fd5b506102b560048036038101906102b091906122eb565b610b9a565b6040516102c392919061232b565b60405180910390f35b3480156102d857600080fd5b506102e1610d84565b6040516102ee919061227d565b60405180910390f35b34801561030357600080fd5b5061030c610d8b565b60405161031991906123b3565b60405180910390f35b61033c60048036038101906103379190612298565b610d9d565b005b34801561034a57600080fd5b5061036560048036038101906103609190612179565b610dbd565b005b34801561037357600080fd5b5061038e60048036038101906103899190612179565b610e43565b60405161039b91906121e7565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c691906123ce565b610e55565b6040516103d8919061227d565b60405180910390f35b3480156103ed57600080fd5b506103f6610f0d565b005b34801561040457600080fd5b5061040d610f95565b60405161041a91906121e7565b60405180910390f35b34801561042f57600080fd5b50610438610fbf565b6040516104459190612121565b60405180910390f35b34801561045a57600080fd5b50610463611051565b604051610470919061227d565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b91906123ce565b611056565b005b6104bc60048036038101906104b79190612179565b611122565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190612427565b61127a565b005b61050160048036038101906104fc919061259c565b611385565b005b34801561050f57600080fd5b5061052a60048036038101906105259190612179565b6113f8565b6040516105379190612121565b60405180910390f35b34801561054c57600080fd5b506105676004803603810190610562919061267f565b61149f565b005b34801561057557600080fd5b50610590600480360381019061058b91906126cc565b611531565b60405161059d9190612076565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c891906123ce565b6115c5565b005b3480156105db57600080fd5b506105e46116bc565b6040516105f1919061227d565b60405180910390f35b6000610605826116c1565b9050919050565b60606002805461061b9061273b565b80601f01602080910402602001604051908101604052809291908181526020018280546106479061273b565b80156106945780601f1061066957610100808354040283529160200191610694565b820191906000526020600020905b81548152906001019060200180831161067757829003601f168201915b5050505050905090565b60006106a98261173b565b6106df576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061072882610e43565b90508073ffffffffffffffffffffffffffffffffffffffff1661074961179a565b73ffffffffffffffffffffffffffffffffffffffff16146107ac576107758161077061179a565b611531565b6107ab576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061086b6117a2565b6001546000540303905090565b6000610883826117ab565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108ea576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108f684611877565b9150915061090c818761090761179a565b61189e565b610958576109218661091c61179a565b611531565b610957576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036109be576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109cb86868660016118e2565b80156109d657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610aa485610a808888876118e8565b7c020000000000000000000000000000000000000000000000000000000017611910565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610b2a5760006001850190506000600460008381526020019081526020016000205403610b28576000548114610b27578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b92868686600161193b565b505050505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610d2f5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610d39611941565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610d65919061279b565b610d6f919061280c565b90508160000151819350935050509250929050565b620186a081565b6daaeb6d7670e522a718067333cd4e81565b610db883838360405180602001604052806000815250611385565b505050565b610dc561194b565b73ffffffffffffffffffffffffffffffffffffffff16610de3610f95565b73ffffffffffffffffffffffffffffffffffffffff1614610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090612889565b60405180910390fd5b80600b8190555050565b6000610e4e826117ab565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ebc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f1561194b565b73ffffffffffffffffffffffffffffffffffffffff16610f33610f95565b73ffffffffffffffffffffffffffffffffffffffff1614610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090612889565b60405180910390fd5b610f936000611953565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fce9061273b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffa9061273b565b80156110475780601f1061101c57610100808354040283529160200191611047565b820191906000526020600020905b81548152906001019060200180831161102a57829003601f168201915b5050505050905090565b600181565b61105e61194b565b73ffffffffffffffffffffffffffffffffffffffff1661107c610f95565b73ffffffffffffffffffffffffffffffffffffffff16146110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990612889565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561111d573d6000803e3d6000fd5b505050565b620186a08161112f610861565b61113991906128a9565b111561117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190612929565b60405180910390fd5b60018114806111895750600a81145b6111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf90612995565b60405180910390fd5b600181036111df576111da3382611a19565b611233565b655af3107a4000341015611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f90612a01565b60405180910390fd5b6112323382611a19565b5b803373ffffffffffffffffffffffffffffffffffffffff167f52277f0b4a9b555c5aa96900a13546f972bda413737ec164aac947c87eec602460405160405180910390a350565b806007600061128761179a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133461179a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113799190612076565b60405180910390a35050565b611390848484610878565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113f2576113bb84848484611a37565b6113f1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606000600b54036114245760405180608001604052806043815260200161306560439139905061149a565b61142d8261173b565b61146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390612a93565b60405180910390fd5b600c61147783611b87565b604051602001611488929190612b87565b60405160208183030381529060405290505b919050565b6114a761194b565b73ffffffffffffffffffffffffffffffffffffffff166114c5610f95565b73ffffffffffffffffffffffffffffffffffffffff161461151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151290612889565b60405180910390fd5b8181600c918261152c929190612d43565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115cd61194b565b73ffffffffffffffffffffffffffffffffffffffff166115eb610f95565b73ffffffffffffffffffffffffffffffffffffffff1614611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890612889565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a790612e85565b60405180910390fd5b6116b981611953565b50565b600a81565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611734575061173382611ce7565b5b9050919050565b6000816117466117a2565b11158015611755575060005482105b8015611793575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806117ba6117a2565b116118405760005481101561183f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361183d575b60008103611833576004600083600190039350838152602001908152602001600020549050611809565b8092505050611872565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118ff868684611d51565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000612710905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a33828260405180602001604052806000815250611d5a565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a5d61179a565b8786866040518563ffffffff1660e01b8152600401611a7f9493929190612efa565b6020604051808303816000875af1925050508015611abb57506040513d601f19601f82011682018060405250810190611ab89190612f5b565b60015b611b34573d8060008114611aeb576040519150601f19603f3d011682016040523d82523d6000602084013e611af0565b606091505b506000815103611b2c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611bce576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ce2565b600082905060005b60008214611c00578080611be990612f88565b915050600a82611bf9919061280c565b9150611bd6565b60008167ffffffffffffffff811115611c1c57611c1b612471565b5b6040519080825280601f01601f191660200182016040528015611c4e5781602001600182028036833780820191505090505b5090505b60008514611cdb57600182611c679190612fd0565b9150600a85611c769190613004565b6030611c8291906128a9565b60f81b818381518110611c9857611c97613035565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cd4919061280c565b9450611c52565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60009392505050565b611d648383611df7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611df257600080549050600083820390505b611da46000868380600101945086611a37565b611dda576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d91578160005414611def57600080fd5b50505b505050565b60008054905060008203611e37576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e4460008483856118e2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ebb83611eac60008660006118e8565b611eb585611fb2565b17611910565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f5c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f21565b5060008203611f97576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611fad600084838561193b565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61200b81611fd6565b811461201657600080fd5b50565b60008135905061202881612002565b92915050565b60006020828403121561204457612043611fcc565b5b600061205284828501612019565b91505092915050565b60008115159050919050565b6120708161205b565b82525050565b600060208201905061208b6000830184612067565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120cb5780820151818401526020810190506120b0565b60008484015250505050565b6000601f19601f8301169050919050565b60006120f382612091565b6120fd818561209c565b935061210d8185602086016120ad565b612116816120d7565b840191505092915050565b6000602082019050818103600083015261213b81846120e8565b905092915050565b6000819050919050565b61215681612143565b811461216157600080fd5b50565b6000813590506121738161214d565b92915050565b60006020828403121561218f5761218e611fcc565b5b600061219d84828501612164565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121d1826121a6565b9050919050565b6121e1816121c6565b82525050565b60006020820190506121fc60008301846121d8565b92915050565b61220b816121c6565b811461221657600080fd5b50565b60008135905061222881612202565b92915050565b6000806040838503121561224557612244611fcc565b5b600061225385828601612219565b925050602061226485828601612164565b9150509250929050565b61227781612143565b82525050565b6000602082019050612292600083018461226e565b92915050565b6000806000606084860312156122b1576122b0611fcc565b5b60006122bf86828701612219565b93505060206122d086828701612219565b92505060406122e186828701612164565b9150509250925092565b6000806040838503121561230257612301611fcc565b5b600061231085828601612164565b925050602061232185828601612164565b9150509250929050565b600060408201905061234060008301856121d8565b61234d602083018461226e565b9392505050565b6000819050919050565b600061237961237461236f846121a6565b612354565b6121a6565b9050919050565b600061238b8261235e565b9050919050565b600061239d82612380565b9050919050565b6123ad81612392565b82525050565b60006020820190506123c860008301846123a4565b92915050565b6000602082840312156123e4576123e3611fcc565b5b60006123f284828501612219565b91505092915050565b6124048161205b565b811461240f57600080fd5b50565b600081359050612421816123fb565b92915050565b6000806040838503121561243e5761243d611fcc565b5b600061244c85828601612219565b925050602061245d85828601612412565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124a9826120d7565b810181811067ffffffffffffffff821117156124c8576124c7612471565b5b80604052505050565b60006124db611fc2565b90506124e782826124a0565b919050565b600067ffffffffffffffff82111561250757612506612471565b5b612510826120d7565b9050602081019050919050565b82818337600083830152505050565b600061253f61253a846124ec565b6124d1565b90508281526020810184848401111561255b5761255a61246c565b5b61256684828561251d565b509392505050565b600082601f83011261258357612582612467565b5b813561259384826020860161252c565b91505092915050565b600080600080608085870312156125b6576125b5611fcc565b5b60006125c487828801612219565b94505060206125d587828801612219565b93505060406125e687828801612164565b925050606085013567ffffffffffffffff81111561260757612606611fd1565b5b6126138782880161256e565b91505092959194509250565b600080fd5b600080fd5b60008083601f84011261263f5761263e612467565b5b8235905067ffffffffffffffff81111561265c5761265b61261f565b5b60208301915083600182028301111561267857612677612624565b5b9250929050565b6000806020838503121561269657612695611fcc565b5b600083013567ffffffffffffffff8111156126b4576126b3611fd1565b5b6126c085828601612629565b92509250509250929050565b600080604083850312156126e3576126e2611fcc565b5b60006126f185828601612219565b925050602061270285828601612219565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061275357607f821691505b6020821081036127665761276561270c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127a682612143565b91506127b183612143565b92508282026127bf81612143565b915082820484148315176127d6576127d561276c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061281782612143565b915061282283612143565b925082612832576128316127dd565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061287360208361209c565b915061287e8261283d565b602082019050919050565b600060208201905081810360008301526128a281612866565b9050919050565b60006128b482612143565b91506128bf83612143565b92508282019050808211156128d7576128d661276c565b5b92915050565b7f4552433732313a2045786365656473206d6178696d756d20737570706c790000600082015250565b6000612913601e8361209c565b915061291e826128dd565b602082019050919050565b6000602082019050818103600083015261294281612906565b9050919050565b7f4552433732313a20496e76616c6964207175616e746974790000000000000000600082015250565b600061297f60188361209c565b915061298a82612949565b602082019050919050565b600060208201905081810360008301526129ae81612972565b9050919050565b7f4552433732313a20496e73756666696369656e74207061796d656e7400000000600082015250565b60006129eb601c8361209c565b91506129f6826129b5565b602082019050919050565b60006020820190508181036000830152612a1a816129de565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612a7d602f8361209c565b9150612a8882612a21565b604082019050919050565b60006020820190508181036000830152612aac81612a70565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612ae08161273b565b612aea8186612ab3565b94506001821660008114612b055760018114612b1a57612b4d565b60ff1983168652811515820286019350612b4d565b612b2385612abe565b60005b83811015612b4557815481890152600182019150602081019050612b26565b838801955050505b50505092915050565b6000612b6182612091565b612b6b8185612ab3565b9350612b7b8185602086016120ad565b80840191505092915050565b6000612b938285612ad3565b9150612b9f8284612b56565b91508190509392505050565b600082905092915050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612c037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612bc6565b612c0d8683612bc6565b95508019841693508086168417925050509392505050565b6000612c40612c3b612c3684612143565b612354565b612143565b9050919050565b6000819050919050565b612c5a83612c25565b612c6e612c6682612c47565b848454612bd3565b825550505050565b600090565b612c83612c76565b612c8e818484612c51565b505050565b5b81811015612cb257612ca7600082612c7b565b600181019050612c94565b5050565b601f821115612cf757612cc881612abe565b612cd184612bb6565b81016020851015612ce0578190505b612cf4612cec85612bb6565b830182612c93565b50505b505050565b600082821c905092915050565b6000612d1a60001984600802612cfc565b1980831691505092915050565b6000612d338383612d09565b9150826002028217905092915050565b612d4d8383612bab565b67ffffffffffffffff811115612d6657612d65612471565b5b612d70825461273b565b612d7b828285612cb6565b6000601f831160018114612daa5760008415612d98578287013590505b612da28582612d27565b865550612e0a565b601f198416612db886612abe565b60005b82811015612de057848901358255600182019150602085019450602081019050612dbb565b86831015612dfd5784890135612df9601f891682612d09565b8355505b6001600288020188555050505b50505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e6f60268361209c565b9150612e7a82612e13565b604082019050919050565b60006020820190508181036000830152612e9e81612e62565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612ecc82612ea5565b612ed68185612eb0565b9350612ee68185602086016120ad565b612eef816120d7565b840191505092915050565b6000608082019050612f0f60008301876121d8565b612f1c60208301866121d8565b612f29604083018561226e565b8181036060830152612f3b8184612ec1565b905095945050505050565b600081519050612f5581612002565b92915050565b600060208284031215612f7157612f70611fcc565b5b6000612f7f84828501612f46565b91505092915050565b6000612f9382612143565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612fc557612fc461276c565b5b600182019050919050565b6000612fdb82612143565b9150612fe683612143565b9250828203905081811115612ffe57612ffd61276c565b5b92915050565b600061300f82612143565b915061301a83612143565b92508261302a576130296127dd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfe68747470733a2f2f697066732e696f2f697066732f516d5273667254746f52426661784b3442474e6a7148447450576d6e316154763275334747476b41714247326836a26469706673582212201af422f09615bd8f1298b8816c435fb73417325bcfb869a75fc4b25a213b5e2664736f6c63430008120033

Deployed Bytecode Sourcemap

76612:2321:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77176:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24734:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31225:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30658:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20485:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34864:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61363:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;76728:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2942:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37785:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77625:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26127:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21669:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75631:103;;;;;;;;;;;;;:::i;:::-;;74980:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24910:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76778:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77467:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78386:542;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31783:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38576:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77964:414;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77725:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32174:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75889:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76824:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77176:174;77284:4;77306:36;77330:11;77306:23;:36::i;:::-;77299:43;;77176:174;;;:::o;24734:100::-;24788:13;24821:5;24814:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24734:100;:::o;31225:218::-;31301:7;31326:16;31334:7;31326;:16::i;:::-;31321:64;;31351:34;;;;;;;;;;;;;;31321:64;31405:15;:24;31421:7;31405:24;;;;;;;;;;;:30;;;;;;;;;;;;31398:37;;31225:218;;;:::o;30658:408::-;30747:13;30763:16;30771:7;30763;:16::i;:::-;30747:32;;30819:5;30796:28;;:19;:17;:19::i;:::-;:28;;;30792:175;;30844:44;30861:5;30868:19;:17;:19::i;:::-;30844:16;:44::i;:::-;30839:128;;30916:35;;;;;;;;;;;;;;30839:128;30792:175;31012:2;30979:15;:24;30995:7;30979:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31050:7;31046:2;31030:28;;31039:5;31030:28;;;;;;;;;;;;30736:330;30658:408;;:::o;20485:323::-;20546:7;20774:15;:13;:15::i;:::-;20759:12;;20743:13;;:28;:46;20736:53;;20485:323;:::o;34864:2825::-;35006:27;35036;35055:7;35036:18;:27::i;:::-;35006:57;;35121:4;35080:45;;35096:19;35080:45;;;35076:86;;35134:28;;;;;;;;;;;;;;35076:86;35176:27;35205:23;35232:35;35259:7;35232:26;:35::i;:::-;35175:92;;;;35367:68;35392:15;35409:4;35415:19;:17;:19::i;:::-;35367:24;:68::i;:::-;35362:180;;35455:43;35472:4;35478:19;:17;:19::i;:::-;35455:16;:43::i;:::-;35450:92;;35507:35;;;;;;;;;;;;;;35450:92;35362:180;35573:1;35559:16;;:2;:16;;;35555:52;;35584:23;;;;;;;;;;;;;;35555:52;35620:43;35642:4;35648:2;35652:7;35661:1;35620:21;:43::i;:::-;35756:15;35753:160;;;35896:1;35875:19;35868:30;35753:160;36293:18;:24;36312:4;36293:24;;;;;;;;;;;;;;;;36291:26;;;;;;;;;;;;36362:18;:22;36381:2;36362:22;;;;;;;;;;;;;;;;36360:24;;;;;;;;;;;36684:146;36721:2;36770:45;36785:4;36791:2;36795:19;36770:14;:45::i;:::-;16884:8;36742:73;36684:18;:146::i;:::-;36655:17;:26;36673:7;36655:26;;;;;;;;;;;:175;;;;37001:1;16884:8;36950:19;:47;:52;36946:627;;37023:19;37055:1;37045:7;:11;37023:33;;37212:1;37178:17;:30;37196:11;37178:30;;;;;;;;;;;;:35;37174:384;;37316:13;;37301:11;:28;37297:242;;37496:19;37463:17;:30;37481:11;37463:30;;;;;;;;;;;:52;;;;37297:242;37174:384;37004:569;36946:627;37620:7;37616:2;37601:27;;37610:4;37601:27;;;;;;;;;;;;37639:42;37660:4;37666:2;37670:7;37679:1;37639:20;:42::i;:::-;34995:2694;;;34864:2825;;;:::o;61363:442::-;61460:7;61469;61489:26;61518:17;:27;61536:8;61518:27;;;;;;;;;;;61489:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61590:1;61562:30;;:7;:16;;;:30;;;61558:92;;61619:19;61609:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61558:92;61662:21;61727:17;:15;:17::i;:::-;61686:58;;61700:7;:23;;;61687:36;;:10;:36;;;;:::i;:::-;61686:58;;;;:::i;:::-;61662:82;;61765:7;:16;;;61783:13;61757:40;;;;;;61363:442;;;;;:::o;76728:43::-;76765:6;76728:43;:::o;2942:143::-;3042:42;2942:143;:::o;37785:193::-;37931:39;37948:4;37954:2;37958:7;37931:39;;;;;;;;;;;;:16;:39::i;:::-;37785:193;;;:::o;77625:92::-;75211:12;:10;:12::i;:::-;75200:23;;:7;:5;:7::i;:::-;:23;;;75192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77705:4:::1;77697:5;:12;;;;77625:92:::0;:::o;26127:152::-;26199:7;26242:27;26261:7;26242:18;:27::i;:::-;26219:52;;26127:152;;;:::o;21669:233::-;21741:7;21782:1;21765:19;;:5;:19;;;21761:60;;21793:28;;;;;;;;;;;;;;21761:60;15828:13;21839:18;:25;21858:5;21839:25;;;;;;;;;;;;;;;;:55;21832:62;;21669:233;;;:::o;75631:103::-;75211:12;:10;:12::i;:::-;75200:23;;:7;:5;:7::i;:::-;:23;;;75192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75696:30:::1;75723:1;75696:18;:30::i;:::-;75631:103::o:0;74980:87::-;75026:7;75053:6;;;;;;;;;;;75046:13;;74980:87;:::o;24910:104::-;24966:13;24999:7;24992:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24910:104;:::o;76778:39::-;76816:1;76778:39;:::o;77467:150::-;75211:12;:10;:12::i;:::-;75200:23;;:7;:5;:7::i;:::-;:23;;;75192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77529:15:::1;77547:21;77529:39;;77587:3;77579:21;;:30;77601:7;77579:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77518:99;77467:150:::0;:::o;78386:542::-;76765:6;78468:8;78452:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;78444:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;76816:1;78544:8;:23;:50;;;;76862:2;78571:8;:23;78544:50;78536:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;76816:1;78640:8;:23;78636:230;;78680:30;78690:10;78701:8;78680:9;:30::i;:::-;78636:230;;;78764:12;78751:9;:25;;78743:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;78824:30;78834:10;78845:8;78824:9;:30::i;:::-;78636:230;78911:8;78899:10;78891:29;;;;;;;;;;;;78386:542;:::o;31783:234::-;31930:8;31878:18;:39;31897:19;:17;:19::i;:::-;31878:39;;;;;;;;;;;;;;;:49;31918:8;31878:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;31990:8;31954:55;;31969:19;:17;:19::i;:::-;31954:55;;;32000:8;31954:55;;;;;;:::i;:::-;;;;;;;;31783:234;;:::o;38576:407::-;38751:31;38764:4;38770:2;38774:7;38751:12;:31::i;:::-;38815:1;38797:2;:14;;;:19;38793:183;;38836:56;38867:4;38873:2;38877:7;38886:5;38836:30;:56::i;:::-;38831:145;;38920:40;;;;;;;;;;;;;;38831:145;38793:183;38576:407;;;;:::o;77964:414::-;78029:13;78068:1;78059:5;;:10;78055:316;;78086:76;;;;;;;;;;;;;;;;;;;;;78055:316;78203:16;78211:7;78203;:16::i;:::-;78195:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;78317:13;78332:25;78349:7;78332:16;:25::i;:::-;78300:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78286:73;;77964:414;;;;:::o;77725:109::-;75211:12;:10;:12::i;:::-;75200:23;;:7;:5;:7::i;:::-;:23;;;75192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77817:9:::1;;77801:13;:25;;;;;;;:::i;:::-;;77725:109:::0;;:::o;32174:164::-;32271:4;32295:18;:25;32314:5;32295:25;;;;;;;;;;;;;;;:35;32321:8;32295:35;;;;;;;;;;;;;;;;;;;;;;;;;32288:42;;32174:164;;;;:::o;75889:201::-;75211:12;:10;:12::i;:::-;75200:23;;:7;:5;:7::i;:::-;:23;;;75192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75998:1:::1;75978:22;;:8;:22;;::::0;75970:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;76054:28;76073:8;76054:18;:28::i;:::-;75889:201:::0;:::o;76824:40::-;76862:2;76824:40;:::o;61093:215::-;61195:4;61234:26;61219:41;;;:11;:41;;;;:81;;;;61264:36;61288:11;61264:23;:36::i;:::-;61219:81;61212:88;;61093:215;;;:::o;32596:282::-;32661:4;32717:7;32698:15;:13;:15::i;:::-;:26;;:66;;;;;32751:13;;32741:7;:23;32698:66;:153;;;;;32850:1;16604:8;32802:17;:26;32820:7;32802:26;;;;;;;;;;;;:44;:49;32698:153;32678:173;;32596:282;;;:::o;54904:105::-;54964:7;54991:10;54984:17;;54904:105;:::o;77358:101::-;77423:7;77450:1;77443:8;;77358:101;:::o;27282:1275::-;27349:7;27369:12;27384:7;27369:22;;27452:4;27433:15;:13;:15::i;:::-;:23;27429:1061;;27486:13;;27479:4;:20;27475:1015;;;27524:14;27541:17;:23;27559:4;27541:23;;;;;;;;;;;;27524:40;;27658:1;16604:8;27630:6;:24;:29;27626:845;;28295:113;28312:1;28302:6;:11;28295:113;;28355:17;:25;28373:6;;;;;;;28355:25;;;;;;;;;;;;28346:34;;28295:113;;;28441:6;28434:13;;;;;;27626:845;27501:989;27475:1015;27429:1061;28518:31;;;;;;;;;;;;;;27282:1275;;;;:::o;33759:485::-;33861:27;33890:23;33931:38;33972:15;:24;33988:7;33972:24;;;;;;;;;;;33931:65;;34149:18;34126:41;;34206:19;34200:26;34181:45;;34111:126;33759:485;;;:::o;32987:659::-;33136:11;33301:16;33294:5;33290:28;33281:37;;33461:16;33450:9;33446:32;33433:45;;33611:15;33600:9;33597:30;33589:5;33578:9;33575:20;33572:56;33562:66;;32987:659;;;;;:::o;39645:159::-;;;;;:::o;54213:311::-;54348:7;54368:16;17008:3;54394:19;:41;;54368:68;;17008:3;54462:31;54473:4;54479:2;54483:9;54462:10;:31::i;:::-;54454:40;;:62;;54447:69;;;54213:311;;;;;:::o;29105:450::-;29185:14;29353:16;29346:5;29342:28;29333:37;;29530:5;29516:11;29491:23;29487:41;29484:52;29477:5;29474:63;29464:73;;29105:450;;;;:::o;40469:158::-;;;;;:::o;62087:97::-;62145:6;62171:5;62164:12;;62087:97;:::o;73704:98::-;73757:7;73784:10;73777:17;;73704:98;:::o;76250:191::-;76324:16;76343:6;;;;;;;;;;;76324:25;;76369:8;76360:6;;:17;;;;;;;;;;;;;;;;;;76424:8;76393:40;;76414:8;76393:40;;;;;;;;;;;;76313:128;76250:191;:::o;48736:112::-;48813:27;48823:2;48827:8;48813:27;;;;;;;;;;;;:9;:27::i;:::-;48736:112;;:::o;41067:716::-;41230:4;41276:2;41251:45;;;41297:19;:17;:19::i;:::-;41318:4;41324:7;41333:5;41251:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41247:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41551:1;41534:6;:13;:18;41530:235;;41580:40;;;;;;;;;;;;;;41530:235;41723:6;41717:13;41708:6;41704:2;41700:15;41693:38;41247:529;41420:54;;;41410:64;;;:6;:64;;;;41403:71;;;41067:716;;;;;;:::o;71266:723::-;71322:13;71552:1;71543:5;:10;71539:53;;71570:10;;;;;;;;;;;;;;;;;;;;;71539:53;71602:12;71617:5;71602:20;;71633:14;71658:78;71673:1;71665:4;:9;71658:78;;71691:8;;;;;:::i;:::-;;;;71722:2;71714:10;;;;;:::i;:::-;;;71658:78;;;71746:19;71778:6;71768:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71746:39;;71796:154;71812:1;71803:5;:10;71796:154;;71840:1;71830:11;;;;;:::i;:::-;;;71907:2;71899:5;:10;;;;:::i;:::-;71886:2;:24;;;;:::i;:::-;71873:39;;71856:6;71863;71856:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;71936:2;71927:11;;;;;:::i;:::-;;;71796:154;;;71974:6;71960:21;;;;;71266:723;;;;:::o;58645:157::-;58730:4;58769:25;58754:40;;;:11;:40;;;;58747:47;;58645:157;;;:::o;53914:147::-;54051:6;53914:147;;;;;:::o;47963:689::-;48094:19;48100:2;48104:8;48094:5;:19::i;:::-;48173:1;48155:2;:14;;;:19;48151:483;;48195:11;48209:13;;48195:27;;48241:13;48263:8;48257:3;:14;48241:30;;48290:233;48321:62;48360:1;48364:2;48368:7;;;;;;48377:5;48321:30;:62::i;:::-;48316:167;;48419:40;;;;;;;;;;;;;;48316:167;48518:3;48510:5;:11;48290:233;;48605:3;48588:13;;:20;48584:34;;48610:8;;;48584:34;48176:458;;48151:483;47963:689;;;:::o;42245:2966::-;42318:20;42341:13;;42318:36;;42381:1;42369:8;:13;42365:44;;42391:18;;;;;;;;;;;;;;42365:44;42422:61;42452:1;42456:2;42460:12;42474:8;42422:21;:61::i;:::-;42966:1;15966:2;42936:1;:26;;42935:32;42923:8;:45;42897:18;:22;42916:2;42897:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43245:139;43282:2;43336:33;43359:1;43363:2;43367:1;43336:14;:33::i;:::-;43303:30;43324:8;43303:20;:30::i;:::-;:66;43245:18;:139::i;:::-;43211:17;:31;43229:12;43211:31;;;;;;;;;;;:173;;;;43401:16;43432:11;43461:8;43446:12;:23;43432:37;;43982:16;43978:2;43974:25;43962:37;;44354:12;44314:8;44273:1;44211:25;44152:1;44091;44064:335;44725:1;44711:12;44707:20;44665:346;44766:3;44757:7;44754:16;44665:346;;44984:7;44974:8;44971:1;44944:25;44941:1;44938;44933:59;44819:1;44810:7;44806:15;44795:26;;44665:346;;;44669:77;45056:1;45044:8;:13;45040:45;;45066:19;;;;;;;;;;;;;;45040:45;45118:3;45102:13;:19;;;;42671:2462;;45143:60;45172:1;45176:2;45180:12;45194:8;45143:20;:60::i;:::-;42307:2904;42245:2966;;:::o;29657:324::-;29727:14;29960:1;29950:8;29947:15;29921:24;29917:46;29907:56;;29657:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:474::-;5935:6;5943;5992:2;5980:9;5971:7;5967:23;5963:32;5960:119;;;5998:79;;:::i;:::-;5960:119;6118:1;6143:53;6188:7;6179:6;6168:9;6164:22;6143:53;:::i;:::-;6133:63;;6089:117;6245:2;6271:53;6316:7;6307:6;6296:9;6292:22;6271:53;:::i;:::-;6261:63;;6216:118;5867:474;;;;;:::o;6347:332::-;6468:4;6506:2;6495:9;6491:18;6483:26;;6519:71;6587:1;6576:9;6572:17;6563:6;6519:71;:::i;:::-;6600:72;6668:2;6657:9;6653:18;6644:6;6600:72;:::i;:::-;6347:332;;;;;:::o;6685:60::-;6713:3;6734:5;6727:12;;6685:60;;;:::o;6751:142::-;6801:9;6834:53;6852:34;6861:24;6879:5;6861:24;:::i;:::-;6852:34;:::i;:::-;6834:53;:::i;:::-;6821:66;;6751:142;;;:::o;6899:126::-;6949:9;6982:37;7013:5;6982:37;:::i;:::-;6969:50;;6899:126;;;:::o;7031:157::-;7112:9;7145:37;7176:5;7145:37;:::i;:::-;7132:50;;7031:157;;;:::o;7194:193::-;7312:68;7374:5;7312:68;:::i;:::-;7307:3;7300:81;7194:193;;:::o;7393:284::-;7517:4;7555:2;7544:9;7540:18;7532:26;;7568:102;7667:1;7656:9;7652:17;7643:6;7568:102;:::i;:::-;7393:284;;;;:::o;7683:329::-;7742:6;7791:2;7779:9;7770:7;7766:23;7762:32;7759:119;;;7797:79;;:::i;:::-;7759:119;7917:1;7942:53;7987:7;7978:6;7967:9;7963:22;7942:53;:::i;:::-;7932:63;;7888:117;7683:329;;;;:::o;8018:116::-;8088:21;8103:5;8088:21;:::i;:::-;8081:5;8078:32;8068:60;;8124:1;8121;8114:12;8068:60;8018:116;:::o;8140:133::-;8183:5;8221:6;8208:20;8199:29;;8237:30;8261:5;8237:30;:::i;:::-;8140:133;;;;:::o;8279:468::-;8344:6;8352;8401:2;8389:9;8380:7;8376:23;8372:32;8369:119;;;8407:79;;:::i;:::-;8369:119;8527:1;8552:53;8597:7;8588:6;8577:9;8573:22;8552:53;:::i;:::-;8542:63;;8498:117;8654:2;8680:50;8722:7;8713:6;8702:9;8698:22;8680:50;:::i;:::-;8670:60;;8625:115;8279:468;;;;;:::o;8753:117::-;8862:1;8859;8852:12;8876:117;8985:1;8982;8975:12;8999:180;9047:77;9044:1;9037:88;9144:4;9141:1;9134:15;9168:4;9165:1;9158:15;9185:281;9268:27;9290:4;9268:27;:::i;:::-;9260:6;9256:40;9398:6;9386:10;9383:22;9362:18;9350:10;9347:34;9344:62;9341:88;;;9409:18;;:::i;:::-;9341:88;9449:10;9445:2;9438:22;9228:238;9185:281;;:::o;9472:129::-;9506:6;9533:20;;:::i;:::-;9523:30;;9562:33;9590:4;9582:6;9562:33;:::i;:::-;9472:129;;;:::o;9607:307::-;9668:4;9758:18;9750:6;9747:30;9744:56;;;9780:18;;:::i;:::-;9744:56;9818:29;9840:6;9818:29;:::i;:::-;9810:37;;9902:4;9896;9892:15;9884:23;;9607:307;;;:::o;9920:146::-;10017:6;10012:3;10007;9994:30;10058:1;10049:6;10044:3;10040:16;10033:27;9920:146;;;:::o;10072:423::-;10149:5;10174:65;10190:48;10231:6;10190:48;:::i;:::-;10174:65;:::i;:::-;10165:74;;10262:6;10255:5;10248:21;10300:4;10293:5;10289:16;10338:3;10329:6;10324:3;10320:16;10317:25;10314:112;;;10345:79;;:::i;:::-;10314:112;10435:54;10482:6;10477:3;10472;10435:54;:::i;:::-;10155:340;10072:423;;;;;:::o;10514:338::-;10569:5;10618:3;10611:4;10603:6;10599:17;10595:27;10585:122;;10626:79;;:::i;:::-;10585:122;10743:6;10730:20;10768:78;10842:3;10834:6;10827:4;10819:6;10815:17;10768:78;:::i;:::-;10759:87;;10575:277;10514:338;;;;:::o;10858:943::-;10953:6;10961;10969;10977;11026:3;11014:9;11005:7;11001:23;10997:33;10994:120;;;11033:79;;:::i;:::-;10994:120;11153:1;11178:53;11223:7;11214:6;11203:9;11199:22;11178:53;:::i;:::-;11168:63;;11124:117;11280:2;11306:53;11351:7;11342:6;11331:9;11327:22;11306:53;:::i;:::-;11296:63;;11251:118;11408:2;11434:53;11479:7;11470:6;11459:9;11455:22;11434:53;:::i;:::-;11424:63;;11379:118;11564:2;11553:9;11549:18;11536:32;11595:18;11587:6;11584:30;11581:117;;;11617:79;;:::i;:::-;11581:117;11722:62;11776:7;11767:6;11756:9;11752:22;11722:62;:::i;:::-;11712:72;;11507:287;10858:943;;;;;;;:::o;11807:117::-;11916:1;11913;11906:12;11930:117;12039:1;12036;12029:12;12067:553;12125:8;12135:6;12185:3;12178:4;12170:6;12166:17;12162:27;12152:122;;12193:79;;:::i;:::-;12152:122;12306:6;12293:20;12283:30;;12336:18;12328:6;12325:30;12322:117;;;12358:79;;:::i;:::-;12322:117;12472:4;12464:6;12460:17;12448:29;;12526:3;12518:4;12510:6;12506:17;12496:8;12492:32;12489:41;12486:128;;;12533:79;;:::i;:::-;12486:128;12067:553;;;;;:::o;12626:529::-;12697:6;12705;12754:2;12742:9;12733:7;12729:23;12725:32;12722:119;;;12760:79;;:::i;:::-;12722:119;12908:1;12897:9;12893:17;12880:31;12938:18;12930:6;12927:30;12924:117;;;12960:79;;:::i;:::-;12924:117;13073:65;13130:7;13121:6;13110:9;13106:22;13073:65;:::i;:::-;13055:83;;;;12851:297;12626:529;;;;;:::o;13161:474::-;13229:6;13237;13286:2;13274:9;13265:7;13261:23;13257:32;13254:119;;;13292:79;;:::i;:::-;13254:119;13412:1;13437:53;13482:7;13473:6;13462:9;13458:22;13437:53;:::i;:::-;13427:63;;13383:117;13539:2;13565:53;13610:7;13601:6;13590:9;13586:22;13565:53;:::i;:::-;13555:63;;13510:118;13161:474;;;;;:::o;13641:180::-;13689:77;13686:1;13679:88;13786:4;13783:1;13776:15;13810:4;13807:1;13800:15;13827:320;13871:6;13908:1;13902:4;13898:12;13888:22;;13955:1;13949:4;13945:12;13976:18;13966:81;;14032:4;14024:6;14020:17;14010:27;;13966:81;14094:2;14086:6;14083:14;14063:18;14060:38;14057:84;;14113:18;;:::i;:::-;14057:84;13878:269;13827:320;;;:::o;14153:180::-;14201:77;14198:1;14191:88;14298:4;14295:1;14288:15;14322:4;14319:1;14312:15;14339:410;14379:7;14402:20;14420:1;14402:20;:::i;:::-;14397:25;;14436:20;14454:1;14436:20;:::i;:::-;14431:25;;14491:1;14488;14484:9;14513:30;14531:11;14513:30;:::i;:::-;14502:41;;14692:1;14683:7;14679:15;14676:1;14673:22;14653:1;14646:9;14626:83;14603:139;;14722:18;;:::i;:::-;14603:139;14387:362;14339:410;;;;:::o;14755:180::-;14803:77;14800:1;14793:88;14900:4;14897:1;14890:15;14924:4;14921:1;14914:15;14941:185;14981:1;14998:20;15016:1;14998:20;:::i;:::-;14993:25;;15032:20;15050:1;15032:20;:::i;:::-;15027:25;;15071:1;15061:35;;15076:18;;:::i;:::-;15061:35;15118:1;15115;15111:9;15106:14;;14941:185;;;;:::o;15132:182::-;15272:34;15268:1;15260:6;15256:14;15249:58;15132:182;:::o;15320:366::-;15462:3;15483:67;15547:2;15542:3;15483:67;:::i;:::-;15476:74;;15559:93;15648:3;15559:93;:::i;:::-;15677:2;15672:3;15668:12;15661:19;;15320:366;;;:::o;15692:419::-;15858:4;15896:2;15885:9;15881:18;15873:26;;15945:9;15939:4;15935:20;15931:1;15920:9;15916:17;15909:47;15973:131;16099:4;15973:131;:::i;:::-;15965:139;;15692:419;;;:::o;16117:191::-;16157:3;16176:20;16194:1;16176:20;:::i;:::-;16171:25;;16210:20;16228:1;16210:20;:::i;:::-;16205:25;;16253:1;16250;16246:9;16239:16;;16274:3;16271:1;16268:10;16265:36;;;16281:18;;:::i;:::-;16265:36;16117:191;;;;:::o;16314:180::-;16454:32;16450:1;16442:6;16438:14;16431:56;16314:180;:::o;16500:366::-;16642:3;16663:67;16727:2;16722:3;16663:67;:::i;:::-;16656:74;;16739:93;16828:3;16739:93;:::i;:::-;16857:2;16852:3;16848:12;16841:19;;16500:366;;;:::o;16872:419::-;17038:4;17076:2;17065:9;17061:18;17053:26;;17125:9;17119:4;17115:20;17111:1;17100:9;17096:17;17089:47;17153:131;17279:4;17153:131;:::i;:::-;17145:139;;16872:419;;;:::o;17297:174::-;17437:26;17433:1;17425:6;17421:14;17414:50;17297:174;:::o;17477:366::-;17619:3;17640:67;17704:2;17699:3;17640:67;:::i;:::-;17633:74;;17716:93;17805:3;17716:93;:::i;:::-;17834:2;17829:3;17825:12;17818:19;;17477:366;;;:::o;17849:419::-;18015:4;18053:2;18042:9;18038:18;18030:26;;18102:9;18096:4;18092:20;18088:1;18077:9;18073:17;18066:47;18130:131;18256:4;18130:131;:::i;:::-;18122:139;;17849:419;;;:::o;18274:178::-;18414:30;18410:1;18402:6;18398:14;18391:54;18274:178;:::o;18458:366::-;18600:3;18621:67;18685:2;18680:3;18621:67;:::i;:::-;18614:74;;18697:93;18786:3;18697:93;:::i;:::-;18815:2;18810:3;18806:12;18799:19;;18458:366;;;:::o;18830:419::-;18996:4;19034:2;19023:9;19019:18;19011:26;;19083:9;19077:4;19073:20;19069:1;19058:9;19054:17;19047:47;19111:131;19237:4;19111:131;:::i;:::-;19103:139;;18830:419;;;:::o;19255:234::-;19395:34;19391:1;19383:6;19379:14;19372:58;19464:17;19459:2;19451:6;19447:15;19440:42;19255:234;:::o;19495:366::-;19637:3;19658:67;19722:2;19717:3;19658:67;:::i;:::-;19651:74;;19734:93;19823:3;19734:93;:::i;:::-;19852:2;19847:3;19843:12;19836:19;;19495:366;;;:::o;19867:419::-;20033:4;20071:2;20060:9;20056:18;20048:26;;20120:9;20114:4;20110:20;20106:1;20095:9;20091:17;20084:47;20148:131;20274:4;20148:131;:::i;:::-;20140:139;;19867:419;;;:::o;20292:148::-;20394:11;20431:3;20416:18;;20292:148;;;;:::o;20446:141::-;20495:4;20518:3;20510:11;;20541:3;20538:1;20531:14;20575:4;20572:1;20562:18;20554:26;;20446:141;;;:::o;20617:874::-;20720:3;20757:5;20751:12;20786:36;20812:9;20786:36;:::i;:::-;20838:89;20920:6;20915:3;20838:89;:::i;:::-;20831:96;;20958:1;20947:9;20943:17;20974:1;20969:166;;;;21149:1;21144:341;;;;20936:549;;20969:166;21053:4;21049:9;21038;21034:25;21029:3;21022:38;21115:6;21108:14;21101:22;21093:6;21089:35;21084:3;21080:45;21073:52;;20969:166;;21144:341;21211:38;21243:5;21211:38;:::i;:::-;21271:1;21285:154;21299:6;21296:1;21293:13;21285:154;;;21373:7;21367:14;21363:1;21358:3;21354:11;21347:35;21423:1;21414:7;21410:15;21399:26;;21321:4;21318:1;21314:12;21309:17;;21285:154;;;21468:6;21463:3;21459:16;21452:23;;21151:334;;20936:549;;20724:767;;20617:874;;;;:::o;21497:390::-;21603:3;21631:39;21664:5;21631:39;:::i;:::-;21686:89;21768:6;21763:3;21686:89;:::i;:::-;21679:96;;21784:65;21842:6;21837:3;21830:4;21823:5;21819:16;21784:65;:::i;:::-;21874:6;21869:3;21865:16;21858:23;;21607:280;21497:390;;;;:::o;21893:429::-;22070:3;22092:92;22180:3;22171:6;22092:92;:::i;:::-;22085:99;;22201:95;22292:3;22283:6;22201:95;:::i;:::-;22194:102;;22313:3;22306:10;;21893:429;;;;;:::o;22328:97::-;22387:6;22415:3;22405:13;;22328:97;;;;:::o;22431:93::-;22468:6;22515:2;22510;22503:5;22499:14;22495:23;22485:33;;22431:93;;;:::o;22530:107::-;22574:8;22624:5;22618:4;22614:16;22593:37;;22530:107;;;;:::o;22643:393::-;22712:6;22762:1;22750:10;22746:18;22785:97;22815:66;22804:9;22785:97;:::i;:::-;22903:39;22933:8;22922:9;22903:39;:::i;:::-;22891:51;;22975:4;22971:9;22964:5;22960:21;22951:30;;23024:4;23014:8;23010:19;23003:5;23000:30;22990:40;;22719:317;;22643:393;;;;;:::o;23042:142::-;23092:9;23125:53;23143:34;23152:24;23170:5;23152:24;:::i;:::-;23143:34;:::i;:::-;23125:53;:::i;:::-;23112:66;;23042:142;;;:::o;23190:75::-;23233:3;23254:5;23247:12;;23190:75;;;:::o;23271:269::-;23381:39;23412:7;23381:39;:::i;:::-;23442:91;23491:41;23515:16;23491:41;:::i;:::-;23483:6;23476:4;23470:11;23442:91;:::i;:::-;23436:4;23429:105;23347:193;23271:269;;;:::o;23546:73::-;23591:3;23546:73;:::o;23625:189::-;23702:32;;:::i;:::-;23743:65;23801:6;23793;23787:4;23743:65;:::i;:::-;23678:136;23625:189;;:::o;23820:186::-;23880:120;23897:3;23890:5;23887:14;23880:120;;;23951:39;23988:1;23981:5;23951:39;:::i;:::-;23924:1;23917:5;23913:13;23904:22;;23880:120;;;23820:186;;:::o;24012:543::-;24113:2;24108:3;24105:11;24102:446;;;24147:38;24179:5;24147:38;:::i;:::-;24231:29;24249:10;24231:29;:::i;:::-;24221:8;24217:44;24414:2;24402:10;24399:18;24396:49;;;24435:8;24420:23;;24396:49;24458:80;24514:22;24532:3;24514:22;:::i;:::-;24504:8;24500:37;24487:11;24458:80;:::i;:::-;24117:431;;24102:446;24012:543;;;:::o;24561:117::-;24615:8;24665:5;24659:4;24655:16;24634:37;;24561:117;;;;:::o;24684:169::-;24728:6;24761:51;24809:1;24805:6;24797:5;24794:1;24790:13;24761:51;:::i;:::-;24757:56;24842:4;24836;24832:15;24822:25;;24735:118;24684:169;;;;:::o;24858:295::-;24934:4;25080:29;25105:3;25099:4;25080:29;:::i;:::-;25072:37;;25142:3;25139:1;25135:11;25129:4;25126:21;25118:29;;24858:295;;;;:::o;25158:1403::-;25282:44;25322:3;25317;25282:44;:::i;:::-;25391:18;25383:6;25380:30;25377:56;;;25413:18;;:::i;:::-;25377:56;25457:38;25489:4;25483:11;25457:38;:::i;:::-;25542:67;25602:6;25594;25588:4;25542:67;:::i;:::-;25636:1;25665:2;25657:6;25654:14;25682:1;25677:632;;;;26353:1;26370:6;26367:84;;;26426:9;26421:3;26417:19;26404:33;26395:42;;26367:84;26477:67;26537:6;26530:5;26477:67;:::i;:::-;26471:4;26464:81;26326:229;25647:908;;25677:632;25729:4;25725:9;25717:6;25713:22;25763:37;25795:4;25763:37;:::i;:::-;25822:1;25836:215;25850:7;25847:1;25844:14;25836:215;;;25936:9;25931:3;25927:19;25914:33;25906:6;25899:49;25987:1;25979:6;25975:14;25965:24;;26034:2;26023:9;26019:18;26006:31;;25873:4;25870:1;25866:12;25861:17;;25836:215;;;26079:6;26070:7;26067:19;26064:186;;;26144:9;26139:3;26135:19;26122:33;26187:48;26229:4;26221:6;26217:17;26206:9;26187:48;:::i;:::-;26179:6;26172:64;26087:163;26064:186;26296:1;26292;26284:6;26280:14;26276:22;26270:4;26263:36;25684:625;;;25647:908;;25257:1304;;;25158:1403;;;:::o;26567:225::-;26707:34;26703:1;26695:6;26691:14;26684:58;26776:8;26771:2;26763:6;26759:15;26752:33;26567:225;:::o;26798:366::-;26940:3;26961:67;27025:2;27020:3;26961:67;:::i;:::-;26954:74;;27037:93;27126:3;27037:93;:::i;:::-;27155:2;27150:3;27146:12;27139:19;;26798:366;;;:::o;27170:419::-;27336:4;27374:2;27363:9;27359:18;27351:26;;27423:9;27417:4;27413:20;27409:1;27398:9;27394:17;27387:47;27451:131;27577:4;27451:131;:::i;:::-;27443:139;;27170:419;;;:::o;27595:98::-;27646:6;27680:5;27674:12;27664:22;;27595:98;;;:::o;27699:168::-;27782:11;27816:6;27811:3;27804:19;27856:4;27851:3;27847:14;27832:29;;27699:168;;;;:::o;27873:373::-;27959:3;27987:38;28019:5;27987:38;:::i;:::-;28041:70;28104:6;28099:3;28041:70;:::i;:::-;28034:77;;28120:65;28178:6;28173:3;28166:4;28159:5;28155:16;28120:65;:::i;:::-;28210:29;28232:6;28210:29;:::i;:::-;28205:3;28201:39;28194:46;;27963:283;27873:373;;;;:::o;28252:640::-;28447:4;28485:3;28474:9;28470:19;28462:27;;28499:71;28567:1;28556:9;28552:17;28543:6;28499:71;:::i;:::-;28580:72;28648:2;28637:9;28633:18;28624:6;28580:72;:::i;:::-;28662;28730:2;28719:9;28715:18;28706:6;28662:72;:::i;:::-;28781:9;28775:4;28771:20;28766:2;28755:9;28751:18;28744:48;28809:76;28880:4;28871:6;28809:76;:::i;:::-;28801:84;;28252:640;;;;;;;:::o;28898:141::-;28954:5;28985:6;28979:13;28970:22;;29001:32;29027:5;29001:32;:::i;:::-;28898:141;;;;:::o;29045:349::-;29114:6;29163:2;29151:9;29142:7;29138:23;29134:32;29131:119;;;29169:79;;:::i;:::-;29131:119;29289:1;29314:63;29369:7;29360:6;29349:9;29345:22;29314:63;:::i;:::-;29304:73;;29260:127;29045:349;;;;:::o;29400:233::-;29439:3;29462:24;29480:5;29462:24;:::i;:::-;29453:33;;29508:66;29501:5;29498:77;29495:103;;29578:18;;:::i;:::-;29495:103;29625:1;29618:5;29614:13;29607:20;;29400:233;;;:::o;29639:194::-;29679:4;29699:20;29717:1;29699:20;:::i;:::-;29694:25;;29733:20;29751:1;29733:20;:::i;:::-;29728:25;;29777:1;29774;29770:9;29762:17;;29801:1;29795:4;29792:11;29789:37;;;29806:18;;:::i;:::-;29789:37;29639:194;;;;:::o;29839:176::-;29871:1;29888:20;29906:1;29888:20;:::i;:::-;29883:25;;29922:20;29940:1;29922:20;:::i;:::-;29917:25;;29961:1;29951:35;;29966:18;;:::i;:::-;29951:35;30007:1;30004;30000:9;29995:14;;29839:176;;;;:::o;30021:180::-;30069:77;30066:1;30059:88;30166:4;30163:1;30156:15;30190:4;30187:1;30180:15

Swarm Source

ipfs://1af422f09615bd8f1298b8816c435fb73417325bcfb869a75fc4b25a213b5e26
Loading...
Loading
Loading...
Loading
[ 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.