ETH Price: $2,516.87 (+2.56%)

Token

Skully Doodles (SKULLY)
 

Overview

Max Total Supply

5,000 SKULLY

Holders

134

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
9 SKULLY
0x75a70b3f24eb6f32e75b53fbe9315111d05851d0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Centralized_Terminal

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 10 of 12: NFT_ERC721A.sol
pragma solidity 0.8.11;
// SPDX-License-Identifier: MIT
import "./ERC721A.sol";
import "./Ownable.sol";

contract Centralized_Terminal is ERC721A, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.01 ether;
    uint256 public maxSupply = 5000;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721A(_name, _symbol) {
        setBaseURI(_initBaseURI);
    }

    function mint(uint256 quantity) external payable {
        uint256 supply = totalSupply();
        require(quantity > 0, "Quantity Must Be Higher Than Zero");
        require(supply + quantity <= maxSupply, "Max Supply Reached");

        if (msg.sender != owner()) {
            require(msg.value >= cost * quantity, "Insufficient Funds");
        }
        _safeMint(msg.sender, quantity);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function withdraw() public payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Balance should be more then zero");
        payable(address(msg.sender)).transfer(balance);
    }
}

File 1 of 12: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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);
            }
        }
    }
}

File 2 of 12: Context.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 3 of 12: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.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;
    }
}

