ETH Price: $2,625.18 (+1.55%)

Token

WolveSkaters (WolveSkaters)
 

Overview

Max Total Supply

227 WolveSkaters

Holders

184

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WolveSkaters
0x5cf422e9ff1d79c98c479f8d4e8cbdc7b51e1550
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

7 000 wild Wolveskaters are hand-drawn to the deafening sounds of punk rock. Each Wolf is unique and programmatically generated from over 230 possible traits. Each one is thoughtfully designed. Our skatepark will be a great place for fun and the extreme! A real loyal family is waiting for you!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WolveSkaters

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-12
*/

pragma solidity 0.8.10;
// SPDX-License-Identifier: MIT


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)


// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)


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

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


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

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


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

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

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

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

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

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


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

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), 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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


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

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


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

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract WolveSkaters is ERC721, ERC721Enumerable, Ownable, ReentrancyGuard {
    using SafeMath for uint256;
    using Strings for string;
    using Strings for uint256;

    string private _skateRamp;
    bool public racing = false;
    uint256 public maxWolves = 7000;
    uint256 public currentWolf;
    uint256 public awardWolves = 250;
    uint256 public wolfPrice = 0.045 ether;

    constructor(string memory skateRamp) ERC721("WolveSkaters", "WolveSkaters") {
        setSkateRamp(skateRamp);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
    internal
    override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function setSkateRamp(string memory skateRamp) public onlyOwner {
        _skateRamp = skateRamp;
    }

    function _getSkateRamp() internal view returns (string memory) {
        return _skateRamp;
    }

    function tokenURI(uint256 wolf) public view override(ERC721) returns (string memory) {
        require(_exists(wolf), "ERC721Metadata: URI query for nonexistent token");
        string memory skateRamp = _getSkateRamp();
        return bytes(skateRamp).length > 0 ? string(abi.encodePacked(skateRamp, wolf.toString(), ".json")) : "";
    }

    function _WOOF(address to, uint256 count) private {
        uint256 _currentWolf = currentWolf;
        for (uint256 i = 0; i < count; i++) {
            _currentWolf++;
            _safeMint(to, _currentWolf);
        }
        currentWolf = _currentWolf;
    }

    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 wolvesCount = balanceOf(_owner);
        if (wolvesCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory vulfpeck = new uint256[](wolvesCount);
            uint256 index;
            for (index = 0; index < wolvesCount; index++) {
                vulfpeck[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return vulfpeck;
        }
    }

    function WoofAward(address to, uint256 count) public onlyOwner {
        if (to == address(0)) {
            to = msg.sender;
        }
        require(count > 0
            && count <= awardWolves
        );
        _WOOF(to, count);
        awardWolves -= count;
    }



    function WOOF(uint256 count) external payable nonReentrant {
        require(racing == true
        && count > 0
        && totalSupply().add(count) <= maxWolves.sub(awardWolves)
            && msg.value >= wolfPrice.mul(count),
            "Mint is impossible now");
        _WOOF(msg.sender, count);
    }


    function toggleActivity() public onlyOwner {
        racing = !racing;
    }

    function shootEth(address to, uint256 howMuch) public payable onlyOwner {
        if (to == address(0)) {
            to = msg.sender;
        }
        if (howMuch == 0) {
            howMuch = address(this).balance;
        }
        require(payable(to).send(howMuch));
    }


    function setPrice(uint256 price) public onlyOwner {
        wolfPrice = price;
    }

    function reduceSupply(uint256 wolvesCrew) public onlyOwner {
        require(wolvesCrew < maxWolves && wolvesCrew > currentWolf.add(awardWolves));
        maxWolves = wolvesCrew;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"skateRamp","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"uint256","name":"count","type":"uint256"}],"name":"WOOF","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"WoofAward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"awardWolves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentWolf","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":"maxWolves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"racing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"wolvesCrew","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"skateRamp","type":"string"}],"name":"setSkateRamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"howMuch","type":"uint256"}],"name":"shootEth","outputs":[],"stateMutability":"payable","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":"toggleActivity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"wolf","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"wolfPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052600d805460ff19169055611b58600e5560fa601055669fdf42f6e480006011553480156200003157600080fd5b50604051620025e9380380620025e983398101604081905262000054916200026f565b604080518082018252600c8082526b576f6c7665536b617465727360a01b6020808401828152855180870190965292855284015281519192916200009b91600091620001b3565b508051620000b1906001906020840190620001b3565b505050620000ce620000c8620000e560201b60201c565b620000e9565b6001600b55620000de816200013b565b5062000388565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200019a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001af90600c906020840190620001b3565b5050565b828054620001c1906200034b565b90600052602060002090601f016020900481019282620001e5576000855562000230565b82601f106200020057805160ff191683800117855562000230565b8280016001018555821562000230579182015b828111156200023057825182559160200191906001019062000213565b506200023e92915062000242565b5090565b5b808211156200023e576000815560010162000243565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200028357600080fd5b82516001600160401b03808211156200029b57600080fd5b818501915085601f830112620002b057600080fd5b815181811115620002c557620002c562000259565b604051601f8201601f19908116603f01168101908382118183101715620002f057620002f062000259565b8160405282815288868487010111156200030957600080fd5b600093505b828410156200032d57848401860151818501870152928501926200030e565b828411156200033f5760008684830101525b98975050505050505050565b600181811c908216806200036057607f821691505b602082108114156200038257634e487b7160e01b600052602260045260246000fd5b50919050565b61225180620003986000396000f3fe6080604052600436106101e35760003560e01c80638062344411610102578063b3205d2611610095578063cafb62d711610064578063cafb62d714610552578063d19f967614610568578063e985e9c51461057e578063f2fde38b146105c757600080fd5b8063b3205d26146104df578063b88d4fde146104ff578063c2053cf41461051f578063c87b56dd1461053257600080fd5b8063912fe76e116100d1578063912fe76e1461047057806391b7f5ed1461048a57806395d89b41146104aa578063a22cb465146104bf57600080fd5b806380623444146103e55780638462151c1461040557806387485385146104325780638da5cb5b1461045257600080fd5b80633596f8b61161017a57806362e68ec01161014957806362e68ec01461037b5780636352211e1461039057806370a08231146103b0578063715018a6146103d057600080fd5b80633596f8b61461031257806342842e0e1461032857806344bfbc0b146103485780634f6ccce71461035b57600080fd5b8063095ea7b3116101b6578063095ea7b31461029b57806318160ddd146102bd57806323b872dd146102d25780632f745c59146102f257600080fd5b806301ffc9a7146101e8578063023e72a71461021d57806306fdde0314610241578063081812fc14610263575b600080fd5b3480156101f457600080fd5b50610208610203366004611c4a565b6105e7565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023360105481565b604051908152602001610214565b34801561024d57600080fd5b506102566105f8565b6040516102149190611cbf565b34801561026f57600080fd5b5061028361027e366004611cd2565b61068a565b6040516001600160a01b039091168152602001610214565b3480156102a757600080fd5b506102bb6102b6366004611d07565b610724565b005b3480156102c957600080fd5b50600854610233565b3480156102de57600080fd5b506102bb6102ed366004611d31565b61083a565b3480156102fe57600080fd5b5061023361030d366004611d07565b61086b565b34801561031e57600080fd5b5061023360115481565b34801561033457600080fd5b506102bb610343366004611d31565b610901565b6102bb610356366004611cd2565b61091c565b34801561036757600080fd5b50610233610376366004611cd2565b610a26565b34801561038757600080fd5b506102bb610ab9565b34801561039c57600080fd5b506102836103ab366004611cd2565b610af7565b3480156103bc57600080fd5b506102336103cb366004611d6d565b610b6e565b3480156103dc57600080fd5b506102bb610bf5565b3480156103f157600080fd5b506102bb610400366004611cd2565b610c2b565b34801561041157600080fd5b50610425610420366004611d6d565b610c81565b6040516102149190611d88565b34801561043e57600080fd5b506102bb61044d366004611e58565b610d40565b34801561045e57600080fd5b50600a546001600160a01b0316610283565b34801561047c57600080fd5b50600d546102089060ff1681565b34801561049657600080fd5b506102bb6104a5366004611cd2565b610d81565b3480156104b657600080fd5b50610256610db0565b3480156104cb57600080fd5b506102bb6104da366004611ea1565b610dbf565b3480156104eb57600080fd5b506102bb6104fa366004611d07565b610dca565b34801561050b57600080fd5b506102bb61051a366004611edd565b610e46565b6102bb61052d366004611d07565b610e7e565b34801561053e57600080fd5b5061025661054d366004611cd2565b610ef0565b34801561055e57600080fd5b50610233600e5481565b34801561057457600080fd5b50610233600f5481565b34801561058a57600080fd5b50610208610599366004611f59565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105d357600080fd5b506102bb6105e2366004611d6d565b610fcb565b60006105f282611066565b92915050565b60606000805461060790611f8c565b80601f016020809104026020016040519081016040528092919081815260200182805461063390611f8c565b80156106805780601f1061065557610100808354040283529160200191610680565b820191906000526020600020905b81548152906001019060200180831161066357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061072f82610af7565b9050806001600160a01b0316836001600160a01b0316141561079d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ff565b336001600160a01b03821614806107b957506107b98133610599565b61082b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ff565b610835838361108b565b505050565b61084433826110f9565b6108605760405162461bcd60e51b81526004016106ff90611fc1565b6108358383836111f0565b600061087683610b6e565b82106108d85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106ff565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61083583838360405180602001604052806000815250610e46565b6002600b54141561096f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ff565b6002600b55600d5460ff161515600114801561098b5750600081115b80156109b75750601054600e546109a19161139b565b6109b4826109ae60085490565b906113a7565b11155b80156109cf57506011546109cb90826113b3565b3410155b610a145760405162461bcd60e51b81526020600482015260166024820152754d696e7420697320696d706f737369626c65206e6f7760501b60448201526064016106ff565b610a1e33826113bf565b506001600b55565b6000610a3160085490565b8210610a945760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106ff565b60088281548110610aa757610aa7612012565b90600052602060002001549050919050565b600a546001600160a01b03163314610ae35760405162461bcd60e51b81526004016106ff90612028565b600d805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b0316806105f25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ff565b60006001600160a01b038216610bd95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ff565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c1f5760405162461bcd60e51b81526004016106ff90612028565b610c2960006113fe565b565b600a546001600160a01b03163314610c555760405162461bcd60e51b81526004016106ff90612028565b600e5481108015610c735750601054600f54610c70916113a7565b81115b610c7c57600080fd5b600e55565b60606000610c8e83610b6e565b905080610caf5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610cca57610cca611dcc565b604051908082528060200260200182016040528015610cf3578160200160208202803683370190505b50905060005b82811015610ca757610d0b858261086b565b828281518110610d1d57610d1d612012565b602090810291909101015280610d3281612073565b915050610cf9565b50919050565b600a546001600160a01b03163314610d6a5760405162461bcd60e51b81526004016106ff90612028565b8051610d7d90600c906020840190611b9b565b5050565b600a546001600160a01b03163314610dab5760405162461bcd60e51b81526004016106ff90612028565b601155565b60606001805461060790611f8c565b610d7d338383611450565b600a546001600160a01b03163314610df45760405162461bcd60e51b81526004016106ff90612028565b6001600160a01b038216610e06573391505b600081118015610e1857506010548111155b610e2157600080fd5b610e2b82826113bf565b8060106000828254610e3d919061208e565b90915550505050565b610e5033836110f9565b610e6c5760405162461bcd60e51b81526004016106ff90611fc1565b610e788484848461151f565b50505050565b600a546001600160a01b03163314610ea85760405162461bcd60e51b81526004016106ff90612028565b6001600160a01b038216610eba573391505b80610ec25750475b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050610d7d57600080fd5b6000818152600260205260409020546060906001600160a01b0316610f6f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ff565b6000610f79611552565b90506000815111610f995760405180602001604052806000815250610fc4565b80610fa384611561565b604051602001610fb49291906120a5565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610ff55760405162461bcd60e51b81526004016106ff90612028565b6001600160a01b03811661105a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ff565b611063816113fe565b50565b60006001600160e01b0319821663780e9d6360e01b14806105f257506105f28261165f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110c082610af7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ff565b600061117d83610af7565b9050806001600160a01b0316846001600160a01b031614806111b85750836001600160a01b03166111ad8461068a565b6001600160a01b0316145b806111e857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661120382610af7565b6001600160a01b03161461126b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106ff565b6001600160a01b0382166112cd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ff565b6112d88383836116af565b6112e360008261108b565b6001600160a01b038316600090815260036020526040812080546001929061130c90849061208e565b90915550506001600160a01b038216600090815260036020526040812080546001929061133a9084906120e4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610fc4828461208e565b6000610fc482846120e4565b6000610fc482846120fc565b600f5460005b828110156113f657816113d781612073565b9250506113e484836116ba565b806113ee81612073565b9150506113c5565b50600f555050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156114b25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ff565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61152a8484846111f0565b611536848484846116d4565b610e785760405162461bcd60e51b81526004016106ff9061211b565b6060600c805461060790611f8c565b6060816115855750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115af578061159981612073565b91506115a89050600a83612183565b9150611589565b60008167ffffffffffffffff8111156115ca576115ca611dcc565b6040519080825280601f01601f1916602001820160405280156115f4576020820181803683370190505b5090505b84156111e85761160960018361208e565b9150611616600a86612197565b6116219060306120e4565b60f81b81838151811061163657611636612012565b60200101906001600160f81b031916908160001a905350611658600a86612183565b94506115f8565b60006001600160e01b031982166380ac58cd60e01b148061169057506001600160e01b03198216635b5e139f60e01b145b806105f257506301ffc9a760e01b6001600160e01b03198316146105f2565b6108358383836117d2565b610d7d82826040518060200160405280600081525061188a565b60006001600160a01b0384163b156117c757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117189033908990889088906004016121ab565b6020604051808303816000875af1925050508015611753575060408051601f3d908101601f19168201909252611750918101906121e8565b60015b6117ad573d808015611781576040519150601f19603f3d011682016040523d82523d6000602084013e611786565b606091505b5080516117a55760405162461bcd60e51b81526004016106ff9061211b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111e8565b506001949350505050565b6001600160a01b03831661182d5761182881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611850565b816001600160a01b0316836001600160a01b0316146118505761185083826118bd565b6001600160a01b038216611867576108358161195a565b826001600160a01b0316826001600160a01b031614610835576108358282611a09565b6118948383611a4d565b6118a160008484846116d4565b6108355760405162461bcd60e51b81526004016106ff9061211b565b600060016118ca84610b6e565b6118d4919061208e565b600083815260076020526040902054909150808214611927576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061196c9060019061208e565b6000838152600960205260408120546008805493945090928490811061199457611994612012565b9060005260206000200154905080600883815481106119b5576119b5612012565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119ed576119ed612205565b6001900381819060005260206000200160009055905550505050565b6000611a1483610b6e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611aa35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ff565b6000818152600260205260409020546001600160a01b031615611b085760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ff565b611b14600083836116af565b6001600160a01b0382166000908152600360205260408120805460019290611b3d9084906120e4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ba790611f8c565b90600052602060002090601f016020900481019282611bc95760008555611c0f565b82601f10611be257805160ff1916838001178555611c0f565b82800160010185558215611c0f579182015b82811115611c0f578251825591602001919060010190611bf4565b50611c1b929150611c1f565b5090565b5b80821115611c1b5760008155600101611c20565b6001600160e01b03198116811461106357600080fd5b600060208284031215611c5c57600080fd5b8135610fc481611c34565b60005b83811015611c82578181015183820152602001611c6a565b83811115610e785750506000910152565b60008151808452611cab816020860160208601611c67565b601f01601f19169290920160200192915050565b602081526000610fc46020830184611c93565b600060208284031215611ce457600080fd5b5035919050565b80356001600160a01b0381168114611d0257600080fd5b919050565b60008060408385031215611d1a57600080fd5b611d2383611ceb565b946020939093013593505050565b600080600060608486031215611d4657600080fd5b611d4f84611ceb565b9250611d5d60208501611ceb565b9150604084013590509250925092565b600060208284031215611d7f57600080fd5b610fc482611ceb565b6020808252825182820181905260009190848201906040850190845b81811015611dc057835183529284019291840191600101611da4565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611dfd57611dfd611dcc565b604051601f8501601f19908116603f01168101908282118183101715611e2557611e25611dcc565b81604052809350858152868686011115611e3e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e6a57600080fd5b813567ffffffffffffffff811115611e8157600080fd5b8201601f81018413611e9257600080fd5b6111e884823560208401611de2565b60008060408385031215611eb457600080fd5b611ebd83611ceb565b915060208301358015158114611ed257600080fd5b809150509250929050565b60008060008060808587031215611ef357600080fd5b611efc85611ceb565b9350611f0a60208601611ceb565b925060408501359150606085013567ffffffffffffffff811115611f2d57600080fd5b8501601f81018713611f3e57600080fd5b611f4d87823560208401611de2565b91505092959194509250565b60008060408385031215611f6c57600080fd5b611f7583611ceb565b9150611f8360208401611ceb565b90509250929050565b600181811c90821680611fa057607f821691505b60208210811415610d3a57634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60006000198214156120875761208761205d565b5060010190565b6000828210156120a0576120a061205d565b500390565b600083516120b7818460208801611c67565b8351908301906120cb818360208801611c67565b64173539b7b760d91b9101908152600501949350505050565b600082198211156120f7576120f761205d565b500190565b60008160001904831182151516156121165761211661205d565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826121925761219261216d565b500490565b6000826121a6576121a661216d565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121de90830184611c93565b9695505050505050565b6000602082840312156121fa57600080fd5b8151610fc481611c34565b634e487b7160e01b600052603160045260246000fdfea26469706673582212202af84b7989372ae2be9f9f0a4f37924c46161d6c0a73efc2e486156c7d91cc6364736f6c634300080a00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f776f6c7665736b61746572732e696f2f776f6c7665732f00

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80638062344411610102578063b3205d2611610095578063cafb62d711610064578063cafb62d714610552578063d19f967614610568578063e985e9c51461057e578063f2fde38b146105c757600080fd5b8063b3205d26146104df578063b88d4fde146104ff578063c2053cf41461051f578063c87b56dd1461053257600080fd5b8063912fe76e116100d1578063912fe76e1461047057806391b7f5ed1461048a57806395d89b41146104aa578063a22cb465146104bf57600080fd5b806380623444146103e55780638462151c1461040557806387485385146104325780638da5cb5b1461045257600080fd5b80633596f8b61161017a57806362e68ec01161014957806362e68ec01461037b5780636352211e1461039057806370a08231146103b0578063715018a6146103d057600080fd5b80633596f8b61461031257806342842e0e1461032857806344bfbc0b146103485780634f6ccce71461035b57600080fd5b8063095ea7b3116101b6578063095ea7b31461029b57806318160ddd146102bd57806323b872dd146102d25780632f745c59146102f257600080fd5b806301ffc9a7146101e8578063023e72a71461021d57806306fdde0314610241578063081812fc14610263575b600080fd5b3480156101f457600080fd5b50610208610203366004611c4a565b6105e7565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023360105481565b604051908152602001610214565b34801561024d57600080fd5b506102566105f8565b6040516102149190611cbf565b34801561026f57600080fd5b5061028361027e366004611cd2565b61068a565b6040516001600160a01b039091168152602001610214565b3480156102a757600080fd5b506102bb6102b6366004611d07565b610724565b005b3480156102c957600080fd5b50600854610233565b3480156102de57600080fd5b506102bb6102ed366004611d31565b61083a565b3480156102fe57600080fd5b5061023361030d366004611d07565b61086b565b34801561031e57600080fd5b5061023360115481565b34801561033457600080fd5b506102bb610343366004611d31565b610901565b6102bb610356366004611cd2565b61091c565b34801561036757600080fd5b50610233610376366004611cd2565b610a26565b34801561038757600080fd5b506102bb610ab9565b34801561039c57600080fd5b506102836103ab366004611cd2565b610af7565b3480156103bc57600080fd5b506102336103cb366004611d6d565b610b6e565b3480156103dc57600080fd5b506102bb610bf5565b3480156103f157600080fd5b506102bb610400366004611cd2565b610c2b565b34801561041157600080fd5b50610425610420366004611d6d565b610c81565b6040516102149190611d88565b34801561043e57600080fd5b506102bb61044d366004611e58565b610d40565b34801561045e57600080fd5b50600a546001600160a01b0316610283565b34801561047c57600080fd5b50600d546102089060ff1681565b34801561049657600080fd5b506102bb6104a5366004611cd2565b610d81565b3480156104b657600080fd5b50610256610db0565b3480156104cb57600080fd5b506102bb6104da366004611ea1565b610dbf565b3480156104eb57600080fd5b506102bb6104fa366004611d07565b610dca565b34801561050b57600080fd5b506102bb61051a366004611edd565b610e46565b6102bb61052d366004611d07565b610e7e565b34801561053e57600080fd5b5061025661054d366004611cd2565b610ef0565b34801561055e57600080fd5b50610233600e5481565b34801561057457600080fd5b50610233600f5481565b34801561058a57600080fd5b50610208610599366004611f59565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105d357600080fd5b506102bb6105e2366004611d6d565b610fcb565b60006105f282611066565b92915050565b60606000805461060790611f8c565b80601f016020809104026020016040519081016040528092919081815260200182805461063390611f8c565b80156106805780601f1061065557610100808354040283529160200191610680565b820191906000526020600020905b81548152906001019060200180831161066357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061072f82610af7565b9050806001600160a01b0316836001600160a01b0316141561079d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ff565b336001600160a01b03821614806107b957506107b98133610599565b61082b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ff565b610835838361108b565b505050565b61084433826110f9565b6108605760405162461bcd60e51b81526004016106ff90611fc1565b6108358383836111f0565b600061087683610b6e565b82106108d85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106ff565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61083583838360405180602001604052806000815250610e46565b6002600b54141561096f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ff565b6002600b55600d5460ff161515600114801561098b5750600081115b80156109b75750601054600e546109a19161139b565b6109b4826109ae60085490565b906113a7565b11155b80156109cf57506011546109cb90826113b3565b3410155b610a145760405162461bcd60e51b81526020600482015260166024820152754d696e7420697320696d706f737369626c65206e6f7760501b60448201526064016106ff565b610a1e33826113bf565b506001600b55565b6000610a3160085490565b8210610a945760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106ff565b60088281548110610aa757610aa7612012565b90600052602060002001549050919050565b600a546001600160a01b03163314610ae35760405162461bcd60e51b81526004016106ff90612028565b600d805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b0316806105f25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ff565b60006001600160a01b038216610bd95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ff565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c1f5760405162461bcd60e51b81526004016106ff90612028565b610c2960006113fe565b565b600a546001600160a01b03163314610c555760405162461bcd60e51b81526004016106ff90612028565b600e5481108015610c735750601054600f54610c70916113a7565b81115b610c7c57600080fd5b600e55565b60606000610c8e83610b6e565b905080610caf5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610cca57610cca611dcc565b604051908082528060200260200182016040528015610cf3578160200160208202803683370190505b50905060005b82811015610ca757610d0b858261086b565b828281518110610d1d57610d1d612012565b602090810291909101015280610d3281612073565b915050610cf9565b50919050565b600a546001600160a01b03163314610d6a5760405162461bcd60e51b81526004016106ff90612028565b8051610d7d90600c906020840190611b9b565b5050565b600a546001600160a01b03163314610dab5760405162461bcd60e51b81526004016106ff90612028565b601155565b60606001805461060790611f8c565b610d7d338383611450565b600a546001600160a01b03163314610df45760405162461bcd60e51b81526004016106ff90612028565b6001600160a01b038216610e06573391505b600081118015610e1857506010548111155b610e2157600080fd5b610e2b82826113bf565b8060106000828254610e3d919061208e565b90915550505050565b610e5033836110f9565b610e6c5760405162461bcd60e51b81526004016106ff90611fc1565b610e788484848461151f565b50505050565b600a546001600160a01b03163314610ea85760405162461bcd60e51b81526004016106ff90612028565b6001600160a01b038216610eba573391505b80610ec25750475b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050610d7d57600080fd5b6000818152600260205260409020546060906001600160a01b0316610f6f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ff565b6000610f79611552565b90506000815111610f995760405180602001604052806000815250610fc4565b80610fa384611561565b604051602001610fb49291906120a5565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610ff55760405162461bcd60e51b81526004016106ff90612028565b6001600160a01b03811661105a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ff565b611063816113fe565b50565b60006001600160e01b0319821663780e9d6360e01b14806105f257506105f28261165f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110c082610af7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ff565b600061117d83610af7565b9050806001600160a01b0316846001600160a01b031614806111b85750836001600160a01b03166111ad8461068a565b6001600160a01b0316145b806111e857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661120382610af7565b6001600160a01b03161461126b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106ff565b6001600160a01b0382166112cd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ff565b6112d88383836116af565b6112e360008261108b565b6001600160a01b038316600090815260036020526040812080546001929061130c90849061208e565b90915550506001600160a01b038216600090815260036020526040812080546001929061133a9084906120e4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610fc4828461208e565b6000610fc482846120e4565b6000610fc482846120fc565b600f5460005b828110156113f657816113d781612073565b9250506113e484836116ba565b806113ee81612073565b9150506113c5565b50600f555050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156114b25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ff565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61152a8484846111f0565b611536848484846116d4565b610e785760405162461bcd60e51b81526004016106ff9061211b565b6060600c805461060790611f8c565b6060816115855750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115af578061159981612073565b91506115a89050600a83612183565b9150611589565b60008167ffffffffffffffff8111156115ca576115ca611dcc565b6040519080825280601f01601f1916602001820160405280156115f4576020820181803683370190505b5090505b84156111e85761160960018361208e565b9150611616600a86612197565b6116219060306120e4565b60f81b81838151811061163657611636612012565b60200101906001600160f81b031916908160001a905350611658600a86612183565b94506115f8565b60006001600160e01b031982166380ac58cd60e01b148061169057506001600160e01b03198216635b5e139f60e01b145b806105f257506301ffc9a760e01b6001600160e01b03198316146105f2565b6108358383836117d2565b610d7d82826040518060200160405280600081525061188a565b60006001600160a01b0384163b156117c757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117189033908990889088906004016121ab565b6020604051808303816000875af1925050508015611753575060408051601f3d908101601f19168201909252611750918101906121e8565b60015b6117ad573d808015611781576040519150601f19603f3d011682016040523d82523d6000602084013e611786565b606091505b5080516117a55760405162461bcd60e51b81526004016106ff9061211b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111e8565b506001949350505050565b6001600160a01b03831661182d5761182881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611850565b816001600160a01b0316836001600160a01b0316146118505761185083826118bd565b6001600160a01b038216611867576108358161195a565b826001600160a01b0316826001600160a01b031614610835576108358282611a09565b6118948383611a4d565b6118a160008484846116d4565b6108355760405162461bcd60e51b81526004016106ff9061211b565b600060016118ca84610b6e565b6118d4919061208e565b600083815260076020526040902054909150808214611927576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061196c9060019061208e565b6000838152600960205260408120546008805493945090928490811061199457611994612012565b9060005260206000200154905080600883815481106119b5576119b5612012565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119ed576119ed612205565b6001900381819060005260206000200160009055905550505050565b6000611a1483610b6e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611aa35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ff565b6000818152600260205260409020546001600160a01b031615611b085760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ff565b611b14600083836116af565b6001600160a01b0382166000908152600360205260408120805460019290611b3d9084906120e4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ba790611f8c565b90600052602060002090601f016020900481019282611bc95760008555611c0f565b82601f10611be257805160ff1916838001178555611c0f565b82800160010185558215611c0f579182015b82811115611c0f578251825591602001919060010190611bf4565b50611c1b929150611c1f565b5090565b5b80821115611c1b5760008155600101611c20565b6001600160e01b03198116811461106357600080fd5b600060208284031215611c5c57600080fd5b8135610fc481611c34565b60005b83811015611c82578181015183820152602001611c6a565b83811115610e785750506000910152565b60008151808452611cab816020860160208601611c67565b601f01601f19169290920160200192915050565b602081526000610fc46020830184611c93565b600060208284031215611ce457600080fd5b5035919050565b80356001600160a01b0381168114611d0257600080fd5b919050565b60008060408385031215611d1a57600080fd5b611d2383611ceb565b946020939093013593505050565b600080600060608486031215611d4657600080fd5b611d4f84611ceb565b9250611d5d60208501611ceb565b9150604084013590509250925092565b600060208284031215611d7f57600080fd5b610fc482611ceb565b6020808252825182820181905260009190848201906040850190845b81811015611dc057835183529284019291840191600101611da4565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611dfd57611dfd611dcc565b604051601f8501601f19908116603f01168101908282118183101715611e2557611e25611dcc565b81604052809350858152868686011115611e3e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e6a57600080fd5b813567ffffffffffffffff811115611e8157600080fd5b8201601f81018413611e9257600080fd5b6111e884823560208401611de2565b60008060408385031215611eb457600080fd5b611ebd83611ceb565b915060208301358015158114611ed257600080fd5b809150509250929050565b60008060008060808587031215611ef357600080fd5b611efc85611ceb565b9350611f0a60208601611ceb565b925060408501359150606085013567ffffffffffffffff811115611f2d57600080fd5b8501601f81018713611f3e57600080fd5b611f4d87823560208401611de2565b91505092959194509250565b60008060408385031215611f6c57600080fd5b611f7583611ceb565b9150611f8360208401611ceb565b90509250929050565b600181811c90821680611fa057607f821691505b60208210811415610d3a57634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60006000198214156120875761208761205d565b5060010190565b6000828210156120a0576120a061205d565b500390565b600083516120b7818460208801611c67565b8351908301906120cb818360208801611c67565b64173539b7b760d91b9101908152600501949350505050565b600082198211156120f7576120f761205d565b500190565b60008160001904831182151516156121165761211661205d565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826121925761219261216d565b500490565b6000826121a6576121a661216d565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121de90830184611c93565b9695505050505050565b6000602082840312156121fa57600080fd5b8151610fc481611c34565b634e487b7160e01b600052603160045260246000fdfea26469706673582212202af84b7989372ae2be9f9f0a4f37924c46161d6c0a73efc2e486156c7d91cc6364736f6c634300080a0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f776f6c7665736b61746572732e696f2f776f6c7665732f00

-----Decoded View---------------
Arg [0] : skateRamp (string): https://wolveskaters.io/wolves/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [2] : 68747470733a2f2f776f6c7665736b61746572732e696f2f776f6c7665732f00


Deployed Bytecode Sourcemap

52944:3598:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53473:171;;;;;;;;;;-1:-1:-1;53473:171:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;53473:171:0;;;;;;;;53261:32;;;;;;;;;;;;;;;;;;;738:25:1;;;726:2;711:18;53261:32:0;592:177:1;21472:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23031:221::-;;;;;;;;;;-1:-1:-1;23031:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;23031:221:0;1710:203:1;22554:411:0;;;;;;;;;;-1:-1:-1;22554:411:0;;;;;:::i;:::-;;:::i;:::-;;35383:113;;;;;;;;;;-1:-1:-1;35471:10:0;:17;35383:113;;23781:339;;;;;;;;;;-1:-1:-1;23781:339:0;;;;;:::i;:::-;;:::i;35051:256::-;;;;;;;;;;-1:-1:-1;35051:256:0;;;;;:::i;:::-;;:::i;53300:38::-;;;;;;;;;;;;;;;;24191:185;;;;;;;;;;-1:-1:-1;24191:185:0;;;;;:::i;:::-;;:::i;55553:314::-;;;;;;:::i;:::-;;:::i;35573:233::-;;;;;;;;;;-1:-1:-1;35573:233:0;;;;;:::i;:::-;;:::i;55877:78::-;;;;;;;;;;;;;:::i;21166:239::-;;;;;;;;;;-1:-1:-1;21166:239:0;;;;;:::i;:::-;;:::i;20896:208::-;;;;;;;;;;-1:-1:-1;20896:208:0;;;;;:::i;:::-;;:::i;42520:103::-;;;;;;;;;;;;;:::i;56352:187::-;;;;;;;;;;-1:-1:-1;56352:187:0;;;;;:::i;:::-;;:::i;54704:550::-;;;;;;;;;;-1:-1:-1;54704:550:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53856:105::-;;;;;;;;;;-1:-1:-1;53856:105:0;;;;;:::i;:::-;;:::i;41869:87::-;;;;;;;;;;-1:-1:-1;41942:6:0;;-1:-1:-1;;;;;41942:6:0;41869:87;;53157:26;;;;;;;;;;-1:-1:-1;53157:26:0;;;;;;;;56258:86;;;;;;;;;;-1:-1:-1;56258:86:0;;;;;:::i;:::-;;:::i;21641:104::-;;;;;;;;;;;;;:::i;23324:155::-;;;;;;;;;;-1:-1:-1;23324:155:0;;;;;:::i;:::-;;:::i;55262:279::-;;;;;;;;;;-1:-1:-1;55262:279:0;;;;;:::i;:::-;;:::i;24447:328::-;;;;;;;;;;-1:-1:-1;24447:328:0;;;;;:::i;:::-;;:::i;55963:285::-;;;;;;:::i;:::-;;:::i;54076:343::-;;;;;;;;;;-1:-1:-1;54076:343:0;;;;;:::i;:::-;;:::i;53190:31::-;;;;;;;;;;;;;;;;53228:26;;;;;;;;;;;;;;;;23550:164;;;;;;;;;;-1:-1:-1;23550:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23671:25:0;;;23647:4;23671:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23550:164;42778:201;;;;;;;;;;-1:-1:-1;42778:201:0;;;;;:::i;:::-;;:::i;53473:171::-;53576:4;53600:36;53624:11;53600:23;:36::i;:::-;53593:43;53473:171;-1:-1:-1;;53473:171:0:o;21472:100::-;21526:13;21559:5;21552:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21472:100;:::o;23031:221::-;23107:7;26374:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26374:16:0;23127:73;;;;-1:-1:-1;;;23127:73:0;;6617:2:1;23127:73:0;;;6599:21:1;6656:2;6636:18;;;6629:30;6695:34;6675:18;;;6668:62;-1:-1:-1;;;6746:18:1;;;6739:42;6798:19;;23127:73:0;;;;;;;;;-1:-1:-1;23220:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23220:24:0;;23031:221::o;22554:411::-;22635:13;22651:23;22666:7;22651:14;:23::i;:::-;22635:39;;22699:5;-1:-1:-1;;;;;22693:11:0;:2;-1:-1:-1;;;;;22693:11:0;;;22685:57;;;;-1:-1:-1;;;22685:57:0;;7030:2:1;22685:57:0;;;7012:21:1;7069:2;7049:18;;;7042:30;7108:34;7088:18;;;7081:62;-1:-1:-1;;;7159:18:1;;;7152:31;7200:19;;22685:57:0;6828:397:1;22685:57:0;16190:10;-1:-1:-1;;;;;22777:21:0;;;;:62;;-1:-1:-1;22802:37:0;22819:5;16190:10;23550:164;:::i;22802:37::-;22755:168;;;;-1:-1:-1;;;22755:168:0;;7432:2:1;22755:168:0;;;7414:21:1;7471:2;7451:18;;;7444:30;7510:34;7490:18;;;7483:62;7581:26;7561:18;;;7554:54;7625:19;;22755:168:0;7230:420:1;22755:168:0;22936:21;22945:2;22949:7;22936:8;:21::i;:::-;22624:341;22554:411;;:::o;23781:339::-;23976:41;16190:10;24009:7;23976:18;:41::i;:::-;23968:103;;;;-1:-1:-1;;;23968:103:0;;;;;;;:::i;:::-;24084:28;24094:4;24100:2;24104:7;24084:9;:28::i;35051:256::-;35148:7;35184:23;35201:5;35184:16;:23::i;:::-;35176:5;:31;35168:87;;;;-1:-1:-1;;;35168:87:0;;8275:2:1;35168:87:0;;;8257:21:1;8314:2;8294:18;;;8287:30;8353:34;8333:18;;;8326:62;-1:-1:-1;;;8404:18:1;;;8397:41;8455:19;;35168:87:0;8073:407:1;35168:87:0;-1:-1:-1;;;;;;35273:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35051:256::o;24191:185::-;24329:39;24346:4;24352:2;24356:7;24329:39;;;;;;;;;;;;:16;:39::i;55553:314::-;45057:1;45655:7;;:19;;45647:63;;;;-1:-1:-1;;;45647:63:0;;8687:2:1;45647:63:0;;;8669:21:1;8726:2;8706:18;;;8699:30;8765:33;8745:18;;;8738:61;8816:18;;45647:63:0;8485:355:1;45647:63:0;45057:1;45788:7;:18;55631:6:::1;::::0;::::1;;:14;;:6:::0;:14:::1;:36:::0;::::1;;;;55666:1;55658:5;:9;55631:36;:103;;;;-1:-1:-1::0;55722:11:0::1;::::0;55708:9:::1;::::0;:26:::1;::::0;:13:::1;:26::i;:::-;55680:24;55698:5;55680:13;35471:10:::0;:17;;35383:113;55680:13:::1;:17:::0;::::1;:24::i;:::-;:54;;55631:103;:153;;;;-1:-1:-1::0;55764:9:0::1;::::0;:20:::1;::::0;55778:5;55764:13:::1;:20::i;:::-;55751:9;:33;;55631:153;55623:201;;;::::0;-1:-1:-1;;;55623:201:0;;9047:2:1;55623:201:0::1;::::0;::::1;9029:21:1::0;9086:2;9066:18;;;9059:30;-1:-1:-1;;;9105:18:1;;;9098:52;9167:18;;55623:201:0::1;8845:346:1::0;55623:201:0::1;55835:24;55841:10;55853:5;55835;:24::i;:::-;-1:-1:-1::0;45013:1:0;45967:7;:22;55553:314::o;35573:233::-;35648:7;35684:30;35471:10;:17;;35383:113;35684:30;35676:5;:38;35668:95;;;;-1:-1:-1;;;35668:95:0;;9398:2:1;35668:95:0;;;9380:21:1;9437:2;9417:18;;;9410:30;9476:34;9456:18;;;9449:62;-1:-1:-1;;;9527:18:1;;;9520:42;9579:19;;35668:95:0;9196:408:1;35668:95:0;35781:10;35792:5;35781:17;;;;;;;;:::i;:::-;;;;;;;;;35774:24;;35573:233;;;:::o;55877:78::-;41942:6;;-1:-1:-1;;;;;41942:6:0;16190:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;55941:6:::1;::::0;;-1:-1:-1;;55931:16:0;::::1;55941:6;::::0;;::::1;55940:7;55931:16;::::0;;55877:78::o;21166:239::-;21238:7;21274:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21274:16:0;21309:19;21301:73;;;;-1:-1:-1;;;21301:73:0;;10304:2:1;21301:73:0;;;10286:21:1;10343:2;10323:18;;;10316:30;10382:34;10362:18;;;10355:62;-1:-1:-1;;;10433:18:1;;;10426:39;10482:19;;21301:73:0;10102:405:1;20896:208:0;20968:7;-1:-1:-1;;;;;20996:19:0;;20988:74;;;;-1:-1:-1;;;20988:74:0;;10714:2:1;20988:74:0;;;10696:21:1;10753:2;10733:18;;;10726:30;10792:34;10772:18;;;10765:62;-1:-1:-1;;;10843:18:1;;;10836:40;10893:19;;20988:74:0;10512:406:1;20988:74:0;-1:-1:-1;;;;;;21080:16:0;;;;;:9;:16;;;;;;;20896:208::o;42520:103::-;41942:6;;-1:-1:-1;;;;;41942:6:0;16190:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;42585:30:::1;42612:1;42585:18;:30::i;:::-;42520:103::o:0;56352:187::-;41942:6;;-1:-1:-1;;;;;41942:6:0;16190:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;56443:9:::1;;56430:10;:22;:67;;;;-1:-1:-1::0;56485:11:0::1;::::0;56469::::1;::::0;:28:::1;::::0;:15:::1;:28::i;:::-;56456:10;:41;56430:67;56422:76;;;::::0;::::1;;56509:9;:22:::0;56352:187::o;54704:550::-;54765:16;54795:19;54817:17;54827:6;54817:9;:17::i;:::-;54795:39;-1:-1:-1;54849:16:0;54845:402;;54927:16;;;54941:1;54927:16;;;;;;;;;;;-1:-1:-1;54920:23:0;54704:550;-1:-1:-1;;;54704:550:0:o;54845:402::-;54976:25;55018:11;55004:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55004:26:0;;54976:54;;55045:13;55073:133;55097:11;55089:5;:19;55073:133;;;55156:34;55176:6;55184:5;55156:19;:34::i;:::-;55138:8;55147:5;55138:15;;;;;;;;:::i;:::-;;;;;;;;;;:52;55110:7;;;;:::i;:::-;;;;55073:133;;54845:402;54784:470;54704:550;;;:::o;53856:105::-;41942:6;;-1:-1:-1;;;;;41942:6:0;16190:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;53931:22;;::::1;::::0;:10:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53856:105:::0;:::o;56258:86::-;41942:6;;-1:-1:-1;;;;;41942:6:0;16190:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;56319:9:::1;:17:::0;56258:86::o;21641:104::-;21697:13;21730:7;21723:14;;;;;:::i;23324:155::-;23419:52;16190:10;23452:8;23462;23419:18;:52::i;55262:279::-;41942:6;;-1:-1:-1;;;;;41942:6:0;16190:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55340:16:0;::::1;55336:64;;55378:10;55373:15;;55336:64;55426:1;55418:5;:9;:46;;;;;55453:11;;55444:5;:20;;55418:46;55410:65;;;::::0;::::1;;55486:16;55492:2;55496:5;55486;:16::i;:::-;55528:5;55513:11;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;55262:279:0:o;24447:328::-;24622:41;16190:10;24655:7;24622:18;:41::i;:::-;24614:103;;;;-1:-1:-1;;;24614:103:0;;;;;;;:::i;:::-;24728:39;24742:4;24748:2;24752:7;24761:5;24728:13;:39::i;:::-;24447:328;;;;:::o;55963:285::-;41942:6;;-1:-1:-1;;;;;41942:6:0;16190:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;56050:16:0;::::1;56046:64;;56088:10;56083:15;;56046:64;56124:12:::0;56120:76:::1;;-1:-1:-1::0;56163:21:0::1;56120:76;56214:25;::::0;-1:-1:-1;;;;;56214:16:0;::::1;::::0;:25;::::1;;;::::0;56231:7;;56214:25:::1;::::0;;;56231:7;56214:16;:25;::::1;;;;;;56206:34;;;::::0;::::1;54076:343:::0;26350:4;26374:16;;;:7;:16;;;;;;54146:13;;-1:-1:-1;;;;;26374:16:0;54172:73;;;;-1:-1:-1;;;54172:73:0;;11527:2:1;54172:73:0;;;11509:21:1;11566:2;11546:18;;;11539:30;11605:34;11585:18;;;11578:62;-1:-1:-1;;;11656:18:1;;;11649:45;11711:19;;54172:73:0;11325:411:1;54172:73:0;54256:23;54282:15;:13;:15::i;:::-;54256:41;;54341:1;54321:9;54315:23;:27;:96;;;;;;;;;;;;;;;;;54369:9;54380:15;:4;:13;:15::i;:::-;54352:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54315:96;54308:103;54076:343;-1:-1:-1;;;54076:343:0:o;42778:201::-;41942:6;;-1:-1:-1;;;;;41942:6:0;16190:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42867:22:0;::::1;42859:73;;;::::0;-1:-1:-1;;;42859:73:0;;12585:2:1;42859:73:0::1;::::0;::::1;12567:21:1::0;12624:2;12604:18;;;12597:30;12663:34;12643:18;;;12636:62;-1:-1:-1;;;12714:18:1;;;12707:36;12760:19;;42859:73:0::1;12383:402:1::0;42859:73:0::1;42943:28;42962:8;42943:18;:28::i;:::-;42778:201:::0;:::o;34743:224::-;34845:4;-1:-1:-1;;;;;;34869:50:0;;-1:-1:-1;;;34869:50:0;;:90;;;34923:36;34947:11;34923:23;:36::i;30267:174::-;30342:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30342:29:0;-1:-1:-1;;;;;30342:29:0;;;;;;;;:24;;30396:23;30342:24;30396:14;:23::i;:::-;-1:-1:-1;;;;;30387:46:0;;;;;;;;;;;30267:174;;:::o;26579:348::-;26672:4;26374:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26374:16:0;26689:73;;;;-1:-1:-1;;;26689:73:0;;12992:2:1;26689:73:0;;;12974:21:1;13031:2;13011:18;;;13004:30;13070:34;13050:18;;;13043:62;-1:-1:-1;;;13121:18:1;;;13114:42;13173:19;;26689:73:0;12790:408:1;26689:73:0;26773:13;26789:23;26804:7;26789:14;:23::i;:::-;26773:39;;26842:5;-1:-1:-1;;;;;26831:16:0;:7;-1:-1:-1;;;;;26831:16:0;;:51;;;;26875:7;-1:-1:-1;;;;;26851:31:0;:20;26863:7;26851:11;:20::i;:::-;-1:-1:-1;;;;;26851:31:0;;26831:51;:87;;;-1:-1:-1;;;;;;23671:25:0;;;23647:4;23671:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26886:32;26823:96;26579:348;-1:-1:-1;;;;26579:348:0:o;29571:578::-;29730:4;-1:-1:-1;;;;;29703:31:0;:23;29718:7;29703:14;:23::i;:::-;-1:-1:-1;;;;;29703:31:0;;29695:85;;;;-1:-1:-1;;;29695:85:0;;13405:2:1;29695:85:0;;;13387:21:1;13444:2;13424:18;;;13417:30;13483:34;13463:18;;;13456:62;-1:-1:-1;;;13534:18:1;;;13527:39;13583:19;;29695:85:0;13203:405:1;29695:85:0;-1:-1:-1;;;;;29799:16:0;;29791:65;;;;-1:-1:-1;;;29791:65:0;;13815:2:1;29791:65:0;;;13797:21:1;13854:2;13834:18;;;13827:30;13893:34;13873:18;;;13866:62;-1:-1:-1;;;13944:18:1;;;13937:34;13988:19;;29791:65:0;13613:400:1;29791:65:0;29869:39;29890:4;29896:2;29900:7;29869:20;:39::i;:::-;29973:29;29990:1;29994:7;29973:8;:29::i;:::-;-1:-1:-1;;;;;30015:15:0;;;;;;:9;:15;;;;;:20;;30034:1;;30015:15;:20;;30034:1;;30015:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30046:13:0;;;;;;:9;:13;;;;;:18;;30063:1;;30046:13;:18;;30063:1;;30046:18;:::i;:::-;;;;-1:-1:-1;;30075:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30075:21:0;-1:-1:-1;;;;;30075:21:0;;;;;;;;;30114:27;;30075:16;;30114:27;;;;;;;29571:578;;;:::o;49160:98::-;49218:7;49245:5;49249:1;49245;:5;:::i;48779:98::-;48837:7;48864:5;48868:1;48864;:5;:::i;49517:98::-;49575:7;49602:5;49606:1;49602;:5;:::i;54427:269::-;54511:11;;54488:20;54533:119;54557:5;54553:1;:9;54533:119;;;54584:14;;;;:::i;:::-;;;;54613:27;54623:2;54627:12;54613:9;:27::i;:::-;54564:3;;;;:::i;:::-;;;;54533:119;;;-1:-1:-1;54662:11:0;:26;-1:-1:-1;;54427:269:0:o;43139:191::-;43232:6;;;-1:-1:-1;;;;;43249:17:0;;;-1:-1:-1;;;;;;43249:17:0;;;;;;;43282:40;;43232:6;;;43249:17;43232:6;;43282:40;;43213:16;;43282:40;43202:128;43139:191;:::o;30583:315::-;30738:8;-1:-1:-1;;;;;30729:17:0;:5;-1:-1:-1;;;;;30729:17:0;;;30721:55;;;;-1:-1:-1;;;30721:55:0;;14526:2:1;30721:55:0;;;14508:21:1;14565:2;14545:18;;;14538:30;14604:27;14584:18;;;14577:55;14649:18;;30721:55:0;14324:349:1;30721:55:0;-1:-1:-1;;;;;30787:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;30787:46:0;;;;;;;;;;30849:41;;540::1;;;30849::0;;513:18:1;30849:41:0;;;;;;;30583:315;;;:::o;25657:::-;25814:28;25824:4;25830:2;25834:7;25814:9;:28::i;:::-;25861:48;25884:4;25890:2;25894:7;25903:5;25861:22;:48::i;:::-;25853:111;;;;-1:-1:-1;;;25853:111:0;;;;;;;:::i;53969:99::-;54017:13;54050:10;54043:17;;;;;:::i;16608:723::-;16664:13;16885:10;16881:53;;-1:-1:-1;;16912:10:0;;;;;;;;;;;;-1:-1:-1;;;16912:10:0;;;;;16608:723::o;16881:53::-;16959:5;16944:12;17000:78;17007:9;;17000:78;;17033:8;;;;:::i;:::-;;-1:-1:-1;17056:10:0;;-1:-1:-1;17064:2:0;17056:10;;:::i;:::-;;;17000:78;;;17088:19;17120:6;17110:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17110:17:0;;17088:39;;17138:154;17145:10;;17138:154;;17172:11;17182:1;17172:11;;:::i;:::-;;-1:-1:-1;17241:10:0;17249:2;17241:5;:10;:::i;:::-;17228:24;;:2;:24;:::i;:::-;17215:39;;17198:6;17205;17198:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17198:56:0;;;;;;;;-1:-1:-1;17269:11:0;17278:2;17269:11;;:::i;:::-;;;17138:154;;20527:305;20629:4;-1:-1:-1;;;;;;20666:40:0;;-1:-1:-1;;;20666:40:0;;:105;;-1:-1:-1;;;;;;;20723:48:0;;-1:-1:-1;;;20723:48:0;20666:105;:158;;;-1:-1:-1;;;;;;;;;;19245:40:0;;;20788:36;19136:157;53652:196;53795:45;53822:4;53828:2;53832:7;53795:26;:45::i;27269:110::-;27345:26;27355:2;27359:7;27345:26;;;;;;;;;;;;:9;:26::i;31463:799::-;31618:4;-1:-1:-1;;;;;31639:13:0;;8504:20;8552:8;31635:620;;31675:72;;-1:-1:-1;;;31675:72:0;;-1:-1:-1;;;;;31675:36:0;;;;;:72;;16190:10;;31726:4;;31732:7;;31741:5;;31675:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31675:72:0;;;;;;;;-1:-1:-1;;31675:72:0;;;;;;;;;;;;:::i;:::-;;;31671:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31917:13:0;;31913:272;;31960:60;;-1:-1:-1;;;31960:60:0;;;;;;;:::i;31913:272::-;32135:6;32129:13;32120:6;32116:2;32112:15;32105:38;31671:529;-1:-1:-1;;;;;;31798:51:0;-1:-1:-1;;;31798:51:0;;-1:-1:-1;31791:58:0;;31635:620;-1:-1:-1;32239:4:0;31463:799;;;;;;:::o;36419:589::-;-1:-1:-1;;;;;36625:18:0;;36621:187;;36660:40;36692:7;37835:10;:17;;37808:24;;;;:15;:24;;;;;:44;;;37863:24;;;;;;;;;;;;37731:164;36660:40;36621:187;;;36730:2;-1:-1:-1;;;;;36722:10:0;:4;-1:-1:-1;;;;;36722:10:0;;36718:90;;36749:47;36782:4;36788:7;36749:32;:47::i;:::-;-1:-1:-1;;;;;36822:16:0;;36818:183;;36855:45;36892:7;36855:36;:45::i;36818:183::-;36928:4;-1:-1:-1;;;;;36922:10:0;:2;-1:-1:-1;;;;;36922:10:0;;36918:83;;36949:40;36977:2;36981:7;36949:27;:40::i;27606:321::-;27736:18;27742:2;27746:7;27736:5;:18::i;:::-;27787:54;27818:1;27822:2;27826:7;27835:5;27787:22;:54::i;:::-;27765:154;;;;-1:-1:-1;;;27765:154:0;;;;;;;:::i;38522:988::-;38788:22;38838:1;38813:22;38830:4;38813:16;:22::i;:::-;:26;;;;:::i;:::-;38850:18;38871:26;;;:17;:26;;;;;;38788:51;;-1:-1:-1;39004:28:0;;;39000:328;;-1:-1:-1;;;;;39071:18:0;;39049:19;39071:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39122:30;;;;;;:44;;;39239:30;;:17;:30;;;;;:43;;;39000:328;-1:-1:-1;39424:26:0;;;;:17;:26;;;;;;;;39417:33;;;-1:-1:-1;;;;;39468:18:0;;;;;:12;:18;;;;;:34;;;;;;;39461:41;38522:988::o;39805:1079::-;40083:10;:17;40058:22;;40083:21;;40103:1;;40083:21;:::i;:::-;40115:18;40136:24;;;:15;:24;;;;;;40509:10;:26;;40058:46;;-1:-1:-1;40136:24:0;;40058:46;;40509:26;;;;;;:::i;:::-;;;;;;;;;40487:48;;40573:11;40548:10;40559;40548:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40653:28;;;:15;:28;;;;;;;:41;;;40825:24;;;;;40818:31;40860:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39876:1008;;;39805:1079;:::o;37309:221::-;37394:14;37411:20;37428:2;37411:16;:20::i;:::-;-1:-1:-1;;;;;37442:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37487:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37309:221:0:o;28263:382::-;-1:-1:-1;;;;;28343:16:0;;28335:61;;;;-1:-1:-1;;;28335:61:0;;16553:2:1;28335:61:0;;;16535:21:1;;;16572:18;;;16565:30;16631:34;16611:18;;;16604:62;16683:18;;28335:61:0;16351:356:1;28335:61:0;26350:4;26374:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26374:16:0;:30;28407:58;;;;-1:-1:-1;;;28407:58:0;;16914:2:1;28407:58:0;;;16896:21:1;16953:2;16933:18;;;16926:30;16992;16972:18;;;16965:58;17040:18;;28407:58:0;16712:352:1;28407:58:0;28478:45;28507:1;28511:2;28515:7;28478:20;:45::i;:::-;-1:-1:-1;;;;;28536:13:0;;;;;;:9;:13;;;;;:18;;28553:1;;28536:13;:18;;28553:1;;28536:18;:::i;:::-;;;;-1:-1:-1;;28565:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28565:21:0;-1:-1:-1;;;;;28565:21:0;;;;;;;;28604:33;;28565:16;;;28604:33;;28565:16;;28604:33;28263:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:632::-;3050:2;3102:21;;;3172:13;;3075:18;;;3194:22;;;3021:4;;3050:2;3273:15;;;;3247:2;3232:18;;;3021:4;3316:169;3330:6;3327:1;3324:13;3316:169;;;3391:13;;3379:26;;3460:15;;;;3425:12;;;;3352:1;3345:9;3316:169;;;-1:-1:-1;3502:3:1;;2879:632;-1:-1:-1;;;;;;2879:632:1:o;3516:127::-;3577:10;3572:3;3568:20;3565:1;3558:31;3608:4;3605:1;3598:15;3632:4;3629:1;3622:15;3648:632;3713:5;3743:18;3784:2;3776:6;3773:14;3770:40;;;3790:18;;:::i;:::-;3865:2;3859:9;3833:2;3919:15;;-1:-1:-1;;3915:24:1;;;3941:2;3911:33;3907:42;3895:55;;;3965:18;;;3985:22;;;3962:46;3959:72;;;4011:18;;:::i;:::-;4051:10;4047:2;4040:22;4080:6;4071:15;;4110:6;4102;4095:22;4150:3;4141:6;4136:3;4132:16;4129:25;4126:45;;;4167:1;4164;4157:12;4126:45;4217:6;4212:3;4205:4;4197:6;4193:17;4180:44;4272:1;4265:4;4256:6;4248;4244:19;4240:30;4233:41;;;;3648:632;;;;;:::o;4285:451::-;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4463:9;4450:23;4496:18;4488:6;4485:30;4482:50;;;4528:1;4525;4518:12;4482:50;4551:22;;4604:4;4596:13;;4592:27;-1:-1:-1;4582:55:1;;4633:1;4630;4623:12;4582:55;4656:74;4722:7;4717:2;4704:16;4699:2;4695;4691:11;4656:74;:::i;4741:347::-;4806:6;4814;4867:2;4855:9;4846:7;4842:23;4838:32;4835:52;;;4883:1;4880;4873:12;4835:52;4906:29;4925:9;4906:29;:::i;:::-;4896:39;;4985:2;4974:9;4970:18;4957:32;5032:5;5025:13;5018:21;5011:5;5008:32;4998:60;;5054:1;5051;5044:12;4998:60;5077:5;5067:15;;;4741:347;;;;;:::o;5093:667::-;5188:6;5196;5204;5212;5265:3;5253:9;5244:7;5240:23;5236:33;5233:53;;;5282:1;5279;5272:12;5233:53;5305:29;5324:9;5305:29;:::i;:::-;5295:39;;5353:38;5387:2;5376:9;5372:18;5353:38;:::i;:::-;5343:48;;5438:2;5427:9;5423:18;5410:32;5400:42;;5493:2;5482:9;5478:18;5465:32;5520:18;5512:6;5509:30;5506:50;;;5552:1;5549;5542:12;5506:50;5575:22;;5628:4;5620:13;;5616:27;-1:-1:-1;5606:55:1;;5657:1;5654;5647:12;5606:55;5680:74;5746:7;5741:2;5728:16;5723:2;5719;5715:11;5680:74;:::i;:::-;5670:84;;;5093:667;;;;;;;:::o;5765:260::-;5833:6;5841;5894:2;5882:9;5873:7;5869:23;5865:32;5862:52;;;5910:1;5907;5900:12;5862:52;5933:29;5952:9;5933:29;:::i;:::-;5923:39;;5981:38;6015:2;6004:9;6000:18;5981:38;:::i;:::-;5971:48;;5765:260;;;;;:::o;6030:380::-;6109:1;6105:12;;;;6152;;;6173:61;;6227:4;6219:6;6215:17;6205:27;;6173:61;6280:2;6272:6;6269:14;6249:18;6246:38;6243:161;;;6326:10;6321:3;6317:20;6314:1;6307:31;6361:4;6358:1;6351:15;6389:4;6386:1;6379:15;7655:413;7857:2;7839:21;;;7896:2;7876:18;;;7869:30;7935:34;7930:2;7915:18;;7908:62;-1:-1:-1;;;8001:2:1;7986:18;;7979:47;8058:3;8043:19;;7655:413::o;9609:127::-;9670:10;9665:3;9661:20;9658:1;9651:31;9701:4;9698:1;9691:15;9725:4;9722:1;9715:15;9741:356;9943:2;9925:21;;;9962:18;;;9955:30;10021:34;10016:2;10001:18;;9994:62;10088:2;10073:18;;9741:356::o;10923:127::-;10984:10;10979:3;10975:20;10972:1;10965:31;11015:4;11012:1;11005:15;11039:4;11036:1;11029:15;11055:135;11094:3;-1:-1:-1;;11115:17:1;;11112:43;;;11135:18;;:::i;:::-;-1:-1:-1;11182:1:1;11171:13;;11055:135::o;11195:125::-;11235:4;11263:1;11260;11257:8;11254:34;;;11268:18;;:::i;:::-;-1:-1:-1;11305:9:1;;11195:125::o;11741:637::-;12021:3;12059:6;12053:13;12075:53;12121:6;12116:3;12109:4;12101:6;12097:17;12075:53;:::i;:::-;12191:13;;12150:16;;;;12213:57;12191:13;12150:16;12247:4;12235:17;;12213:57;:::i;:::-;-1:-1:-1;;;12292:20:1;;12321:22;;;12370:1;12359:13;;11741:637;-1:-1:-1;;;;11741:637:1:o;14018:128::-;14058:3;14089:1;14085:6;14082:1;14079:13;14076:39;;;14095:18;;:::i;:::-;-1:-1:-1;14131:9:1;;14018:128::o;14151:168::-;14191:7;14257:1;14253;14249:6;14245:14;14242:1;14239:21;14234:1;14227:9;14220:17;14216:45;14213:71;;;14264:18;;:::i;:::-;-1:-1:-1;14304:9:1;;14151:168::o;14678:414::-;14880:2;14862:21;;;14919:2;14899:18;;;14892:30;14958:34;14953:2;14938:18;;14931:62;-1:-1:-1;;;15024:2:1;15009:18;;15002:48;15082:3;15067:19;;14678:414::o;15097:127::-;15158:10;15153:3;15149:20;15146:1;15139:31;15189:4;15186:1;15179:15;15213:4;15210:1;15203:15;15229:120;15269:1;15295;15285:35;;15300:18;;:::i;:::-;-1:-1:-1;15334:9:1;;15229:120::o;15354:112::-;15386:1;15412;15402:35;;15417:18;;:::i;:::-;-1:-1:-1;15451:9:1;;15354:112::o;15471:489::-;-1:-1:-1;;;;;15740:15:1;;;15722:34;;15792:15;;15787:2;15772:18;;15765:43;15839:2;15824:18;;15817:34;;;15887:3;15882:2;15867:18;;15860:31;;;15665:4;;15908:46;;15934:19;;15926:6;15908:46;:::i;:::-;15900:54;15471:489;-1:-1:-1;;;;;;15471:489:1:o;15965:249::-;16034:6;16087:2;16075:9;16066:7;16062:23;16058:32;16055:52;;;16103:1;16100;16093:12;16055:52;16135:9;16129:16;16154:30;16178:5;16154:30;:::i;16219:127::-;16280:10;16275:3;16271:20;16268:1;16261:31;16311:4;16308:1;16301:15;16335:4;16332:1;16325:15

Swarm Source

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