ETH Price: $3,480.04 (+6.26%)
Gas: 6 Gwei

Token

GMLegendPunks (GMLP)
 

Overview

Max Total Supply

2,001 GMLP

Holders

248

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 GMLP
0xfd6bfabb633d59f41eda1cd20fb016dbae20d33d
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:
GMLegendPunks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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 no longer needed starting with Solidity 0.8. 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 substraction 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

    /**
     * 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: contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 1;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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





pragma solidity ^0.8.7;

contract GMLegendPunks is ERC721A, Ownable{
    using SafeMath for uint256;

    uint public maxPerTransactionForFreeMint = 5;
    uint public maxPerTransaction = 20;
    uint public supplyLimit = 20000;
    uint public freeSupply = 2000;
    bool public publicSaleActive = false;
    string public baseURI;
    uint256 public tokenPrice = .049 ether;

  constructor(string memory name, string memory symbol, string memory baseURIinput)
    ERC721A(name, symbol)
  {
      baseURI = baseURIinput;
  }

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

  function setBaseURI(string calldata newBaseUri) external onlyOwner {
    baseURI = newBaseUri;
  }

  function togglePublicSaleActive() external onlyOwner {
    publicSaleActive = !publicSaleActive;
  }
  
  function mint(uint256 _quantity) external payable{
      if(totalSupply() < freeSupply){
          require(_quantity <= maxPerTransactionForFreeMint, "Over max per transaction! Free mint is limited to 5 tokens per transaction.");
      }
      else{
          require(_quantity <= maxPerTransaction, "Over max per transaction! Limit is 20 per transaction.");
      }

      require(publicSaleActive == true, "Not Yet Active.");
      require((totalSupply() + _quantity) <= supplyLimit, "Supply reached");
      uint256 salePrice = totalSupply() >= freeSupply ? tokenPrice : 0;
      require(msg.value >= (salePrice * _quantity), "Insufficient funds");
      _safeMint(msg.sender, _quantity);
  }

  function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURIinput","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransactionForFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260056009556014600a55614e20600b556107d0600c556000600d60006101000a81548160ff02191690831515021790555066ae153d89fe8000600f553480156200004d57600080fd5b506040516200313538038062003135833981810160405281019062000073919062000306565b828281600290805190602001906200008d929190620001d8565b508060039080519060200190620000a6929190620001d8565b50620000b76200010160201b60201c565b6000819055505050620000df620000d36200010a60201b60201c565b6200011260201b60201c565b80600e9080519060200190620000f7929190620001d8565b5050505062000543565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e69062000454565b90600052602060002090601f0160209004810192826200020a576000855562000256565b82601f106200022557805160ff191683800117855562000256565b8280016001018555821562000256579182015b828111156200025557825182559160200191906001019062000238565b5b50905062000265919062000269565b5090565b5b80821115620002845760008160009055506001016200026a565b5090565b60006200029f6200029984620003e8565b620003bf565b905082815260208101848484011115620002be57620002bd62000523565b5b620002cb8482856200041e565b509392505050565b600082601f830112620002eb57620002ea6200051e565b5b8151620002fd84826020860162000288565b91505092915050565b6000806000606084860312156200032257620003216200052d565b5b600084015167ffffffffffffffff81111562000343576200034262000528565b5b6200035186828701620002d3565b935050602084015167ffffffffffffffff81111562000375576200037462000528565b5b6200038386828701620002d3565b925050604084015167ffffffffffffffff811115620003a757620003a662000528565b5b620003b586828701620002d3565b9150509250925092565b6000620003cb620003de565b9050620003d982826200048a565b919050565b6000604051905090565b600067ffffffffffffffff821115620004065762000405620004ef565b5b620004118262000532565b9050602081019050919050565b60005b838110156200043e57808201518184015260208101905062000421565b838111156200044e576000848401525b50505050565b600060028204905060018216806200046d57607f821691505b60208210811415620004845762000483620004c0565b5b50919050565b620004958262000532565b810181811067ffffffffffffffff82111715620004b757620004b6620004ef565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b612be280620005536000396000f3fe6080604052600436106101b75760003560e01c80636c0360eb116100ec578063a0712d681161008a578063bc8893b411610064578063bc8893b414610581578063c87b56dd146105ac578063e985e9c5146105e9578063f2fde38b14610626576101b7565b8063a0712d6814610520578063a22cb4651461053c578063b88d4fde14610565576101b7565b80637ff9b596116100c65780637ff9b596146104745780638da5cb5b1461049f57806395d89b41146104ca5780639e2fafce146104f5576101b7565b80636c0360eb146103f557806370a0823114610420578063715018a61461045d576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103485780634b980d671461036457806355f804b31461038f5780636352211e146103b8576101b7565b806323b872dd146102ea57806324a6ab0c146103065780633ccfd60b14610331576101b7565b8063095ea7b311610195578063095ea7b3146102615780630c894cfe1461027d57806318160ddd1461029457806319d1997a146102bf576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061221f565b61064f565b6040516101f09190612543565b60405180910390f35b34801561020557600080fd5b5061020e6106e1565b60405161021b919061255e565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906122c6565b610773565b60405161025891906124dc565b60405180910390f35b61027b600480360381019061027691906121df565b6107f2565b005b34801561028957600080fd5b50610292610936565b005b3480156102a057600080fd5b506102a96109de565b6040516102b69190612660565b60405180910390f35b3480156102cb57600080fd5b506102d46109f5565b6040516102e19190612660565b60405180910390f35b61030460048036038101906102ff91906120c9565b6109fb565b005b34801561031257600080fd5b5061031b610d20565b6040516103289190612660565b60405180910390f35b34801561033d57600080fd5b50610346610d26565b005b610362600480360381019061035d91906120c9565b610df1565b005b34801561037057600080fd5b50610379610e11565b6040516103869190612660565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b19190612279565b610e17565b005b3480156103c457600080fd5b506103df60048036038101906103da91906122c6565b610ea9565b6040516103ec91906124dc565b60405180910390f35b34801561040157600080fd5b5061040a610ebb565b604051610417919061255e565b60405180910390f35b34801561042c57600080fd5b506104476004803603810190610442919061205c565b610f49565b6040516104549190612660565b60405180910390f35b34801561046957600080fd5b50610472611002565b005b34801561048057600080fd5b5061048961108a565b6040516104969190612660565b60405180910390f35b3480156104ab57600080fd5b506104b4611090565b6040516104c191906124dc565b60405180910390f35b3480156104d657600080fd5b506104df6110ba565b6040516104ec919061255e565b60405180910390f35b34801561050157600080fd5b5061050a61114c565b6040516105179190612660565b60405180910390f35b61053a600480360381019061053591906122c6565b611152565b005b34801561054857600080fd5b50610563600480360381019061055e919061219f565b61131c565b005b61057f600480360381019061057a919061211c565b611427565b005b34801561058d57600080fd5b5061059661149a565b6040516105a39190612543565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce91906122c6565b6114ad565b6040516105e0919061255e565b60405180910390f35b3480156105f557600080fd5b50610610600480360381019061060b9190612089565b61154c565b60405161061d9190612543565b60405180910390f35b34801561063257600080fd5b5061064d6004803603810190610648919061205c565b6115e0565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106aa57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106da5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106f09061287a565b80601f016020809104026020016040519081016040528092919081815260200182805461071c9061287a565b80156107695780601f1061073e57610100808354040283529160200191610769565b820191906000526020600020905b81548152906001019060200180831161074c57829003601f168201915b5050505050905090565b600061077e826116d8565b6107b4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107fd82610ea9565b90508073ffffffffffffffffffffffffffffffffffffffff1661081e611737565b73ffffffffffffffffffffffffffffffffffffffff16146108815761084a81610845611737565b61154c565b610880576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61093e61173f565b73ffffffffffffffffffffffffffffffffffffffff1661095c611090565b73ffffffffffffffffffffffffffffffffffffffff16146109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990612620565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60006109e8611747565b6001546000540303905090565b600b5481565b6000610a0682611750565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a6d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a798461181e565b91509150610a8f8187610a8a611737565b611845565b610adb57610aa486610a9f611737565b61154c565b610ada576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b42576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4f8686866001611889565b8015610b5a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c2885610c0488888761188f565b7c0200000000000000000000000000000000000000000000000000000000176118b7565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cb0576000600185019050600060046000838152602001908152602001600020541415610cae576000548114610cad578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d1886868660016118e2565b505050505050565b600c5481565b610d2e61173f565b73ffffffffffffffffffffffffffffffffffffffff16610d4c611090565b73ffffffffffffffffffffffffffffffffffffffff1614610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9990612620565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ded573d6000803e3d6000fd5b5050565b610e0c83838360405180602001604052806000815250611427565b505050565b600a5481565b610e1f61173f565b73ffffffffffffffffffffffffffffffffffffffff16610e3d611090565b73ffffffffffffffffffffffffffffffffffffffff1614610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90612620565b60405180910390fd5b8181600e9190610ea4929190611e8a565b505050565b6000610eb482611750565b9050919050565b600e8054610ec89061287a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef49061287a565b8015610f415780601f10610f1657610100808354040283529160200191610f41565b820191906000526020600020905b815481529060010190602001808311610f2457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61100a61173f565b73ffffffffffffffffffffffffffffffffffffffff16611028611090565b73ffffffffffffffffffffffffffffffffffffffff161461107e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107590612620565b60405180910390fd5b61108860006118e8565b565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110c99061287a565b80601f01602080910402602001604051908101604052809291908181526020018280546110f59061287a565b80156111425780601f1061111757610100808354040283529160200191611142565b820191906000526020600020905b81548152906001019060200180831161112557829003601f168201915b5050505050905090565b60095481565b600c5461115d6109de565b10156111ad576009548111156111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90612580565b60405180910390fd5b6111f3565b600a548111156111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e9906125e0565b60405180910390fd5b5b60011515600d60009054906101000a900460ff16151514611249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611240906125c0565b60405180910390fd5b600b54816112556109de565b61125f9190612714565b11156112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790612640565b60405180910390fd5b6000600c546112ad6109de565b10156112ba5760006112be565b600f545b905081816112cc919061276a565b34101561130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590612600565b60405180910390fd5b61131833836119ae565b5050565b8060076000611329611737565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113d6611737565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161141b9190612543565b60405180910390a35050565b6114328484846109fb565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114945761145d848484846119cc565b611493576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d60009054906101000a900460ff1681565b60606114b8826116d8565b6114ee576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114f8611b2c565b90506000815114156115195760405180602001604052806000815250611544565b8061152384611bbe565b6040516020016115349291906124b8565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115e861173f565b73ffffffffffffffffffffffffffffffffffffffff16611606611090565b73ffffffffffffffffffffffffffffffffffffffff161461165c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165390612620565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c3906125a0565b60405180910390fd5b6116d5816118e8565b50565b6000816116e3611747565b111580156116f2575060005482105b8015611730575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b60006001905090565b6000808290508061175f611747565b116117e7576000548110156117e65760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117e4575b60008114156117da5760046000836001900393508381526020019081526020016000205490506117af565b8092505050611819565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118a6868684611c17565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119c8828260405180602001604052806000815250611c20565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119f2611737565b8786866040518563ffffffff1660e01b8152600401611a1494939291906124f7565b602060405180830381600087803b158015611a2e57600080fd5b505af1925050508015611a5f57506040513d601f19601f82011682018060405250810190611a5c919061224c565b60015b611ad9573d8060008114611a8f576040519150601f19603f3d011682016040523d82523d6000602084013e611a94565b606091505b50600081511415611ad1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611b3b9061287a565b80601f0160208091040260200160405190810160405280929190818152602001828054611b679061287a565b8015611bb45780601f10611b8957610100808354040283529160200191611bb4565b820191906000526020600020905b815481529060010190602001808311611b9757829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611c0257600184039350600a81066030018453600a8104905080611bfd57611c02565b611bd7565b50828103602084039350808452505050919050565b60009392505050565b611c2a8383611cbd565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cb857600080549050600083820390505b611c6a60008683806001019450866119cc565b611ca0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c57578160005414611cb557600080fd5b50505b505050565b6000805490506000821415611cfe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d0b6000848385611889565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d8283611d73600086600061188f565b611d7c85611e7a565b176118b7565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611e2357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611de8565b506000821415611e5f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e7560008483856118e2565b505050565b60006001821460e11b9050919050565b828054611e969061287a565b90600052602060002090601f016020900481019282611eb85760008555611eff565b82601f10611ed157803560ff1916838001178555611eff565b82800160010185558215611eff579182015b82811115611efe578235825591602001919060010190611ee3565b5b509050611f0c9190611f10565b5090565b5b80821115611f29576000816000905550600101611f11565b5090565b6000611f40611f3b846126a0565b61267b565b905082815260208101848484011115611f5c57611f5b612979565b5b611f67848285612838565b509392505050565b600081359050611f7e81612b50565b92915050565b600081359050611f9381612b67565b92915050565b600081359050611fa881612b7e565b92915050565b600081519050611fbd81612b7e565b92915050565b600082601f830112611fd857611fd761296f565b5b8135611fe8848260208601611f2d565b91505092915050565b60008083601f8401126120075761200661296f565b5b8235905067ffffffffffffffff8111156120245761202361296a565b5b6020830191508360018202830111156120405761203f612974565b5b9250929050565b60008135905061205681612b95565b92915050565b60006020828403121561207257612071612983565b5b600061208084828501611f6f565b91505092915050565b600080604083850312156120a05761209f612983565b5b60006120ae85828601611f6f565b92505060206120bf85828601611f6f565b9150509250929050565b6000806000606084860312156120e2576120e1612983565b5b60006120f086828701611f6f565b935050602061210186828701611f6f565b925050604061211286828701612047565b9150509250925092565b6000806000806080858703121561213657612135612983565b5b600061214487828801611f6f565b945050602061215587828801611f6f565b935050604061216687828801612047565b925050606085013567ffffffffffffffff8111156121875761218661297e565b5b61219387828801611fc3565b91505092959194509250565b600080604083850312156121b6576121b5612983565b5b60006121c485828601611f6f565b92505060206121d585828601611f84565b9150509250929050565b600080604083850312156121f6576121f5612983565b5b600061220485828601611f6f565b925050602061221585828601612047565b9150509250929050565b60006020828403121561223557612234612983565b5b600061224384828501611f99565b91505092915050565b60006020828403121561226257612261612983565b5b600061227084828501611fae565b91505092915050565b600080602083850312156122905761228f612983565b5b600083013567ffffffffffffffff8111156122ae576122ad61297e565b5b6122ba85828601611ff1565b92509250509250929050565b6000602082840312156122dc576122db612983565b5b60006122ea84828501612047565b91505092915050565b6122fc816127c4565b82525050565b61230b816127d6565b82525050565b600061231c826126d1565b61232681856126e7565b9350612336818560208601612847565b61233f81612988565b840191505092915050565b6000612355826126dc565b61235f81856126f8565b935061236f818560208601612847565b61237881612988565b840191505092915050565b600061238e826126dc565b6123988185612709565b93506123a8818560208601612847565b80840191505092915050565b60006123c1604b836126f8565b91506123cc82612999565b606082019050919050565b60006123e46026836126f8565b91506123ef82612a0e565b604082019050919050565b6000612407600f836126f8565b915061241282612a5d565b602082019050919050565b600061242a6036836126f8565b915061243582612a86565b604082019050919050565b600061244d6012836126f8565b915061245882612ad5565b602082019050919050565b60006124706020836126f8565b915061247b82612afe565b602082019050919050565b6000612493600e836126f8565b915061249e82612b27565b602082019050919050565b6124b28161282e565b82525050565b60006124c48285612383565b91506124d08284612383565b91508190509392505050565b60006020820190506124f160008301846122f3565b92915050565b600060808201905061250c60008301876122f3565b61251960208301866122f3565b61252660408301856124a9565b81810360608301526125388184612311565b905095945050505050565b60006020820190506125586000830184612302565b92915050565b60006020820190508181036000830152612578818461234a565b905092915050565b60006020820190508181036000830152612599816123b4565b9050919050565b600060208201905081810360008301526125b9816123d7565b9050919050565b600060208201905081810360008301526125d9816123fa565b9050919050565b600060208201905081810360008301526125f98161241d565b9050919050565b6000602082019050818103600083015261261981612440565b9050919050565b6000602082019050818103600083015261263981612463565b9050919050565b6000602082019050818103600083015261265981612486565b9050919050565b600060208201905061267560008301846124a9565b92915050565b6000612685612696565b905061269182826128ac565b919050565b6000604051905090565b600067ffffffffffffffff8211156126bb576126ba61293b565b5b6126c482612988565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061271f8261282e565b915061272a8361282e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561275f5761275e6128dd565b5b828201905092915050565b60006127758261282e565b91506127808361282e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127b9576127b86128dd565b5b828202905092915050565b60006127cf8261280e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561286557808201518184015260208101905061284a565b83811115612874576000848401525b50505050565b6000600282049050600182168061289257607f821691505b602082108114156128a6576128a561290c565b5b50919050565b6128b582612988565b810181811067ffffffffffffffff821117156128d4576128d361293b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f766572206d617820706572207472616e73616374696f6e212046726565206d60008201527f696e74206973206c696d6974656420746f203520746f6b656e7320706572207460208201527f72616e73616374696f6e2e000000000000000000000000000000000000000000604082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420596574204163746976652e0000000000000000000000000000000000600082015250565b7f4f766572206d617820706572207472616e73616374696f6e21204c696d69742060008201527f697320323020706572207472616e73616374696f6e2e00000000000000000000602082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f537570706c792072656163686564000000000000000000000000000000000000600082015250565b612b59816127c4565b8114612b6457600080fd5b50565b612b70816127d6565b8114612b7b57600080fd5b50565b612b87816127e2565b8114612b9257600080fd5b50565b612b9e8161282e565b8114612ba957600080fd5b5056fea2646970667358221220719f32804b2cc0ed7c46472bfc8a480506f13067920cf86daa902b9dc37ec12a64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d474d4c6567656e6450756e6b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004474d4c5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d61424c356273754a59527332426d6869344a7838543364546e43767a64716e4a7652474557614c6b644d52622f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636c0360eb116100ec578063a0712d681161008a578063bc8893b411610064578063bc8893b414610581578063c87b56dd146105ac578063e985e9c5146105e9578063f2fde38b14610626576101b7565b8063a0712d6814610520578063a22cb4651461053c578063b88d4fde14610565576101b7565b80637ff9b596116100c65780637ff9b596146104745780638da5cb5b1461049f57806395d89b41146104ca5780639e2fafce146104f5576101b7565b80636c0360eb146103f557806370a0823114610420578063715018a61461045d576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103485780634b980d671461036457806355f804b31461038f5780636352211e146103b8576101b7565b806323b872dd146102ea57806324a6ab0c146103065780633ccfd60b14610331576101b7565b8063095ea7b311610195578063095ea7b3146102615780630c894cfe1461027d57806318160ddd1461029457806319d1997a146102bf576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061221f565b61064f565b6040516101f09190612543565b60405180910390f35b34801561020557600080fd5b5061020e6106e1565b60405161021b919061255e565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906122c6565b610773565b60405161025891906124dc565b60405180910390f35b61027b600480360381019061027691906121df565b6107f2565b005b34801561028957600080fd5b50610292610936565b005b3480156102a057600080fd5b506102a96109de565b6040516102b69190612660565b60405180910390f35b3480156102cb57600080fd5b506102d46109f5565b6040516102e19190612660565b60405180910390f35b61030460048036038101906102ff91906120c9565b6109fb565b005b34801561031257600080fd5b5061031b610d20565b6040516103289190612660565b60405180910390f35b34801561033d57600080fd5b50610346610d26565b005b610362600480360381019061035d91906120c9565b610df1565b005b34801561037057600080fd5b50610379610e11565b6040516103869190612660565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b19190612279565b610e17565b005b3480156103c457600080fd5b506103df60048036038101906103da91906122c6565b610ea9565b6040516103ec91906124dc565b60405180910390f35b34801561040157600080fd5b5061040a610ebb565b604051610417919061255e565b60405180910390f35b34801561042c57600080fd5b506104476004803603810190610442919061205c565b610f49565b6040516104549190612660565b60405180910390f35b34801561046957600080fd5b50610472611002565b005b34801561048057600080fd5b5061048961108a565b6040516104969190612660565b60405180910390f35b3480156104ab57600080fd5b506104b4611090565b6040516104c191906124dc565b60405180910390f35b3480156104d657600080fd5b506104df6110ba565b6040516104ec919061255e565b60405180910390f35b34801561050157600080fd5b5061050a61114c565b6040516105179190612660565b60405180910390f35b61053a600480360381019061053591906122c6565b611152565b005b34801561054857600080fd5b50610563600480360381019061055e919061219f565b61131c565b005b61057f600480360381019061057a919061211c565b611427565b005b34801561058d57600080fd5b5061059661149a565b6040516105a39190612543565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce91906122c6565b6114ad565b6040516105e0919061255e565b60405180910390f35b3480156105f557600080fd5b50610610600480360381019061060b9190612089565b61154c565b60405161061d9190612543565b60405180910390f35b34801561063257600080fd5b5061064d6004803603810190610648919061205c565b6115e0565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106aa57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106da5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106f09061287a565b80601f016020809104026020016040519081016040528092919081815260200182805461071c9061287a565b80156107695780601f1061073e57610100808354040283529160200191610769565b820191906000526020600020905b81548152906001019060200180831161074c57829003601f168201915b5050505050905090565b600061077e826116d8565b6107b4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107fd82610ea9565b90508073ffffffffffffffffffffffffffffffffffffffff1661081e611737565b73ffffffffffffffffffffffffffffffffffffffff16146108815761084a81610845611737565b61154c565b610880576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61093e61173f565b73ffffffffffffffffffffffffffffffffffffffff1661095c611090565b73ffffffffffffffffffffffffffffffffffffffff16146109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990612620565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60006109e8611747565b6001546000540303905090565b600b5481565b6000610a0682611750565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a6d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a798461181e565b91509150610a8f8187610a8a611737565b611845565b610adb57610aa486610a9f611737565b61154c565b610ada576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b42576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4f8686866001611889565b8015610b5a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c2885610c0488888761188f565b7c0200000000000000000000000000000000000000000000000000000000176118b7565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cb0576000600185019050600060046000838152602001908152602001600020541415610cae576000548114610cad578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d1886868660016118e2565b505050505050565b600c5481565b610d2e61173f565b73ffffffffffffffffffffffffffffffffffffffff16610d4c611090565b73ffffffffffffffffffffffffffffffffffffffff1614610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9990612620565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ded573d6000803e3d6000fd5b5050565b610e0c83838360405180602001604052806000815250611427565b505050565b600a5481565b610e1f61173f565b73ffffffffffffffffffffffffffffffffffffffff16610e3d611090565b73ffffffffffffffffffffffffffffffffffffffff1614610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90612620565b60405180910390fd5b8181600e9190610ea4929190611e8a565b505050565b6000610eb482611750565b9050919050565b600e8054610ec89061287a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef49061287a565b8015610f415780601f10610f1657610100808354040283529160200191610f41565b820191906000526020600020905b815481529060010190602001808311610f2457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61100a61173f565b73ffffffffffffffffffffffffffffffffffffffff16611028611090565b73ffffffffffffffffffffffffffffffffffffffff161461107e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107590612620565b60405180910390fd5b61108860006118e8565b565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110c99061287a565b80601f01602080910402602001604051908101604052809291908181526020018280546110f59061287a565b80156111425780601f1061111757610100808354040283529160200191611142565b820191906000526020600020905b81548152906001019060200180831161112557829003601f168201915b5050505050905090565b60095481565b600c5461115d6109de565b10156111ad576009548111156111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90612580565b60405180910390fd5b6111f3565b600a548111156111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e9906125e0565b60405180910390fd5b5b60011515600d60009054906101000a900460ff16151514611249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611240906125c0565b60405180910390fd5b600b54816112556109de565b61125f9190612714565b11156112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790612640565b60405180910390fd5b6000600c546112ad6109de565b10156112ba5760006112be565b600f545b905081816112cc919061276a565b34101561130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590612600565b60405180910390fd5b61131833836119ae565b5050565b8060076000611329611737565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113d6611737565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161141b9190612543565b60405180910390a35050565b6114328484846109fb565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114945761145d848484846119cc565b611493576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d60009054906101000a900460ff1681565b60606114b8826116d8565b6114ee576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114f8611b2c565b90506000815114156115195760405180602001604052806000815250611544565b8061152384611bbe565b6040516020016115349291906124b8565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115e861173f565b73ffffffffffffffffffffffffffffffffffffffff16611606611090565b73ffffffffffffffffffffffffffffffffffffffff161461165c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165390612620565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c3906125a0565b60405180910390fd5b6116d5816118e8565b50565b6000816116e3611747565b111580156116f2575060005482105b8015611730575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b60006001905090565b6000808290508061175f611747565b116117e7576000548110156117e65760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117e4575b60008114156117da5760046000836001900393508381526020019081526020016000205490506117af565b8092505050611819565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118a6868684611c17565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119c8828260405180602001604052806000815250611c20565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119f2611737565b8786866040518563ffffffff1660e01b8152600401611a1494939291906124f7565b602060405180830381600087803b158015611a2e57600080fd5b505af1925050508015611a5f57506040513d601f19601f82011682018060405250810190611a5c919061224c565b60015b611ad9573d8060008114611a8f576040519150601f19603f3d011682016040523d82523d6000602084013e611a94565b606091505b50600081511415611ad1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611b3b9061287a565b80601f0160208091040260200160405190810160405280929190818152602001828054611b679061287a565b8015611bb45780601f10611b8957610100808354040283529160200191611bb4565b820191906000526020600020905b815481529060010190602001808311611b9757829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611c0257600184039350600a81066030018453600a8104905080611bfd57611c02565b611bd7565b50828103602084039350808452505050919050565b60009392505050565b611c2a8383611cbd565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cb857600080549050600083820390505b611c6a60008683806001019450866119cc565b611ca0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c57578160005414611cb557600080fd5b50505b505050565b6000805490506000821415611cfe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d0b6000848385611889565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d8283611d73600086600061188f565b611d7c85611e7a565b176118b7565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611e2357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611de8565b506000821415611e5f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e7560008483856118e2565b505050565b60006001821460e11b9050919050565b828054611e969061287a565b90600052602060002090601f016020900481019282611eb85760008555611eff565b82601f10611ed157803560ff1916838001178555611eff565b82800160010185558215611eff579182015b82811115611efe578235825591602001919060010190611ee3565b5b509050611f0c9190611f10565b5090565b5b80821115611f29576000816000905550600101611f11565b5090565b6000611f40611f3b846126a0565b61267b565b905082815260208101848484011115611f5c57611f5b612979565b5b611f67848285612838565b509392505050565b600081359050611f7e81612b50565b92915050565b600081359050611f9381612b67565b92915050565b600081359050611fa881612b7e565b92915050565b600081519050611fbd81612b7e565b92915050565b600082601f830112611fd857611fd761296f565b5b8135611fe8848260208601611f2d565b91505092915050565b60008083601f8401126120075761200661296f565b5b8235905067ffffffffffffffff8111156120245761202361296a565b5b6020830191508360018202830111156120405761203f612974565b5b9250929050565b60008135905061205681612b95565b92915050565b60006020828403121561207257612071612983565b5b600061208084828501611f6f565b91505092915050565b600080604083850312156120a05761209f612983565b5b60006120ae85828601611f6f565b92505060206120bf85828601611f6f565b9150509250929050565b6000806000606084860312156120e2576120e1612983565b5b60006120f086828701611f6f565b935050602061210186828701611f6f565b925050604061211286828701612047565b9150509250925092565b6000806000806080858703121561213657612135612983565b5b600061214487828801611f6f565b945050602061215587828801611f6f565b935050604061216687828801612047565b925050606085013567ffffffffffffffff8111156121875761218661297e565b5b61219387828801611fc3565b91505092959194509250565b600080604083850312156121b6576121b5612983565b5b60006121c485828601611f6f565b92505060206121d585828601611f84565b9150509250929050565b600080604083850312156121f6576121f5612983565b5b600061220485828601611f6f565b925050602061221585828601612047565b9150509250929050565b60006020828403121561223557612234612983565b5b600061224384828501611f99565b91505092915050565b60006020828403121561226257612261612983565b5b600061227084828501611fae565b91505092915050565b600080602083850312156122905761228f612983565b5b600083013567ffffffffffffffff8111156122ae576122ad61297e565b5b6122ba85828601611ff1565b92509250509250929050565b6000602082840312156122dc576122db612983565b5b60006122ea84828501612047565b91505092915050565b6122fc816127c4565b82525050565b61230b816127d6565b82525050565b600061231c826126d1565b61232681856126e7565b9350612336818560208601612847565b61233f81612988565b840191505092915050565b6000612355826126dc565b61235f81856126f8565b935061236f818560208601612847565b61237881612988565b840191505092915050565b600061238e826126dc565b6123988185612709565b93506123a8818560208601612847565b80840191505092915050565b60006123c1604b836126f8565b91506123cc82612999565b606082019050919050565b60006123e46026836126f8565b91506123ef82612a0e565b604082019050919050565b6000612407600f836126f8565b915061241282612a5d565b602082019050919050565b600061242a6036836126f8565b915061243582612a86565b604082019050919050565b600061244d6012836126f8565b915061245882612ad5565b602082019050919050565b60006124706020836126f8565b915061247b82612afe565b602082019050919050565b6000612493600e836126f8565b915061249e82612b27565b602082019050919050565b6124b28161282e565b82525050565b60006124c48285612383565b91506124d08284612383565b91508190509392505050565b60006020820190506124f160008301846122f3565b92915050565b600060808201905061250c60008301876122f3565b61251960208301866122f3565b61252660408301856124a9565b81810360608301526125388184612311565b905095945050505050565b60006020820190506125586000830184612302565b92915050565b60006020820190508181036000830152612578818461234a565b905092915050565b60006020820190508181036000830152612599816123b4565b9050919050565b600060208201905081810360008301526125b9816123d7565b9050919050565b600060208201905081810360008301526125d9816123fa565b9050919050565b600060208201905081810360008301526125f98161241d565b9050919050565b6000602082019050818103600083015261261981612440565b9050919050565b6000602082019050818103600083015261263981612463565b9050919050565b6000602082019050818103600083015261265981612486565b9050919050565b600060208201905061267560008301846124a9565b92915050565b6000612685612696565b905061269182826128ac565b919050565b6000604051905090565b600067ffffffffffffffff8211156126bb576126ba61293b565b5b6126c482612988565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061271f8261282e565b915061272a8361282e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561275f5761275e6128dd565b5b828201905092915050565b60006127758261282e565b91506127808361282e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127b9576127b86128dd565b5b828202905092915050565b60006127cf8261280e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561286557808201518184015260208101905061284a565b83811115612874576000848401525b50505050565b6000600282049050600182168061289257607f821691505b602082108114156128a6576128a561290c565b5b50919050565b6128b582612988565b810181811067ffffffffffffffff821117156128d4576128d361293b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f766572206d617820706572207472616e73616374696f6e212046726565206d60008201527f696e74206973206c696d6974656420746f203520746f6b656e7320706572207460208201527f72616e73616374696f6e2e000000000000000000000000000000000000000000604082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420596574204163746976652e0000000000000000000000000000000000600082015250565b7f4f766572206d617820706572207472616e73616374696f6e21204c696d69742060008201527f697320323020706572207472616e73616374696f6e2e00000000000000000000602082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f537570706c792072656163686564000000000000000000000000000000000000600082015250565b612b59816127c4565b8114612b6457600080fd5b50565b612b70816127d6565b8114612b7b57600080fd5b50565b612b87816127e2565b8114612b9257600080fd5b50565b612b9e8161282e565b8114612ba957600080fd5b5056fea2646970667358221220719f32804b2cc0ed7c46472bfc8a480506f13067920cf86daa902b9dc37ec12a64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d474d4c6567656e6450756e6b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004474d4c5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d61424c356273754a59527332426d6869344a7838543364546e43767a64716e4a7652474557614c6b644d52622f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): GMLegendPunks
Arg [1] : symbol (string): GMLP
Arg [2] : baseURIinput (string): https://gateway.pinata.cloud/ipfs/QmaBL5bsuJYRs2Bmhi4Jx8T3dTnCvzdqnJvRGEWaLkdMRb/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 474d4c6567656e6450756e6b7300000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 474d4c5000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d61424c356273754a59527332426d6869344a7838543364546e43767a
Arg [10] : 64716e4a7652474557614c6b644d52622f000000000000000000000000000000


Deployed Bytecode Sourcemap

61723:1697:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28619:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29521:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36012:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35445:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62450:102;;;;;;;;;;;;;:::i;:::-;;25272:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61899:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39651:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61937:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63274:143;;;;;;;;;;;;;:::i;:::-;;42572:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61858:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62344:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30914:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62016:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26456:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9604:94;;;;;;;;;;;;;:::i;:::-;;62044:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8953:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29697:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61807:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62560:708;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36570:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43363:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61973:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29907:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36961:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9853:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28619:639;28704:4;29043:10;29028:25;;:11;:25;;;;:102;;;;29120:10;29105:25;;:11;:25;;;;29028:102;:179;;;;29197:10;29182:25;;:11;:25;;;;29028:179;29008:199;;28619:639;;;:::o;29521:100::-;29575:13;29608:5;29601:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29521:100;:::o;36012:218::-;36088:7;36113:16;36121:7;36113;:16::i;:::-;36108:64;;36138:34;;;;;;;;;;;;;;36108:64;36192:15;:24;36208:7;36192:24;;;;;;;;;;;:30;;;;;;;;;;;;36185:37;;36012:218;;;:::o;35445:408::-;35534:13;35550:16;35558:7;35550;:16::i;:::-;35534:32;;35606:5;35583:28;;:19;:17;:19::i;:::-;:28;;;35579:175;;35631:44;35648:5;35655:19;:17;:19::i;:::-;35631:16;:44::i;:::-;35626:128;;35703:35;;;;;;;;;;;;;;35626:128;35579:175;35799:2;35766:15;:24;35782:7;35766:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35837:7;35833:2;35817:28;;35826:5;35817:28;;;;;;;;;;;;35523:330;35445:408;;:::o;62450:102::-;9184:12;:10;:12::i;:::-;9173:23;;:7;:5;:7::i;:::-;:23;;;9165:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62530:16:::1;;;;;;;;;;;62529:17;62510:16;;:36;;;;;;;;;;;;;;;;;;62450:102::o:0;25272:323::-;25333:7;25561:15;:13;:15::i;:::-;25546:12;;25530:13;;:28;:46;25523:53;;25272:323;:::o;61899:31::-;;;;:::o;39651:2825::-;39793:27;39823;39842:7;39823:18;:27::i;:::-;39793:57;;39908:4;39867:45;;39883:19;39867:45;;;39863:86;;39921:28;;;;;;;;;;;;;;39863:86;39963:27;39992:23;40019:35;40046:7;40019:26;:35::i;:::-;39962:92;;;;40154:68;40179:15;40196:4;40202:19;:17;:19::i;:::-;40154:24;:68::i;:::-;40149:180;;40242:43;40259:4;40265:19;:17;:19::i;:::-;40242:16;:43::i;:::-;40237:92;;40294:35;;;;;;;;;;;;;;40237:92;40149:180;40360:1;40346:16;;:2;:16;;;40342:52;;;40371:23;;;;;;;;;;;;;;40342:52;40407:43;40429:4;40435:2;40439:7;40448:1;40407:21;:43::i;:::-;40543:15;40540:160;;;40683:1;40662:19;40655:30;40540:160;41080:18;:24;41099:4;41080:24;;;;;;;;;;;;;;;;41078:26;;;;;;;;;;;;41149:18;:22;41168:2;41149:22;;;;;;;;;;;;;;;;41147:24;;;;;;;;;;;41471:146;41508:2;41557:45;41572:4;41578:2;41582:19;41557:14;:45::i;:::-;21671:8;41529:73;41471:18;:146::i;:::-;41442:17;:26;41460:7;41442:26;;;;;;;;;;;:175;;;;41788:1;21671:8;41737:19;:47;:52;41733:627;;;41810:19;41842:1;41832:7;:11;41810:33;;41999:1;41965:17;:30;41983:11;41965:30;;;;;;;;;;;;:35;41961:384;;;42103:13;;42088:11;:28;42084:242;;42283:19;42250:17;:30;42268:11;42250:30;;;;;;;;;;;:52;;;;42084:242;41961:384;41791:569;41733:627;42407:7;42403:2;42388:27;;42397:4;42388:27;;;;;;;;;;;;42426:42;42447:4;42453:2;42457:7;42466:1;42426:20;:42::i;:::-;39782:2694;;;39651:2825;;;:::o;61937:29::-;;;;:::o;63274:143::-;9184:12;:10;:12::i;:::-;9173:23;;:7;:5;:7::i;:::-;:23;;;9165:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63322:15:::1;63340:21;63322:39;;63380:10;63372:28;;:37;63401:7;63372:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;63311:106;63274:143::o:0;42572:193::-;42718:39;42735:4;42741:2;42745:7;42718:39;;;;;;;;;;;;:16;:39::i;:::-;42572:193;;;:::o;61858:34::-;;;;:::o;62344:100::-;9184:12;:10;:12::i;:::-;9173:23;;:7;:5;:7::i;:::-;:23;;;9165:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62428:10:::1;;62418:7;:20;;;;;;;:::i;:::-;;62344:100:::0;;:::o;30914:152::-;30986:7;31029:27;31048:7;31029:18;:27::i;:::-;31006:52;;30914:152;;;:::o;62016:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26456:233::-;26528:7;26569:1;26552:19;;:5;:19;;;26548:60;;;26580:28;;;;;;;;;;;;;;26548:60;20615:13;26626:18;:25;26645:5;26626:25;;;;;;;;;;;;;;;;:55;26619:62;;26456:233;;;:::o;9604:94::-;9184:12;:10;:12::i;:::-;9173:23;;:7;:5;:7::i;:::-;:23;;;9165:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9669:21:::1;9687:1;9669:9;:21::i;:::-;9604:94::o:0;62044:38::-;;;;:::o;8953:87::-;8999:7;9026:6;;;;;;;;;;;9019:13;;8953:87;:::o;29697:104::-;29753:13;29786:7;29779:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29697:104;:::o;61807:44::-;;;;:::o;62560:708::-;62637:10;;62621:13;:11;:13::i;:::-;:26;62618:314;;;62682:28;;62669:9;:41;;62661:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;62618:314;;;62846:17;;62833:9;:30;;62825:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;62618:314;62970:4;62950:24;;:16;;;;;;;;;;;:24;;;62942:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;63042:11;;63028:9;63012:13;:11;:13::i;:::-;:25;;;;:::i;:::-;63011:42;;63003:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;63081:17;63118:10;;63101:13;:11;:13::i;:::-;:27;;:44;;63144:1;63101:44;;;63131:10;;63101:44;63081:64;;63188:9;63176;:21;;;;:::i;:::-;63162:9;:36;;63154:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;63230:32;63240:10;63252:9;63230;:32::i;:::-;62609:659;62560:708;:::o;36570:234::-;36717:8;36665:18;:39;36684:19;:17;:19::i;:::-;36665:39;;;;;;;;;;;;;;;:49;36705:8;36665:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;36777:8;36741:55;;36756:19;:17;:19::i;:::-;36741:55;;;36787:8;36741:55;;;;;;:::i;:::-;;;;;;;;36570:234;;:::o;43363:407::-;43538:31;43551:4;43557:2;43561:7;43538:12;:31::i;:::-;43602:1;43584:2;:14;;;:19;43580:183;;43623:56;43654:4;43660:2;43664:7;43673:5;43623:30;:56::i;:::-;43618:145;;43707:40;;;;;;;;;;;;;;43618:145;43580:183;43363:407;;;;:::o;61973:36::-;;;;;;;;;;;;;:::o;29907:318::-;29980:13;30011:16;30019:7;30011;:16::i;:::-;30006:59;;30036:29;;;;;;;;;;;;;;30006:59;30078:21;30102:10;:8;:10::i;:::-;30078:34;;30155:1;30136:7;30130:21;:26;;:87;;;;;;;;;;;;;;;;;30183:7;30192:18;30202:7;30192:9;:18::i;:::-;30166:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30130:87;30123:94;;;29907:318;;;:::o;36961:164::-;37058:4;37082:18;:25;37101:5;37082:25;;;;;;;;;;;;;;;:35;37108:8;37082:35;;;;;;;;;;;;;;;;;;;;;;;;;37075:42;;36961:164;;;;:::o;9853:192::-;9184:12;:10;:12::i;:::-;9173:23;;:7;:5;:7::i;:::-;:23;;;9165:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9962:1:::1;9942:22;;:8;:22;;;;9934:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10018:19;10028:8;10018:9;:19::i;:::-;9853:192:::0;:::o;37383:282::-;37448:4;37504:7;37485:15;:13;:15::i;:::-;:26;;:66;;;;;37538:13;;37528:7;:23;37485:66;:153;;;;;37637:1;21391:8;37589:17;:26;37607:7;37589:26;;;;;;;;;;;;:44;:49;37485:153;37465:173;;37383:282;;;:::o;59691:105::-;59751:7;59778:10;59771:17;;59691:105;:::o;7688:98::-;7741:7;7768:10;7761:17;;7688:98;:::o;24788:92::-;24844:7;24871:1;24864:8;;24788:92;:::o;32069:1275::-;32136:7;32156:12;32171:7;32156:22;;32239:4;32220:15;:13;:15::i;:::-;:23;32216:1061;;32273:13;;32266:4;:20;32262:1015;;;32311:14;32328:17;:23;32346:4;32328:23;;;;;;;;;;;;32311:40;;32445:1;21391:8;32417:6;:24;:29;32413:845;;;33082:113;33099:1;33089:6;:11;33082:113;;;33142:17;:25;33160:6;;;;;;;33142:25;;;;;;;;;;;;33133:34;;33082:113;;;33228:6;33221:13;;;;;;32413:845;32288:989;32262:1015;32216:1061;33305:31;;;;;;;;;;;;;;32069:1275;;;;:::o;38546:485::-;38648:27;38677:23;38718:38;38759:15;:24;38775:7;38759:24;;;;;;;;;;;38718:65;;38936:18;38913:41;;38993:19;38987:26;38968:45;;38898:126;38546:485;;;:::o;37774:659::-;37923:11;38088:16;38081:5;38077:28;38068:37;;38248:16;38237:9;38233:32;38220:45;;38398:15;38387:9;38384:30;38376:5;38365:9;38362:20;38359:56;38349:66;;37774:659;;;;;:::o;44432:159::-;;;;;:::o;59000:311::-;59135:7;59155:16;21795:3;59181:19;:41;;59155:68;;21795:3;59249:31;59260:4;59266:2;59270:9;59249:10;:31::i;:::-;59241:40;;:62;;59234:69;;;59000:311;;;;;:::o;33892:450::-;33972:14;34140:16;34133:5;34129:28;34120:37;;34317:5;34303:11;34278:23;34274:41;34271:52;34264:5;34261:63;34251:73;;33892:450;;;;:::o;45256:158::-;;;;;:::o;10053:173::-;10109:16;10128:6;;;;;;;;;;;10109:25;;10154:8;10145:6;;:17;;;;;;;;;;;;;;;;;;10209:8;10178:40;;10199:8;10178:40;;;;;;;;;;;;10098:128;10053:173;:::o;53523:112::-;53600:27;53610:2;53614:8;53600:27;;;;;;;;;;;;:9;:27::i;:::-;53523:112;;:::o;45854:716::-;46017:4;46063:2;46038:45;;;46084:19;:17;:19::i;:::-;46105:4;46111:7;46120:5;46038:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46034:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46338:1;46321:6;:13;:18;46317:235;;;46367:40;;;;;;;;;;;;;;46317:235;46510:6;46504:13;46495:6;46491:2;46487:15;46480:38;46034:529;46207:54;;;46197:64;;;:6;:64;;;;46190:71;;;45854:716;;;;;;:::o;62244:94::-;62296:13;62325:7;62318:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62244:94;:::o;59898:1745::-;59963:17;60397:4;60390;60384:11;60380:22;60489:1;60483:4;60476:15;60564:4;60561:1;60557:12;60550:19;;60646:1;60641:3;60634:14;60750:3;60989:5;60971:428;60997:1;60971:428;;;61037:1;61032:3;61028:11;61021:18;;61208:2;61202:4;61198:13;61194:2;61190:22;61185:3;61177:36;61302:2;61296:4;61292:13;61284:21;;61369:4;61359:25;;61377:5;;61359:25;60971:428;;;60975:21;61438:3;61433;61429:13;61553:4;61548:3;61544:14;61537:21;;61618:6;61613:3;61606:19;60002:1634;;;59898:1745;;;:::o;58701:147::-;58838:6;58701:147;;;;;:::o;52750:689::-;52881:19;52887:2;52891:8;52881:5;:19::i;:::-;52960:1;52942:2;:14;;;:19;52938:483;;52982:11;52996:13;;52982:27;;53028:13;53050:8;53044:3;:14;53028:30;;53077:233;53108:62;53147:1;53151:2;53155:7;;;;;;53164:5;53108:30;:62::i;:::-;53103:167;;53206:40;;;;;;;;;;;;;;53103:167;53305:3;53297:5;:11;53077:233;;53392:3;53375:13;;:20;53371:34;;53397:8;;;53371:34;52963:458;;52938:483;52750:689;;;:::o;47032:2966::-;47105:20;47128:13;;47105:36;;47168:1;47156:8;:13;47152:44;;;47178:18;;;;;;;;;;;;;;47152:44;47209:61;47239:1;47243:2;47247:12;47261:8;47209:21;:61::i;:::-;47753:1;20753:2;47723:1;:26;;47722:32;47710:8;:45;47684:18;:22;47703:2;47684:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;48032:139;48069:2;48123:33;48146:1;48150:2;48154:1;48123:14;:33::i;:::-;48090:30;48111:8;48090:20;:30::i;:::-;:66;48032:18;:139::i;:::-;47998:17;:31;48016:12;47998:31;;;;;;;;;;;:173;;;;48188:16;48219:11;48248:8;48233:12;:23;48219:37;;48769:16;48765:2;48761:25;48749:37;;49141:12;49101:8;49060:1;48998:25;48939:1;48878;48851:335;49512:1;49498:12;49494:20;49452:346;49553:3;49544:7;49541:16;49452:346;;49771:7;49761:8;49758:1;49731:25;49728:1;49725;49720:59;49606:1;49597:7;49593:15;49582:26;;49452:346;;;49456:77;49843:1;49831:8;:13;49827:45;;;49853:19;;;;;;;;;;;;;;49827:45;49905:3;49889:13;:19;;;;47458:2462;;49930:60;49959:1;49963:2;49967:12;49981:8;49930:20;:60::i;:::-;47094:2904;47032:2966;;:::o;34444:324::-;34514:14;34747:1;34737:8;34734:15;34708:24;34704:46;34694:56;;34444:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:::-;10705:3;10726:67;10790:2;10785:3;10726:67;:::i;:::-;10719:74;;10802:93;10891:3;10802:93;:::i;:::-;10920:2;10915:3;10911:12;10904:19;;10563:366;;;:::o;10935:118::-;11022:24;11040:5;11022:24;:::i;:::-;11017:3;11010:37;10935:118;;:::o;11059:435::-;11239:3;11261:95;11352:3;11343:6;11261:95;:::i;:::-;11254:102;;11373:95;11464:3;11455:6;11373:95;:::i;:::-;11366:102;;11485:3;11478:10;;11059:435;;;;;:::o;11500:222::-;11593:4;11631:2;11620:9;11616:18;11608:26;;11644:71;11712:1;11701:9;11697:17;11688:6;11644:71;:::i;:::-;11500:222;;;;:::o;11728:640::-;11923:4;11961:3;11950:9;11946:19;11938:27;;11975:71;12043:1;12032:9;12028:17;12019:6;11975:71;:::i;:::-;12056:72;12124:2;12113:9;12109:18;12100:6;12056:72;:::i;:::-;12138;12206:2;12195:9;12191:18;12182:6;12138:72;:::i;:::-;12257:9;12251:4;12247:20;12242:2;12231:9;12227:18;12220:48;12285:76;12356:4;12347:6;12285:76;:::i;:::-;12277:84;;11728:640;;;;;;;:::o;12374:210::-;12461:4;12499:2;12488:9;12484:18;12476:26;;12512:65;12574:1;12563:9;12559:17;12550:6;12512:65;:::i;:::-;12374:210;;;;:::o;12590:313::-;12703:4;12741:2;12730:9;12726:18;12718:26;;12790:9;12784:4;12780:20;12776:1;12765:9;12761:17;12754:47;12818:78;12891:4;12882:6;12818:78;:::i;:::-;12810:86;;12590:313;;;;:::o;12909:419::-;13075:4;13113:2;13102:9;13098:18;13090:26;;13162:9;13156:4;13152:20;13148:1;13137:9;13133:17;13126:47;13190:131;13316:4;13190:131;:::i;:::-;13182:139;;12909:419;;;:::o;13334:::-;13500:4;13538:2;13527:9;13523:18;13515:26;;13587:9;13581:4;13577:20;13573:1;13562:9;13558:17;13551:47;13615:131;13741:4;13615:131;:::i;:::-;13607:139;;13334:419;;;:::o;13759:::-;13925:4;13963:2;13952:9;13948:18;13940:26;;14012:9;14006:4;14002:20;13998:1;13987:9;13983:17;13976:47;14040:131;14166:4;14040:131;:::i;:::-;14032:139;;13759:419;;;:::o;14184:::-;14350:4;14388:2;14377:9;14373:18;14365:26;;14437:9;14431:4;14427:20;14423:1;14412:9;14408:17;14401:47;14465:131;14591:4;14465:131;:::i;:::-;14457:139;;14184:419;;;:::o;14609:::-;14775:4;14813:2;14802:9;14798:18;14790:26;;14862:9;14856:4;14852:20;14848:1;14837:9;14833:17;14826:47;14890:131;15016:4;14890:131;:::i;:::-;14882:139;;14609:419;;;:::o;15034:::-;15200:4;15238:2;15227:9;15223:18;15215:26;;15287:9;15281:4;15277:20;15273:1;15262:9;15258:17;15251:47;15315:131;15441:4;15315:131;:::i;:::-;15307:139;;15034:419;;;:::o;15459:::-;15625:4;15663:2;15652:9;15648:18;15640:26;;15712:9;15706:4;15702:20;15698:1;15687:9;15683:17;15676:47;15740:131;15866:4;15740:131;:::i;:::-;15732:139;;15459:419;;;:::o;15884:222::-;15977:4;16015:2;16004:9;16000:18;15992:26;;16028:71;16096:1;16085:9;16081:17;16072:6;16028:71;:::i;:::-;15884:222;;;;:::o;16112:129::-;16146:6;16173:20;;:::i;:::-;16163:30;;16202:33;16230:4;16222:6;16202:33;:::i;:::-;16112:129;;;:::o;16247:75::-;16280:6;16313:2;16307:9;16297:19;;16247:75;:::o;16328:307::-;16389:4;16479:18;16471:6;16468:30;16465:56;;;16501:18;;:::i;:::-;16465:56;16539:29;16561:6;16539:29;:::i;:::-;16531:37;;16623:4;16617;16613:15;16605:23;;16328:307;;;:::o;16641:98::-;16692:6;16726:5;16720:12;16710:22;;16641:98;;;:::o;16745:99::-;16797:6;16831:5;16825:12;16815:22;;16745:99;;;:::o;16850:168::-;16933:11;16967:6;16962:3;16955:19;17007:4;17002:3;16998:14;16983:29;;16850:168;;;;:::o;17024:169::-;17108:11;17142:6;17137:3;17130:19;17182:4;17177:3;17173:14;17158:29;;17024:169;;;;:::o;17199:148::-;17301:11;17338:3;17323:18;;17199:148;;;;:::o;17353:305::-;17393:3;17412:20;17430:1;17412:20;:::i;:::-;17407:25;;17446:20;17464:1;17446:20;:::i;:::-;17441:25;;17600:1;17532:66;17528:74;17525:1;17522:81;17519:107;;;17606:18;;:::i;:::-;17519:107;17650:1;17647;17643:9;17636:16;;17353:305;;;;:::o;17664:348::-;17704:7;17727:20;17745:1;17727:20;:::i;:::-;17722:25;;17761:20;17779:1;17761:20;:::i;:::-;17756:25;;17949:1;17881:66;17877:74;17874:1;17871:81;17866:1;17859:9;17852:17;17848:105;17845:131;;;17956:18;;:::i;:::-;17845:131;18004:1;18001;17997:9;17986:20;;17664:348;;;;:::o;18018:96::-;18055:7;18084:24;18102:5;18084:24;:::i;:::-;18073:35;;18018:96;;;:::o;18120:90::-;18154:7;18197:5;18190:13;18183:21;18172:32;;18120:90;;;:::o;18216:149::-;18252:7;18292:66;18285:5;18281:78;18270:89;;18216:149;;;:::o;18371:126::-;18408:7;18448:42;18441:5;18437:54;18426:65;;18371:126;;;:::o;18503:77::-;18540:7;18569:5;18558:16;;18503:77;;;:::o;18586:154::-;18670:6;18665:3;18660;18647:30;18732:1;18723:6;18718:3;18714:16;18707:27;18586:154;;;:::o;18746:307::-;18814:1;18824:113;18838:6;18835:1;18832:13;18824:113;;;18923:1;18918:3;18914:11;18908:18;18904:1;18899:3;18895:11;18888:39;18860:2;18857:1;18853:10;18848:15;;18824:113;;;18955:6;18952:1;18949:13;18946:101;;;19035:1;19026:6;19021:3;19017:16;19010:27;18946:101;18795:258;18746:307;;;:::o;19059:320::-;19103:6;19140:1;19134:4;19130:12;19120:22;;19187:1;19181:4;19177:12;19208:18;19198:81;;19264:4;19256:6;19252:17;19242:27;;19198:81;19326:2;19318:6;19315:14;19295:18;19292:38;19289:84;;;19345:18;;:::i;:::-;19289:84;19110:269;19059:320;;;:::o;19385:281::-;19468:27;19490:4;19468:27;:::i;:::-;19460:6;19456:40;19598:6;19586:10;19583:22;19562:18;19550:10;19547:34;19544:62;19541:88;;;19609:18;;:::i;:::-;19541:88;19649:10;19645:2;19638:22;19428:238;19385:281;;:::o;19672:180::-;19720:77;19717:1;19710:88;19817:4;19814:1;19807:15;19841:4;19838:1;19831:15;19858:180;19906:77;19903:1;19896:88;20003:4;20000:1;19993:15;20027:4;20024:1;20017:15;20044:180;20092:77;20089:1;20082:88;20189:4;20186:1;20179:15;20213:4;20210:1;20203:15;20230:117;20339:1;20336;20329:12;20353:117;20462:1;20459;20452:12;20476:117;20585:1;20582;20575:12;20599:117;20708:1;20705;20698:12;20722:117;20831:1;20828;20821:12;20845:117;20954:1;20951;20944:12;20968:102;21009:6;21060:2;21056:7;21051:2;21044:5;21040:14;21036:28;21026:38;;20968:102;;;:::o;21076:299::-;21216:34;21212:1;21204:6;21200:14;21193:58;21285:34;21280:2;21272:6;21268:15;21261:59;21354:13;21349:2;21341:6;21337:15;21330:38;21076:299;:::o;21381:225::-;21521:34;21517:1;21509:6;21505:14;21498:58;21590:8;21585:2;21577:6;21573:15;21566:33;21381:225;:::o;21612:165::-;21752:17;21748:1;21740:6;21736:14;21729:41;21612:165;:::o;21783:241::-;21923:34;21919:1;21911:6;21907:14;21900:58;21992:24;21987:2;21979:6;21975:15;21968:49;21783:241;:::o;22030:168::-;22170:20;22166:1;22158:6;22154:14;22147:44;22030:168;:::o;22204:182::-;22344:34;22340:1;22332:6;22328:14;22321:58;22204:182;:::o;22392:164::-;22532:16;22528:1;22520:6;22516:14;22509:40;22392:164;:::o;22562:122::-;22635:24;22653:5;22635:24;:::i;:::-;22628:5;22625:35;22615:63;;22674:1;22671;22664:12;22615:63;22562:122;:::o;22690:116::-;22760:21;22775:5;22760:21;:::i;:::-;22753:5;22750:32;22740:60;;22796:1;22793;22786:12;22740:60;22690:116;:::o;22812:120::-;22884:23;22901:5;22884:23;:::i;:::-;22877:5;22874:34;22864:62;;22922:1;22919;22912:12;22864:62;22812:120;:::o;22938:122::-;23011:24;23029:5;23011:24;:::i;:::-;23004:5;23001:35;22991:63;;23050:1;23047;23040:12;22991:63;22938:122;:::o

Swarm Source

ipfs://719f32804b2cc0ed7c46472bfc8a480506f13067920cf86daa902b9dc37ec12a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.