File 4 of 12: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

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

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
    {
        require(operator != _msgSender(), "ERC721A: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(quantity != 0, "ERC721A: quantity must be greater than 0");

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(
                            address(0),
                            to,
                            updatedIndex,
                            _data
                        ),
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

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

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

    /**
     * @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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 5 of 12: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 6 of 12: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 7 of 12: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.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);

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

File 8 of 12: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.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);
}

File 9 of 12: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 11 of 12: Ownable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./Context.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);
    }
}

File 12 of 12: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a090815262000028916009919062000198565b50662386f26fc10000600a55611388600b553480156200004757600080fd5b50604051620022e6380380620022e68339810160408190526200006a916200030b565b8251839083906200008390600190602085019062000198565b5080516200009990600290602084019062000198565b505050620000b6620000b0620000ca60201b60201c565b620000ce565b620000c18162000120565b505050620003d9565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b031633146200017f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200019490600890602084019062000198565b5050565b828054620001a6906200039c565b90600052602060002090601f016020900481019282620001ca576000855562000215565b82601f10620001e557805160ff191683800117855562000215565b8280016001018555821562000215579182015b8281111562000215578251825591602001919060010190620001f8565b506200022392915062000227565b5090565b5b8082111562000223576000815560010162000228565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200026657600080fd5b81516001600160401b03808211156200028357620002836200023e565b604051601f8301601f19908116603f01168101908282118183101715620002ae57620002ae6200023e565b81604052838152602092508683858801011115620002cb57600080fd5b600091505b83821015620002ef5785820183015181830184015290820190620002d0565b83821115620003015760008385830101525b9695505050505050565b6000806000606084860312156200032157600080fd5b83516001600160401b03808211156200033957600080fd5b620003478783880162000254565b945060208601519150808211156200035e57600080fd5b6200036c8783880162000254565b935060408601519150808211156200038357600080fd5b50620003928682870162000254565b9150509250925092565b600181811c90821680620003b157607f821691505b60208210811415620003d357634e487b7160e01b600052602260045260246000fd5b50919050565b611efd80620003e96000396000f3fe6080604052600436106101b75760003560e01c80636c0360eb116100ec578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb0114610493578063da3ef23f146104a9578063e985e9c5146104c9578063f2fde38b1461051257600080fd5b8063b88d4fde1461043e578063c66828621461045e578063c87b56dd1461047357600080fd5b80638da5cb5b116100c65780638da5cb5b146103d857806395d89b41146103f6578063a0712d681461040b578063a22cb4651461041e57600080fd5b80636c0360eb1461038e57806370a08231146103a3578063715018a6146103c357600080fd5b80632f745c591161015957806344a0d68a1161013357806344a0d68a1461030e5780634f6ccce71461032e57806355f804b31461034e5780636352211e1461036e57600080fd5b80632f745c59146102c65780633ccfd60b146102e657806342842e0e146102ee57600080fd5b8063095ea7b311610195578063095ea7b31461024b57806313faede61461026d57806318160ddd1461029157806323b872dd146102a657600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611915565b610532565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020661059f565b6040516101e8919061198a565b34801561021f57600080fd5b5061023361022e36600461199d565b610631565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046119d2565b6106c1565b005b34801561027957600080fd5b50610283600a5481565b6040519081526020016101e8565b34801561029d57600080fd5b50600054610283565b3480156102b257600080fd5b5061026b6102c13660046119fc565b6107d9565b3480156102d257600080fd5b506102836102e13660046119d2565b6107e4565b61026b610941565b3480156102fa57600080fd5b5061026b6103093660046119fc565b6109ea565b34801561031a57600080fd5b5061026b61032936600461199d565b610a05565b34801561033a57600080fd5b5061028361034936600461199d565b610a34565b34801561035a57600080fd5b5061026b610369366004611ac4565b610a96565b34801561037a57600080fd5b5061023361038936600461199d565b610ad3565b34801561039a57600080fd5b50610206610ae5565b3480156103af57600080fd5b506102836103be366004611b0d565b610b73565b3480156103cf57600080fd5b5061026b610c04565b3480156103e457600080fd5b506007546001600160a01b0316610233565b34801561040257600080fd5b50610206610c3a565b61026b61041936600461199d565b610c49565b34801561042a57600080fd5b5061026b610439366004611b28565b610d61565b34801561044a57600080fd5b5061026b610459366004611b64565b610e26565b34801561046a57600080fd5b50610206610e5f565b34801561047f57600080fd5b5061020661048e36600461199d565b610e6c565b34801561049f57600080fd5b50610283600b5481565b3480156104b557600080fd5b5061026b6104c4366004611ac4565b610f3c565b3480156104d557600080fd5b506101dc6104e4366004611be0565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561051e57600080fd5b5061026b61052d366004611b0d565b610f79565b60006001600160e01b031982166380ac58cd60e01b148061056357506001600160e01b03198216635b5e139f60e01b145b8061057e57506001600160e01b0319821663780e9d6360e01b145b8061059957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105ae90611c13565b80601f01602080910402602001604051908101604052809291908181526020018280546105da90611c13565b80156106275780601f106105fc57610100808354040283529160200191610627565b820191906000526020600020905b81548152906001019060200180831161060a57829003601f168201915b5050505050905090565b600061063e826000541190565b6106a55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106cc82610ad3565b9050806001600160a01b0316836001600160a01b0316141561073b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161069c565b336001600160a01b0382161480610757575061075781336104e4565b6107c95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161069c565b6107d4838383611014565b505050565b6107d4838383611070565b60006107ef83610b73565b82106108485760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161069c565b600080549080805b838110156108e1576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156108a357805192505b876001600160a01b0316836001600160a01b031614156108d857868414156108d15750935061059992505050565b6001909301925b50600101610850565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161069c565b6007546001600160a01b0316331461096b5760405162461bcd60e51b815260040161069c90611c4e565b47806109b95760405162461bcd60e51b815260206004820181905260248201527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f604482015260640161069c565b604051339082156108fc029083906000818181858888f193505050501580156109e6573d6000803e3d6000fd5b5050565b6107d483838360405180602001604052806000815250610e26565b6007546001600160a01b03163314610a2f5760405162461bcd60e51b815260040161069c90611c4e565b600a55565b600080548210610a925760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161069c565b5090565b6007546001600160a01b03163314610ac05760405162461bcd60e51b815260040161069c90611c4e565b80516109e690600890602084019061186f565b6000610ade82611355565b5192915050565b60088054610af290611c13565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1e90611c13565b8015610b6b5780601f10610b4057610100808354040283529160200191610b6b565b820191906000526020600020905b815481529060010190602001808311610b4e57829003601f168201915b505050505081565b60006001600160a01b038216610bdf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161069c565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610c2e5760405162461bcd60e51b815260040161069c90611c4e565b610c38600061142c565b565b6060600280546105ae90611c13565b60005481610ca35760405162461bcd60e51b815260206004820152602160248201527f5175616e74697479204d75737420426520486967686572205468616e205a65726044820152606f60f81b606482015260840161069c565b600b54610cb08383611c99565b1115610cf35760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b604482015260640161069c565b6007546001600160a01b03163314610d575781600a54610d139190611cb1565b341015610d575760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b604482015260640161069c565b6109e6338361147e565b6001600160a01b038216331415610dba5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161069c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e31848484611070565b610e3d84848484611498565b610e595760405162461bcd60e51b815260040161069c90611cd0565b50505050565b60098054610af290611c13565b6060610e79826000541190565b610edd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161069c565b6000610ee7611597565b90506000815111610f075760405180602001604052806000815250610f35565b80610f11846115a6565b6009604051602001610f2593929190611d23565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610f665760405162461bcd60e51b815260040161069c90611c4e565b80516109e690600990602084019061186f565b6007546001600160a01b03163314610fa35760405162461bcd60e51b815260040161069c90611c4e565b6001600160a01b0381166110085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069c565b6110118161142c565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061107b82611355565b80519091506000906001600160a01b0316336001600160a01b031614806110b25750336110a784610631565b6001600160a01b0316145b806110c4575081516110c490336104e4565b90508061112e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161069c565b846001600160a01b031682600001516001600160a01b0316146111a25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161069c565b6001600160a01b0384166112065760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161069c565b6112166000848460000151611014565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661130b576112be816000541190565b1561130b578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611374826000541190565b6113d35760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161069c565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611422579392505050565b50600019016113d5565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109e68282604051806020016040528060008152506116a4565b60006001600160a01b0384163b1561158b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114dc903390899088908890600401611de7565b6020604051808303816000875af1925050508015611517575060408051601f3d908101601f1916820190925261151491810190611e24565b60015b611571573d808015611545576040519150601f19603f3d011682016040523d82523d6000602084013e61154a565b606091505b5080516115695760405162461bcd60e51b815260040161069c90611cd0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061158f565b5060015b949350505050565b6060600880546105ae90611c13565b6060816115ca5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115f457806115de81611e41565b91506115ed9050600a83611e72565b91506115ce565b60008167ffffffffffffffff81111561160f5761160f611a38565b6040519080825280601f01601f191660200182016040528015611639576020820181803683370190505b5090505b841561158f5761164e600183611e86565b915061165b600a86611e9d565b611666906030611c99565b60f81b81838151811061167b5761167b611eb1565b60200101906001600160f81b031916908160001a90535061169d600a86611e72565b945061163d565b6107d483838360016000546001600160a01b03851661170f5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161069c565b8361176d5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161069c565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156118665760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561185a5761183e6000888488611498565b61185a5760405162461bcd60e51b815260040161069c90611cd0565b600191820191016117eb565b5060005561134e565b82805461187b90611c13565b90600052602060002090601f01602090048101928261189d57600085556118e3565b82601f106118b657805160ff19168380011785556118e3565b828001600101855582156118e3579182015b828111156118e35782518255916020019190600101906118c8565b50610a929291505b80821115610a9257600081556001016118eb565b6001600160e01b03198116811461101157600080fd5b60006020828403121561192757600080fd5b8135610f35816118ff565b60005b8381101561194d578181015183820152602001611935565b83811115610e595750506000910152565b60008151808452611976816020860160208601611932565b601f01601f19169290920160200192915050565b602081526000610f35602083018461195e565b6000602082840312156119af57600080fd5b5035919050565b80356001600160a01b03811681146119cd57600080fd5b919050565b600080604083850312156119e557600080fd5b6119ee836119b6565b946020939093013593505050565b600080600060608486031215611a1157600080fd5b611a1a846119b6565b9250611a28602085016119b6565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a6957611a69611a38565b604051601f8501601f19908116603f01168101908282118183101715611a9157611a91611a38565b81604052809350858152868686011115611aaa57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ad657600080fd5b813567ffffffffffffffff811115611aed57600080fd5b8201601f81018413611afe57600080fd5b61158f84823560208401611a4e565b600060208284031215611b1f57600080fd5b610f35826119b6565b60008060408385031215611b3b57600080fd5b611b44836119b6565b915060208301358015158114611b5957600080fd5b809150509250929050565b60008060008060808587031215611b7a57600080fd5b611b83856119b6565b9350611b91602086016119b6565b925060408501359150606085013567ffffffffffffffff811115611bb457600080fd5b8501601f81018713611bc557600080fd5b611bd487823560208401611a4e565b91505092959194509250565b60008060408385031215611bf357600080fd5b611bfc836119b6565b9150611c0a602084016119b6565b90509250929050565b600181811c90821680611c2757607f821691505b60208210811415611c4857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611cac57611cac611c83565b500190565b6000816000190483118215151615611ccb57611ccb611c83565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600084516020611d368285838a01611932565b855191840191611d498184848a01611932565b8554920191600090600181811c9080831680611d6657607f831692505b858310811415611d8457634e487b7160e01b85526022600452602485fd5b808015611d985760018114611da957611dd6565b60ff19851688528388019550611dd6565b60008b81526020902060005b85811015611dce5781548a820152908401908801611db5565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e1a9083018461195e565b9695505050505050565b600060208284031215611e3657600080fd5b8151610f35816118ff565b6000600019821415611e5557611e55611c83565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611e8157611e81611e5c565b500490565b600082821015611e9857611e98611c83565b500390565b600082611eac57611eac611e5c565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220c7df0c544e37865853ba381d533fa3aac2bf30eee0b6c09af7788de4cd13459364736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e536b756c6c7920446f6f646c65730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006534b554c4c5900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5169416a64776b4438724448664b636e7258777264346e694c7352537162434574334b58475a6436365664552f00000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636c0360eb116100ec578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb0114610493578063da3ef23f146104a9578063e985e9c5146104c9578063f2fde38b1461051257600080fd5b8063b88d4fde1461043e578063c66828621461045e578063c87b56dd1461047357600080fd5b80638da5cb5b116100c65780638da5cb5b146103d857806395d89b41146103f6578063a0712d681461040b578063a22cb4651461041e57600080fd5b80636c0360eb1461038e57806370a08231146103a3578063715018a6146103c357600080fd5b80632f745c591161015957806344a0d68a1161013357806344a0d68a1461030e5780634f6ccce71461032e57806355f804b31461034e5780636352211e1461036e57600080fd5b80632f745c59146102c65780633ccfd60b146102e657806342842e0e146102ee57600080fd5b8063095ea7b311610195578063095ea7b31461024b57806313faede61461026d57806318160ddd1461029157806323b872dd146102a657600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611915565b610532565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020661059f565b6040516101e8919061198a565b34801561021f57600080fd5b5061023361022e36600461199d565b610631565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046119d2565b6106c1565b005b34801561027957600080fd5b50610283600a5481565b6040519081526020016101e8565b34801561029d57600080fd5b50600054610283565b3480156102b257600080fd5b5061026b6102c13660046119fc565b6107d9565b3480156102d257600080fd5b506102836102e13660046119d2565b6107e4565b61026b610941565b3480156102fa57600080fd5b5061026b6103093660046119fc565b6109ea565b34801561031a57600080fd5b5061026b61032936600461199d565b610a05565b34801561033a57600080fd5b5061028361034936600461199d565b610a34565b34801561035a57600080fd5b5061026b610369366004611ac4565b610a96565b34801561037a57600080fd5b5061023361038936600461199d565b610ad3565b34801561039a57600080fd5b50610206610ae5565b3480156103af57600080fd5b506102836103be366004611b0d565b610b73565b3480156103cf57600080fd5b5061026b610c04565b3480156103e457600080fd5b506007546001600160a01b0316610233565b34801561040257600080fd5b50610206610c3a565b61026b61041936600461199d565b610c49565b34801561042a57600080fd5b5061026b610439366004611b28565b610d61565b34801561044a57600080fd5b5061026b610459366004611b64565b610e26565b34801561046a57600080fd5b50610206610e5f565b34801561047f57600080fd5b5061020661048e36600461199d565b610e6c565b34801561049f57600080fd5b50610283600b5481565b3480156104b557600080fd5b5061026b6104c4366004611ac4565b610f3c565b3480156104d557600080fd5b506101dc6104e4366004611be0565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561051e57600080fd5b5061026b61052d366004611b0d565b610f79565b60006001600160e01b031982166380ac58cd60e01b148061056357506001600160e01b03198216635b5e139f60e01b145b8061057e57506001600160e01b0319821663780e9d6360e01b145b8061059957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105ae90611c13565b80601f01602080910402602001604051908101604052809291908181526020018280546105da90611c13565b80156106275780601f106105fc57610100808354040283529160200191610627565b820191906000526020600020905b81548152906001019060200180831161060a57829003601f168201915b5050505050905090565b600061063e826000541190565b6106a55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106cc82610ad3565b9050806001600160a01b0316836001600160a01b0316141561073b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161069c565b336001600160a01b0382161480610757575061075781336104e4565b6107c95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161069c565b6107d4838383611014565b505050565b6107d4838383611070565b60006107ef83610b73565b82106108485760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161069c565b600080549080805b838110156108e1576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156108a357805192505b876001600160a01b0316836001600160a01b031614156108d857868414156108d15750935061059992505050565b6001909301925b50600101610850565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161069c565b6007546001600160a01b0316331461096b5760405162461bcd60e51b815260040161069c90611c4e565b47806109b95760405162461bcd60e51b815260206004820181905260248201527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f604482015260640161069c565b604051339082156108fc029083906000818181858888f193505050501580156109e6573d6000803e3d6000fd5b5050565b6107d483838360405180602001604052806000815250610e26565b6007546001600160a01b03163314610a2f5760405162461bcd60e51b815260040161069c90611c4e565b600a55565b600080548210610a925760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161069c565b5090565b6007546001600160a01b03163314610ac05760405162461bcd60e51b815260040161069c90611c4e565b80516109e690600890602084019061186f565b6000610ade82611355565b5192915050565b60088054610af290611c13565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1e90611c13565b8015610b6b5780601f10610b4057610100808354040283529160200191610b6b565b820191906000526020600020905b815481529060010190602001808311610b4e57829003601f168201915b505050505081565b60006001600160a01b038216610bdf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161069c565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610c2e5760405162461bcd60e51b815260040161069c90611c4e565b610c38600061142c565b565b6060600280546105ae90611c13565b60005481610ca35760405162461bcd60e51b815260206004820152602160248201527f5175616e74697479204d75737420426520486967686572205468616e205a65726044820152606f60f81b606482015260840161069c565b600b54610cb08383611c99565b1115610cf35760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b604482015260640161069c565b6007546001600160a01b03163314610d575781600a54610d139190611cb1565b341015610d575760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b604482015260640161069c565b6109e6338361147e565b6001600160a01b038216331415610dba5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161069c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e31848484611070565b610e3d84848484611498565b610e595760405162461bcd60e51b815260040161069c90611cd0565b50505050565b60098054610af290611c13565b6060610e79826000541190565b610edd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161069c565b6000610ee7611597565b90506000815111610f075760405180602001604052806000815250610f35565b80610f11846115a6565b6009604051602001610f2593929190611d23565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610f665760405162461bcd60e51b815260040161069c90611c4e565b80516109e690600990602084019061186f565b6007546001600160a01b03163314610fa35760405162461bcd60e51b815260040161069c90611c4e565b6001600160a01b0381166110085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069c565b6110118161142c565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061107b82611355565b80519091506000906001600160a01b0316336001600160a01b031614806110b25750336110a784610631565b6001600160a01b0316145b806110c4575081516110c490336104e4565b90508061112e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161069c565b846001600160a01b031682600001516001600160a01b0316146111a25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161069c565b6001600160a01b0384166112065760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161069c565b6112166000848460000151611014565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661130b576112be816000541190565b1561130b578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611374826000541190565b6113d35760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161069c565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611422579392505050565b50600019016113d5565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109e68282604051806020016040528060008152506116a4565b60006001600160a01b0384163b1561158b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114dc903390899088908890600401611de7565b6020604051808303816000875af1925050508015611517575060408051601f3d908101601f1916820190925261151491810190611e24565b60015b611571573d808015611545576040519150601f19603f3d011682016040523d82523d6000602084013e61154a565b606091505b5080516115695760405162461bcd60e51b815260040161069c90611cd0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061158f565b5060015b949350505050565b6060600880546105ae90611c13565b6060816115ca5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115f457806115de81611e41565b91506115ed9050600a83611e72565b91506115ce565b60008167ffffffffffffffff81111561160f5761160f611a38565b6040519080825280601f01601f191660200182016040528015611639576020820181803683370190505b5090505b841561158f5761164e600183611e86565b915061165b600a86611e9d565b611666906030611c99565b60f81b81838151811061167b5761167b611eb1565b60200101906001600160f81b031916908160001a90535061169d600a86611e72565b945061163d565b6107d483838360016000546001600160a01b03851661170f5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161069c565b8361176d5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161069c565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156118665760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561185a5761183e6000888488611498565b61185a5760405162461bcd60e51b815260040161069c90611cd0565b600191820191016117eb565b5060005561134e565b82805461187b90611c13565b90600052602060002090601f01602090048101928261189d57600085556118e3565b82601f106118b657805160ff19168380011785556118e3565b828001600101855582156118e3579182015b828111156118e35782518255916020019190600101906118c8565b50610a929291505b80821115610a9257600081556001016118eb565b6001600160e01b03198116811461101157600080fd5b60006020828403121561192757600080fd5b8135610f35816118ff565b60005b8381101561194d578181015183820152602001611935565b83811115610e595750506000910152565b60008151808452611976816020860160208601611932565b601f01601f19169290920160200192915050565b602081526000610f35602083018461195e565b6000602082840312156119af57600080fd5b5035919050565b80356001600160a01b03811681146119cd57600080fd5b919050565b600080604083850312156119e557600080fd5b6119ee836119b6565b946020939093013593505050565b600080600060608486031215611a1157600080fd5b611a1a846119b6565b9250611a28602085016119b6565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a6957611a69611a38565b604051601f8501601f19908116603f01168101908282118183101715611a9157611a91611a38565b81604052809350858152868686011115611aaa57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ad657600080fd5b813567ffffffffffffffff811115611aed57600080fd5b8201601f81018413611afe57600080fd5b61158f84823560208401611a4e565b600060208284031215611b1f57600080fd5b610f35826119b6565b60008060408385031215611b3b57600080fd5b611b44836119b6565b915060208301358015158114611b5957600080fd5b809150509250929050565b60008060008060808587031215611b7a57600080fd5b611b83856119b6565b9350611b91602086016119b6565b925060408501359150606085013567ffffffffffffffff811115611bb457600080fd5b8501601f81018713611bc557600080fd5b611bd487823560208401611a4e565b91505092959194509250565b60008060408385031215611bf357600080fd5b611bfc836119b6565b9150611c0a602084016119b6565b90509250929050565b600181811c90821680611c2757607f821691505b60208210811415611c4857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611cac57611cac611c83565b500190565b6000816000190483118215151615611ccb57611ccb611c83565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600084516020611d368285838a01611932565b855191840191611d498184848a01611932565b8554920191600090600181811c9080831680611d6657607f831692505b858310811415611d8457634e487b7160e01b85526022600452602485fd5b808015611d985760018114611da957611dd6565b60ff19851688528388019550611dd6565b60008b81526020902060005b85811015611dce5781548a820152908401908801611db5565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e1a9083018461195e565b9695505050505050565b600060208284031215611e3657600080fd5b8151610f35816118ff565b6000600019821415611e5557611e55611c83565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611e8157611e81611e5c565b500490565b600082821015611e9857611e98611c83565b500390565b600082611eac57611eac611e5c565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220c7df0c544e37865853ba381d533fa3aac2bf30eee0b6c09af7788de4cd13459364736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e536b756c6c7920446f6f646c65730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006534b554c4c5900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5169416a64776b4438724448664b636e7258777264346e694c7352537162434574334b58475a6436365664552f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Skully Doodles
Arg [1] : _symbol (string): SKULLY
Arg [2] : _initBaseURI (string): ipfs://QmQiAjdwkD8rDHfKcnrXwrd4niLsRSqbCEt3KXGZd66VdU/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 536b756c6c7920446f6f646c6573000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 534b554c4c590000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d5169416a64776b4438724448664b636e7258777264346e
Arg [9] : 694c7352537162434574334b58475a6436365664552f00000000000000000000


Deployed Bytecode Sourcemap

105:2150:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3744:410:3;;;;;;;;;;-1:-1:-1;3744:410:3;;;;;:::i;:::-;;:::i;:::-;;;565:14:12;;558:22;540:41;;528:2;513:18;3744:410:3;;;;;;;;5720:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7356:280::-;;;;;;;;;;-1:-1:-1;7356:280:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:12;;;1674:51;;1662:2;1647:18;7356:280:3;1528:203:12;6892:403:3;;;;;;;;;;-1:-1:-1;6892:403:3;;;;;:::i;:::-;;:::i;:::-;;263:32:9;;;;;;;;;;;;;;;;;;;2319:25:12;;;2307:2;2292:18;263:32:9;2173:177:12;1974:98:3;;;;;;;;;;-1:-1:-1;2027:7:3;2053:12;1974:98;;8340:156;;;;;;;;;;-1:-1:-1;8340:156:3;;;;;:::i;:::-;;:::i;2657:1020::-;;;;;;;;;;-1:-1:-1;2657:1020:3;;;;;:::i;:::-;;:::i;2030:223:9:-;;;:::i;8562:171:3:-;;;;;;;;;;-1:-1:-1;8562:171:3;;;;;:::i;:::-;;:::i;1680:84:9:-;;;;;;;;;;-1:-1:-1;1680:84:9;;;;;:::i;:::-;;:::i;2144:220:3:-;;;;;;;;;;-1:-1:-1;2144:220:3;;;;;:::i;:::-;;:::i;1770:102:9:-;;;;;;;;;;-1:-1:-1;1770:102:9;;;;;:::i;:::-;;:::i;5536:122:3:-;;;;;;;;;;-1:-1:-1;5536:122:3;;;;;:::i;:::-;;:::i;193:21:9:-;;;;;;;;;;;;;:::i;4213:252:3:-;;;;;;;;;;-1:-1:-1;4213:252:3;;;;;:::i;:::-;;:::i;1628:101:10:-;;;;;;;;;;;;;:::i;996:85::-;;;;;;;;;;-1:-1:-1;1068:6:10;;-1:-1:-1;;;;;1068:6:10;996:85;;5882:102:3;;;;;;;;;;;;;:::i;524:397:9:-;;;;;;:::i;:::-;;:::i;7703:303:3:-;;;;;;;;;;-1:-1:-1;7703:303:3;;;;;:::i;:::-;;:::i;8799:344::-;;;;;;;;;;-1:-1:-1;8799:344:3;;;;;:::i;:::-;;:::i;220:37:9:-;;;;;;;;;;;;;:::i;1055:619::-;;;;;;;;;;-1:-1:-1;1055:619:9;;;;;:::i;:::-;;:::i;301:31::-;;;;;;;;;;;;;;;;1878:146;;;;;;;;;;-1:-1:-1;1878:146:9;;;;;:::i;:::-;;:::i;8072:206:3:-;;;;;;;;;;-1:-1:-1;8072:206:3;;;;;:::i;:::-;-1:-1:-1;;;;;8236:25:3;;;8209:4;8236:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;8072:206;1878:232:10;;;;;;;;;;-1:-1:-1;1878:232:10;;;;;:::i;:::-;;:::i;3744:410:3:-;3886:4;-1:-1:-1;;;;;;3925:40:3;;-1:-1:-1;;;3925:40:3;;:104;;-1:-1:-1;;;;;;;3981:48:3;;-1:-1:-1;;;3981:48:3;3925:104;:170;;;-1:-1:-1;;;;;;;4045:50:3;;-1:-1:-1;;;4045:50:3;3925:170;:222;;;-1:-1:-1;;;;;;;;;;981:40:2;;;4111:36:3;3906:241;3744:410;-1:-1:-1;;3744:410:3:o;5720:98::-;5774:13;5806:5;5799:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5720:98;:::o;7356:280::-;7456:7;7500:16;7508:7;9446:4;9479:12;-1:-1:-1;9469:22:3;9389:109;7500:16;7479:108;;;;-1:-1:-1;;;7479:108:3;;5980:2:12;7479:108:3;;;5962:21:12;6019:2;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;-1:-1:-1;;;6109:18:12;;;6102:43;6162:19;;7479:108:3;;;;;;;;;-1:-1:-1;7605:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7605:24:3;;7356:280::o;6892:403::-;6964:13;6980:24;6996:7;6980:15;:24::i;:::-;6964:40;;7028:5;-1:-1:-1;;;;;7022:11:3;:2;-1:-1:-1;;;;;7022:11:3;;;7014:58;;;;-1:-1:-1;;;7014:58:3;;6394:2:12;7014:58:3;;;6376:21:12;6433:2;6413:18;;;6406:30;6472:34;6452:18;;;6445:62;-1:-1:-1;;;6523:18:12;;;6516:32;6565:19;;7014:58:3;6192:398:12;7014:58:3;665:10:1;-1:-1:-1;;;;;7104:21:3;;;;:62;;-1:-1:-1;7129:37:3;7146:5;665:10:1;8072:206:3;:::i;7129:37::-;7083:166;;;;-1:-1:-1;;;7083:166:3;;6797:2:12;7083:166:3;;;6779:21:12;6836:2;6816:18;;;6809:30;6875:34;6855:18;;;6848:62;6946:27;6926:18;;;6919:55;6991:19;;7083:166:3;6595:421:12;7083:166:3;7260:28;7269:2;7273:7;7282:5;7260:8;:28::i;:::-;6954:341;6892:403;;:::o;8340:156::-;8461:28;8471:4;8477:2;8481:7;8461:9;:28::i;2657:1020::-;2778:7;2817:16;2827:5;2817:9;:16::i;:::-;2809:5;:24;2801:71;;;;-1:-1:-1;;;2801:71:3;;7223:2:12;2801:71:3;;;7205:21:12;7262:2;7242:18;;;7235:30;7301:34;7281:18;;;7274:62;-1:-1:-1;;;7352:18:12;;;7345:32;7394:19;;2801:71:3;7021:398:12;2801:71:3;2882:22;2053:12;;;2882:22;;3139:455;3159:14;3155:1;:18;3139:455;;;3198:31;3232:14;;;:11;:14;;;;;;;;;3198:48;;;;;;;;;-1:-1:-1;;;;;3198:48:3;;;;;-1:-1:-1;;;3198:48:3;;;;;;;;;;;;3268:28;3264:109;;3340:14;;;-1:-1:-1;3264:109:3;3415:5;-1:-1:-1;;;;;3394:26:3;:17;-1:-1:-1;;;;;3394:26:3;;3390:190;;;3463:5;3448:11;:20;3444:83;;;-1:-1:-1;3503:1:3;-1:-1:-1;3496:8:3;;-1:-1:-1;;;3496:8:3;3444:83;3548:13;;;;;3390:190;-1:-1:-1;3175:3:3;;3139:455;;;-1:-1:-1;3614:56:3;;-1:-1:-1;;;3614:56:3;;7626:2:12;3614:56:3;;;7608:21:12;7665:2;7645:18;;;7638:30;7704:34;7684:18;;;7677:62;-1:-1:-1;;;7755:18:12;;;7748:44;7809:19;;3614:56:3;7424:410:12;2030:223:9;1068:6:10;;-1:-1:-1;;;;;1068:6:10;665:10:1;1208:23:10;1200:68;;;;-1:-1:-1;;;1200:68:10;;;;;;;:::i;:::-;2103:21:9::1;2142:11:::0;2134:56:::1;;;::::0;-1:-1:-1;;;2134:56:9;;8402:2:12;2134:56:9::1;::::0;::::1;8384:21:12::0;;;8421:18;;;8414:30;8480:34;8460:18;;;8453:62;8532:18;;2134:56:9::1;8200:356:12::0;2134:56:9::1;2200:46;::::0;2216:10:::1;::::0;2200:46;::::1;;;::::0;2238:7;;2200:46:::1;::::0;;;2238:7;2216:10;2200:46;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2075:178;2030:223::o:0;8562:171:3:-;8687:39;8704:4;8710:2;8714:7;8687:39;;;;;;;;;;;;:16;:39::i;1680:84:9:-;1068:6:10;;-1:-1:-1;;;;;1068:6:10;665:10:1;1208:23:10;1200:68;;;;-1:-1:-1;;;1200:68:10;;;;;;;:::i;:::-;1742:4:9::1;:15:::0;1680:84::o;2144:220:3:-;2243:7;2053:12;;2274:5;:21;2266:69;;;;-1:-1:-1;;;2266:69:3;;8763:2:12;2266:69:3;;;8745:21:12;8802:2;8782:18;;;8775:30;8841:34;8821:18;;;8814:62;-1:-1:-1;;;8892:18:12;;;8885:33;8935:19;;2266:69:3;8561:399:12;2266:69:3;-1:-1:-1;2352:5:3;2144:220::o;1770:102:9:-;1068:6:10;;-1:-1:-1;;;;;1068:6:10;665:10:1;1208:23:10;1200:68;;;;-1:-1:-1;;;1200:68:10;;;;;;;:::i;:::-;1844:21:9;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;5536:122:3:-:0;5600:7;5626:20;5638:7;5626:11;:20::i;:::-;:25;;5536:122;-1:-1:-1;;5536:122:3:o;193:21:9:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4213:252:3:-;4277:7;-1:-1:-1;;;;;4317:19:3;;4296:109;;;;-1:-1:-1;;;4296:109:3;;9167:2:12;4296:109:3;;;9149:21:12;9206:2;9186:18;;;9179:30;9245:34;9225:18;;;9218:62;-1:-1:-1;;;9296:18:12;;;9289:41;9347:19;;4296:109:3;8965:407:12;4296:109:3;-1:-1:-1;;;;;;4430:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4430:27:3;;4213:252::o;1628:101:10:-;1068:6;;-1:-1:-1;;;;;1068:6:10;665:10:1;1208:23:10;1200:68;;;;-1:-1:-1;;;1200:68:10;;;;;;;:::i;:::-;1692:30:::1;1719:1;1692:18;:30::i;:::-;1628:101::o:0;5882:102:3:-;5938:13;5970:7;5963:14;;;;;:::i;524:397:9:-;583:14;2053:12:3;631::9;623:58;;;;-1:-1:-1;;;623:58:9;;9579:2:12;623:58:9;;;9561:21:12;9618:2;9598:18;;;9591:30;9657:34;9637:18;;;9630:62;-1:-1:-1;;;9708:18:12;;;9701:31;9749:19;;623:58:9;9377:397:12;623:58:9;720:9;;699:17;708:8;699:6;:17;:::i;:::-;:30;;691:61;;;;-1:-1:-1;;;691:61:9;;10246:2:12;691:61:9;;;10228:21:12;10285:2;10265:18;;;10258:30;-1:-1:-1;;;10304:18:12;;;10297:48;10362:18;;691:61:9;10044:342:12;691:61:9;1068:6:10;;-1:-1:-1;;;;;1068:6:10;767:10:9;:21;763:111;;832:8;825:4;;:15;;;;:::i;:::-;812:9;:28;;804:59;;;;-1:-1:-1;;;804:59:9;;10766:2:12;804:59:9;;;10748:21:12;10805:2;10785:18;;;10778:30;-1:-1:-1;;;10824:18:12;;;10817:48;10882:18;;804:59:9;10564:342:12;804:59:9;883:31;893:10;905:8;883:9;:31::i;7703:303:3:-;-1:-1:-1;;;;;7817:24:3;;665:10:1;7817:24:3;;7809:63;;;;-1:-1:-1;;;7809:63:3;;11113:2:12;7809:63:3;;;11095:21:12;11152:2;11132:18;;;11125:30;11191:28;11171:18;;;11164:56;11237:18;;7809:63:3;10911:350:12;7809:63:3;665:10:1;7883:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7883:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;7883:53:3;;;;;;;;;;7951:48;;540:41:12;;;7883:42:3;;665:10:1;7951:48:3;;513:18:12;7951:48:3;;;;;;;7703:303;;:::o;8799:344::-;8952:28;8962:4;8968:2;8972:7;8952:9;:28::i;:::-;9011:48;9034:4;9040:2;9044:7;9053:5;9011:22;:48::i;:::-;8990:146;;;;-1:-1:-1;;;8990:146:3;;;;;;;:::i;:::-;8799:344;;;;:::o;220:37:9:-;;;;;;;:::i;1055:619::-;1168:13;1218:16;1226:7;9446:4:3;9479:12;-1:-1:-1;9469:22:3;9389:109;1218:16:9;1197:110;;;;-1:-1:-1;;;1197:110:9;;11888:2:12;1197:110:9;;;11870:21:12;11927:2;11907:18;;;11900:30;11966:34;11946:18;;;11939:62;-1:-1:-1;;;12017:18:12;;;12010:45;12072:19;;1197:110:9;11686:411:12;1197:110:9;1318:28;1349:10;:8;:10::i;:::-;1318:41;;1419:1;1394:14;1388:28;:32;:279;;;;;;;;;;;;;;;;;1509:14;1549:18;:7;:16;:18::i;:::-;1593:13;1467:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1388:279;1369:298;1055:619;-1:-1:-1;;;1055:619:9:o;1878:146::-;1068:6:10;;-1:-1:-1;;;;;1068:6:10;665:10:1;1208:23:10;1200:68;;;;-1:-1:-1;;;1200:68:10;;;;;;;:::i;:::-;1984:33:9;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;1878:232:10:-:0;1068:6;;-1:-1:-1;;;;;1068:6:10;665:10:1;1208:23:10;1200:68;;;;-1:-1:-1;;;1200:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1979:22:10;::::1;1958:107;;;::::0;-1:-1:-1;;;1958:107:10;;13962:2:12;1958:107:10::1;::::0;::::1;13944:21:12::0;14001:2;13981:18;;;13974:30;14040:34;14020:18;;;14013:62;-1:-1:-1;;;14091:18:12;;;14084:36;14137:19;;1958:107:10::1;13760:402:12::0;1958:107:10::1;2075:28;2094:8;2075:18;:28::i;:::-;1878:232:::0;:::o;14401:189:3:-;14511:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;14511:29:3;-1:-1:-1;;;;;14511:29:3;;;;;;;;;14555:28;;14511:24;;14555:28;;;;;;;14401:189;;;:::o;12239:2051::-;12349:35;12387:20;12399:7;12387:11;:20::i;:::-;12460:18;;12349:58;;-1:-1:-1;12418:22:3;;-1:-1:-1;;;;;12444:34:3;665:10:1;-1:-1:-1;;;;;12444:34:3;;:86;;;-1:-1:-1;665:10:1;12494:20:3;12506:7;12494:11;:20::i;:::-;-1:-1:-1;;;;;12494:36:3;;12444:86;:152;;;-1:-1:-1;12563:18:3;;12546:50;;665:10:1;8072:206:3;:::i;12546:50::-;12418:179;;12629:17;12608:114;;;;-1:-1:-1;;;12608:114:3;;14369:2:12;12608:114:3;;;14351:21:12;14408:2;14388:18;;;14381:30;14447:34;14427:18;;;14420:62;-1:-1:-1;;;14498:18:12;;;14491:48;14556:19;;12608:114:3;14167:414:12;12608:114:3;12776:4;-1:-1:-1;;;;;12754:26:3;:13;:18;;;-1:-1:-1;;;;;12754:26:3;;12733:111;;;;-1:-1:-1;;;12733:111:3;;14788:2:12;12733:111:3;;;14770:21:12;14827:2;14807:18;;;14800:30;14866:34;14846:18;;;14839:62;-1:-1:-1;;;14917:18:12;;;14910:36;14963:19;;12733:111:3;14586:402:12;12733:111:3;-1:-1:-1;;;;;12862:16:3;;12854:66;;;;-1:-1:-1;;;12854:66:3;;15195:2:12;12854:66:3;;;15177:21:12;15234:2;15214:18;;;15207:30;15273:34;15253:18;;;15246:62;-1:-1:-1;;;15324:18:12;;;15317:35;15369:19;;12854:66:3;14993:401:12;12854:66:3;13036:49;13053:1;13057:7;13066:13;:18;;;13036:8;:49::i;:::-;-1:-1:-1;;;;;13375:18:3;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;13375:31:3;;;-1:-1:-1;;;;;13375:31:3;;;-1:-1:-1;;13375:31:3;;;;;;;13420:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;13420:29:3;;;;;;;;;;;;;13464:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;13508:61:3;;;;-1:-1:-1;;;13553:15:3;13508:61;;;;;;13839:11;;;13868:24;;;;;:29;13839:11;;13868:29;13864:315;;13935:20;13943:11;9446:4;9479:12;-1:-1:-1;9469:22:3;9389:109;13935:20;13931:234;;;14011:18;;;13979:24;;;:11;:24;;;;;;;;:50;;14093:53;;;;14051:95;;-1:-1:-1;;;14051:95:3;-1:-1:-1;;;;;;14051:95:3;;;-1:-1:-1;;;;;13979:50:3;;;14051:95;;;;;;;13931:234;13351:838;14223:7;14219:2;-1:-1:-1;;;;;14204:27:3;14213:4;-1:-1:-1;;;;;14204:27:3;;;;;;;;;;;14241:42;12339:1951;;12239:2051;;;:::o;4927:552::-;-1:-1:-1;;;;;;;;;;;;;;;;;5057:16:3;5065:7;9446:4;9479:12;-1:-1:-1;9469:22:3;9389:109;5057:16;5049:71;;;;-1:-1:-1;;;5049:71:3;;15601:2:12;5049:71:3;;;15583:21:12;15640:2;15620:18;;;15613:30;15679:34;15659:18;;;15652:62;-1:-1:-1;;;15730:18:12;;;15723:40;15780:19;;5049:71:3;15399:406:12;5049:71:3;5175:7;5155:240;5221:31;5255:17;;;:11;:17;;;;;;;;;5221:51;;;;;;;;;-1:-1:-1;;;;;5221:51:3;;;;;-1:-1:-1;;;5221:51:3;;;;;;;;;;;;5294:28;5290:91;;5353:9;4927:552;-1:-1:-1;;;4927:552:3:o;5290:91::-;-1:-1:-1;;;5195:6:3;5155:240;;2264:187:10;2356:6;;;-1:-1:-1;;;;;2372:17:10;;;-1:-1:-1;;;;;;2372:17:10;;;;;;;2404:40;;2356:6;;;2372:17;2356:6;;2404:40;;2337:16;;2404:40;2327:124;2264:187;:::o;9504:102:3:-;9572:27;9582:2;9586:8;9572:27;;;;;;;;;;;;:9;:27::i;15143:955::-;15293:4;-1:-1:-1;;;;;15313:13:3;;1450:19:0;:23;15309:783:3;;15364:170;;-1:-1:-1;;;15364:170:3;;-1:-1:-1;;;;;15364:36:3;;;;;:170;;665:10:1;;15456:4:3;;15482:7;;15511:5;;15364:170;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15364:170:3;;;;;;;;-1:-1:-1;;15364:170:3;;;;;;;;;;;;:::i;:::-;;;15344:696;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15717:13:3;;15713:313;;15759:107;;-1:-1:-1;;;15759:107:3;;;;;;;:::i;15713:313::-;15978:6;15972:13;15963:6;15959:2;15955:15;15948:38;15344:696;-1:-1:-1;;;;;;15596:55:3;-1:-1:-1;;;15596:55:3;;-1:-1:-1;15589:62:3;;15309:783;-1:-1:-1;16077:4:3;15309:783;15143:955;;;;;;:::o;943:106:9:-;1003:13;1035:7;1028:14;;;;;:::i;328:703:11:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:11;;;;;;;;;;;;-1:-1:-1;;;627:10:11;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:11;;-1:-1:-1;773:2:11;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:11;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:11;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:11;;;;;;;;-1:-1:-1;972:11:11;981:2;972:11;;:::i;:::-;;;844:150;;9957:157:3;10075:32;10081:2;10085:8;10095:5;10102:4;10494:20;10517:12;-1:-1:-1;;;;;10547:16:3;;10539:62;;;;-1:-1:-1;;;10539:62:3;;17952:2:12;10539:62:3;;;17934:21:12;17991:2;17971:18;;;17964:30;18030:34;18010:18;;;18003:62;-1:-1:-1;;;18081:18:12;;;18074:31;18122:19;;10539:62:3;17750:397:12;10539:62:3;10619:13;10611:66;;;;-1:-1:-1;;;10611:66:3;;18354:2:12;10611:66:3;;;18336:21:12;18393:2;18373:18;;;18366:30;18432:34;18412:18;;;18405:62;-1:-1:-1;;;18483:18:12;;;18476:38;18531:19;;10611:66:3;18152:404:12;10611:66:3;-1:-1:-1;;;;;11021:16:3;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;11021:45:3;;-1:-1:-1;;;;;11021:45:3;;;;;;;;;;11080:50;;;;;;;;;;;;;;11145:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;11194:66:3;;;;-1:-1:-1;;;11244:15:3;11194:66;;;;;;;11145:25;;11325:543;11345:8;11341:1;:12;11325:543;;;11383:38;;11408:12;;-1:-1:-1;;;;;11383:38:3;;;11400:1;;11383:38;;11400:1;;11383:38;11443:4;11439:382;;;11504:197;11564:1;11596:2;11628:12;11670:5;11504:22;:197::i;:::-;11471:331;;;;-1:-1:-1;;;11471:331:3;;;;;;;:::i;:::-;11839:14;;;;;11355:3;11325:543;;;-1:-1:-1;11882:12:3;:27;11930:60;8799:344;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:12;-1:-1:-1;;;;;;88:32:12;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:12;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:12;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:12:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:12;;1343:180;-1:-1:-1;1343:180:12:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:12;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:12: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:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:12;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:12;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:12;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;7839:356::-;8041:2;8023:21;;;8060:18;;;8053:30;8119:34;8114:2;8099:18;;8092:62;8186:2;8171:18;;7839:356::o;9779:127::-;9840:10;9835:3;9831:20;9828:1;9821:31;9871:4;9868:1;9861:15;9895:4;9892:1;9885:15;9911:128;9951:3;9982:1;9978:6;9975:1;9972:13;9969:39;;;9988:18;;:::i;:::-;-1:-1:-1;10024:9:12;;9911:128::o;10391:168::-;10431:7;10497:1;10493;10489:6;10485:14;10482:1;10479:21;10474:1;10467:9;10460:17;10456:45;10453:71;;;10504:18;;:::i;:::-;-1:-1:-1;10544:9:12;;10391:168::o;11266:415::-;11468:2;11450:21;;;11507:2;11487:18;;;11480:30;11546:34;11541:2;11526:18;;11519:62;-1:-1:-1;;;11612:2:12;11597:18;;11590:49;11671:3;11656:19;;11266:415::o;12228:1527::-;12452:3;12490:6;12484:13;12516:4;12529:51;12573:6;12568:3;12563:2;12555:6;12551:15;12529:51;:::i;:::-;12643:13;;12602:16;;;;12665:55;12643:13;12602:16;12687:15;;;12665:55;:::i;:::-;12809:13;;12742:20;;;12782:1;;12869;12891:18;;;;12944;;;;12971:93;;13049:4;13039:8;13035:19;13023:31;;12971:93;13112:2;13102:8;13099:16;13079:18;13076:40;13073:167;;;-1:-1:-1;;;13139:33:12;;13195:4;13192:1;13185:15;13225:4;13146:3;13213:17;13073:167;13256:18;13283:110;;;;13407:1;13402:328;;;;13249:481;;13283:110;-1:-1:-1;;13318:24:12;;13304:39;;13363:20;;;;-1:-1:-1;13283:110:12;;13402:328;12175:1;12168:14;;;12212:4;12199:18;;13497:1;13511:169;13525:8;13522:1;13519:15;13511:169;;;13607:14;;13592:13;;;13585:37;13650:16;;;;13542:10;;13511:169;;;13515:3;;13711:8;13704:5;13700:20;13693:27;;13249:481;-1:-1:-1;13746:3:12;;12228:1527;-1:-1:-1;;;;;;;;;;;12228:1527:12:o;16226:489::-;-1:-1:-1;;;;;16495:15:12;;;16477:34;;16547:15;;16542:2;16527:18;;16520:43;16594:2;16579:18;;16572:34;;;16642:3;16637:2;16622:18;;16615:31;;;16420:4;;16663:46;;16689:19;;16681:6;16663:46;:::i;:::-;16655:54;16226:489;-1:-1:-1;;;;;;16226:489:12:o;16720:249::-;16789:6;16842:2;16830:9;16821:7;16817:23;16813:32;16810:52;;;16858:1;16855;16848:12;16810:52;16890:9;16884:16;16909:30;16933:5;16909:30;:::i;16974:135::-;17013:3;-1:-1:-1;;17034:17:12;;17031:43;;;17054:18;;:::i;:::-;-1:-1:-1;17101:1:12;17090:13;;16974:135::o;17114:127::-;17175:10;17170:3;17166:20;17163:1;17156:31;17206:4;17203:1;17196:15;17230:4;17227:1;17220:15;17246:120;17286:1;17312;17302:35;;17317:18;;:::i;:::-;-1:-1:-1;17351:9:12;;17246:120::o;17371:125::-;17411:4;17439:1;17436;17433:8;17430:34;;;17444:18;;:::i;:::-;-1:-1:-1;17481:9:12;;17371:125::o;17501:112::-;17533:1;17559;17549:35;;17564:18;;:::i;:::-;-1:-1:-1;17598:9:12;;17501:112::o;17618:127::-;17679:10;17674:3;17670:20;17667:1;17660:31;17710:4;17707:1;17700:15;17734:4;17731:1;17724:15

Swarm Source

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