ETH Price: $2,611.04 (-2.09%)

Token

S Passport (SOD)
 

Overview

Max Total Supply

8,300 SOD

Holders

317

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SOD
0x3b45d31d6820294ab8187a64313550e224faf0ad
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

S Passport is PFP providing service attached to SOD Portal.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ERC721

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 10: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

/**
 * @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, Ownable {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // current Number of Token
    uint256 internal _numberOfToken;

    // max Mint Number
    uint256 internal _totalNumber;


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

    // g: burning
    mapping(uint => bool) private _burnTokens;

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

    string public baseURI;
    mapping(uint => string) public lockUri;
    mapping(address => bool) public minters;
    mapping(uint256 => bool) tokenExist;
    event Minter(address _m,bool _o);
    event SetURI(uint _id,string _ipfs);
    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_, uint256 totalNumber_) {
        _name = name_;
        _symbol = symbol_;
        _totalNumber = totalNumber_;
    }

    /**
     * @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];
        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;
    }
    function setBase(string memory _uri) public onlyOwner{
        baseURI = _uri;
    }
    function exist(uint _id) external view returns (bool) {
        return tokenExist[_id];
    }
    function setMinter(address _minter,bool _open) public onlyOwner{
        minters[_minter] = _open;
        emit Minter(_minter,_open);
    }
    // function setTotalNumber(uint256 totalNumber_) public onlyOwner{ 
    //     _totalNumber = totalNumber_;
    // }
    function setURI(uint _id,string memory _ipfs) public  {
        // // require(ownerOf(_id) == msg.sender && bytes(lockUri[_id]).length < 1,"403");
        require(minters[msg.sender],'ERROR 403');
        require(bytes(lockUri[_id]).length < 1,"403");
        _setURI(_id,_ipfs);
    }
    function strConcat(string memory _a, string memory _b) public pure returns (string memory){
        bytes memory _ba = bytes(_a);
        bytes memory _bb = bytes(_b);
        string memory ret = new string(_ba.length + _bb.length);
        bytes memory bret = bytes(ret);
        uint k = 0;
        uint i;
        for (i = 0; i < _ba.length; i++)bret[k++] = _ba[i];
        for (i = 0; i < _bb.length; i++) bret[k++] = _bb[i];
        return string(ret);
    }
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        
        if(bytes(lockUri[tokenId]).length > 0){
            return lockUri[tokenId];
        }else{
            return strConcat(baseURI,Strings.toString(tokenId));
        }
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }
    
    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view  returns (uint256) {
        return _totalNumber;
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function totalMinted() public view returns (uint256)  {
        return _numberOfToken;
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

    function _setURI(uint _id,string memory _ipfs) internal  {
        lockUri[_id] = _ipfs;
        emit SetURI(_id,_ipfs);
    }

    /**
     * @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 from,
    //     address to,
    //     uint _tokenID,
    //     bytes memory data,
    //     string memory _ipfs
    // ) public override virtual returns (uint) {
    //     require(minters[msg.sender],'ERROR 403');
    //     return _mint(from,to,_tokenID , data, _ipfs);
    // }
    // function _mint(address from,address to, uint256 tokenId,bytes memory data, string memory _ipfs) internal virtual  returns (uint){
    //     require(to != address(0), "ERC721: mint to the zero address");
    //     require(!_exists(tokenId), "ERC721: token already minted");
    //     require(data.length > 0, "lenght < 0");
    //     _beforeTokenTransfer(from, to, tokenId);

    //     _balances[to] += 1;
    //     _owners[tokenId] = to;
    //     tokenExist[tokenId] = true;
    //     bytes memory ipfsBytes = bytes(_ipfs);
    //     if(ipfsBytes.length != 0) {
    //         _setURI(tokenId, _ipfs);
    //     }
    //     emit Transfer(from, to, tokenId);
    //     return tokenId;
    // }

    // Original Minting
    function mint(
        address from,
        address to,
        uint _tokenID,
        bytes memory data
    ) public virtual returns (uint) {
        require(minters[msg.sender],'ERROR 403');
        require(!_burnTokens[_tokenID],'ERROR 401');
        return _mint(from,to,_tokenID,data);
    }
    function _mint(address from,address to, uint256 tokenId,bytes memory data) internal virtual  returns (uint){
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");
        require(data.length > 0, "lenght < 0");
        _beforeTokenTransfer(from, to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;
        tokenExist[tokenId] = true;
        _numberOfToken++;
        emit Transfer(from, to, tokenId);
        return tokenId;
    }
    
    function burn(uint256 tokenId) public virtual {
        require(_owners[tokenId] != address(0) && !_burnTokens[tokenId],'ERROR 401');
        require(msg.sender == _owners[tokenId],'ERROR 403');
        _burn(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;
        _numberOfToken -= 1;
        _burnTokens[tokenId] = true;

        delete _owners[tokenId];

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 10: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;


}


// pragma solidity ^0.8.0;

// import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

//     /**
//      * @dev Safely transfers `tokenId` token from `from` to `to`.
//      *
//      * Requirements:
//      *
//      * - `from` cannot be the zero address.
//      * - `to` cannot be the zero address.
//      * - `tokenId` token must exist and be owned by `from`.
//      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
//      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
//      *
//      * Emits a {Transfer} event.
//      */
//     function safeTransferFrom(
//         address from,
//         address to,
//         uint256 tokenId,
//         bytes calldata data
//     ) external;

//     // function mint(
//     //     address from,
//     //     address to,
//     //     uint _tokenID,
//     //     bytes memory data
//     // ) external returns (uint);

//     // function mintMulti(
//     //     address from,
//     //     address to,
//     //     uint[] memory _tokenIDs,
//     //     uint tokenIndex,
//     //     bytes memory data,
//     //     string[] memory _ipfs
//     // ) external;

//     function mintMulti(
//         address to,
//         uint tokenIndex,
//         bytes memory data
//     ) external;

//     // function setURI(uint _id,string memory _ipfs)  external;
// }

File 7 of 10: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

