ETH Price: $3,320.43 (+1.70%)
Gas: 5 Gwei

Token

(0x3610d80ef3e2ca614b940a43b8b3add4fd09a61b)
 

Overview

Max Total Supply

40 ERC-721 TOKEN*

Holders

6

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
32 ERC-721 TOKEN*
0xf93bf9a2392d32adbb6c723519e334ed67fd1fd2
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:
GatesNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-10
*/

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

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

        return c;
    }

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

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


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

contract GatesNFT is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdTracker;

    uint256 public constant MAX_SUPPLY = 50;
    uint256 public PRICE = 0.1 ether;
    uint256 public constant MAX_PER_MINT = 20;
    string public baseTokenURI;
    string public metadataName;

    constructor(string memory name, string memory symbol, string memory metadataName_, string memory baseURI) ERC721(name, symbol) {
        setBaseURI(baseURI);
        metadataName = metadataName_;
    }

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

    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, metadataName, ".json"))
                : "";
    }

    function setBaseURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function mintNFTs(uint256 _count) public payable onlyOwner{
        uint256 totalMinted = _tokenIdTracker.current();
        require(totalMinted.add(_count) <= MAX_SUPPLY, "Not enough NFTs!");
        
        for (uint256 i = 0; i < _count; i++) {
            _mintSingleNFT();
        }
    }

    function _mintSingleNFT() private {
        _tokenIdTracker.increment();
        uint256 newTokenID = _tokenIdTracker.current();
        _safeMint(msg.sender, newTokenID);
    }

    function tokensOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

    function withdraw() public payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "No ether left to withdraw");
        (bool success, ) = (msg.sender).call{value: balance}("");
        require(success, "Transfer failed.");
    }

    function transferNFT(uint256 tokenId, address to) public {
        safeTransferFrom(msg.sender, to, tokenId);
    }

    function updatePrice(uint256 _newPrice) public onlyOwner {
        PRICE = _newPrice;
    }

    function updateMetadataName(string memory newMetadataName_) public onlyOwner {
        metadataName = newMetadataName_;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"metadataName_","type":"string"},{"internalType":"string","name":"baseURI","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":[],"name":"MAX_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"metadataName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintNFTs","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":"_baseTokenURI","type":"string"}],"name":"setBaseURI","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"transferNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newMetadataName_","type":"string"}],"name":"updateMetadataName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405267016345785d8a0000600c553480156200001d57600080fd5b5060405162002555380380620025558339810160408190526200004091620002e2565b8351849084906200005990600090602085019062000185565b5080516200006f90600190602084019062000185565b5050506200008c62000086620000b760201b60201c565b620000bb565b62000097816200010d565b8151620000ac90600e90602085019062000185565b5050505050620003ee565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200016c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200018190600d90602084019062000185565b5050565b82805462000193906200039b565b90600052602060002090601f016020900481019282620001b7576000855562000202565b82601f10620001d257805160ff191683800117855562000202565b8280016001018555821562000202579182015b8281111562000202578251825591602001919060010190620001e5565b506200021092915062000214565b5090565b5b8082111562000210576000815560010162000215565b600082601f8301126200023d57600080fd5b81516001600160401b03808211156200025a576200025a620003d8565b604051601f8301601f19908116603f01168101908282118183101715620002855762000285620003d8565b81604052838152602092508683858801011115620002a257600080fd5b600091505b83821015620002c65785820183015181830184015290820190620002a7565b83821115620002d85760008385830101525b9695505050505050565b60008060008060808587031215620002f957600080fd5b84516001600160401b03808211156200031157600080fd5b6200031f888389016200022b565b955060208701519150808211156200033657600080fd5b62000344888389016200022b565b945060408701519150808211156200035b57600080fd5b62000369888389016200022b565b935060608701519150808211156200038057600080fd5b506200038f878288016200022b565b91505092959194509250565b600181811c90821680620003b057607f821691505b60208210811415620003d257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61215780620003fe6000396000f3fe6080604052600436106101d85760003560e01c806355f804b3116101025780639036c05011610095578063c87b56dd11610064578063c87b56dd14610516578063d547cfb714610536578063e985e9c51461054b578063f2fde38b1461059457600080fd5b80639036c050146104a157806395d89b41146104c1578063a22cb465146104d6578063b88d4fde146104f657600080fd5b80638462151c116100d15780638462151c146104205780638d6cc56d1461044d5780638d859f3e1461046d5780638da5cb5b1461048357600080fd5b806355f804b3146103ab5780636352211e146103cb57806370a08231146103eb578063715018a61461040b57600080fd5b80632e935f141161017a5780633ccfd60b116101495780633ccfd60b1461034e578063405604641461035657806342842e0e1461036b5780634f6ccce71461038b57600080fd5b80632e935f14146102e65780632f745c591461030657806332cb6b0c146103265780633b4b13811461033b57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806309d42b301461028e57806318160ddd146102b157806323b872dd146102c657600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611ce5565b6105b4565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105df565b6040516102099190611f17565b34801561024057600080fd5b5061025461024f366004611d68565b610671565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611cbb565b61070b565b005b34801561029a57600080fd5b506102a3601481565b604051908152602001610209565b3480156102bd57600080fd5b506008546102a3565b3480156102d257600080fd5b5061028c6102e1366004611bc7565b610821565b3480156102f257600080fd5b5061028c610301366004611d1f565b610852565b34801561031257600080fd5b506102a3610321366004611cbb565b610893565b34801561033257600080fd5b506102a3603281565b61028c610349366004611d68565b610929565b61028c6109d2565b34801561036257600080fd5b50610227610ad5565b34801561037757600080fd5b5061028c610386366004611bc7565b610b63565b34801561039757600080fd5b506102a36103a6366004611d68565b610b7e565b3480156103b757600080fd5b5061028c6103c6366004611d1f565b610c11565b3480156103d757600080fd5b506102546103e6366004611d68565b610c4e565b3480156103f757600080fd5b506102a3610406366004611b79565b610cc5565b34801561041757600080fd5b5061028c610d4c565b34801561042c57600080fd5b5061044061043b366004611b79565b610d82565b6040516102099190611ed3565b34801561045957600080fd5b5061028c610468366004611d68565b610e24565b34801561047957600080fd5b506102a3600c5481565b34801561048f57600080fd5b50600a546001600160a01b0316610254565b3480156104ad57600080fd5b5061028c6104bc366004611d81565b610e53565b3480156104cd57600080fd5b50610227610e5e565b3480156104e257600080fd5b5061028c6104f1366004611c7f565b610e6d565b34801561050257600080fd5b5061028c610511366004611c03565b610f32565b34801561052257600080fd5b50610227610531366004611d68565b610f6a565b34801561054257600080fd5b5061022761103e565b34801561055757600080fd5b506101fd610566366004611b94565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105a057600080fd5b5061028c6105af366004611b79565b61104b565b60006001600160e01b0319821663780e9d6360e01b14806105d957506105d9826110e6565b92915050565b6060600080546105ee9061205d565b80601f016020809104026020016040519081016040528092919081815260200182805461061a9061205d565b80156106675780601f1061063c57610100808354040283529160200191610667565b820191906000526020600020905b81548152906001019060200180831161064a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106ef5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071682610c4e565b9050806001600160a01b0316836001600160a01b031614156107845760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e6565b336001600160a01b03821614806107a057506107a08133610566565b6108125760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e6565b61081c8383611136565b505050565b61082b33826111a4565b6108475760405162461bcd60e51b81526004016106e690611fb1565b61081c83838361129b565b600a546001600160a01b0316331461087c5760405162461bcd60e51b81526004016106e690611f7c565b805161088f90600e906020840190611a4e565b5050565b600061089e83610cc5565b82106109005760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106e6565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109535760405162461bcd60e51b81526004016106e690611f7c565b600061095e600b5490565b9050603261096c8284611446565b11156109ad5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f756768204e4654732160801b60448201526064016106e6565b60005b8281101561081c576109c06114a5565b806109ca81612098565b9150506109b0565b600a546001600160a01b031633146109fc5760405162461bcd60e51b81526004016106e690611f7c565b4780610a4a5760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f2077697468647261770000000000000060448201526064016106e6565b604051600090339083908381818185875af1925050503d8060008114610a8c576040519150601f19603f3d011682016040523d82523d6000602084013e610a91565b606091505b505090508061088f5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016106e6565b600e8054610ae29061205d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0e9061205d565b8015610b5b5780601f10610b3057610100808354040283529160200191610b5b565b820191906000526020600020905b815481529060010190602001808311610b3e57829003601f168201915b505050505081565b61081c83838360405180602001604052806000815250610f32565b6000610b8960085490565b8210610bec5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106e6565b60088281548110610bff57610bff6120df565b90600052602060002001549050919050565b600a546001600160a01b03163314610c3b5760405162461bcd60e51b81526004016106e690611f7c565b805161088f90600d906020840190611a4e565b6000818152600260205260408120546001600160a01b0316806105d95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106e6565b60006001600160a01b038216610d305760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e6565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d765760405162461bcd60e51b81526004016106e690611f7c565b610d8060006114ca565b565b60606000610d8f83610cc5565b905060008167ffffffffffffffff811115610dac57610dac6120f5565b604051908082528060200260200182016040528015610dd5578160200160208202803683370190505b50905060005b82811015610e1c57610ded8582610893565b828281518110610dff57610dff6120df565b602090810291909101015280610e1481612098565b915050610ddb565b509392505050565b600a546001600160a01b03163314610e4e5760405162461bcd60e51b81526004016106e690611f7c565b600c55565b61088f338284610b63565b6060600180546105ee9061205d565b6001600160a01b038216331415610ec65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e6565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f3c33836111a4565b610f585760405162461bcd60e51b81526004016106e690611fb1565b610f648484848461151c565b50505050565b6000818152600260205260409020546060906001600160a01b0316610fe95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e6565b6000610ff361154f565b905060008151116110135760405180602001604052806000815250611037565b80600e604051602001611027929190611dd0565b6040516020818303038152906040525b9392505050565b600d8054610ae29061205d565b600a546001600160a01b031633146110755760405162461bcd60e51b81526004016106e690611f7c565b6001600160a01b0381166110da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e6565b6110e3816114ca565b50565b60006001600160e01b031982166380ac58cd60e01b148061111757506001600160e01b03198216635b5e139f60e01b145b806105d957506301ffc9a760e01b6001600160e01b03198316146105d9565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061116b82610c4e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661121d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e6565b600061122883610c4e565b9050806001600160a01b0316846001600160a01b031614806112635750836001600160a01b031661125884610671565b6001600160a01b0316145b8061129357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112ae82610c4e565b6001600160a01b0316146113165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106e6565b6001600160a01b0382166113785760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e6565b61138383838361155e565b61138e600082611136565b6001600160a01b03831660009081526003602052604081208054600192906113b790849061201a565b90915550506001600160a01b03821660009081526003602052604081208054600192906113e5908490612002565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806114538385612002565b9050838110156110375760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016106e6565b6114b3600b80546001019055565b60006114be600b5490565b90506110e33382611616565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61152784848461129b565b61153384848484611630565b610f645760405162461bcd60e51b81526004016106e690611f2a565b6060600d80546105ee9061205d565b6001600160a01b0383166115b9576115b481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6115dc565b816001600160a01b0316836001600160a01b0316146115dc576115dc838261173d565b6001600160a01b0382166115f35761081c816117da565b826001600160a01b0316826001600160a01b03161461081c5761081c8282611889565b61088f8282604051806020016040528060008152506118cd565b60006001600160a01b0384163b1561173257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611674903390899088908890600401611e96565b602060405180830381600087803b15801561168e57600080fd5b505af19250505080156116be575060408051601f3d908101601f191682019092526116bb91810190611d02565b60015b611718573d8080156116ec576040519150601f19603f3d011682016040523d82523d6000602084013e6116f1565b606091505b5080516117105760405162461bcd60e51b81526004016106e690611f2a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611293565b506001949350505050565b6000600161174a84610cc5565b611754919061201a565b6000838152600760205260409020549091508082146117a7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906117ec9060019061201a565b60008381526009602052604081205460088054939450909284908110611814576118146120df565b906000526020600020015490508060088381548110611835576118356120df565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061186d5761186d6120c9565b6001900381819060005260206000200160009055905550505050565b600061189483610cc5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6118d78383611900565b6118e46000848484611630565b61081c5760405162461bcd60e51b81526004016106e690611f2a565b6001600160a01b0382166119565760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e6565b6000818152600260205260409020546001600160a01b0316156119bb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e6565b6119c76000838361155e565b6001600160a01b03821660009081526003602052604081208054600192906119f0908490612002565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a5a9061205d565b90600052602060002090601f016020900481019282611a7c5760008555611ac2565b82601f10611a9557805160ff1916838001178555611ac2565b82800160010185558215611ac2579182015b82811115611ac2578251825591602001919060010190611aa7565b50611ace929150611ad2565b5090565b5b80821115611ace5760008155600101611ad3565b600067ffffffffffffffff80841115611b0257611b026120f5565b604051601f8501601f19908116603f01168101908282118183101715611b2a57611b2a6120f5565b81604052809350858152868686011115611b4357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b7457600080fd5b919050565b600060208284031215611b8b57600080fd5b61103782611b5d565b60008060408385031215611ba757600080fd5b611bb083611b5d565b9150611bbe60208401611b5d565b90509250929050565b600080600060608486031215611bdc57600080fd5b611be584611b5d565b9250611bf360208501611b5d565b9150604084013590509250925092565b60008060008060808587031215611c1957600080fd5b611c2285611b5d565b9350611c3060208601611b5d565b925060408501359150606085013567ffffffffffffffff811115611c5357600080fd5b8501601f81018713611c6457600080fd5b611c7387823560208401611ae7565b91505092959194509250565b60008060408385031215611c9257600080fd5b611c9b83611b5d565b915060208301358015158114611cb057600080fd5b809150509250929050565b60008060408385031215611cce57600080fd5b611cd783611b5d565b946020939093013593505050565b600060208284031215611cf757600080fd5b81356110378161210b565b600060208284031215611d1457600080fd5b81516110378161210b565b600060208284031215611d3157600080fd5b813567ffffffffffffffff811115611d4857600080fd5b8201601f81018413611d5957600080fd5b61129384823560208401611ae7565b600060208284031215611d7a57600080fd5b5035919050565b60008060408385031215611d9457600080fd5b82359150611bbe60208401611b5d565b60008151808452611dbc816020860160208601612031565b601f01601f19169290920160200192915050565b600083516020611de38285838901612031565b845491840191600090600181811c9080831680611e0157607f831692505b858310811415611e1f57634e487b7160e01b85526022600452602485fd5b808015611e335760018114611e4457611e71565b60ff19851688528388019550611e71565b60008b81526020902060005b85811015611e695781548a820152908401908801611e50565b505083880195505b5050505050611e8b8164173539b7b760d91b815260050190565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ec990830184611da4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f0b57835183529284019291840191600101611eef565b50909695505050505050565b6020815260006110376020830184611da4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612015576120156120b3565b500190565b60008282101561202c5761202c6120b3565b500390565b60005b8381101561204c578181015183820152602001612034565b83811115610f645750506000910152565b600181811c9082168061207157607f821691505b6020821081141561209257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120ac576120ac6120b3565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110e357600080fdfea2646970667358221220d73cc76a0b9e481e2948ab6d2d73f09022ad21048d5d6c242edcd59de7e561a064736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000b426174746c652047617465000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b426174746c652047617465000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b626174746c655f676174650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d66416a4c7a6434386a4674704b3572626a4362314e4877765063594e73474d573168756d6a614279567a56502f00000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806355f804b3116101025780639036c05011610095578063c87b56dd11610064578063c87b56dd14610516578063d547cfb714610536578063e985e9c51461054b578063f2fde38b1461059457600080fd5b80639036c050146104a157806395d89b41146104c1578063a22cb465146104d6578063b88d4fde146104f657600080fd5b80638462151c116100d15780638462151c146104205780638d6cc56d1461044d5780638d859f3e1461046d5780638da5cb5b1461048357600080fd5b806355f804b3146103ab5780636352211e146103cb57806370a08231146103eb578063715018a61461040b57600080fd5b80632e935f141161017a5780633ccfd60b116101495780633ccfd60b1461034e578063405604641461035657806342842e0e1461036b5780634f6ccce71461038b57600080fd5b80632e935f14146102e65780632f745c591461030657806332cb6b0c146103265780633b4b13811461033b57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806309d42b301461028e57806318160ddd146102b157806323b872dd146102c657600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611ce5565b6105b4565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105df565b6040516102099190611f17565b34801561024057600080fd5b5061025461024f366004611d68565b610671565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611cbb565b61070b565b005b34801561029a57600080fd5b506102a3601481565b604051908152602001610209565b3480156102bd57600080fd5b506008546102a3565b3480156102d257600080fd5b5061028c6102e1366004611bc7565b610821565b3480156102f257600080fd5b5061028c610301366004611d1f565b610852565b34801561031257600080fd5b506102a3610321366004611cbb565b610893565b34801561033257600080fd5b506102a3603281565b61028c610349366004611d68565b610929565b61028c6109d2565b34801561036257600080fd5b50610227610ad5565b34801561037757600080fd5b5061028c610386366004611bc7565b610b63565b34801561039757600080fd5b506102a36103a6366004611d68565b610b7e565b3480156103b757600080fd5b5061028c6103c6366004611d1f565b610c11565b3480156103d757600080fd5b506102546103e6366004611d68565b610c4e565b3480156103f757600080fd5b506102a3610406366004611b79565b610cc5565b34801561041757600080fd5b5061028c610d4c565b34801561042c57600080fd5b5061044061043b366004611b79565b610d82565b6040516102099190611ed3565b34801561045957600080fd5b5061028c610468366004611d68565b610e24565b34801561047957600080fd5b506102a3600c5481565b34801561048f57600080fd5b50600a546001600160a01b0316610254565b3480156104ad57600080fd5b5061028c6104bc366004611d81565b610e53565b3480156104cd57600080fd5b50610227610e5e565b3480156104e257600080fd5b5061028c6104f1366004611c7f565b610e6d565b34801561050257600080fd5b5061028c610511366004611c03565b610f32565b34801561052257600080fd5b50610227610531366004611d68565b610f6a565b34801561054257600080fd5b5061022761103e565b34801561055757600080fd5b506101fd610566366004611b94565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105a057600080fd5b5061028c6105af366004611b79565b61104b565b60006001600160e01b0319821663780e9d6360e01b14806105d957506105d9826110e6565b92915050565b6060600080546105ee9061205d565b80601f016020809104026020016040519081016040528092919081815260200182805461061a9061205d565b80156106675780601f1061063c57610100808354040283529160200191610667565b820191906000526020600020905b81548152906001019060200180831161064a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106ef5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071682610c4e565b9050806001600160a01b0316836001600160a01b031614156107845760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e6565b336001600160a01b03821614806107a057506107a08133610566565b6108125760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e6565b61081c8383611136565b505050565b61082b33826111a4565b6108475760405162461bcd60e51b81526004016106e690611fb1565b61081c83838361129b565b600a546001600160a01b0316331461087c5760405162461bcd60e51b81526004016106e690611f7c565b805161088f90600e906020840190611a4e565b5050565b600061089e83610cc5565b82106109005760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106e6565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109535760405162461bcd60e51b81526004016106e690611f7c565b600061095e600b5490565b9050603261096c8284611446565b11156109ad5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f756768204e4654732160801b60448201526064016106e6565b60005b8281101561081c576109c06114a5565b806109ca81612098565b9150506109b0565b600a546001600160a01b031633146109fc5760405162461bcd60e51b81526004016106e690611f7c565b4780610a4a5760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f2077697468647261770000000000000060448201526064016106e6565b604051600090339083908381818185875af1925050503d8060008114610a8c576040519150601f19603f3d011682016040523d82523d6000602084013e610a91565b606091505b505090508061088f5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016106e6565b600e8054610ae29061205d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0e9061205d565b8015610b5b5780601f10610b3057610100808354040283529160200191610b5b565b820191906000526020600020905b815481529060010190602001808311610b3e57829003601f168201915b505050505081565b61081c83838360405180602001604052806000815250610f32565b6000610b8960085490565b8210610bec5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106e6565b60088281548110610bff57610bff6120df565b90600052602060002001549050919050565b600a546001600160a01b03163314610c3b5760405162461bcd60e51b81526004016106e690611f7c565b805161088f90600d906020840190611a4e565b6000818152600260205260408120546001600160a01b0316806105d95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106e6565b60006001600160a01b038216610d305760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e6565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d765760405162461bcd60e51b81526004016106e690611f7c565b610d8060006114ca565b565b60606000610d8f83610cc5565b905060008167ffffffffffffffff811115610dac57610dac6120f5565b604051908082528060200260200182016040528015610dd5578160200160208202803683370190505b50905060005b82811015610e1c57610ded8582610893565b828281518110610dff57610dff6120df565b602090810291909101015280610e1481612098565b915050610ddb565b509392505050565b600a546001600160a01b03163314610e4e5760405162461bcd60e51b81526004016106e690611f7c565b600c55565b61088f338284610b63565b6060600180546105ee9061205d565b6001600160a01b038216331415610ec65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e6565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f3c33836111a4565b610f585760405162461bcd60e51b81526004016106e690611fb1565b610f648484848461151c565b50505050565b6000818152600260205260409020546060906001600160a01b0316610fe95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e6565b6000610ff361154f565b905060008151116110135760405180602001604052806000815250611037565b80600e604051602001611027929190611dd0565b6040516020818303038152906040525b9392505050565b600d8054610ae29061205d565b600a546001600160a01b031633146110755760405162461bcd60e51b81526004016106e690611f7c565b6001600160a01b0381166110da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e6565b6110e3816114ca565b50565b60006001600160e01b031982166380ac58cd60e01b148061111757506001600160e01b03198216635b5e139f60e01b145b806105d957506301ffc9a760e01b6001600160e01b03198316146105d9565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061116b82610c4e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661121d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e6565b600061122883610c4e565b9050806001600160a01b0316846001600160a01b031614806112635750836001600160a01b031661125884610671565b6001600160a01b0316145b8061129357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112ae82610c4e565b6001600160a01b0316146113165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106e6565b6001600160a01b0382166113785760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e6565b61138383838361155e565b61138e600082611136565b6001600160a01b03831660009081526003602052604081208054600192906113b790849061201a565b90915550506001600160a01b03821660009081526003602052604081208054600192906113e5908490612002565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806114538385612002565b9050838110156110375760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016106e6565b6114b3600b80546001019055565b60006114be600b5490565b90506110e33382611616565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61152784848461129b565b61153384848484611630565b610f645760405162461bcd60e51b81526004016106e690611f2a565b6060600d80546105ee9061205d565b6001600160a01b0383166115b9576115b481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6115dc565b816001600160a01b0316836001600160a01b0316146115dc576115dc838261173d565b6001600160a01b0382166115f35761081c816117da565b826001600160a01b0316826001600160a01b03161461081c5761081c8282611889565b61088f8282604051806020016040528060008152506118cd565b60006001600160a01b0384163b1561173257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611674903390899088908890600401611e96565b602060405180830381600087803b15801561168e57600080fd5b505af19250505080156116be575060408051601f3d908101601f191682019092526116bb91810190611d02565b60015b611718573d8080156116ec576040519150601f19603f3d011682016040523d82523d6000602084013e6116f1565b606091505b5080516117105760405162461bcd60e51b81526004016106e690611f2a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611293565b506001949350505050565b6000600161174a84610cc5565b611754919061201a565b6000838152600760205260409020549091508082146117a7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906117ec9060019061201a565b60008381526009602052604081205460088054939450909284908110611814576118146120df565b906000526020600020015490508060088381548110611835576118356120df565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061186d5761186d6120c9565b6001900381819060005260206000200160009055905550505050565b600061189483610cc5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6118d78383611900565b6118e46000848484611630565b61081c5760405162461bcd60e51b81526004016106e690611f2a565b6001600160a01b0382166119565760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e6565b6000818152600260205260409020546001600160a01b0316156119bb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e6565b6119c76000838361155e565b6001600160a01b03821660009081526003602052604081208054600192906119f0908490612002565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a5a9061205d565b90600052602060002090601f016020900481019282611a7c5760008555611ac2565b82601f10611a9557805160ff1916838001178555611ac2565b82800160010185558215611ac2579182015b82811115611ac2578251825591602001919060010190611aa7565b50611ace929150611ad2565b5090565b5b80821115611ace5760008155600101611ad3565b600067ffffffffffffffff80841115611b0257611b026120f5565b604051601f8501601f19908116603f01168101908282118183101715611b2a57611b2a6120f5565b81604052809350858152868686011115611b4357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b7457600080fd5b919050565b600060208284031215611b8b57600080fd5b61103782611b5d565b60008060408385031215611ba757600080fd5b611bb083611b5d565b9150611bbe60208401611b5d565b90509250929050565b600080600060608486031215611bdc57600080fd5b611be584611b5d565b9250611bf360208501611b5d565b9150604084013590509250925092565b60008060008060808587031215611c1957600080fd5b611c2285611b5d565b9350611c3060208601611b5d565b925060408501359150606085013567ffffffffffffffff811115611c5357600080fd5b8501601f81018713611c6457600080fd5b611c7387823560208401611ae7565b91505092959194509250565b60008060408385031215611c9257600080fd5b611c9b83611b5d565b915060208301358015158114611cb057600080fd5b809150509250929050565b60008060408385031215611cce57600080fd5b611cd783611b5d565b946020939093013593505050565b600060208284031215611cf757600080fd5b81356110378161210b565b600060208284031215611d1457600080fd5b81516110378161210b565b600060208284031215611d3157600080fd5b813567ffffffffffffffff811115611d4857600080fd5b8201601f81018413611d5957600080fd5b61129384823560208401611ae7565b600060208284031215611d7a57600080fd5b5035919050565b60008060408385031215611d9457600080fd5b82359150611bbe60208401611b5d565b60008151808452611dbc816020860160208601612031565b601f01601f19169290920160200192915050565b600083516020611de38285838901612031565b845491840191600090600181811c9080831680611e0157607f831692505b858310811415611e1f57634e487b7160e01b85526022600452602485fd5b808015611e335760018114611e4457611e71565b60ff19851688528388019550611e71565b60008b81526020902060005b85811015611e695781548a820152908401908801611e50565b505083880195505b5050505050611e8b8164173539b7b760d91b815260050190565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ec990830184611da4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f0b57835183529284019291840191600101611eef565b50909695505050505050565b6020815260006110376020830184611da4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612015576120156120b3565b500190565b60008282101561202c5761202c6120b3565b500390565b60005b8381101561204c578181015183820152602001612034565b83811115610f645750506000910152565b600181811c9082168061207157607f821691505b6020821081141561209257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120ac576120ac6120b3565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110e357600080fdfea2646970667358221220d73cc76a0b9e481e2948ab6d2d73f09022ad21048d5d6c242edcd59de7e561a064736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000b426174746c652047617465000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b426174746c652047617465000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b626174746c655f676174650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d66416a4c7a6434386a4674704b3572626a4362314e4877765063594e73474d573168756d6a614279567a56502f00000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Battle Gate
