ETH Price: $2,367.88 (-3.86%)

Token

PumpingPengusWTF (PPW)
 

Overview

Max Total Supply

169 PPW

Holders

152

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PPW
0x28621bb8c290f6df9a6ac405e3a41016ab84db72
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:
PumpingPengusWTF

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-27
*/

// SPDX-License-Identifier: MIT

// File: contracts/Context.sol


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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: contracts/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

    // ==============================
    //            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`.
     *
     * 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 calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly {
            // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 value) {
        assembly {
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            value := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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), ".json")) : '';
    }

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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,
                _boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED
            );

            uint256 offset = startTokenId;
            uint256 end = quantity + startTokenId;
            do {
                emit Transfer(address(0), to, offset++);
            } while (offset < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (_addressToUint256(to) == 0) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

            // 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 `_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));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

            // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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


pragma solidity ^0.8.15;



contract PumpingPengusWTF is ERC721A, Ownable { 
    uint public constant maxSupply = 5555;

    bool private mintOpen = true;

    string internal baseTokenURI = "ipfs://QmYsTMLqxTchozhUDe7A5vkrZtGzGvUZm4yKLTG9BoiYgd/";

    uint public constant maxFree = 1000;
    uint public constant maxMintsPerWallet = 5;

    uint public price = .005 ether;
    
    constructor() ERC721A("PumpingPengusWTF", "PPW") {}

    function toggleMint() external onlyOwner {
        mintOpen = !mintOpen;
    }
    
    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }

    function setPrice(uint _price) external onlyOwner {
        price = _price;
    }

    function _baseURI() internal override view returns (string memory) {
        return baseTokenURI;
    }
    //1k free (1 per wallet), 4555 for .005 (5 max per wallet including free mint)
    function mint(uint amnt) external payable{
        require(mintOpen, "Mint not Open");
        require(_totalMinted() + amnt <= maxSupply, "Supply Maxed");
        require(_numberMinted(msg.sender) + amnt <= maxMintsPerWallet, "Too Many Minted");
        if (_totalMinted() < maxFree && _numberMinted(msg.sender) < 1)
        {
            _mint(msg.sender, 1);
            if (amnt > 1){
                require(msg.value >= (amnt-1)*price, "Not Enough Ether");
                _mint(msg.sender, amnt - 1);
            }
        } else {
            require(msg.value >= amnt*price, "Not Enough Ether");
            _mint(msg.sender, amnt);
        }
    }

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

    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amnt","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6008805460ff60a01b1916600160a01b17905560e0604052603660808181529062001afc60a039600990620000359082620001c4565b506611c37937e08000600a553480156200004e57600080fd5b506040518060400160405280601081526020016f283ab6b834b733a832b733bab9abaa2360811b8152506040518060400160405280600381526020016250505760e81b8152508160029081620000a59190620001c4565b506003620000b48282620001c4565b5050600160005550620000c733620000cd565b62000290565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200014a57607f821691505b6020821081036200016b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001bf57600081815260208120601f850160051c810160208610156200019a5750805b601f850160051c820191505b81811015620001bb57828155600101620001a6565b5050505b505050565b81516001600160401b03811115620001e057620001e06200011f565b620001f881620001f1845462000135565b8462000171565b602080601f831160018114620002305760008415620002175750858301515b600019600386901b1c1916600185901b178555620001bb565b600085815260208120601f198616915b82811015620002615788860151825594840194600190910190840162000240565b5085821015620002805787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61185c80620002a06000396000f3fe6080604052600436106101a15760003560e01c80638da5cb5b116100e1578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb011461044f578063e985e9c514610465578063f2fde38b146104ae578063f516a2e6146104ce57600080fd5b8063b88d4fde146103fa578063c87b56dd1461041a578063d3dd5fe01461043a57600080fd5b8063a035b1fe116100bb578063a035b1fe146103b1578063a0712d68146103c7578063a22cb465146103da57600080fd5b80638da5cb5b1461035e57806391b7f5ed1461037c57806395d89b411461039c57600080fd5b806330176e131161014e578063485a68a311610128578063485a68a3146102f35780636352211e1461030957806370a0823114610329578063715018a61461034957600080fd5b806330176e131461029e5780633ccfd60b146102be57806342842e0e146102d357600080fd5b8063095ea7b31161017f578063095ea7b31461023557806318160ddd1461025757806323b872dd1461027e57600080fd5b806301ffc9a7146101a657806306fdde03146101db578063081812fc146101fd575b600080fd5b3480156101b257600080fd5b506101c66101c13660046112d8565b6104e3565b60405190151581526020015b60405180910390f35b3480156101e757600080fd5b506101f0610535565b6040516101d2919061134d565b34801561020957600080fd5b5061021d610218366004611360565b6105c7565b6040516001600160a01b0390911681526020016101d2565b34801561024157600080fd5b50610255610250366004611395565b61060b565b005b34801561026357600080fd5b5060015460005403600019015b6040519081526020016101d2565b34801561028a57600080fd5b506102556102993660046113bf565b6106ab565b3480156102aa57600080fd5b506102556102b93660046113fb565b6106bb565b3480156102ca57600080fd5b50610255610727565b3480156102df57600080fd5b506102556102ee3660046113bf565b6107bd565b3480156102ff57600080fd5b506102706103e881565b34801561031557600080fd5b5061021d610324366004611360565b6107d8565b34801561033557600080fd5b5061027061034436600461146d565b6107e3565b34801561035557600080fd5b5061025561082c565b34801561036a57600080fd5b506008546001600160a01b031661021d565b34801561038857600080fd5b50610255610397366004611360565b610892565b3480156103a857600080fd5b506101f06108f1565b3480156103bd57600080fd5b50610270600a5481565b6102556103d5366004611360565b610900565b3480156103e657600080fd5b506102556103f5366004611488565b610b43565b34801561040657600080fd5b506102556104153660046114da565b610bd8565b34801561042657600080fd5b506101f0610435366004611360565b610c22565b34801561044657600080fd5b50610255610ca6565b34801561045b57600080fd5b506102706115b381565b34801561047157600080fd5b506101c66104803660046115b6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104ba57600080fd5b506102556104c936600461146d565b610d21565b3480156104da57600080fd5b50610270600581565b60006301ffc9a760e01b6001600160e01b03198316148061051457506380ac58cd60e01b6001600160e01b03198316145b8061052f5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610544906115e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610570906115e9565b80156105bd5780601f10610592576101008083540402835291602001916105bd565b820191906000526020600020905b8154815290600101906020018083116105a057829003601f168201915b5050505050905090565b60006105d282610de9565b6105ef576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610616826107d8565b9050336001600160a01b0382161461064f576106328133610480565b61064f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6106b6838383610e1e565b505050565b6008546001600160a01b0316331461071a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60096106b6828483611669565b6008546001600160a01b031633146107815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610711565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156107ba573d6000803e3d6000fd5b50565b6106b683838360405180602001604052806000815250610bd8565b600061052f82610fdd565b600081600003610806576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610711565b610890600061104c565b565b6008546001600160a01b031633146108ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610711565b600a55565b606060038054610544906115e9565b600854600160a01b900460ff166109495760405162461bcd60e51b815260206004820152600d60248201526c26b4b73a103737ba1027b832b760991b6044820152606401610711565b6115b38161095a6000546000190190565b6109649190611740565b11156109a15760405162461bcd60e51b815260206004820152600c60248201526b14dd5c1c1b1e4813585e195960a21b6044820152606401610711565b6005816109d1336001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b6109db9190611740565b1115610a295760405162461bcd60e51b815260206004820152600f60248201527f546f6f204d616e79204d696e74656400000000000000000000000000000000006044820152606401610711565b6103e8610a396000546000190190565b108015610a6357503360009081526005602052604090819020546001911c67ffffffffffffffff16105b15610aea57610a7333600161109e565b60018111156107ba57600a54610a8a600183611758565b610a94919061176f565b341015610ad65760405162461bcd60e51b815260206004820152601060248201526f2737ba1022b737bab3b41022ba3432b960811b6044820152606401610711565b6107ba33610ae5600184611758565b61109e565b600a54610af7908261176f565b341015610b395760405162461bcd60e51b815260206004820152601060248201526f2737ba1022b737bab3b41022ba3432b960811b6044820152606401610711565b6107ba338261109e565b336001600160a01b03831603610b6c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610be3848484610e1e565b6001600160a01b0383163b15610c1c57610bff84848484611179565b610c1c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c2d82610de9565b610c4a57604051630a14c4b560e41b815260040160405180910390fd5b6000610c54611264565b90508051600003610c745760405180602001604052806000815250610c9f565b80610c7e84611273565b604051602001610c8f92919061178e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610d005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610711565b6008805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6008546001600160a01b03163314610d7b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610711565b6001600160a01b038116610de05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610711565b6107ba8161104c565b600081600111158015610dfd575060005482105b801561052f575050600090815260046020526040902054600160e01b161590565b6000610e2982610fdd565b9050836001600160a01b0316816001600160a01b031614610e5c5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610e8c5750610e8c8633610480565b80610e9f57506001600160a01b03821633145b905080610ebf57604051632ce44b5f60e11b815260040160405180910390fd5b84600003610ee057604051633a954ecd60e21b815260040160405180910390fd5b8115610f0357600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560205260408082208054600019019055918716815220805460010190554260a01b8517600160e11b17600085815260046020526040812091909155600160e11b84169003610f9357600184016000818152600460205260408120549003610f91576000548114610f915760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60008180600111611033576000548110156110335760008181526004602052604081205490600160e01b82169003611031575b80600003610c9f575060001901600081815260046020526040902054611010565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054826000036110c157604051622e076360e81b815260040160405180910390fd5b816000036110e25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600090815260056020526040902080546801000000000000000184020190554260a01b6001831460e11b178317600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061112d5750500160005550565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111ae9033908990889088906004016117cd565b6020604051808303816000875af19250505080156111e9575060408051601f3d908101601f191682019092526111e691810190611809565b60015b611247573d808015611217576040519150601f19603f3d011682016040523d82523d6000602084013e61121c565b606091505b50805160000361123f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060098054610544906115e9565b604080516080810191829052607f0190826030600a8206018353600a90045b80156112b057600183039250600a81066030018353600a9004611292565b50819003601f19909101908152919050565b6001600160e01b0319811681146107ba57600080fd5b6000602082840312156112ea57600080fd5b8135610c9f816112c2565b60005b838110156113105781810151838201526020016112f8565b83811115610c1c5750506000910152565b600081518084526113398160208601602086016112f5565b601f01601f19169290920160200192915050565b602081526000610c9f6020830184611321565b60006020828403121561137257600080fd5b5035919050565b80356001600160a01b038116811461139057600080fd5b919050565b600080604083850312156113a857600080fd5b6113b183611379565b946020939093013593505050565b6000806000606084860312156113d457600080fd5b6113dd84611379565b92506113eb60208501611379565b9150604084013590509250925092565b6000806020838503121561140e57600080fd5b823567ffffffffffffffff8082111561142657600080fd5b818501915085601f83011261143a57600080fd5b81358181111561144957600080fd5b86602082850101111561145b57600080fd5b60209290920196919550909350505050565b60006020828403121561147f57600080fd5b610c9f82611379565b6000806040838503121561149b57600080fd5b6114a483611379565b9150602083013580151581146114b957600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156114f057600080fd5b6114f985611379565b935061150760208601611379565b925060408501359150606085013567ffffffffffffffff8082111561152b57600080fd5b818701915087601f83011261153f57600080fd5b813581811115611551576115516114c4565b604051601f8201601f19908116603f01168101908382118183101715611579576115796114c4565b816040528281528a602084870101111561159257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156115c957600080fd5b6115d283611379565b91506115e060208401611379565b90509250929050565b600181811c908216806115fd57607f821691505b60208210810361161d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156106b657600081815260208120601f850160051c8101602086101561164a5750805b601f850160051c820191505b81811015610fd557828155600101611656565b67ffffffffffffffff831115611681576116816114c4565b6116958361168f83546115e9565b83611623565b6000601f8411600181146116c957600085156116b15750838201355b600019600387901b1c1916600186901b178355611723565b600083815260209020601f19861690835b828110156116fa57868501358255602094850194600190920191016116da565b50868210156117175760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b600052601160045260246000fd5b600082198211156117535761175361172a565b500190565b60008282101561176a5761176a61172a565b500390565b60008160001904831182151516156117895761178961172a565b500290565b600083516117a08184602088016112f5565b8351908301906117b48183602088016112f5565b64173539b7b760d91b9101908152600501949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526117ff6080830184611321565b9695505050505050565b60006020828403121561181b57600080fd5b8151610c9f816112c256fea2646970667358221220d398c1b9aba26ee9d668b89819e15ac71d9a932badd868a965c86cce49a7369c64736f6c634300080f0033697066733a2f2f516d5973544d4c71785463686f7a68554465374135766b725a74477a4776555a6d34794b4c544739426f695967642f

Deployed Bytecode

0x6080604052600436106101a15760003560e01c80638da5cb5b116100e1578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb011461044f578063e985e9c514610465578063f2fde38b146104ae578063f516a2e6146104ce57600080fd5b8063b88d4fde146103fa578063c87b56dd1461041a578063d3dd5fe01461043a57600080fd5b8063a035b1fe116100bb578063a035b1fe146103b1578063a0712d68146103c7578063a22cb465146103da57600080fd5b80638da5cb5b1461035e57806391b7f5ed1461037c57806395d89b411461039c57600080fd5b806330176e131161014e578063485a68a311610128578063485a68a3146102f35780636352211e1461030957806370a0823114610329578063715018a61461034957600080fd5b806330176e131461029e5780633ccfd60b146102be57806342842e0e146102d357600080fd5b8063095ea7b31161017f578063095ea7b31461023557806318160ddd1461025757806323b872dd1461027e57600080fd5b806301ffc9a7146101a657806306fdde03146101db578063081812fc146101fd575b600080fd5b3480156101b257600080fd5b506101c66101c13660046112d8565b6104e3565b60405190151581526020015b60405180910390f35b3480156101e757600080fd5b506101f0610535565b6040516101d2919061134d565b34801561020957600080fd5b5061021d610218366004611360565b6105c7565b6040516001600160a01b0390911681526020016101d2565b34801561024157600080fd5b50610255610250366004611395565b61060b565b005b34801561026357600080fd5b5060015460005403600019015b6040519081526020016101d2565b34801561028a57600080fd5b506102556102993660046113bf565b6106ab565b3480156102aa57600080fd5b506102556102b93660046113fb565b6106bb565b3480156102ca57600080fd5b50610255610727565b3480156102df57600080fd5b506102556102ee3660046113bf565b6107bd565b3480156102ff57600080fd5b506102706103e881565b34801561031557600080fd5b5061021d610324366004611360565b6107d8565b34801561033557600080fd5b5061027061034436600461146d565b6107e3565b34801561035557600080fd5b5061025561082c565b34801561036a57600080fd5b506008546001600160a01b031661021d565b34801561038857600080fd5b50610255610397366004611360565b610892565b3480156103a857600080fd5b506101f06108f1565b3480156103bd57600080fd5b50610270600a5481565b6102556103d5366004611360565b610900565b3480156103e657600080fd5b506102556103f5366004611488565b610b43565b34801561040657600080fd5b506102556104153660046114da565b610bd8565b34801561042657600080fd5b506101f0610435366004611360565b610c22565b34801561044657600080fd5b50610255610ca6565b34801561045b57600080fd5b506102706115b381565b34801561047157600080fd5b506101c66104803660046115b6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104ba57600080fd5b506102556104c936600461146d565b610d21565b3480156104da57600080fd5b50610270600581565b60006301ffc9a760e01b6001600160e01b03198316148061051457506380ac58cd60e01b6001600160e01b03198316145b8061052f5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610544906115e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610570906115e9565b80156105bd5780601f10610592576101008083540402835291602001916105bd565b820191906000526020600020905b8154815290600101906020018083116105a057829003601f168201915b5050505050905090565b60006105d282610de9565b6105ef576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610616826107d8565b9050336001600160a01b0382161461064f576106328133610480565b61064f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6106b6838383610e1e565b505050565b6008546001600160a01b0316331461071a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60096106b6828483611669565b6008546001600160a01b031633146107815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610711565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156107ba573d6000803e3d6000fd5b50565b6106b683838360405180602001604052806000815250610bd8565b600061052f82610fdd565b600081600003610806576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610711565b610890600061104c565b565b6008546001600160a01b031633146108ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610711565b600a55565b606060038054610544906115e9565b600854600160a01b900460ff166109495760405162461bcd60e51b815260206004820152600d60248201526c26b4b73a103737ba1027b832b760991b6044820152606401610711565b6115b38161095a6000546000190190565b6109649190611740565b11156109a15760405162461bcd60e51b815260206004820152600c60248201526b14dd5c1c1b1e4813585e195960a21b6044820152606401610711565b6005816109d1336001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b6109db9190611740565b1115610a295760405162461bcd60e51b815260206004820152600f60248201527f546f6f204d616e79204d696e74656400000000000000000000000000000000006044820152606401610711565b6103e8610a396000546000190190565b108015610a6357503360009081526005602052604090819020546001911c67ffffffffffffffff16105b15610aea57610a7333600161109e565b60018111156107ba57600a54610a8a600183611758565b610a94919061176f565b341015610ad65760405162461bcd60e51b815260206004820152601060248201526f2737ba1022b737bab3b41022ba3432b960811b6044820152606401610711565b6107ba33610ae5600184611758565b61109e565b600a54610af7908261176f565b341015610b395760405162461bcd60e51b815260206004820152601060248201526f2737ba1022b737bab3b41022ba3432b960811b6044820152606401610711565b6107ba338261109e565b336001600160a01b03831603610b6c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610be3848484610e1e565b6001600160a01b0383163b15610c1c57610bff84848484611179565b610c1c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c2d82610de9565b610c4a57604051630a14c4b560e41b815260040160405180910390fd5b6000610c54611264565b90508051600003610c745760405180602001604052806000815250610c9f565b80610c7e84611273565b604051602001610c8f92919061178e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610d005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610711565b6008805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6008546001600160a01b03163314610d7b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610711565b6001600160a01b038116610de05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610711565b6107ba8161104c565b600081600111158015610dfd575060005482105b801561052f575050600090815260046020526040902054600160e01b161590565b6000610e2982610fdd565b9050836001600160a01b0316816001600160a01b031614610e5c5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610e8c5750610e8c8633610480565b80610e9f57506001600160a01b03821633145b905080610ebf57604051632ce44b5f60e11b815260040160405180910390fd5b84600003610ee057604051633a954ecd60e21b815260040160405180910390fd5b8115610f0357600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560205260408082208054600019019055918716815220805460010190554260a01b8517600160e11b17600085815260046020526040812091909155600160e11b84169003610f9357600184016000818152600460205260408120549003610f91576000548114610f915760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60008180600111611033576000548110156110335760008181526004602052604081205490600160e01b82169003611031575b80600003610c9f575060001901600081815260046020526040902054611010565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054826000036110c157604051622e076360e81b815260040160405180910390fd5b816000036110e25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600090815260056020526040902080546801000000000000000184020190554260a01b6001831460e11b178317600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061112d5750500160005550565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111ae9033908990889088906004016117cd565b6020604051808303816000875af19250505080156111e9575060408051601f3d908101601f191682019092526111e691810190611809565b60015b611247573d808015611217576040519150601f19603f3d011682016040523d82523d6000602084013e61121c565b606091505b50805160000361123f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060098054610544906115e9565b604080516080810191829052607f0190826030600a8206018353600a90045b80156112b057600183039250600a81066030018353600a9004611292565b50819003601f19909101908152919050565b6001600160e01b0319811681146107ba57600080fd5b6000602082840312156112ea57600080fd5b8135610c9f816112c2565b60005b838110156113105781810151838201526020016112f8565b83811115610c1c5750506000910152565b600081518084526113398160208601602086016112f5565b601f01601f19169290920160200192915050565b602081526000610c9f6020830184611321565b60006020828403121561137257600080fd5b5035919050565b80356001600160a01b038116811461139057600080fd5b919050565b600080604083850312156113a857600080fd5b6113b183611379565b946020939093013593505050565b6000806000606084860312156113d457600080fd5b6113dd84611379565b92506113eb60208501611379565b9150604084013590509250925092565b6000806020838503121561140e57600080fd5b823567ffffffffffffffff8082111561142657600080fd5b818501915085601f83011261143a57600080fd5b81358181111561144957600080fd5b86602082850101111561145b57600080fd5b60209290920196919550909350505050565b60006020828403121561147f57600080fd5b610c9f82611379565b6000806040838503121561149b57600080fd5b6114a483611379565b9150602083013580151581146114b957600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156114f057600080fd5b6114f985611379565b935061150760208601611379565b925060408501359150606085013567ffffffffffffffff8082111561152b57600080fd5b818701915087601f83011261153f57600080fd5b813581811115611551576115516114c4565b604051601f8201601f19908116603f01168101908382118183101715611579576115796114c4565b816040528281528a602084870101111561159257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156115c957600080fd5b6115d283611379565b91506115e060208401611379565b90509250929050565b600181811c908216806115fd57607f821691505b60208210810361161d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156106b657600081815260208120601f850160051c8101602086101561164a5750805b601f850160051c820191505b81811015610fd557828155600101611656565b67ffffffffffffffff831115611681576116816114c4565b6116958361168f83546115e9565b83611623565b6000601f8411600181146116c957600085156116b15750838201355b600019600387901b1c1916600186901b178355611723565b600083815260209020601f19861690835b828110156116fa57868501358255602094850194600190920191016116da565b50868210156117175760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b600052601160045260246000fd5b600082198211156117535761175361172a565b500190565b60008282101561176a5761176a61172a565b500390565b60008160001904831182151516156117895761178961172a565b500290565b600083516117a08184602088016112f5565b8351908301906117b48183602088016112f5565b64173539b7b760d91b9101908152600501949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526117ff6080830184611321565b9695505050505050565b60006020828403121561181b57600080fd5b8151610c9f816112c256fea2646970667358221220d398c1b9aba26ee9d668b89819e15ac71d9a932badd868a965c86cce49a7369c64736f6c634300080f0033

Deployed Bytecode Sourcemap

40506:1816:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16349:615;;;;;;;;;;-1:-1:-1;16349:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;16349:615:0;;;;;;;;21766:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23759:204::-;;;;;;;;;;-1:-1:-1;23759:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:55:1;;;1674:74;;1662:2;1647:18;23759:204:0;1528:226:1;23307:386:0;;;;;;;;;;-1:-1:-1;23307:386:0;;;;;:::i;:::-;;:::i;:::-;;15403:315;;;;;;;;;;-1:-1:-1;42196:1:0;15669:12;15456:7;15653:13;:28;-1:-1:-1;;15653:46:0;15403:315;;;2365:25:1;;;2353:2;2338:18;15403:315:0;2219:177:1;24645:170:0;;;;;;;;;;-1:-1:-1;24645:170:0;;;;;:::i;:::-;;:::i;41026:104::-;;;;;;;;;;-1:-1:-1;41026:104:0;;;;;:::i;:::-;;:::i;42213:106::-;;;;;;;;;;;;;:::i;24886:185::-;;;;;;;;;;-1:-1:-1;24886:185:0;;;;;:::i;:::-;;:::i;40739:35::-;;;;;;;;;;;;40770:4;40739:35;;21555:144;;;;;;;;;;-1:-1:-1;21555:144:0;;;;;:::i;:::-;;:::i;17028:234::-;;;;;;;;;;-1:-1:-1;17028:234:0;;;;;:::i;:::-;;:::i;2598:103::-;;;;;;;;;;;;;:::i;1947:87::-;;;;;;;;;;-1:-1:-1;2020:6:0;;-1:-1:-1;;;;;2020:6:0;1947:87;;41138:83;;;;;;;;;;-1:-1:-1;41138:83:0;;;;;:::i;:::-;;:::i;21935:104::-;;;;;;;;;;;;;:::i;40832:30::-;;;;;;;;;;;;;;;;41424:672;;;;;;:::i;:::-;;:::i;24035:308::-;;;;;;;;;;-1:-1:-1;24035:308:0;;;;;:::i;:::-;;:::i;25142:396::-;;;;;;;;;;-1:-1:-1;25142:396:0;;;;;:::i;:::-;;:::i;22110:327::-;;;;;;;;;;-1:-1:-1;22110:327:0;;;;;:::i;:::-;;:::i;40934:80::-;;;;;;;;;;;;;:::i;40560:37::-;;;;;;;;;;;;40593:4;40560:37;;24414:164;;;;;;;;;;-1:-1:-1;24414:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24535:25:0;;;24511:4;24535:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24414:164;2856:201;;;;;;;;;;-1:-1:-1;2856:201:0;;;;;:::i;:::-;;:::i;40781:42::-;;;;;;;;;;;;40822:1;40781:42;;16349:615;16434:4;-1:-1:-1;;;;;;;;;16734:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16811:25:0;;;16734:102;:179;;;-1:-1:-1;;;;;;;;;;16888:25:0;;;16734:179;16714:199;16349:615;-1:-1:-1;;16349:615:0:o;21766:100::-;21820:13;21853:5;21846:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21766:100;:::o;23759:204::-;23827:7;23852:16;23860:7;23852;:16::i;:::-;23847:64;;23877:34;;-1:-1:-1;;;23877:34:0;;;;;;;;;;;23847:64;-1:-1:-1;23931:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23931:24:0;;23759:204::o;23307:386::-;23380:13;23396:16;23404:7;23396;:16::i;:::-;23380:32;-1:-1:-1;38340:10:0;-1:-1:-1;;;;;23429:28:0;;;23425:175;;23477:44;23494:5;38340:10;24414:164;:::i;23477:44::-;23472:128;;23549:35;;-1:-1:-1;;;23549:35:0;;;;;;;;;;;23472:128;23612:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23612:29:0;-1:-1:-1;;;;;23612:29:0;;;;;;;;;23657:28;;23612:24;;23657:28;;;;;;;23369:324;23307:386;;:::o;24645:170::-;24779:28;24789:4;24795:2;24799:7;24779:9;:28::i;:::-;24645:170;;;:::o;41026:104::-;2020:6;;-1:-1:-1;;;;;2020:6:0;38340:10;2167:23;2159:68;;;;-1:-1:-1;;;2159:68:0;;6001:2:1;2159:68:0;;;5983:21:1;;;6020:18;;;6013:30;6079:34;6059:18;;;6052:62;6131:18;;2159:68:0;;;;;;;;;41103:12:::1;:19;41118:4:::0;;41103:12;:19:::1;:::i;42213:106::-:0;2020:6;;-1:-1:-1;;;;;2020:6:0;38340:10;2167:23;2159:68;;;;-1:-1:-1;;;2159:68:0;;6001:2:1;2159:68:0;;;5983:21:1;;;6020:18;;;6013:30;6079:34;6059:18;;;6052:62;6131:18;;2159:68:0;5799:356:1;2159:68:0;2020:6;;42263:48:::1;::::0;-1:-1:-1;;;;;2020:6:0;;;;42289:21:::1;42263:48:::0;::::1;;;::::0;::::1;::::0;;;42289:21;2020:6;42263:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;42213:106::o:0;24886:185::-;25024:39;25041:4;25047:2;25051:7;25024:39;;;;;;;;;;;;:16;:39::i;21555:144::-;21619:7;21662:27;21681:7;21662:18;:27::i;17028:234::-;17092:7;17134:5;17144:1;17116:29;17112:70;;17154:28;;-1:-1:-1;;;17154:28:0;;;;;;;;;;;17112:70;-1:-1:-1;;;;;;17200:25:0;;;;;:18;:25;;;;;;12373:13;17200:54;;17028:234::o;2598:103::-;2020:6;;-1:-1:-1;;;;;2020:6:0;38340:10;2167:23;2159:68;;;;-1:-1:-1;;;2159:68:0;;6001:2:1;2159:68:0;;;5983:21:1;;;6020:18;;;6013:30;6079:34;6059:18;;;6052:62;6131:18;;2159:68:0;5799:356:1;2159:68:0;2663:30:::1;2690:1;2663:18;:30::i;:::-;2598:103::o:0;41138:83::-;2020:6;;-1:-1:-1;;;;;2020:6:0;38340:10;2167:23;2159:68;;;;-1:-1:-1;;;2159:68:0;;6001:2:1;2159:68:0;;;5983:21:1;;;6020:18;;;6013:30;6079:34;6059:18;;;6052:62;6131:18;;2159:68:0;5799:356:1;2159:68:0;41199:5:::1;:14:::0;41138:83::o;21935:104::-;21991:13;22024:7;22017:14;;;;;:::i;41424:672::-;41484:8;;-1:-1:-1;;;41484:8:0;;;;41476:34;;;;-1:-1:-1;;;41476:34:0;;8420:2:1;41476:34:0;;;8402:21:1;8459:2;8439:18;;;8432:30;-1:-1:-1;;;8478:18:1;;;8471:43;8531:18;;41476:34:0;8218:337:1;41476:34:0;40593:4;41546;41529:14;15863:7;16051:13;-1:-1:-1;;16051:31:0;;15816:285;41529:14;:21;;;;:::i;:::-;:34;;41521:59;;;;-1:-1:-1;;;41521:59:0;;9027:2:1;41521:59:0;;;9009:21:1;9066:2;9046:18;;;9039:30;-1:-1:-1;;;9085:18:1;;;9078:42;9137:18;;41521:59:0;8825:336:1;41521:59:0;40822:1;41627:4;41599:25;41613:10;-1:-1:-1;;;;;17433:25:0;17405:7;17433:25;;;:18;:25;;12510:2;17433:25;;;;;:49;;12373:13;17432:80;;17344:176;41599:25;:32;;;;:::i;:::-;:53;;41591:81;;;;-1:-1:-1;;;41591:81:0;;9368:2:1;41591:81:0;;;9350:21:1;9407:2;9387:18;;;9380:30;9446:17;9426:18;;;9419:45;9481:18;;41591:81:0;9166:339:1;41591:81:0;40770:4;41687:14;15863:7;16051:13;-1:-1:-1;;16051:31:0;;15816:285;41687:14;:24;:57;;;;-1:-1:-1;41729:10:0;17405:7;17433:25;;;:18;:25;;12510:2;17433:25;;;;;41743:1;;17433:49;12373:13;17432:80;41715:29;41687:57;41683:406;;;41770:20;41776:10;41788:1;41770:5;:20::i;:::-;41816:1;41809:4;:8;41805:150;;;41867:5;;41859:6;41864:1;41859:4;:6;:::i;:::-;41858:14;;;;:::i;:::-;41845:9;:27;;41837:56;;;;-1:-1:-1;;;41837:56:0;;10015:2:1;41837:56:0;;;9997:21:1;10054:2;10034:18;;;10027:30;-1:-1:-1;;;10073:18:1;;;10066:46;10129:18;;41837:56:0;9813:340:1;41837:56:0;41912:27;41918:10;41930:8;41937:1;41930:4;:8;:::i;:::-;41912:5;:27::i;41683:406::-;42013:5;;42008:10;;:4;:10;:::i;:::-;41995:9;:23;;41987:52;;;;-1:-1:-1;;;41987:52:0;;10015:2:1;41987:52:0;;;9997:21:1;10054:2;10034:18;;;10027:30;-1:-1:-1;;;10073:18:1;;;10066:46;10129:18;;41987:52:0;9813:340:1;41987:52:0;42054:23;42060:10;42072:4;42054:5;:23::i;24035:308::-;38340:10;-1:-1:-1;;;;;24134:31:0;;;24130:61;;24174:17;;-1:-1:-1;;;24174:17:0;;;;;;;;;;;24130:61;38340:10;24204:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24204:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24204:60:0;;;;;;;;;;24280:55;;540:41:1;;;24204:49:0;;38340:10;24280:55;;513:18:1;24280:55:0;;;;;;;24035:308;;:::o;25142:396::-;25309:28;25319:4;25325:2;25329:7;25309:9;:28::i;:::-;-1:-1:-1;;;;;25352:14:0;;;:19;25348:183;;25391:56;25422:4;25428:2;25432:7;25441:5;25391:30;:56::i;:::-;25386:145;;25475:40;;-1:-1:-1;;;25475:40:0;;;;;;;;;;;25386:145;25142:396;;;;:::o;22110:327::-;22183:13;22214:16;22222:7;22214;:16::i;:::-;22209:59;;22239:29;;-1:-1:-1;;;22239:29:0;;;;;;;;;;;22209:59;22281:21;22305:10;:8;:10::i;:::-;22281:34;;22339:7;22333:21;22358:1;22333:26;:96;;;;;;;;;;;;;;;;;22386:7;22395:18;22405:7;22395:9;:18::i;:::-;22369:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22333:96;22326:103;22110:327;-1:-1:-1;;;22110:327:0:o;40934:80::-;2020:6;;-1:-1:-1;;;;;2020:6:0;38340:10;2167:23;2159:68;;;;-1:-1:-1;;;2159:68:0;;6001:2:1;2159:68:0;;;5983:21:1;;;6020:18;;;6013:30;6079:34;6059:18;;;6052:62;6131:18;;2159:68:0;5799:356:1;2159:68:0;40998:8:::1;::::0;;-1:-1:-1;;;;40986:20:0;::::1;-1:-1:-1::0;;;40998:8:0;;;::::1;;;40997:9;40986:20:::0;;::::1;;::::0;;40934:80::o;2856:201::-;2020:6;;-1:-1:-1;;;;;2020:6:0;38340:10;2167:23;2159:68;;;;-1:-1:-1;;;2159:68:0;;6001:2:1;2159:68:0;;;5983:21:1;;;6020:18;;;6013:30;6079:34;6059:18;;;6052:62;6131:18;;2159:68:0;5799:356:1;2159:68:0;-1:-1:-1;;;;;2945:22:0;::::1;2937:73;;;::::0;-1:-1:-1;;;2937:73:0;;11002:2:1;2937:73:0::1;::::0;::::1;10984:21:1::0;11041:2;11021:18;;;11014:30;11080:34;11060:18;;;11053:62;-1:-1:-1;;;11131:18:1;;;11124:36;11177:19;;2937:73:0::1;10800:402:1::0;2937:73:0::1;3021:28;3040:8;3021:18;:28::i;25793:273::-:0;25850:4;25906:7;42196:1;25887:26;;:66;;;;;25940:13;;25930:7;:23;25887:66;:152;;;;-1:-1:-1;;25991:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25991:43:0;:48;;25793:273::o;29456:2557::-;29571:27;29601;29620:7;29601:18;:27::i;:::-;29571:57;;29686:4;-1:-1:-1;;;;;29645:45:0;29661:19;-1:-1:-1;;;;;29645:45:0;;29641:86;;29699:28;;-1:-1:-1;;;29699:28:0;;;;;;;;;;;29641:86;29740:23;29766:24;;;:15;:24;;;;;;-1:-1:-1;;;;;29766:24:0;;;;29740:23;29829:27;;38340:10;29829:27;;:87;;-1:-1:-1;29873:43:0;29890:4;38340:10;24414:164;:::i;29873:43::-;29829:142;;;-1:-1:-1;;;;;;29933:38:0;;38340:10;29933:38;29829:142;29803:169;;29990:17;29985:66;;30016:35;;-1:-1:-1;;;30016:35:0;;;;;;;;;;;29985:66;30084:2;30091:1;30066:26;30062:62;;30101:23;;-1:-1:-1;;;30101:23:0;;;;;;;;;;;30062:62;30268:15;30250:39;30246:103;;30313:24;;;;:15;:24;;;;;30306:31;;-1:-1:-1;;;;;;30306:31:0;;;30246:103;-1:-1:-1;;;;;30716:24:0;;;;;;;:18;:24;;;;;;30714:26;;-1:-1:-1;;30714:26:0;;;30785:22;;;;;;30783:24;;-1:-1:-1;30783:24:0;;;21454:11;21430:22;21426:40;21413:62;;-1:-1:-1;;;21413:62:0;31078:26;;;;:17;:26;;;;;:77;;;;-1:-1:-1;;;31275:46:0;;:51;;31271:626;;31379:1;31369:11;;31347:19;31502:30;;;:17;:30;;;;;;:35;;31498:384;;31640:13;;31625:11;:28;31621:242;;31787:30;;;;:17;:30;;;;;:52;;;31621:242;31328:569;31271:626;31944:7;31940:2;-1:-1:-1;;;;;31925:27:0;31934:4;-1:-1:-1;;;;;31925:27:0;;;;;;;;;;;31963:42;29560:2453;;;29456:2557;;;:::o;18689:1129::-;18756:7;18791;;42196:1;18840:23;18836:915;;18893:13;;18886:4;:20;18882:869;;;18931:14;18948:23;;;:17;:23;;;;;;;-1:-1:-1;;;19037:23:0;;:28;;19033:699;;19556:113;19563:6;19573:1;19563:11;19556:113;;-1:-1:-1;;;19634:6:0;19616:25;;;;:17;:25;;;;;;19556:113;;19033:699;18908:843;18882:869;19779:31;;-1:-1:-1;;;19779:31:0;;;;;;;;;;;3217:191;3310:6;;;-1:-1:-1;;;;;3327:17:0;;;-1:-1:-1;;;;;;3327:17:0;;;;;;;3360:40;;3310:6;;;3327:17;3310:6;;3360:40;;3291:16;;3360:40;3280:128;3217:191;:::o;27595:1607::-;27660:20;27683:13;27729:2;27736:1;27711:26;27707:58;;27746:19;;-1:-1:-1;;;27746:19:0;;;;;;;;;;;27707:58;27780:8;27792:1;27780:13;27776:44;;27802:18;;-1:-1:-1;;;27802:18:0;;;;;;;;;;;27776:44;-1:-1:-1;;;;;28369:22:0;;;;;;:18;:22;;12510:2;28369:22;;:70;;28407:31;28395:44;;28369:70;;;21454:11;21430:22;21426:40;-1:-1:-1;28789:13:0;;13286:3;28774:56;21423:51;21413:62;;28682:31;;;;:17;:31;;;;;:163;28700:12;28920:23;;;28958:99;28985:34;;29010:8;;;;;-1:-1:-1;;;;;28985:34:0;;;29002:1;;28985:34;;29002:1;;28985:34;29052:3;29043:6;:12;28958:99;;-1:-1:-1;;29089:23:0;29073:13;:39;-1:-1:-1;24645:170:0:o;35722:716::-;35906:88;;-1:-1:-1;;;35906:88:0;;35885:4;;-1:-1:-1;;;;;35906:45:0;;;;;:88;;38340:10;;35973:4;;35979:7;;35988:5;;35906:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35906:88:0;;;;;;;;-1:-1:-1;;35906:88:0;;;;;;;;;;;;:::i;:::-;;;35902:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36189:6;:13;36206:1;36189:18;36185:235;;36235:40;;-1:-1:-1;;;36235:40:0;;;;;;;;;;;36185:235;36378:6;36372:13;36363:6;36359:2;36355:15;36348:38;35902:529;-1:-1:-1;;;;;;36065:64:0;-1:-1:-1;;;36065:64:0;;-1:-1:-1;35722:716:0;;;;;;:::o;41229:105::-;41281:13;41314:12;41307:19;;;;;:::i;38464:1960::-;38933:4;38927:11;;38940:3;38923:21;;39018:17;;;;39714:11;;;39593:5;39846:2;39860;39850:13;;39842:22;39714:11;39829:36;39901:2;39891:13;;39485:697;39920:4;39485:697;;;40111:1;40106:3;40102:11;40095:18;;40162:2;40156:4;40152:13;40148:2;40144:22;40139:3;40131:36;40015:2;40005:13;;39485:697;;;-1:-1:-1;40212:13:0;;;-1:-1:-1;;40327:12:0;;;40387:19;;;40327:12;38464:1960;-1:-1:-1;38464:1960:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1759:196::-;1827:20;;-1:-1:-1;;;;;1876:54:1;;1866:65;;1856:93;;1945:1;1942;1935:12;1856:93;1759:196;;;:::o;1960:254::-;2028:6;2036;2089:2;2077:9;2068:7;2064:23;2060:32;2057:52;;;2105:1;2102;2095:12;2057:52;2128:29;2147:9;2128:29;:::i;:::-;2118:39;2204:2;2189:18;;;;2176:32;;-1:-1:-1;;;1960:254:1:o;2401:328::-;2478:6;2486;2494;2547:2;2535:9;2526:7;2522:23;2518:32;2515:52;;;2563:1;2560;2553:12;2515:52;2586:29;2605:9;2586:29;:::i;:::-;2576:39;;2634:38;2668:2;2657:9;2653:18;2634:38;:::i;:::-;2624:48;;2719:2;2708:9;2704:18;2691:32;2681:42;;2401:328;;;;;:::o;2734:592::-;2805:6;2813;2866:2;2854:9;2845:7;2841:23;2837:32;2834:52;;;2882:1;2879;2872:12;2834:52;2922:9;2909:23;2951:18;2992:2;2984:6;2981:14;2978:34;;;3008:1;3005;2998:12;2978:34;3046:6;3035:9;3031:22;3021:32;;3091:7;3084:4;3080:2;3076:13;3072:27;3062:55;;3113:1;3110;3103:12;3062:55;3153:2;3140:16;3179:2;3171:6;3168:14;3165:34;;;3195:1;3192;3185:12;3165:34;3240:7;3235:2;3226:6;3222:2;3218:15;3214:24;3211:37;3208:57;;;3261:1;3258;3251:12;3208:57;3292:2;3284:11;;;;;3314:6;;-1:-1:-1;2734:592:1;;-1:-1:-1;;;;2734:592:1:o;3331:186::-;3390:6;3443:2;3431:9;3422:7;3418:23;3414:32;3411:52;;;3459:1;3456;3449:12;3411:52;3482:29;3501:9;3482:29;:::i;3522:347::-;3587:6;3595;3648:2;3636:9;3627:7;3623:23;3619:32;3616:52;;;3664:1;3661;3654:12;3616:52;3687:29;3706:9;3687:29;:::i;:::-;3677:39;;3766:2;3755:9;3751:18;3738:32;3813:5;3806:13;3799:21;3792:5;3789:32;3779:60;;3835:1;3832;3825:12;3779:60;3858:5;3848:15;;;3522:347;;;;;:::o;3874:127::-;3935:10;3930:3;3926:20;3923:1;3916:31;3966:4;3963:1;3956:15;3990:4;3987:1;3980:15;4006:1138;4101:6;4109;4117;4125;4178:3;4166:9;4157:7;4153:23;4149:33;4146:53;;;4195:1;4192;4185:12;4146:53;4218:29;4237:9;4218:29;:::i;:::-;4208:39;;4266:38;4300:2;4289:9;4285:18;4266:38;:::i;:::-;4256:48;;4351:2;4340:9;4336:18;4323:32;4313:42;;4406:2;4395:9;4391:18;4378:32;4429:18;4470:2;4462:6;4459:14;4456:34;;;4486:1;4483;4476:12;4456:34;4524:6;4513:9;4509:22;4499:32;;4569:7;4562:4;4558:2;4554:13;4550:27;4540:55;;4591:1;4588;4581:12;4540:55;4627:2;4614:16;4649:2;4645;4642:10;4639:36;;;4655:18;;:::i;:::-;4730:2;4724:9;4698:2;4784:13;;-1:-1:-1;;4780:22:1;;;4804:2;4776:31;4772:40;4760:53;;;4828:18;;;4848:22;;;4825:46;4822:72;;;4874:18;;:::i;:::-;4914:10;4910:2;4903:22;4949:2;4941:6;4934:18;4989:7;4984:2;4979;4975;4971:11;4967:20;4964:33;4961:53;;;5010:1;5007;5000:12;4961:53;5066:2;5061;5057;5053:11;5048:2;5040:6;5036:15;5023:46;5111:1;5106:2;5101;5093:6;5089:15;5085:24;5078:35;5132:6;5122:16;;;;;;;4006:1138;;;;;;;:::o;5149:260::-;5217:6;5225;5278:2;5266:9;5257:7;5253:23;5249:32;5246:52;;;5294:1;5291;5284:12;5246:52;5317:29;5336:9;5317:29;:::i;:::-;5307:39;;5365:38;5399:2;5388:9;5384:18;5365:38;:::i;:::-;5355:48;;5149:260;;;;;:::o;5414:380::-;5493:1;5489:12;;;;5536;;;5557:61;;5611:4;5603:6;5599:17;5589:27;;5557:61;5664:2;5656:6;5653:14;5633:18;5630:38;5627:161;;5710:10;5705:3;5701:20;5698:1;5691:31;5745:4;5742:1;5735:15;5773:4;5770:1;5763:15;5627:161;;5414:380;;;:::o;6286:545::-;6388:2;6383:3;6380:11;6377:448;;;6424:1;6449:5;6445:2;6438:17;6494:4;6490:2;6480:19;6564:2;6552:10;6548:19;6545:1;6541:27;6535:4;6531:38;6600:4;6588:10;6585:20;6582:47;;;-1:-1:-1;6623:4:1;6582:47;6678:2;6673:3;6669:12;6666:1;6662:20;6656:4;6652:31;6642:41;;6733:82;6751:2;6744:5;6741:13;6733:82;;;6796:17;;;6777:1;6766:13;6733:82;;7007:1206;7131:18;7126:3;7123:27;7120:53;;;7153:18;;:::i;:::-;7182:94;7272:3;7232:38;7264:4;7258:11;7232:38;:::i;:::-;7226:4;7182:94;:::i;:::-;7302:1;7327:2;7322:3;7319:11;7344:1;7339:616;;;;7999:1;8016:3;8013:93;;;-1:-1:-1;8072:19:1;;;8059:33;8013:93;-1:-1:-1;;6964:1:1;6960:11;;;6956:24;6952:29;6942:40;6988:1;6984:11;;;6939:57;8119:78;;7312:895;;7339:616;6233:1;6226:14;;;6270:4;6257:18;;-1:-1:-1;;7375:17:1;;;7476:9;7498:229;7512:7;7509:1;7506:14;7498:229;;;7601:19;;;7588:33;7573:49;;7708:4;7693:20;;;;7661:1;7649:14;;;;7528:12;7498:229;;;7502:3;7755;7746:7;7743:16;7740:159;;;7879:1;7875:6;7869:3;7863;7860:1;7856:11;7852:21;7848:34;7844:39;7831:9;7826:3;7822:19;7809:33;7805:79;7797:6;7790:95;7740:159;;;7942:1;7936:3;7933:1;7929:11;7925:19;7919:4;7912:33;7312:895;;;7007:1206;;;:::o;8560:127::-;8621:10;8616:3;8612:20;8609:1;8602:31;8652:4;8649:1;8642:15;8676:4;8673:1;8666:15;8692:128;8732:3;8763:1;8759:6;8756:1;8753:13;8750:39;;;8769:18;;:::i;:::-;-1:-1:-1;8805:9:1;;8692:128::o;9510:125::-;9550:4;9578:1;9575;9572:8;9569:34;;;9583:18;;:::i;:::-;-1:-1:-1;9620:9:1;;9510:125::o;9640:168::-;9680:7;9746:1;9742;9738:6;9734:14;9731:1;9728:21;9723:1;9716:9;9709:17;9705:45;9702:71;;;9753:18;;:::i;:::-;-1:-1:-1;9793:9:1;;9640:168::o;10158:637::-;10438:3;10476:6;10470:13;10492:53;10538:6;10533:3;10526:4;10518:6;10514:17;10492:53;:::i;:::-;10608:13;;10567:16;;;;10630:57;10608:13;10567:16;10664:4;10652:17;;10630:57;:::i;:::-;-1:-1:-1;;;10709:20:1;;10738:22;;;10787:1;10776:13;;10158:637;-1:-1:-1;;;;10158:637:1:o;11207:512::-;11401:4;-1:-1:-1;;;;;11511:2:1;11503:6;11499:15;11488:9;11481:34;11563:2;11555:6;11551:15;11546:2;11535:9;11531:18;11524:43;;11603:6;11598:2;11587:9;11583:18;11576:34;11646:3;11641:2;11630:9;11626:18;11619:31;11667:46;11708:3;11697:9;11693:19;11685:6;11667:46;:::i;:::-;11659:54;11207:512;-1:-1:-1;;;;;;11207:512:1:o;11724:249::-;11793:6;11846:2;11834:9;11825:7;11821:23;11817:32;11814:52;;;11862:1;11859;11852:12;11814:52;11894:9;11888:16;11913:30;11937:5;11913:30;:::i

Swarm Source

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