File 8 of 10: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 9 of 10: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalNumber_","type":"uint256"}],"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":false,"internalType":"address","name":"_m","type":"address"},{"indexed":false,"internalType":"bool","name":"_o","type":"bool"}],"name":"Minter","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":false,"internalType":"uint256","name":"_id","type":"uint256"},{"indexed":false,"internalType":"string","name":"_ipfs","type":"string"}],"name":"SetURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"exist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lockUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"},{"internalType":"bool","name":"_open","type":"bool"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"string","name":"_ipfs","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_a","type":"string"},{"internalType":"string","name":"_b","type":"string"}],"name":"strConcat","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200234138038062002341833981016040819052620000349162000225565b620000486200004262000080565b62000084565b82516200005d906001906020860190620000d4565b50815162000073906002906020850190620000d4565b5060045550620002e89050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620000e29062000295565b90600052602060002090601f01602090048101928262000106576000855562000151565b82601f106200012157805160ff191683800117855562000151565b8280016001018555821562000151579182015b828111156200015157825182559160200191906001019062000134565b506200015f92915062000163565b5090565b5b808211156200015f576000815560010162000164565b600082601f8301126200018b578081fd5b81516001600160401b0380821115620001a857620001a8620002d2565b6040516020601f8401601f1916820181018381118382101715620001d057620001d0620002d2565b6040528382528584018101871015620001e7578485fd5b8492505b838310156200020a5785830181015182840182015291820191620001eb565b838311156200021b57848185840101525b5095945050505050565b6000806000606084860312156200023a578283fd5b83516001600160401b038082111562000251578485fd5b6200025f878388016200017a565b9450602086015191508082111562000275578384fd5b5062000284868287016200017a565b925050604084015190509250925092565b600281046001821680620002aa57607f821691505b60208210811415620002cc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61204980620002f86000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063c87b56dd11610097578063f2fde38b11610071578063f2fde38b14610383578063f46eccc414610396578063f74bee28146103a9578063ff74927b146103bc576101c4565b8063c87b56dd1461034a578063cf456ae71461035d578063e985e9c514610370576101c4565b806395d89b41116100d357806395d89b4114610314578063a22cb4651461031c578063a2309ff81461032f578063b88d4fde14610337576101c4565b8063715018a6146102f1578063862440e2146102f95780638da5cb5b1461030c576101c4565b806342966c68116101665780636352211e116101405780636352211e146102b0578063664aa26b146102c35780636c0360eb146102d657806370a08231146102de576101c4565b806342966c68146102775780634ebbc92a1461028a5780636010a5e71461029d576101c4565b8063095ea7b3116101a2578063095ea7b31461022757806318160ddd1461023c57806323b872dd1461025157806342842e0e14610264576101c4565b806301ffc9a7146101c957806306fdde03146101f2578063081812fc14610207575b600080fd5b6101dc6101d73660046118a3565b6103cf565b6040516101e99190611a79565b60405180910390f35b6101fa610417565b6040516101e99190611a84565b61021a61021536600461196f565b6104a9565b6040516101e99190611a0d565b61023a61023536600461187a565b6104f5565b005b61024461058d565b6040516101e99190611eec565b61023a61025f36600461178c565b610593565b61023a61027236600461178c565b6105cb565b61023a61028536600461196f565b6105e6565b6101dc61029836600461196f565b610679565b6102446102ab3660046117c7565b61068e565b61021a6102be36600461196f565b610703565b61023a6102d13660046118db565b61071e565b6101fa610774565b6102446102ec366004611740565b610802565b61023a610846565b61023a610307366004611987565b610891565b61021a610906565b6101fa610915565b61023a61032a366004611840565b610924565b610244610936565b61023a6103453660046117c7565b61093c565b6101fa61035836600461196f565b61097b565b61023a61036b366004611840565b610add565b6101dc61037e36600461175a565b610b7e565b61023a610391366004611740565b610bac565b6101dc6103a4366004611740565b610c1a565b6101fa6103b736600461196f565b610c2f565b6101fa6103ca36600461190e565b610c48565b60006001600160e01b031982166380ac58cd60e01b148061040057506001600160e01b03198216635b5e139f60e01b145b8061040f575061040f82610de1565b90505b919050565b60606001805461042690611f51565b80601f016020809104026020016040519081016040528092919081815260200182805461045290611f51565b801561049f5780601f106104745761010080835404028352916020019161049f565b820191906000526020600020905b81548152906001019060200180831161048257829003601f168201915b5050505050905090565b60006104b482610dfa565b6104d95760405162461bcd60e51b81526004016104d090611d4a565b60405180910390fd5b506000908152600860205260409020546001600160a01b031690565b600061050082610703565b9050806001600160a01b0316836001600160a01b031614156105345760405162461bcd60e51b81526004016104d090611e14565b806001600160a01b0316610546610e17565b6001600160a01b0316148061056257506105628161037e610e17565b61057e5760405162461bcd60e51b81526004016104d090611c6e565b6105888383610e1b565b505050565b60045490565b6105a461059e610e17565b82610e89565b6105c05760405162461bcd60e51b81526004016104d090611e78565b610588838383610f06565b6105888383836040518060200160405280600081525061093c565b6000818152600560205260409020546001600160a01b03161580159061061b575060008181526006602052604090205460ff16155b6106375760405162461bcd60e51b81526004016104d090611e55565b6000818152600560205260409020546001600160a01b0316331461066d5760405162461bcd60e51b81526004016104d090611ec9565b61067681611033565b50565b6000908152600d602052604090205460ff1690565b336000908152600c602052604081205460ff166106bd5760405162461bcd60e51b81526004016104d090611ec9565b60008381526006602052604090205460ff16156106ec5760405162461bcd60e51b81526004016104d090611e55565b6106f885858585611109565b90505b949350505050565b6000908152600560205260409020546001600160a01b031690565b610726610e17565b6001600160a01b0316610737610906565b6001600160a01b03161461075d5760405162461bcd60e51b81526004016104d090611d96565b805161077090600a9060208401906115fa565b5050565b600a805461078190611f51565b80601f01602080910402602001604051908101604052809291908181526020018280546107ad90611f51565b80156107fa5780601f106107cf576101008083540402835291602001916107fa565b820191906000526020600020905b8154815290600101906020018083116107dd57829003601f168201915b505050505081565b60006001600160a01b03821661082a5760405162461bcd60e51b81526004016104d090611ccb565b506001600160a01b031660009081526007602052604090205490565b61084e610e17565b6001600160a01b031661085f610906565b6001600160a01b0316146108855760405162461bcd60e51b81526004016104d090611d96565b61088f600061124a565b565b336000908152600c602052604090205460ff166108c05760405162461bcd60e51b81526004016104d090611ec9565b6000828152600b602052604090208054600191906108dd90611f51565b9050106108fc5760405162461bcd60e51b81526004016104d090611a97565b610770828261129a565b6000546001600160a01b031690565b60606002805461042690611f51565b61077061092f610e17565b83836112eb565b60035490565b61094d610947610e17565b83610e89565b6109695760405162461bcd60e51b81526004016104d090611e78565b6109758484848461138e565b50505050565b6000818152600b602052604081208054606092919061099990611f51565b90501115610a3f576000828152600b6020526040902080546109ba90611f51565b80601f01602080910402602001604051908101604052809291908181526020018280546109e690611f51565b8015610a335780601f10610a0857610100808354040283529160200191610a33565b820191906000526020600020905b815481529060010190602001808311610a1657829003601f168201915b50505050509050610412565b610ad6600a8054610a4f90611f51565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7b90611f51565b8015610ac85780601f10610a9d57610100808354040283529160200191610ac8565b820191906000526020600020905b815481529060010190602001808311610aab57829003601f168201915b50505050506103ca846113c1565b9050610412565b610ae5610e17565b6001600160a01b0316610af6610906565b6001600160a01b031614610b1c5760405162461bcd60e51b81526004016104d090611d96565b6001600160a01b0382166000908152600c602052604090819020805460ff1916831515179055517fff452b3b9159b024a9098f0058c63eccd90d36b3584608202800d662f962bb6090610b729084908490611a5e565b60405180910390a15050565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b610bb4610e17565b6001600160a01b0316610bc5610906565b6001600160a01b031614610beb5760405162461bcd60e51b81526004016104d090611d96565b6001600160a01b038116610c115760405162461bcd60e51b81526004016104d090611b2a565b6106768161124a565b600c6020526000908152604090205460ff1681565b600b602052600090815260409020805461078190611f51565b8051825160609184918491600091610c609190611f0e565b67ffffffffffffffff811115610c8657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610cb0576020820181803683370190505b509050806000805b8551811015610d4457858181518110610ce157634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b0319168383610cfb81611f8c565b945081518110610d1b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535080610d3c81611f8c565b915050610cb8565b5060005b8451811015610dd457848181518110610d7157634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b0319168383610d8b81611f8c565b945081518110610dab57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535080610dcc81611f8c565b915050610d48565b5091979650505050505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600560205260409020546001600160a01b0316151590565b3390565b600081815260086020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e5082610703565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610e9482610dfa565b610eb05760405162461bcd60e51b81526004016104d090611c22565b6000610ebb83610703565b9050806001600160a01b0316846001600160a01b03161480610ef65750836001600160a01b0316610eeb846104a9565b6001600160a01b0316145b806106fb57506106fb8185610b7e565b826001600160a01b0316610f1982610703565b6001600160a01b031614610f3f5760405162461bcd60e51b81526004016104d090611dcb565b6001600160a01b038216610f655760405162461bcd60e51b81526004016104d090611ba7565b610f70838383610588565b610f7b600082610e1b565b6001600160a01b0383166000908152600760205260408120805460019290610fa4908490611f3a565b90915550506001600160a01b0382166000908152600760205260408120805460019290610fd2908490611f0e565b909155505060008181526005602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061103e82610703565b905061104c81600084610588565b611057600083610e1b565b6001600160a01b0381166000908152600760205260408120805460019290611080908490611f3a565b9250508190555060016003600082825461109a9190611f3a565b90915550506000828152600660209081526040808320805460ff19166001179055600590915280822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160a01b0384166111315760405162461bcd60e51b81526004016104d090611d15565b61113a83610dfa565b156111575760405162461bcd60e51b81526004016104d090611b70565b60008251116111785760405162461bcd60e51b81526004016104d090611ab4565b611183858585610588565b6001600160a01b03841660009081526007602052604081208054600192906111ac908490611f0e565b9091555050600083815260056020908152604080832080546001600160a01b0319166001600160a01b038916179055600d9091528120805460ff1916600117905560038054916111fb83611f8c565b919050555082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450909392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000828152600b6020908152604090912082516112b9928401906115fa565b507fee1bb82f380189104b74a7647d26f2f35679780e816626ffcaec7cafb7288e468282604051610b72929190611ef5565b816001600160a01b0316836001600160a01b0316141561131d5760405162461bcd60e51b81526004016104d090611beb565b6001600160a01b0383811660008181526009602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611381908590611a79565b60405180910390a3505050565b611399848484610f06565b6113a5848484846114dc565b6109755760405162461bcd60e51b81526004016104d090611ad8565b6060816113e657506040805180820190915260018152600360fc1b6020820152610412565b8160005b811561141057806113fa81611f8c565b91506114099050600a83611f26565b91506113ea565b60008167ffffffffffffffff81111561143957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611463576020820181803683370190505b5090505b84156106fb57611478600183611f3a565b9150611485600a86611fa7565b611490906030611f0e565b60f81b8183815181106114b357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506114d5600a86611f26565b9450611467565b60006114f0846001600160a01b03166115f4565b156115ec57836001600160a01b031663150b7a0261150c610e17565b8786866040518563ffffffff1660e01b815260040161152e9493929190611a21565b602060405180830381600087803b15801561154857600080fd5b505af1925050508015611578575060408051601f3d908101601f19168201909252611575918101906118bf565b60015b6115d2573d8080156115a6576040519150601f19603f3d011682016040523d82523d6000602084013e6115ab565b606091505b5080516115ca5760405162461bcd60e51b81526004016104d090611ad8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506106fb565b5060016106fb565b3b151590565b82805461160690611f51565b90600052602060002090601f016020900481019282611628576000855561166e565b82601f1061164157805160ff191683800117855561166e565b8280016001018555821561166e579182015b8281111561166e578251825591602001919060010190611653565b5061167a92915061167e565b5090565b5b8082111561167a576000815560010161167f565b600067ffffffffffffffff808411156116ae576116ae611fe7565b604051601f8501601f1916810160200182811182821017156116d2576116d2611fe7565b6040528481529150818385018610156116ea57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461041257600080fd5b600082601f83011261172a578081fd5b61173983833560208501611693565b9392505050565b600060208284031215611751578081fd5b61173982611703565b6000806040838503121561176c578081fd5b61177583611703565b915061178360208401611703565b90509250929050565b6000806000606084860312156117a0578081fd5b6117a984611703565b92506117b760208501611703565b9150604084013590509250925092565b600080600080608085870312156117dc578081fd5b6117e585611703565b93506117f360208601611703565b925060408501359150606085013567ffffffffffffffff811115611815578182fd5b8501601f81018713611825578182fd5b61183487823560208401611693565b91505092959194509250565b60008060408385031215611852578182fd5b61185b83611703565b91506020830135801515811461186f578182fd5b809150509250929050565b6000806040838503121561188c578182fd5b61189583611703565b946020939093013593505050565b6000602082840312156118b4578081fd5b813561173981611ffd565b6000602082840312156118d0578081fd5b815161173981611ffd565b6000602082840312156118ec578081fd5b813567ffffffffffffffff811115611902578182fd5b6106fb8482850161171a565b60008060408385031215611920578182fd5b823567ffffffffffffffff80821115611937578384fd5b6119438683870161171a565b93506020850135915080821115611958578283fd5b506119658582860161171a565b9150509250929050565b600060208284031215611980578081fd5b5035919050565b60008060408385031215611999578182fd5b82359150602083013567ffffffffffffffff8111156119b6578182fd5b6119658582860161171a565b60008151808452815b818110156119e7576020818501810151868301820152016119cb565b818111156119f85782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a54908301846119c2565b9695505050505050565b6001600160a01b039290921682521515602082015260400190565b901515815260200190565b60006020825261173960208301846119c2565b60208082526003908201526234303360e81b604082015260600190565b6020808252600a908201526906c656e676874203c20360b41b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252600990820152684552524f522034303160b81b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600990820152684552524f522034303360b81b604082015260600190565b90815260200190565b6000838252604060208301526106fb60408301846119c2565b60008219821115611f2157611f21611fbb565b500190565b600082611f3557611f35611fd1565b500490565b600082821015611f4c57611f4c611fbb565b500390565b600281046001821680611f6557607f821691505b60208210811415611f8657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fa057611fa0611fbb565b5060010190565b600082611fb657611fb6611fd1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461067657600080fdfea264697066735822122097a341b06d4d7dbc0ffaaea7f29ee700ac7efc7f8e7422499076e5caac437d3c64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000206c000000000000000000000000000000000000000000000000000000000000000a532050617373706f7274000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003534f440000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063c87b56dd11610097578063f2fde38b11610071578063f2fde38b14610383578063f46eccc414610396578063f74bee28146103a9578063ff74927b146103bc576101c4565b8063c87b56dd1461034a578063cf456ae71461035d578063e985e9c514610370576101c4565b806395d89b41116100d357806395d89b4114610314578063a22cb4651461031c578063a2309ff81461032f578063b88d4fde14610337576101c4565b8063715018a6146102f1578063862440e2146102f95780638da5cb5b1461030c576101c4565b806342966c68116101665780636352211e116101405780636352211e146102b0578063664aa26b146102c35780636c0360eb146102d657806370a08231146102de576101c4565b806342966c68146102775780634ebbc92a1461028a5780636010a5e71461029d576101c4565b8063095ea7b3116101a2578063095ea7b31461022757806318160ddd1461023c57806323b872dd1461025157806342842e0e14610264576101c4565b806301ffc9a7146101c957806306fdde03146101f2578063081812fc14610207575b600080fd5b6101dc6101d73660046118a3565b6103cf565b6040516101e99190611a79565b60405180910390f35b6101fa610417565b6040516101e99190611a84565b61021a61021536600461196f565b6104a9565b6040516101e99190611a0d565b61023a61023536600461187a565b6104f5565b005b61024461058d565b6040516101e99190611eec565b61023a61025f36600461178c565b610593565b61023a61027236600461178c565b6105cb565b61023a61028536600461196f565b6105e6565b6101dc61029836600461196f565b610679565b6102446102ab3660046117c7565b61068e565b61021a6102be36600461196f565b610703565b61023a6102d13660046118db565b61071e565b6101fa610774565b6102446102ec366004611740565b610802565b61023a610846565b61023a610307366004611987565b610891565b61021a610906565b6101fa610915565b61023a61032a366004611840565b610924565b610244610936565b61023a6103453660046117c7565b61093c565b6101fa61035836600461196f565b61097b565b61023a61036b366004611840565b610add565b6101dc61037e36600461175a565b610b7e565b61023a610391366004611740565b610bac565b6101dc6103a4366004611740565b610c1a565b6101fa6103b736600461196f565b610c2f565b6101fa6103ca36600461190e565b610c48565b60006001600160e01b031982166380ac58cd60e01b148061040057506001600160e01b03198216635b5e139f60e01b145b8061040f575061040f82610de1565b90505b919050565b60606001805461042690611f51565b80601f016020809104026020016040519081016040528092919081815260200182805461045290611f51565b801561049f5780601f106104745761010080835404028352916020019161049f565b820191906000526020600020905b81548152906001019060200180831161048257829003601f168201915b5050505050905090565b60006104b482610dfa565b6104d95760405162461bcd60e51b81526004016104d090611d4a565b60405180910390fd5b506000908152600860205260409020546001600160a01b031690565b600061050082610703565b9050806001600160a01b0316836001600160a01b031614156105345760405162461bcd60e51b81526004016104d090611e14565b806001600160a01b0316610546610e17565b6001600160a01b0316148061056257506105628161037e610e17565b61057e5760405162461bcd60e51b81526004016104d090611c6e565b6105888383610e1b565b505050565b60045490565b6105a461059e610e17565b82610e89565b6105c05760405162461bcd60e51b81526004016104d090611e78565b610588838383610f06565b6105888383836040518060200160405280600081525061093c565b6000818152600560205260409020546001600160a01b03161580159061061b575060008181526006602052604090205460ff16155b6106375760405162461bcd60e51b81526004016104d090611e55565b6000818152600560205260409020546001600160a01b0316331461066d5760405162461bcd60e51b81526004016104d090611ec9565b61067681611033565b50565b6000908152600d602052604090205460ff1690565b336000908152600c602052604081205460ff166106bd5760405162461bcd60e51b81526004016104d090611ec9565b60008381526006602052604090205460ff16156106ec5760405162461bcd60e51b81526004016104d090611e55565b6106f885858585611109565b90505b949350505050565b6000908152600560205260409020546001600160a01b031690565b610726610e17565b6001600160a01b0316610737610906565b6001600160a01b03161461075d5760405162461bcd60e51b81526004016104d090611d96565b805161077090600a9060208401906115fa565b5050565b600a805461078190611f51565b80601f01602080910402602001604051908101604052809291908181526020018280546107ad90611f51565b80156107fa5780601f106107cf576101008083540402835291602001916107fa565b820191906000526020600020905b8154815290600101906020018083116107dd57829003601f168201915b505050505081565b60006001600160a01b03821661082a5760405162461bcd60e51b81526004016104d090611ccb565b506001600160a01b031660009081526007602052604090205490565b61084e610e17565b6001600160a01b031661085f610906565b6001600160a01b0316146108855760405162461bcd60e51b81526004016104d090611d96565b61088f600061124a565b565b336000908152600c602052604090205460ff166108c05760405162461bcd60e51b81526004016104d090611ec9565b6000828152600b602052604090208054600191906108dd90611f51565b9050106108fc5760405162461bcd60e51b81526004016104d090611a97565b610770828261129a565b6000546001600160a01b031690565b60606002805461042690611f51565b61077061092f610e17565b83836112eb565b60035490565b61094d610947610e17565b83610e89565b6109695760405162461bcd60e51b81526004016104d090611e78565b6109758484848461138e565b50505050565b6000818152600b602052604081208054606092919061099990611f51565b90501115610a3f576000828152600b6020526040902080546109ba90611f51565b80601f01602080910402602001604051908101604052809291908181526020018280546109e690611f51565b8015610a335780601f10610a0857610100808354040283529160200191610a33565b820191906000526020600020905b815481529060010190602001808311610a1657829003601f168201915b50505050509050610412565b610ad6600a8054610a4f90611f51565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7b90611f51565b8015610ac85780601f10610a9d57610100808354040283529160200191610ac8565b820191906000526020600020905b815481529060010190602001808311610aab57829003601f168201915b50505050506103ca846113c1565b9050610412565b610ae5610e17565b6001600160a01b0316610af6610906565b6001600160a01b031614610b1c5760405162461bcd60e51b81526004016104d090611d96565b6001600160a01b0382166000908152600c602052604090819020805460ff1916831515179055517fff452b3b9159b024a9098f0058c63eccd90d36b3584608202800d662f962bb6090610b729084908490611a5e565b60405180910390a15050565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b610bb4610e17565b6001600160a01b0316610bc5610906565b6001600160a01b031614610beb5760405162461bcd60e51b81526004016104d090611d96565b6001600160a01b038116610c115760405162461bcd60e51b81526004016104d090611b2a565b6106768161124a565b600c6020526000908152604090205460ff1681565b600b602052600090815260409020805461078190611f51565b8051825160609184918491600091610c609190611f0e565b67ffffffffffffffff811115610c8657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610cb0576020820181803683370190505b509050806000805b8551811015610d4457858181518110610ce157634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b0319168383610cfb81611f8c565b945081518110610d1b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535080610d3c81611f8c565b915050610cb8565b5060005b8451811015610dd457848181518110610d7157634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b0319168383610d8b81611f8c565b945081518110610dab57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535080610dcc81611f8c565b915050610d48565b5091979650505050505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600560205260409020546001600160a01b0316151590565b3390565b600081815260086020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e5082610703565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610e9482610dfa565b610eb05760405162461bcd60e51b81526004016104d090611c22565b6000610ebb83610703565b9050806001600160a01b0316846001600160a01b03161480610ef65750836001600160a01b0316610eeb846104a9565b6001600160a01b0316145b806106fb57506106fb8185610b7e565b826001600160a01b0316610f1982610703565b6001600160a01b031614610f3f5760405162461bcd60e51b81526004016104d090611dcb565b6001600160a01b038216610f655760405162461bcd60e51b81526004016104d090611ba7565b610f70838383610588565b610f7b600082610e1b565b6001600160a01b0383166000908152600760205260408120805460019290610fa4908490611f3a565b90915550506001600160a01b0382166000908152600760205260408120805460019290610fd2908490611f0e565b909155505060008181526005602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061103e82610703565b905061104c81600084610588565b611057600083610e1b565b6001600160a01b0381166000908152600760205260408120805460019290611080908490611f3a565b9250508190555060016003600082825461109a9190611f3a565b90915550506000828152600660209081526040808320805460ff19166001179055600590915280822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160a01b0384166111315760405162461bcd60e51b81526004016104d090611d15565b61113a83610dfa565b156111575760405162461bcd60e51b81526004016104d090611b70565b60008251116111785760405162461bcd60e51b81526004016104d090611ab4565b611183858585610588565b6001600160a01b03841660009081526007602052604081208054600192906111ac908490611f0e565b9091555050600083815260056020908152604080832080546001600160a01b0319166001600160a01b038916179055600d9091528120805460ff1916600117905560038054916111fb83611f8c565b919050555082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450909392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000828152600b6020908152604090912082516112b9928401906115fa565b507fee1bb82f380189104b74a7647d26f2f35679780e816626ffcaec7cafb7288e468282604051610b72929190611ef5565b816001600160a01b0316836001600160a01b0316141561131d5760405162461bcd60e51b81526004016104d090611beb565b6001600160a01b0383811660008181526009602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611381908590611a79565b60405180910390a3505050565b611399848484610f06565b6113a5848484846114dc565b6109755760405162461bcd60e51b81526004016104d090611ad8565b6060816113e657506040805180820190915260018152600360fc1b6020820152610412565b8160005b811561141057806113fa81611f8c565b91506114099050600a83611f26565b91506113ea565b60008167ffffffffffffffff81111561143957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611463576020820181803683370190505b5090505b84156106fb57611478600183611f3a565b9150611485600a86611fa7565b611490906030611f0e565b60f81b8183815181106114b357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506114d5600a86611f26565b9450611467565b60006114f0846001600160a01b03166115f4565b156115ec57836001600160a01b031663150b7a0261150c610e17565b8786866040518563ffffffff1660e01b815260040161152e9493929190611a21565b602060405180830381600087803b15801561154857600080fd5b505af1925050508015611578575060408051601f3d908101601f19168201909252611575918101906118bf565b60015b6115d2573d8080156115a6576040519150601f19603f3d011682016040523d82523d6000602084013e6115ab565b606091505b5080516115ca5760405162461bcd60e51b81526004016104d090611ad8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506106fb565b5060016106fb565b3b151590565b82805461160690611f51565b90600052602060002090601f016020900481019282611628576000855561166e565b82601f1061164157805160ff191683800117855561166e565b8280016001018555821561166e579182015b8281111561166e578251825591602001919060010190611653565b5061167a92915061167e565b5090565b5b8082111561167a576000815560010161167f565b600067ffffffffffffffff808411156116ae576116ae611fe7565b604051601f8501601f1916810160200182811182821017156116d2576116d2611fe7565b6040528481529150818385018610156116ea57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461041257600080fd5b600082601f83011261172a578081fd5b61173983833560208501611693565b9392505050565b600060208284031215611751578081fd5b61173982611703565b6000806040838503121561176c578081fd5b61177583611703565b915061178360208401611703565b90509250929050565b6000806000606084860312156117a0578081fd5b6117a984611703565b92506117b760208501611703565b9150604084013590509250925092565b600080600080608085870312156117dc578081fd5b6117e585611703565b93506117f360208601611703565b925060408501359150606085013567ffffffffffffffff811115611815578182fd5b8501601f81018713611825578182fd5b61183487823560208401611693565b91505092959194509250565b60008060408385031215611852578182fd5b61185b83611703565b91506020830135801515811461186f578182fd5b809150509250929050565b6000806040838503121561188c578182fd5b61189583611703565b946020939093013593505050565b6000602082840312156118b4578081fd5b813561173981611ffd565b6000602082840312156118d0578081fd5b815161173981611ffd565b6000602082840312156118ec578081fd5b813567ffffffffffffffff811115611902578182fd5b6106fb8482850161171a565b60008060408385031215611920578182fd5b823567ffffffffffffffff80821115611937578384fd5b6119438683870161171a565b93506020850135915080821115611958578283fd5b506119658582860161171a565b9150509250929050565b600060208284031215611980578081fd5b5035919050565b60008060408385031215611999578182fd5b82359150602083013567ffffffffffffffff8111156119b6578182fd5b6119658582860161171a565b60008151808452815b818110156119e7576020818501810151868301820152016119cb565b818111156119f85782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a54908301846119c2565b9695505050505050565b6001600160a01b039290921682521515602082015260400190565b901515815260200190565b60006020825261173960208301846119c2565b60208082526003908201526234303360e81b604082015260600190565b6020808252600a908201526906c656e676874203c20360b41b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252600990820152684552524f522034303160b81b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600990820152684552524f522034303360b81b604082015260600190565b90815260200190565b6000838252604060208301526106fb60408301846119c2565b60008219821115611f2157611f21611fbb565b500190565b600082611f3557611f35611fd1565b500490565b600082821015611f4c57611f4c611fbb565b500390565b600281046001821680611f6557607f821691505b60208210811415611f8657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fa057611fa0611fbb565b5060010190565b600082611fb657611fb6611fd1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461067657600080fdfea264697066735822122097a341b06d4d7dbc0ffaaea7f29ee700ac7efc7f8e7422499076e5caac437d3c64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000206c000000000000000000000000000000000000000000000000000000000000000a532050617373706f7274000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003534f440000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): S Passport
Arg [1] : symbol_ (string): SOD
Arg [2] : totalNumber_ (uint256): 8300

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000206c
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 532050617373706f727400000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 534f440000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