Arg [1] : symbol (string): Battle Gate
Arg [2] : metadataName_ (string): battle_gate
Arg [3] : baseURI (string): ipfs://QmfAjLzd48jFtpK5rbjCb1NHwvPcYNsGMW1humjaByVzVP/

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 426174746c652047617465000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [7] : 426174746c652047617465000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [9] : 626174746c655f67617465000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [11] : 697066733a2f2f516d66416a4c7a6434386a4674704b3572626a4362314e4877
Arg [12] : 765063594e73474d573168756d6a614279567a56502f00000000000000000000


Deployed Bytecode Sourcemap

47495:2878:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37276:224;;;;;;;;;;-1:-1:-1;37276:224:0;;;;;:::i;:::-;;:::i;:::-;;;7862:14:1;;7855:22;7837:41;;7825:2;7810:18;37276:224:0;;;;;;;;25284:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26843:221::-;;;;;;;;;;-1:-1:-1;26843:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6523:32:1;;;6505:51;;6493:2;6478:18;26843:221:0;6359:203:1;26366:411:0;;;;;;;;;;-1:-1:-1;26366:411:0;;;;;:::i;:::-;;:::i;:::-;;47792:41;;;;;;;;;;;;47831:2;47792:41;;;;;16866:25:1;;;16854:2;16839:18;47792:41:0;16720:177:1;37916:113:0;;;;;;;;;;-1:-1:-1;38004:10:0;:17;37916:113;;27733:339;;;;;;;;;;-1:-1:-1;27733:339:0;;;;;:::i;:::-;;:::i;50241:127::-;;;;;;;;;;-1:-1:-1;50241:127:0;;;;;:::i;:::-;;:::i;37584:256::-;;;;;;;;;;-1:-1:-1;37584:256:0;;;;;:::i;:::-;;:::i;47707:39::-;;;;;;;;;;;;47744:2;47707:39;;48841:301;;;;;;:::i;:::-;;:::i;49730:277::-;;;:::i;47873:26::-;;;;;;;;;;;;;:::i;28143:185::-;;;;;;;;;;-1:-1:-1;28143:185:0;;;;;:::i;:::-;;:::i;38106:233::-;;;;;;;;;;-1:-1:-1;38106:233:0;;;;;:::i;:::-;;:::i;48720:113::-;;;;;;;;;;-1:-1:-1;48720:113:0;;;;;:::i;:::-;;:::i;24978:239::-;;;;;;;;;;-1:-1:-1;24978:239:0;;;;;:::i;:::-;;:::i;24708:208::-;;;;;;;;;;-1:-1:-1;24708:208:0;;;;;:::i;:::-;;:::i;5127:94::-;;;;;;;;;;;;;:::i;49339:383::-;;;;;;;;;;-1:-1:-1;49339:383:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50140:93::-;;;;;;;;;;-1:-1:-1;50140:93:0;;;;;:::i;:::-;;:::i;47753:32::-;;;;;;;;;;;;;;;;4476:87;;;;;;;;;;-1:-1:-1;4549:6:0;;-1:-1:-1;;;;;4549:6:0;4476:87;;50015:117;;;;;;;;;;-1:-1:-1;50015:117:0;;;;;:::i;:::-;;:::i;25453:104::-;;;;;;;;;;;;;:::i;27136:295::-;;;;;;;;;;-1:-1:-1;27136:295:0;;;;;:::i;:::-;;:::i;28399:328::-;;;;;;;;;;-1:-1:-1;28399:328:0;;;;;:::i;:::-;;:::i;48241:471::-;;;;;;;;;;-1:-1:-1;48241:471:0;;;;;:::i;:::-;;:::i;47840:26::-;;;;;;;;;;;;;:::i;27502:164::-;;;;;;;;;;-1:-1:-1;27502:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27623:25:0;;;27599:4;27623:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27502:164;5376:192;;;;;;;;;;-1:-1:-1;5376:192:0;;;;;:::i;:::-;;:::i;37276:224::-;37378:4;-1:-1:-1;;;;;;37402:50:0;;-1:-1:-1;;;37402:50:0;;:90;;;37456:36;37480:11;37456:23;:36::i;:::-;37395:97;37276:224;-1:-1:-1;;37276:224:0:o;25284:100::-;25338:13;25371:5;25364:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25284:100;:::o;26843:221::-;26919:7;30326:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30326:16:0;26939:73;;;;-1:-1:-1;;;26939:73:0;;13744:2:1;26939:73:0;;;13726:21:1;13783:2;13763:18;;;13756:30;13822:34;13802:18;;;13795:62;-1:-1:-1;;;13873:18:1;;;13866:42;13925:19;;26939:73:0;;;;;;;;;-1:-1:-1;27032:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27032:24:0;;26843:221::o;26366:411::-;26447:13;26463:23;26478:7;26463:14;:23::i;:::-;26447:39;;26511:5;-1:-1:-1;;;;;26505:11:0;:2;-1:-1:-1;;;;;26505:11:0;;;26497:57;;;;-1:-1:-1;;;26497:57:0;;15344:2:1;26497:57:0;;;15326:21:1;15383:2;15363:18;;;15356:30;15422:34;15402:18;;;15395:62;-1:-1:-1;;;15473:18:1;;;15466:31;15514:19;;26497:57:0;15142:397:1;26497:57:0;3939:10;-1:-1:-1;;;;;26589:21:0;;;;:62;;-1:-1:-1;26614:37:0;26631:5;3939:10;27502:164;:::i;26614:37::-;26567:168;;;;-1:-1:-1;;;26567:168:0;;11783:2:1;26567:168:0;;;11765:21:1;11822:2;11802:18;;;11795:30;11861:34;11841:18;;;11834:62;11932:26;11912:18;;;11905:54;11976:19;;26567:168:0;11581:420:1;26567:168:0;26748:21;26757:2;26761:7;26748:8;:21::i;:::-;26436:341;26366:411;;:::o;27733:339::-;27928:41;3939:10;27961:7;27928:18;:41::i;:::-;27920:103;;;;-1:-1:-1;;;27920:103:0;;;;;;;:::i;:::-;28036:28;28046:4;28052:2;28056:7;28036:9;:28::i;50241:127::-;4549:6;;-1:-1:-1;;;;;4549:6:0;3939:10;4696:23;4688:68;;;;-1:-1:-1;;;4688:68:0;;;;;;;:::i;:::-;50329:31;;::::1;::::0;:12:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50241:127:::0;:::o;37584:256::-;37681:7;37717:23;37734:5;37717:16;:23::i;:::-;37709:5;:31;37701:87;;;;-1:-1:-1;;;37701:87:0;;8660:2:1;37701:87:0;;;8642:21:1;8699:2;8679:18;;;8672:30;8738:34;8718:18;;;8711:62;-1:-1:-1;;;8789:18:1;;;8782:41;8840:19;;37701:87:0;8458:407:1;37701:87:0;-1:-1:-1;;;;;;37806:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37584:256::o;48841:301::-;4549:6;;-1:-1:-1;;;;;4549:6:0;3939:10;4696:23;4688:68;;;;-1:-1:-1;;;4688:68:0;;;;;;;:::i;:::-;48910:19:::1;48932:25;:15;46994:14:::0;;46902:114;48932:25:::1;48910:47:::0;-1:-1:-1;47744:2:0::1;48976:23;48910:47:::0;48992:6;48976:15:::1;:23::i;:::-;:37;;48968:66;;;::::0;-1:-1:-1;;;48968:66:0;;8315:2:1;48968:66:0::1;::::0;::::1;8297:21:1::0;8354:2;8334:18;;;8327:30;-1:-1:-1;;;8373:18:1;;;8366:46;8429:18;;48968:66:0::1;8113:340:1::0;48968:66:0::1;49060:9;49055:80;49079:6;49075:1;:10;49055:80;;;49107:16;:14;:16::i;:::-;49087:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49055:80;;49730:277:::0;4549:6;;-1:-1:-1;;;;;4549:6:0;3939:10;4696:23;4688:68;;;;-1:-1:-1;;;4688:68:0;;;;;;;:::i;:::-;49804:21:::1;49844:11:::0;49836:49:::1;;;::::0;-1:-1:-1;;;49836:49:0;;13390:2:1;49836:49:0::1;::::0;::::1;13372:21:1::0;13429:2;13409:18;;;13402:30;13468:27;13448:18;;;13441:55;13513:18;;49836:49:0::1;13188:349:1::0;49836:49:0::1;49915:37;::::0;49897:12:::1;::::0;49916:10:::1;::::0;49940:7;;49897:12;49915:37;49897:12;49915:37;49940:7;49916:10;49915:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49896:56;;;49971:7;49963:36;;;::::0;-1:-1:-1;;;49963:36:0;;15746:2:1;49963:36:0::1;::::0;::::1;15728:21:1::0;15785:2;15765:18;;;15758:30;-1:-1:-1;;;15804:18:1;;;15797:46;15860:18;;49963:36:0::1;15544:340:1::0;47873:26:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28143:185::-;28281:39;28298:4;28304:2;28308:7;28281:39;;;;;;;;;;;;:16;:39::i;38106:233::-;38181:7;38217:30;38004:10;:17;;37916:113;38217:30;38209:5;:38;38201:95;;;;-1:-1:-1;;;38201:95:0;;16509:2:1;38201:95:0;;;16491:21:1;16548:2;16528:18;;;16521:30;16587:34;16567:18;;;16560:62;-1:-1:-1;;;16638:18:1;;;16631:42;16690:19;;38201:95:0;16307:408:1;38201:95:0;38314:10;38325:5;38314:17;;;;;;;;:::i;:::-;;;;;;;;;38307:24;;38106:233;;;:::o;48720:113::-;4549:6;;-1:-1:-1;;;;;4549:6:0;3939:10;4696:23;4688:68;;;;-1:-1:-1;;;4688:68:0;;;;;;;:::i;:::-;48797:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;24978:239::-:0;25050:7;25086:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25086:16:0;25121:19;25113:73;;;;-1:-1:-1;;;25113:73:0;;12619:2:1;25113:73:0;;;12601:21:1;12658:2;12638:18;;;12631:30;12697:34;12677:18;;;12670:62;-1:-1:-1;;;12748:18:1;;;12741:39;12797:19;;25113:73:0;12417:405:1;24708:208:0;24780:7;-1:-1:-1;;;;;24808:19:0;;24800:74;;;;-1:-1:-1;;;24800:74:0;;12208:2:1;24800:74:0;;;12190:21:1;12247:2;12227:18;;;12220:30;12286:34;12266:18;;;12259:62;-1:-1:-1;;;12337:18:1;;;12330:40;12387:19;;24800:74:0;12006:406:1;24800:74:0;-1:-1:-1;;;;;;24892:16:0;;;;;:9;:16;;;;;;;24708:208::o;5127:94::-;4549:6;;-1:-1:-1;;;;;4549:6:0;3939:10;4696:23;4688:68;;;;-1:-1:-1;;;4688:68:0;;;;;;;:::i;:::-;5192:21:::1;5210:1;5192:9;:21::i;:::-;5127:94::o:0;49339:383::-;49428:16;49462:18;49483:17;49493:6;49483:9;:17::i;:::-;49462:38;;49511:25;49553:10;49539:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49539:25:0;;49511:53;;49580:9;49575:112;49599:10;49595:1;:14;49575:112;;;49645:30;49665:6;49673:1;49645:19;:30::i;:::-;49631:8;49640:1;49631:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;49611:3;;;;:::i;:::-;;;;49575:112;;;-1:-1:-1;49706:8:0;49339:383;-1:-1:-1;;;49339:383:0:o;50140:93::-;4549:6;;-1:-1:-1;;;;;4549:6:0;3939:10;4696:23;4688:68;;;;-1:-1:-1;;;4688:68:0;;;;;;;:::i;:::-;50208:5:::1;:17:::0;50140:93::o;50015:117::-;50083:41;50100:10;50112:2;50116:7;50083:16;:41::i;25453:104::-;25509:13;25542:7;25535:14;;;;;:::i;27136:295::-;-1:-1:-1;;;;;27239:24:0;;3939:10;27239:24;;27231:62;;;;-1:-1:-1;;;27231:62:0;;11016:2:1;27231:62:0;;;10998:21:1;11055:2;11035:18;;;11028:30;11094:27;11074:18;;;11067:55;11139:18;;27231:62:0;10814:349:1;27231:62:0;3939:10;27306:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27306:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27306:53:0;;;;;;;;;;27375:48;;7837:41:1;;;27306:42:0;;3939:10;27375:48;;7810:18:1;27375:48:0;;;;;;;27136:295;;:::o;28399:328::-;28574:41;3939:10;28607:7;28574:18;:41::i;:::-;28566:103;;;;-1:-1:-1;;;28566:103:0;;;;;;;:::i;:::-;28680:39;28694:4;28700:2;28704:7;28713:5;28680:13;:39::i;:::-;28399:328;;;;:::o;48241:471::-;30302:4;30326:16;;;:7;:16;;;;;;48359:13;;-1:-1:-1;;;;;30326:16:0;48390:113;;;;-1:-1:-1;;;48390:113:0;;14928:2:1;48390:113:0;;;14910:21:1;14967:2;14947:18;;;14940:30;15006:34;14986:18;;;14979:62;-1:-1:-1;;;15057:18:1;;;15050:45;15112:19;;48390:113:0;14726:411:1;48390:113:0;48516:21;48540:10;:8;:10::i;:::-;48516:34;;48605:1;48587:7;48581:21;:25;:123;;;;;;;;;;;;;;;;;48650:7;48659:12;48633:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48581:123;48561:143;48241:471;-1:-1:-1;;;48241:471:0:o;47840:26::-;;;;;;;:::i;5376:192::-;4549:6;;-1:-1:-1;;;;;4549:6:0;3939:10;4696:23;4688:68;;;;-1:-1:-1;;;4688:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5465:22:0;::::1;5457:73;;;::::0;-1:-1:-1;;;5457:73:0;;9491:2:1;5457:73:0::1;::::0;::::1;9473:21:1::0;9530:2;9510:18;;;9503:30;9569:34;9549:18;;;9542:62;-1:-1:-1;;;9620:18:1;;;9613:36;9666:19;;5457:73:0::1;9289:402:1::0;5457:73:0::1;5541:19;5551:8;5541:9;:19::i;:::-;5376:192:::0;:::o;24339:305::-;24441:4;-1:-1:-1;;;;;;24478:40:0;;-1:-1:-1;;;24478:40:0;;:105;;-1:-1:-1;;;;;;;24535:48:0;;-1:-1:-1;;;24535:48:0;24478:105;:158;;;-1:-1:-1;;;;;;;;;;6433:40:0;;;24600:36;6324:157;34219:174;34294:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34294:29:0;-1:-1:-1;;;;;34294:29:0;;;;;;;;:24;;34348:23;34294:24;34348:14;:23::i;:::-;-1:-1:-1;;;;;34339:46:0;;;;;;;;;;;34219:174;;:::o;30531:348::-;30624:4;30326:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30326:16:0;30641:73;;;;-1:-1:-1;;;30641:73:0;;11370:2:1;30641:73:0;;;11352:21:1;11409:2;11389:18;;;11382:30;11448:34;11428:18;;;11421:62;-1:-1:-1;;;11499:18:1;;;11492:42;11551:19;;30641:73:0;11168:408:1;30641:73:0;30725:13;30741:23;30756:7;30741:14;:23::i;:::-;30725:39;;30794:5;-1:-1:-1;;;;;30783:16:0;:7;-1:-1:-1;;;;;30783:16:0;;:51;;;;30827:7;-1:-1:-1;;;;;30803:31:0;:20;30815:7;30803:11;:20::i;:::-;-1:-1:-1;;;;;30803:31:0;;30783:51;:87;;;-1:-1:-1;;;;;;27623:25:0;;;27599:4;27623:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30838:32;30775:96;30531:348;-1:-1:-1;;;;30531:348:0:o;33523:578::-;33682:4;-1:-1:-1;;;;;33655:31:0;:23;33670:7;33655:14;:23::i;:::-;-1:-1:-1;;;;;33655:31:0;;33647:85;;;;-1:-1:-1;;;33647:85:0;;14518:2:1;33647:85:0;;;14500:21:1;14557:2;14537:18;;;14530:30;14596:34;14576:18;;;14569:62;-1:-1:-1;;;14647:18:1;;;14640:39;14696:19;;33647:85:0;14316:405:1;33647:85:0;-1:-1:-1;;;;;33751:16:0;;33743:65;;;;-1:-1:-1;;;33743:65:0;;10611:2:1;33743:65:0;;;10593:21:1;10650:2;10630:18;;;10623:30;10689:34;10669:18;;;10662:62;-1:-1:-1;;;10740:18:1;;;10733:34;10784:19;;33743:65:0;10409:400:1;33743:65:0;33821:39;33842:4;33848:2;33852:7;33821:20;:39::i;:::-;33925:29;33942:1;33946:7;33925:8;:29::i;:::-;-1:-1:-1;;;;;33967:15:0;;;;;;:9;:15;;;;;:20;;33986:1;;33967:15;:20;;33986:1;;33967:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33998:13:0;;;;;;:9;:13;;;;;:18;;34015:1;;33998:13;:18;;34015:1;;33998:18;:::i;:::-;;;;-1:-1:-1;;34027:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34027:21:0;-1:-1:-1;;;;;34027:21:0;;;;;;;;;34066:27;;34027:16;;34066:27;;;;;;;33523:578;;;:::o;83:181::-;141:7;;173:5;177:1;173;:5;:::i;:::-;161:17;;202:1;197;:6;;189:46;;;;-1:-1:-1;;;189:46:0;;10255:2:1;189:46:0;;;10237:21:1;10294:2;10274:18;;;10267:30;10333:29;10313:18;;;10306:57;10380:18;;189:46:0;10053:351:1;49150:181:0;49195:27;:15;47113:19;;47131:1;47113:19;;;47024:127;49195:27;49233:18;49254:25;:15;46994:14;;46902:114;49254:25;49233:46;;49290:33;49300:10;49312;49290:9;:33::i;5576:173::-;5651:6;;;-1:-1:-1;;;;;5668:17:0;;;-1:-1:-1;;;;;;5668:17:0;;;;;;;5701:40;;5651:6;;;5668:17;5651:6;;5701:40;;5632:16;;5701:40;5621:128;5576:173;:::o;29609:315::-;29766:28;29776:4;29782:2;29786:7;29766:9;:28::i;:::-;29813:48;29836:4;29842:2;29846:7;29855:5;29813:22;:48::i;:::-;29805:111;;;;-1:-1:-1;;;29805:111:0;;;;;;;:::i;48120:113::-;48180:13;48213:12;48206:19;;;;;:::i;38952:589::-;-1:-1:-1;;;;;39158:18:0;;39154:187;;39193:40;39225:7;40368:10;:17;;40341:24;;;;:15;:24;;;;;:44;;;40396:24;;;;;;;;;;;;40264:164;39193:40;39154:187;;;39263:2;-1:-1:-1;;;;;39255:10:0;:4;-1:-1:-1;;;;;39255:10:0;;39251:90;;39282:47;39315:4;39321:7;39282:32;:47::i;:::-;-1:-1:-1;;;;;39355:16:0;;39351:183;;39388:45;39425:7;39388:36;:45::i;39351:183::-;39461:4;-1:-1:-1;;;;;39455:10:0;:2;-1:-1:-1;;;;;39455:10:0;;39451:83;;39482:40;39510:2;39514:7;39482:27;:40::i;31221:110::-;31297:26;31307:2;31311:7;31297:26;;;;;;;;;;;;:9;:26::i;34958:799::-;35113:4;-1:-1:-1;;;;;35134:13:0;;14119:20;14167:8;35130:620;;35170:72;;-1:-1:-1;;;35170:72:0;;-1:-1:-1;;;;;35170:36:0;;;;;:72;;3939:10;;35221:4;;35227:7;;35236:5;;35170:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35170:72:0;;;;;;;;-1:-1:-1;;35170:72:0;;;;;;;;;;;;:::i;:::-;;;35166:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35412:13:0;;35408:272;;35455:60;;-1:-1:-1;;;35455:60:0;;;;;;;:::i;35408:272::-;35630:6;35624:13;35615:6;35611:2;35607:15;35600:38;35166:529;-1:-1:-1;;;;;;35293:51:0;-1:-1:-1;;;35293:51:0;;-1:-1:-1;35286:58:0;;35130:620;-1:-1:-1;35734:4:0;34958:799;;;;;;:::o;41055:988::-;41321:22;41371:1;41346:22;41363:4;41346:16;:22::i;:::-;:26;;;;:::i;:::-;41383:18;41404:26;;;:17;:26;;;;;;41321:51;;-1:-1:-1;41537:28:0;;;41533:328;;-1:-1:-1;;;;;41604:18:0;;41582:19;41604:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41655:30;;;;;;:44;;;41772:30;;:17;:30;;;;;:43;;;41533:328;-1:-1:-1;41957:26:0;;;;:17;:26;;;;;;;;41950:33;;;-1:-1:-1;;;;;42001:18:0;;;;;:12;:18;;;;;:34;;;;;;;41994:41;41055:988::o;42338:1079::-;42616:10;:17;42591:22;;42616:21;;42636:1;;42616:21;:::i;:::-;42648:18;42669:24;;;:15;:24;;;;;;43042:10;:26;;42591:46;;-1:-1:-1;42669:24:0;;42591:46;;43042:26;;;;;;:::i;:::-;;;;;;;;;43020:48;;43106:11;43081:10;43092;43081:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;43186:28;;;:15;:28;;;;;;;:41;;;43358:24;;;;;43351:31;43393:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42409:1008;;;42338:1079;:::o;39842:221::-;39927:14;39944:20;39961:2;39944:16;:20::i;:::-;-1:-1:-1;;;;;39975:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;40020:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39842:221:0:o;31558:321::-;31688:18;31694:2;31698:7;31688:5;:18::i;:::-;31739:54;31770:1;31774:2;31778:7;31787:5;31739:22;:54::i;:::-;31717:154;;;;-1:-1:-1;;;31717:154:0;;;;;;;:::i;32215:382::-;-1:-1:-1;;;;;32295:16:0;;32287:61;;;;-1:-1:-1;;;32287:61:0;;13029:2:1;32287:61:0;;;13011:21:1;;;13048:18;;;13041:30;13107:34;13087:18;;;13080:62;13159:18;;32287:61:0;12827:356:1;32287:61:0;30302:4;30326:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30326:16:0;:30;32359:58;;;;-1:-1:-1;;;32359:58:0;;9898:2:1;32359:58:0;;;9880:21:1;9937:2;9917:18;;;9910:30;9976;9956:18;;;9949:58;10024:18;;32359:58:0;9696:352:1;32359:58:0;32430:45;32459:1;32463:2;32467:7;32430:20;:45::i;:::-;-1:-1:-1;;;;;32488:13:0;;;;;;:9;:13;;;;;:18;;32505:1;;32488:13;:18;;32505:1;;32488:18;:::i;:::-;;;;-1:-1:-1;;32517:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32517:21:0;-1:-1:-1;;;;;32517:21:0;;;;;;;;32556:33;;32517:16;;;32556:33;;32517:16;;32556:33;32215:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:254::-;4111:6;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4224:9;4211:23;4201:33;;4253:38;4287:2;4276:9;4272:18;4253:38;:::i;4302:257::-;4343:3;4381:5;4375:12;4408:6;4403:3;4396:19;4424:63;4480:6;4473:4;4468:3;4464:14;4457:4;4450:5;4446:16;4424:63;:::i;:::-;4541:2;4520:15;-1:-1:-1;;4516:29:1;4507:39;;;;4548:4;4503:50;;4302:257;-1:-1:-1;;4302:257:1:o;4682:1462::-;4959:3;4997:6;4991:13;5023:4;5036:51;5080:6;5075:3;5070:2;5062:6;5058:15;5036:51;:::i;:::-;5172:13;;5109:16;;;;5145:1;;5232;5254:18;;;;5307;;;;5334:93;;5412:4;5402:8;5398:19;5386:31;;5334:93;5475:2;5465:8;5462:16;5442:18;5439:40;5436:167;;;-1:-1:-1;;;5502:33:1;;5558:4;5555:1;5548:15;5588:4;5509:3;5576:17;5436:167;5619:18;5646:110;;;;5770:1;5765:328;;;;5612:481;;5646:110;-1:-1:-1;;5681:24:1;;5667:39;;5726:20;;;;-1:-1:-1;5646:110:1;;5765:328;16975:1;16968:14;;;17012:4;16999:18;;5860:1;5874:169;5888:8;5885:1;5882:15;5874:169;;;5970:14;;5955:13;;;5948:37;6013:16;;;;5905:10;;5874:169;;;5878:3;;6074:8;6067:5;6063:20;6056:27;;5612:481;;;;;;6109:29;6134:3;-1:-1:-1;;;4624:20:1;;4669:1;4660:11;;4564:113;6109:29;6102:36;4682:1462;-1:-1:-1;;;;;;;4682:1462:1:o;6567:488::-;-1:-1:-1;;;;;6836:15:1;;;6818:34;;6888:15;;6883:2;6868:18;;6861:43;6935:2;6920:18;;6913:34;;;6983:3;6978:2;6963:18;;6956:31;;;6761:4;;7004:45;;7029:19;;7021:6;7004:45;:::i;:::-;6996:53;6567:488;-1:-1:-1;;;;;;6567:488:1:o;7060:632::-;7231:2;7283:21;;;7353:13;;7256:18;;;7375:22;;;7202:4;;7231:2;7454:15;;;;7428:2;7413:18;;;7202:4;7497:169;7511:6;7508:1;7505:13;7497:169;;;7572:13;;7560:26;;7641:15;;;;7606:12;;;;7533:1;7526:9;7497:169;;;-1:-1:-1;7683:3:1;;7060:632;-1:-1:-1;;;;;;7060:632:1:o;7889:219::-;8038:2;8027:9;8020:21;8001:4;8058:44;8098:2;8087:9;8083:18;8075:6;8058:44;:::i;8870:414::-;9072:2;9054:21;;;9111:2;9091:18;;;9084:30;9150:34;9145:2;9130:18;;9123:62;-1:-1:-1;;;9216:2:1;9201:18;;9194:48;9274:3;9259:19;;8870:414::o;13955:356::-;14157:2;14139:21;;;14176:18;;;14169:30;14235:34;14230:2;14215:18;;14208:62;14302:2;14287:18;;13955:356::o;15889:413::-;16091:2;16073:21;;;16130:2;16110:18;;;16103:30;16169:34;16164:2;16149:18;;16142:62;-1:-1:-1;;;16235:2:1;16220:18;;16213:47;16292:3;16277:19;;15889:413::o;17028:128::-;17068:3;17099:1;17095:6;17092:1;17089:13;17086:39;;;17105:18;;:::i;:::-;-1:-1:-1;17141:9:1;;17028:128::o;17161:125::-;17201:4;17229:1;17226;17223:8;17220:34;;;17234:18;;:::i;:::-;-1:-1:-1;17271:9:1;;17161:125::o;17291:258::-;17363:1;17373:113;17387:6;17384:1;17381:13;17373:113;;;17463:11;;;17457:18;17444:11;;;17437:39;17409:2;17402:10;17373:113;;;17504:6;17501:1;17498:13;17495:48;;;-1:-1:-1;;17539:1:1;17521:16;;17514:27;17291:258::o;17554:380::-;17633:1;17629:12;;;;17676;;;17697:61;;17751:4;17743:6;17739:17;17729:27;;17697:61;17804:2;17796:6;17793:14;17773:18;17770:38;17767:161;;;17850:10;17845:3;17841:20;17838:1;17831:31;17885:4;17882:1;17875:15;17913:4;17910:1;17903:15;17767:161;;17554:380;;;:::o;17939:135::-;17978:3;-1:-1:-1;;17999:17:1;;17996:43;;;18019:18;;:::i;:::-;-1:-1:-1;18066:1:1;18055:13;;17939:135::o;18079:127::-;18140:10;18135:3;18131:20;18128:1;18121:31;18171:4;18168:1;18161:15;18195:4;18192:1;18185:15;18211:127;18272:10;18267:3;18263:20;18260:1;18253:31;18303:4;18300:1;18293:15;18327:4;18324:1;18317:15;18343:127;18404:10;18399:3;18395:20;18392:1;18385:31;18435:4;18432:1;18425:15;18459:4;18456:1;18449:15;18475:127;18536:10;18531:3;18527:20;18524:1;18517:31;18567:4;18564:1;18557:15;18591:4;18588:1;18581:15;18607:131;-1:-1:-1;;;;;;18681:32:1;;18671:43;;18661:71;;18728:1;18725;18718:12

Swarm Source

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