572:15921:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2013:300;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2848:98;;;:::i;:::-;;;;;;;:::i;5862:217::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5400:401::-;;;;;;:::i;:::-;;:::i;:::-;;5073:90;;;:::i;:::-;;;;;;;:::i;6589:330::-;;;;;;:::i;:::-;;:::i;6985:179::-;;;;;;:::i;:::-;;:::i;12018:224::-;;;;;;:::i;:::-;;:::i;3206:93::-;;;;;;:::i;:::-;;:::i;11168:297::-;;;;;;:::i;:::-;;:::i;2634:152::-;;;;;;:::i;:::-;;:::i;3117:84::-;;;;;;:::i;:::-;;:::i;1425:21::-;;;:::i;2372:205::-;;;;;;:::i;:::-;;:::i;1661:101:8:-;;;:::i;3570:285:3:-;;;;;;:::i;:::-;;:::i;1029:85:8:-;;;:::i;3010:102:3:-;;;:::i;6146:153::-;;;;;;:::i;:::-;;:::i;5251:92::-;;;:::i;7230:320::-;;;;;;:::i;:::-;;:::i;4328:279::-;;;;;;:::i;:::-;;:::i;3304:140::-;;;;;;:::i;:::-;;:::i;6365:162::-;;;;;;:::i;:::-;;:::i;1911:198:8:-;;;;;;:::i;:::-;;:::i;1496:39:3:-;;;;;;:::i;:::-;;:::i;1452:38::-;;;;;;:::i;:::-;;:::i;3860:463::-;;;;;;:::i;:::-;;:::i;2013:300::-;2115:4;-1:-1:-1;;;;;;2150:40:3;;-1:-1:-1;;;2150:40:3;;:104;;-1:-1:-1;;;;;;;2206:48:3;;-1:-1:-1;;;2206:48:3;2150:104;:156;;;;2270:36;2294:11;2270:23;:36::i;:::-;2131:175;;2013:300;;;;:::o;2848:98::-;2902:13;2934:5;2927:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2848:98;:::o;5862:217::-;5938:7;5965:16;5973:7;5965;:16::i;:::-;5957:73;;;;-1:-1:-1;;;5957:73:3;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;6048:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;6048:24:3;;5862:217::o;5400:401::-;5480:13;5496:23;5511:7;5496:14;:23::i;:::-;5480:39;;5543:5;-1:-1:-1;;;;;5537:11:3;:2;-1:-1:-1;;;;;5537:11:3;;;5529:57;;;;-1:-1:-1;;;5529:57:3;;;;;;;:::i;:::-;5634:5;-1:-1:-1;;;;;5618:21:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;5618:21:3;;:62;;;;5643:37;5660:5;5667:12;:10;:12::i;5643:37::-;5597:165;;;;-1:-1:-1;;;5597:165:3;;;;;;;:::i;:::-;5773:21;5782:2;5786:7;5773:8;:21::i;:::-;5400:401;;;:::o;5073:90::-;5144:12;;5073:90;:::o;6589:330::-;6778:41;6797:12;:10;:12::i;:::-;6811:7;6778:18;:41::i;:::-;6770:103;;;;-1:-1:-1;;;6770:103:3;;;;;;;:::i;:::-;6884:28;6894:4;6900:2;6904:7;6884:9;:28::i;6985:179::-;7118:39;7135:4;7141:2;7145:7;7118:39;;;;;;;;;;;;:16;:39::i;12018:224::-;12110:1;12082:16;;;:7;:16;;;;;;-1:-1:-1;;;;;12082:16:3;:30;;;;:55;;-1:-1:-1;12117:20:3;;;;:11;:20;;;;;;;;12116:21;12082:55;12074:76;;;;-1:-1:-1;;;12074:76:3;;;;;;;:::i;:::-;12182:16;;;;:7;:16;;;;;;-1:-1:-1;;;;;12182:16:3;12168:10;:30;12160:51;;;;-1:-1:-1;;;12160:51:3;;;;;;;:::i;:::-;12221:14;12227:7;12221:5;:14::i;:::-;12018:224;:::o;3206:93::-;3254:4;3277:15;;;:10;:15;;;;;;;;;3206:93::o;11168:297::-;11336:10;11304:4;11328:19;;;:7;:19;;;;;;;;11320:40;;;;-1:-1:-1;;;11320:40:3;;;;;;;:::i;:::-;11379:21;;;;:11;:21;;;;;;;;11378:22;11370:43;;;;-1:-1:-1;;;11370:43:3;;;;;;;:::i;:::-;11430:28;11436:4;11441:2;11444:8;11453:4;11430:5;:28::i;:::-;11423:35;;11168:297;;;;;;;:::o;2634:152::-;2706:7;2741:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2741:16:3;;2634:152::o;3117:84::-;1252:12:8;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:8;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1241:23:8;;1233:68;;;;-1:-1:-1;;;1233:68:8;;;;;;;:::i;:::-;3180:14:3;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;3117:84:::0;:::o;1425:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2372:205::-;2444:7;-1:-1:-1;;;;;2471:19:3;;2463:74;;;;-1:-1:-1;;;2463:74:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;2554:16:3;;;;;:9;:16;;;;;;;2372:205::o;1661:101:8:-;1252:12;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:8;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1241:23:8;;1233:68;;;;-1:-1:-1;;;1233:68:8;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;3570:285:3:-;3741:10;3733:19;;;;:7;:19;;;;;;;;3725:40;;;;-1:-1:-1;;;3725:40:3;;;;;;;:::i;:::-;3789:12;;;;:7;:12;;;;;3783:26;;3812:1;;3789:12;3783:26;;;:::i;:::-;;;:30;3775:45;;;;-1:-1:-1;;;3775:45:3;;;;;;;:::i;:::-;3830:18;3838:3;3842:5;3830:7;:18::i;1029:85:8:-;1075:7;1101:6;-1:-1:-1;;;;;1101:6:8;1029:85;:::o;3010:102:3:-;3066:13;3098:7;3091:14;;;;;:::i;6146:153::-;6240:52;6259:12;:10;:12::i;:::-;6273:8;6283;6240:18;:52::i;5251:92::-;5322:14;;5251:92;:::o;7230:320::-;7399:41;7418:12;:10;:12::i;:::-;7432:7;7399:18;:41::i;:::-;7391:103;;;;-1:-1:-1;;;7391:103:3;;;;;;;:::i;:::-;7504:39;7518:4;7524:2;7528:7;7537:5;7504:13;:39::i;:::-;7230:320;;;;:::o;4328:279::-;4471:1;4444:16;;;:7;:16;;;;;4438:30;;4401:13;;4471:1;4444:16;4438:30;;;:::i;:::-;;;:34;4435:166;;;4494:16;;;;:7;:16;;;;;4487:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4435:166;4546:44;4556:7;4546:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4564:25;4581:7;4564:16;:25::i;4546:44::-;4539:51;;;;3304:140;1252:12:8;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:8;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1241:23:8;;1233:68;;;;-1:-1:-1;;;1233:68:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;3377:16:3;::::1;;::::0;;;:7:::1;:16;::::0;;;;;;:24;;-1:-1:-1;;3377:24:3::1;::::0;::::1;;;::::0;;3416:21;::::1;::::0;::::1;::::0;3377:16;;:24;;3416:21:::1;:::i;:::-;;;;;;;;3304:140:::0;;:::o;6365:162::-;-1:-1:-1;;;;;6485:25:3;;;6462:4;6485:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;6365:162::o;1911:198:8:-;1252:12;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:8;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1241:23:8;;1233:68;;;;-1:-1:-1;;;1233:68:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:8;::::1;1991:73;;;;-1:-1:-1::0;;;1991:73:8::1;;;;;;;:::i;:::-;2074:28;2093:8;2074:18;:28::i;1496:39:3:-:0;;;;;;;;;;;;;;;:::o;1452:38::-;;;;;;;;;;;;;;;;:::i;3860:463::-;4080:10;;4067;;3936:13;;3985:2;;4023;;3960:16;;4067:23;;4080:10;4067:23;:::i;:::-;4056:35;;;;;;-1:-1:-1;;;4056:35:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4056:35:3;-1:-1:-1;4036:55:3;-1:-1:-1;4036:55:3;4101:17;;4177:50;4193:3;:10;4189:1;:14;4177:50;;;4221:3;4225:1;4221:6;;;;;;-1:-1:-1;;;4221:6:3;;;;;;;;;;;;;-1:-1:-1;;;;;;4221:6:3;4209:4;4214:3;;;;:::i;:::-;;;4209:9;;;;;;-1:-1:-1;;;4209:9:3;;;;;;;;;;;;:18;-1:-1:-1;;;;;4209:18:3;;;;;;;;-1:-1:-1;4205:3:3;;;;:::i;:::-;;;;4177:50;;;-1:-1:-1;4246:1:3;4237:51;4253:3;:10;4249:1;:14;4237:51;;;4282:3;4286:1;4282:6;;;;;;-1:-1:-1;;;4282:6:3;;;;;;;;;;;;;-1:-1:-1;;;;;;4282:6:3;4270:4;4275:3;;;;:::i;:::-;;;4270:9;;;;;;-1:-1:-1;;;4270:9:3;;;;;;;;;;;;:18;-1:-1:-1;;;;;4270:18:3;;;;;;;;-1:-1:-1;4265:3:3;;;;:::i;:::-;;;;4237:51;;;-1:-1:-1;4312:3:3;;3860:463;-1:-1:-1;;;;;;;3860:463:3:o;829:155:2:-;-1:-1:-1;;;;;;937:40:2;;-1:-1:-1;;;937:40:2;829:155;;;:::o;9022:125:3:-;9087:4;9110:16;;;:7;:16;;;;;;-1:-1:-1;;;;;9110:16:3;:30;;;9022:125::o;640:96:1:-;719:10;640:96;:::o;13869:171:3:-;13943:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;13943:29:3;-1:-1:-1;;;;;13943:29:3;;;;;;;;:24;;13996:23;13943:24;13996:14;:23::i;:::-;-1:-1:-1;;;;;13987:46:3;;;;;;;;;;;13869:171;;:::o;9305:344::-;9398:4;9422:16;9430:7;9422;:16::i;:::-;9414:73;;;;-1:-1:-1;;;9414:73:3;;;;;;;:::i;:::-;9497:13;9513:23;9528:7;9513:14;:23::i;:::-;9497:39;;9565:5;-1:-1:-1;;;;;9554:16:3;:7;-1:-1:-1;;;;;9554:16:3;;:51;;;;9598:7;-1:-1:-1;;;;;9574:31:3;:20;9586:7;9574:11;:20::i;:::-;-1:-1:-1;;;;;9574:31:3;;9554:51;:87;;;;9609:32;9626:5;9633:7;9609:16;:32::i;13198:560::-;13352:4;-1:-1:-1;;;;;13325:31:3;:23;13340:7;13325:14;:23::i;:::-;-1:-1:-1;;;;;13325:31:3;;13317:85;;;;-1:-1:-1;;;13317:85:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;13420:16:3;;13412:65;;;;-1:-1:-1;;;13412:65:3;;;;;;;:::i;:::-;13488:39;13509:4;13515:2;13519:7;13488:20;:39::i;:::-;13589:29;13606:1;13610:7;13589:8;:29::i;:::-;-1:-1:-1;;;;;13629:15:3;;;;;;:9;:15;;;;;:20;;13648:1;;13629:15;:20;;13648:1;;13629:20;:::i;:::-;;;;-1:-1:-1;;;;;;;13659:13:3;;;;;;:9;:13;;;;;:18;;13676:1;;13659:13;:18;;13676:1;;13659:18;:::i;:::-;;;;-1:-1:-1;;13687:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;13687:21:3;-1:-1:-1;;;;;13687:21:3;;;;;;;;;13724:27;;13687:16;;13724:27;;;;;;;13198:560;;;:::o;12459:415::-;12518:13;12534:23;12549:7;12534:14;:23::i;:::-;12518:39;;12568:48;12589:5;12604:1;12608:7;12568:20;:48::i;:::-;12654:29;12671:1;12675:7;12654:8;:29::i;:::-;-1:-1:-1;;;;;12694:16:3;;;;;;:9;:16;;;;;:21;;12714:1;;12694:16;:21;;12714:1;;12694:21;:::i;:::-;;;;;;;;12743:1;12725:14;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;12754:20:3;;;;:11;:20;;;;;;;;:27;;-1:-1:-1;;12754:27:3;12777:4;12754:27;;;12799:7;:16;;;;;;12792:23;;-1:-1:-1;;;;;;12792:23:3;;;12831:36;12766:7;;12754:20;-1:-1:-1;;;;;12831:36:3;;;;;12754:20;;12831:36;12459:415;;:::o;11470:538::-;11572:4;-1:-1:-1;;;;;11595:16:3;;11587:61;;;;-1:-1:-1;;;11587:61:3;;;;;;;:::i;:::-;11667:16;11675:7;11667;:16::i;:::-;11666:17;11658:58;;;;-1:-1:-1;;;11658:58:3;;;;;;;:::i;:::-;11748:1;11734:4;:11;:15;11726:38;;;;-1:-1:-1;;;11726:38:3;;;;;;;:::i;:::-;11774:39;11795:4;11801:2;11805:7;11774:20;:39::i;:::-;-1:-1:-1;;;;;11824:13:3;;;;;;:9;:13;;;;;:18;;11841:1;;11824:13;:18;;11841:1;;11824:18;:::i;:::-;;;;-1:-1:-1;;11852:16:3;;;;:7;:16;;;;;;;;:21;;-1:-1:-1;;;;;;11852:21:3;-1:-1:-1;;;;;11852:21:3;;;;;11883:10;:19;;;;;:26;;-1:-1:-1;;11883:26:3;-1:-1:-1;11883:26:3;;;11919:14;:16;;;;;;:::i;:::-;;;;;;11969:7;11965:2;-1:-1:-1;;;;;11950:27:3;11959:4;-1:-1:-1;;;;;11950:27:3;;;;;;;;;;;-1:-1:-1;11994:7:3;;11470:538;-1:-1:-1;;;11470:538:3:o;2263:187:8:-;2336:16;2355:6;;-1:-1:-1;;;;;2371:17:8;;;-1:-1:-1;;;;;;2371:17:8;;;;;;2403:40;;2355:6;;;;;;;2403:40;;2336:16;2403:40;2263:187;;:::o;9655:126:3:-;9722:12;;;;:7;:12;;;;;;;;:20;;;;;;;;:::i;:::-;;9757:17;9764:3;9768:5;9757:17;;;;;;;:::i;14175:307::-;14325:8;-1:-1:-1;;;;;14316:17:3;:5;-1:-1:-1;;;;;14316:17:3;;;14308:55;;;;-1:-1:-1;;;14308:55:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;14373:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;14373:46:3;;;;;;;14434:41;;;;;14373:46;;14434:41;:::i;:::-;;;;;;;;14175:307;;;:::o;8412:::-;8563:28;8573:4;8579:2;8583:7;8563:9;:28::i;:::-;8609:48;8632:4;8638:2;8642:7;8651:5;8609:22;:48::i;:::-;8601:111;;;;-1:-1:-1;;;8601:111:3;;;;;;;:::i;328:703:9:-;384:13;601:10;597:51;;-1:-1:-1;627:10:9;;;;;;;;;;;;-1:-1:-1;;;627:10:9;;;;;;597:51;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:9;;-1:-1:-1;773:2:9;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;-1:-1:-1;;;817:17:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:9;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:9;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;-1:-1:-1;;;902:14:9;;;;;;;;;;;;:56;-1:-1:-1;;;;;902:56:9;;;;;;;;-1:-1:-1;972:11:9;981:2;972:11;;:::i;:::-;;;844:150;;15035:778:3;15185:4;15205:15;:2;-1:-1:-1;;;;;15205:13:3;;:15::i;:::-;15201:606;;;15256:2;-1:-1:-1;;;;;15240:36:3;;15277:12;:10;:12::i;:::-;15291:4;15297:7;15306:5;15240:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15240:72:3;;;;;;;;-1:-1:-1;;15240:72:3;;;;;;;;;;;;:::i;:::-;;;15236:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15479:13:3;;15475:266;;15521:60;;-1:-1:-1;;;15521:60:3;;;;;;;:::i;15475:266::-;15693:6;15687:13;15678:6;15674:2;15670:15;15663:38;15236:519;-1:-1:-1;;;;;;15362:51:3;-1:-1:-1;;;15362:51:3;;-1:-1:-1;15355:58:3;;15201:606;-1:-1:-1;15792:4:3;15785:11;;771:377:0;1087:20;1133:8;;;771:377::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:10;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:10;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:10;473:16;;;470:25;-1:-1:-1;467:2:10;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:10;;735:42;;725:2;;791:1;788;781:12;806:233;;904:3;897:4;889:6;885:17;881:27;871:2;;926:5;919;912:20;871:2;952:81;1029:3;1020:6;1007:20;1000:4;992:6;988:17;952:81;:::i;:::-;943:90;861:178;-1:-1:-1;;;861:178:10:o;1044:198::-;;1156:2;1144:9;1135:7;1131:23;1127:32;1124:2;;;1177:6;1169;1162:22;1124:2;1205:31;1226:9;1205:31;:::i;1247:274::-;;;1376:2;1364:9;1355:7;1351:23;1347:32;1344:2;;;1397:6;1389;1382:22;1344:2;1425:31;1446:9;1425:31;:::i;:::-;1415:41;;1475:40;1511:2;1500:9;1496:18;1475:40;:::i;:::-;1465:50;;1334:187;;;;;:::o;1526:342::-;;;;1672:2;1660:9;1651:7;1647:23;1643:32;1640:2;;;1693:6;1685;1678:22;1640:2;1721:31;1742:9;1721:31;:::i;:::-;1711:41;;1771:40;1807:2;1796:9;1792:18;1771:40;:::i;:::-;1761:50;;1858:2;1847:9;1843:18;1830:32;1820:42;;1630:238;;;;;:::o;1873:702::-;;;;;2045:3;2033:9;2024:7;2020:23;2016:33;2013:2;;;2067:6;2059;2052:22;2013:2;2095:31;2116:9;2095:31;:::i;:::-;2085:41;;2145:40;2181:2;2170:9;2166:18;2145:40;:::i;:::-;2135:50;;2232:2;2221:9;2217:18;2204:32;2194:42;;2287:2;2276:9;2272:18;2259:32;2314:18;2306:6;2303:30;2300:2;;;2351:6;2343;2336:22;2300:2;2379:22;;2432:4;2424:13;;2420:27;-1:-1:-1;2410:2:10;;2466:6;2458;2451:22;2410:2;2494:75;2561:7;2556:2;2543:16;2538:2;2534;2530:11;2494:75;:::i;:::-;2484:85;;;2003:572;;;;;;;:::o;2580:369::-;;;2706:2;2694:9;2685:7;2681:23;2677:32;2674:2;;;2727:6;2719;2712:22;2674:2;2755:31;2776:9;2755:31;:::i;:::-;2745:41;;2836:2;2825:9;2821:18;2808:32;2883:5;2876:13;2869:21;2862:5;2859:32;2849:2;;2910:6;2902;2895:22;2849:2;2938:5;2928:15;;;2664:285;;;;;:::o;2954:266::-;;;3083:2;3071:9;3062:7;3058:23;3054:32;3051:2;;;3104:6;3096;3089:22;3051:2;3132:31;3153:9;3132:31;:::i;:::-;3122:41;3210:2;3195:18;;;;3182:32;;-1:-1:-1;;;3041:179:10:o;3225:257::-;;3336:2;3324:9;3315:7;3311:23;3307:32;3304:2;;;3357:6;3349;3342:22;3304:2;3401:9;3388:23;3420:32;3446:5;3420:32;:::i;3487:261::-;;3609:2;3597:9;3588:7;3584:23;3580:32;3577:2;;;3630:6;3622;3615:22;3577:2;3667:9;3661:16;3686:32;3712:5;3686:32;:::i;3753:344::-;;3875:2;3863:9;3854:7;3850:23;3846:32;3843:2;;;3896:6;3888;3881:22;3843:2;3941:9;3928:23;3974:18;3966:6;3963:30;3960:2;;;4011:6;4003;3996:22;3960:2;4039:52;4083:7;4074:6;4063:9;4059:22;4039:52;:::i;4102:577::-;;;4251:2;4239:9;4230:7;4226:23;4222:32;4219:2;;;4272:6;4264;4257:22;4219:2;4317:9;4304:23;4346:18;4387:2;4379:6;4376:14;4373:2;;;4408:6;4400;4393:22;4373:2;4436:52;4480:7;4471:6;4460:9;4456:22;4436:52;:::i;:::-;4426:62;;4541:2;4530:9;4526:18;4513:32;4497:48;;4570:2;4560:8;4557:16;4554:2;;;4591:6;4583;4576:22;4554:2;;4619:54;4665:7;4654:8;4643:9;4639:24;4619:54;:::i;:::-;4609:64;;;4209:470;;;;;:::o;4684:190::-;;4796:2;4784:9;4775:7;4771:23;4767:32;4764:2;;;4817:6;4809;4802:22;4764:2;-1:-1:-1;4845:23:10;;4754:120;-1:-1:-1;4754:120:10:o;4879:412::-;;;5018:2;5006:9;4997:7;4993:23;4989:32;4986:2;;;5039:6;5031;5024:22;4986:2;5080:9;5067:23;5057:33;;5141:2;5130:9;5126:18;5113:32;5168:18;5160:6;5157:30;5154:2;;;5205:6;5197;5190:22;5154:2;5233:52;5277:7;5268:6;5257:9;5253:22;5233:52;:::i;5296:477::-;;5377:5;5371:12;5404:6;5399:3;5392:19;5429:3;5441:162;5455:6;5452:1;5449:13;5441:162;;;5517:4;5573:13;;;5569:22;;5563:29;5545:11;;;5541:20;;5534:59;5470:12;5441:162;;;5621:6;5618:1;5615:13;5612:2;;;5687:3;5680:4;5671:6;5666:3;5662:16;5658:27;5651:40;5612:2;-1:-1:-1;5755:2:10;5734:15;-1:-1:-1;;5730:29:10;5721:39;;;;5762:4;5717:50;;5347:426;-1:-1:-1;;5347:426:10:o;5778:203::-;-1:-1:-1;;;;;5942:32:10;;;;5924:51;;5912:2;5897:18;;5879:102::o;5986:490::-;-1:-1:-1;;;;;6255:15:10;;;6237:34;;6307:15;;6302:2;6287:18;;6280:43;6354:2;6339:18;;6332:34;;;6402:3;6397:2;6382:18;;6375:31;;;5986:490;;6423:47;;6450:19;;6442:6;6423:47;:::i;:::-;6415:55;6189:287;-1:-1:-1;;;;;;6189:287:10:o;6481:284::-;-1:-1:-1;;;;;6667:32:10;;;;6649:51;;6743:14;6736:22;6731:2;6716:18;;6709:50;6637:2;6622:18;;6604:161::o;6770:187::-;6935:14;;6928:22;6910:41;;6898:2;6883:18;;6865:92::o;6962:221::-;;7111:2;7100:9;7093:21;7131:46;7173:2;7162:9;7158:18;7150:6;7131:46;:::i;7188:326::-;7390:2;7372:21;;;7429:1;7409:18;;;7402:29;-1:-1:-1;;;7462:2:10;7447:18;;7440:33;7505:2;7490:18;;7362:152::o;7519:334::-;7721:2;7703:21;;;7760:2;7740:18;;;7733:30;-1:-1:-1;;;7794:2:10;7779:18;;7772:40;7844:2;7829:18;;7693:160::o;7858:414::-;8060:2;8042:21;;;8099:2;8079:18;;;8072:30;8138:34;8133:2;8118:18;;8111:62;-1:-1:-1;;;8204:2:10;8189:18;;8182:48;8262:3;8247:19;;8032:240::o;8277:402::-;8479:2;8461:21;;;8518:2;8498:18;;;8491:30;8557:34;8552:2;8537:18;;8530:62;-1:-1:-1;;;8623:2:10;8608:18;;8601:36;8669:3;8654:19;;8451:228::o;8684:352::-;8886:2;8868:21;;;8925:2;8905:18;;;8898:30;8964;8959:2;8944:18;;8937:58;9027:2;9012:18;;8858:178::o;9041:400::-;9243:2;9225:21;;;9282:2;9262:18;;;9255:30;9321:34;9316:2;9301:18;;9294:62;-1:-1:-1;;;9387:2:10;9372:18;;9365:34;9431:3;9416:19;;9215:226::o;9446:349::-;9648:2;9630:21;;;9687:2;9667:18;;;9660:30;9726:27;9721:2;9706:18;;9699:55;9786:2;9771:18;;9620:175::o;9800:408::-;10002:2;9984:21;;;10041:2;10021:18;;;10014:30;10080:34;10075:2;10060:18;;10053:62;-1:-1:-1;;;10146:2:10;10131:18;;10124:42;10198:3;10183:19;;9974:234::o;10213:420::-;10415:2;10397:21;;;10454:2;10434:18;;;10427:30;10493:34;10488:2;10473:18;;10466:62;10564:26;10559:2;10544:18;;10537:54;10623:3;10608:19;;10387:246::o;10638:406::-;10840:2;10822:21;;;10879:2;10859:18;;;10852:30;10918:34;10913:2;10898:18;;10891:62;-1:-1:-1;;;10984:2:10;10969:18;;10962:40;11034:3;11019:19;;10812:232::o;11049:356::-;11251:2;11233:21;;;11270:18;;;11263:30;11329:34;11324:2;11309:18;;11302:62;11396:2;11381:18;;11223:182::o;11410:408::-;11612:2;11594:21;;;11651:2;11631:18;;;11624:30;11690:34;11685:2;11670:18;;11663:62;-1:-1:-1;;;11756:2:10;11741:18;;11734:42;11808:3;11793:19;;11584:234::o;11823:356::-;12025:2;12007:21;;;12044:18;;;12037:30;12103:34;12098:2;12083:18;;12076:62;12170:2;12155:18;;11997:182::o;12184:405::-;12386:2;12368:21;;;12425:2;12405:18;;;12398:30;12464:34;12459:2;12444:18;;12437:62;-1:-1:-1;;;12530:2:10;12515:18;;12508:39;12579:3;12564:19;;12358:231::o;12594:397::-;12796:2;12778:21;;;12835:2;12815:18;;;12808:30;12874:34;12869:2;12854:18;;12847:62;-1:-1:-1;;;12940:2:10;12925:18;;12918:31;12981:3;12966:19;;12768:223::o;12996:332::-;13198:2;13180:21;;;13237:1;13217:18;;;13210:29;-1:-1:-1;;;13270:2:10;13255:18;;13248:39;13319:2;13304:18;;13170:158::o;13333:413::-;13535:2;13517:21;;;13574:2;13554:18;;;13547:30;13613:34;13608:2;13593:18;;13586:62;-1:-1:-1;;;13679:2:10;13664:18;;13657:47;13736:3;13721:19;;13507:239::o;13751:332::-;13953:2;13935:21;;;13992:1;13972:18;;;13965:29;-1:-1:-1;;;14025:2:10;14010:18;;14003:39;14074:2;14059:18;;13925:158::o;14088:177::-;14234:25;;;14222:2;14207:18;;14189:76::o;14270:292::-;;14447:6;14436:9;14429:25;14490:2;14485;14474:9;14470:18;14463:30;14510:46;14552:2;14541:9;14537:18;14529:6;14510:46;:::i;14567:128::-;;14638:1;14634:6;14631:1;14628:13;14625:2;;;14644:18;;:::i;:::-;-1:-1:-1;14680:9:10;;14615:80::o;14700:120::-;;14766:1;14756:2;;14771:18;;:::i;:::-;-1:-1:-1;14805:9:10;;14746:74::o;14825:125::-;;14893:1;14890;14887:8;14884:2;;;14898:18;;:::i;:::-;-1:-1:-1;14935:9:10;;14874:76::o;14955:380::-;15040:1;15030:12;;15087:1;15077:12;;;15098:2;;15152:4;15144:6;15140:17;15130:27;;15098:2;15205;15197:6;15194:14;15174:18;15171:38;15168:2;;;15251:10;15246:3;15242:20;15239:1;15232:31;15286:4;15283:1;15276:15;15314:4;15311:1;15304:15;15168:2;;15010:325;;;:::o;15340:135::-;;-1:-1:-1;;15400:17:10;;15397:2;;;15420:18;;:::i;:::-;-1:-1:-1;15467:1:10;15456:13;;15387:88::o;15480:112::-;;15538:1;15528:2;;15543:18;;:::i;:::-;-1:-1:-1;15577:9:10;;15518:74::o;15597:127::-;15658:10;15653:3;15649:20;15646:1;15639:31;15689:4;15686:1;15679:15;15713:4;15710:1;15703:15;15729:127;15790:10;15785:3;15781:20;15778:1;15771:31;15821:4;15818:1;15811:15;15845:4;15842:1;15835:15;15861:127;15922:10;15917:3;15913:20;15910:1;15903:31;15953:4;15950:1;15943:15;15977:4;15974:1;15967:15;15993:133;-1:-1:-1;;;;;;16069:32:10;;16059:43;;16049:2;;16116:1;16113;16106:12

Swarm Source

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