ETH Price: $3,491.03 (+2.79%)
Gas: 12 Gwei

Token

The Squirrels Flow (TSF)
 

Overview

Max Total Supply

705 TSF

Holders

647

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
whl.eth
0x3b93cbfb99560ab275827d502c49d57a0e5ec5ce
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ERC1155

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-03
*/

// SPDX-License-Identifier: MIT

// Amended By ReservedSnow

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: contracts/abc.sol









pragma solidity ^0.8.0;











/**



 * @dev Implementation of the basic standard multi-token.



 * See https://eips.ethereum.org/EIPS/eip-1155



 * Originally based on code by Enjin: https://github.com/enjin/erc-1155



 *



 * _Available since v3.1._



 */



contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI,Ownable {



    using Address for address;







    uint256 public constant MAX_SUPPLY = 8888;







    address[MAX_SUPPLY] internal _owners;







    // Mapping from account to operator approvals



    mapping(address => mapping(address => bool)) private _operatorApprovals;







    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json



    string private _uri;







    bool locked; 



    string public name;



    // Contract symbol



    string public symbol;







    /**



     * @dev See {_setURI}. 



     */



      constructor(string memory _name,string memory _symbol,string memory uri_){



        name=_name;



        symbol=_symbol; 



        _uri= uri_;



    }



 



    /**



     * @dev See {IERC165-supportsInterface}.



     */



    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {



        return



            interfaceId == type(IERC1155).interfaceId ||



            interfaceId == type(IERC1155MetadataURI).interfaceId ||



            super.supportsInterface(interfaceId);



    }







    function uri(uint256 _tokenId) public view virtual override returns (string memory) {



        return string(



            _uri







        );



    }







     function setURI(string memory uri_) public onlyOwner {



         _setURI(uri_);



    } 











    function airdrop(address[] calldata addresses, uint256 id)external onlyOwner{



        



        for(uint i;i<addresses.length;i++){



        



        _mint(addresses[i], id, 1, ""); 







        } 



    }







    function setlock(bool enter)public onlyOwner{



       locked =enter;



    }



    







    function checkiflocked()public view returns(bool){



       return locked; 



    }



     







    function transfer(address from,address to, uint256 amount,uint256 id)public{



           safeTransferFrom(from,to,id,amount,"");



    



     }











    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {



        require(account != address(0), "ERC1155: balance query for the zero address");



        require(id < MAX_SUPPLY, "ERC1155D: id exceeds maximum");







        return _owners[id] == account ? 1 : 0;



    }







    /**



     * @dev See {IERC1155-balanceOfBatch}.



     *



     * Requirements:



     *



     * - `accounts` and `ids` must have the same length.



     */



    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)



        public



        view



        virtual



        override



        returns (uint256[] memory)



    {



        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");







        uint256[] memory batchBalances = new uint256[](accounts.length);







        for (uint256 i = 0; i < accounts.length; ++i) {



            batchBalances[i] = balanceOf(accounts[i], ids[i]);



        }







        return batchBalances;



    }







    /**



     * @dev See {IERC1155-setApprovalForAll}.



     */



    function setApprovalForAll(address operator, bool approved) public virtual override {



        _setApprovalForAll(_msgSender(), operator, approved);



    }







    /**



     * @dev See {IERC1155-isApprovedForAll}.



     */



    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {



        return _operatorApprovals[account][operator];



    }







    /**



     * @dev See {IERC1155-safeTransferFrom}.



     */



    function safeTransferFrom(



        address from,



        address to,



        uint256 id,



        uint256 amount,



        bytes memory data



    ) public virtual override {



        require(



            from == _msgSender() || isApprovedForAll(from, _msgSender()),



            "ERC1155: caller is not owner nor approved"



        );



        _safeTransferFrom(from, to, id, amount, data);



    }







    /**



     * @dev See {IERC1155-safeBatchTransferFrom}.



     */



    function safeBatchTransferFrom(



        address from,



        address to,



        uint256[] memory ids,



        uint256[] memory amounts,



        bytes memory data



    ) public virtual override {



        require(



            from == _msgSender() || isApprovedForAll(from, _msgSender()),



            "ERC1155: transfer caller is not owner nor approved"



        );



        _safeBatchTransferFrom(from, to, ids, amounts, data);



    }







    /**



     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.



     *



     * Emits a {TransferSingle} event.



     *



     * Requirements:



     *



     * - `to` cannot be the zero address.



     * - `from` must have a balance of tokens of type `id` of at least `amount`.



     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the



     * acceptance magic value.



     */



    function _safeTransferFrom(



        address from,



        address to,



        uint256 id,



        uint256 amount,



        bytes memory data



    ) internal virtual {



        require(to != address(0), "ERC1155: transfer to the zero address");



        require(locked==false, "cant transfer currently locked");



        address operator = _msgSender();



        uint256[] memory ids = _asSingletonArray(id);



        uint256[] memory amounts = _asSingletonArray(amount);



         







        _beforeTokenTransfer(operator, from, to, ids, amounts, data);







        require(_owners[id] == from && amount < 2, "ERC1155: insufficient balance for transfer");







        // The ERC1155 spec allows for transfering zero tokens, but we are still expected



        // to run the other checks and emit the event. But we don't want an ownership change



        // in that case



        if (amount == 1) {



            _owners[id] = to;



        }







        emit TransferSingle(operator, from, to, id, amount);







        _afterTokenTransfer(operator, from, to, ids, amounts, data);







        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);



    }







    /**



     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.



     *



     * Emits a {TransferBatch} event.



     *



     * Requirements:



     *



     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the



     * acceptance magic value.



     */



    function _safeBatchTransferFrom(



        address from,



        address to,



        uint256[] memory ids,



        uint256[] memory amounts,



        bytes memory data



    ) internal virtual {



        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");



        require(to != address(0), "ERC1155: transfer to the zero address");



        require(locked==false, "cant transfer currently locked");







        address operator = _msgSender();







        _beforeTokenTransfer(operator, from, to, ids, amounts, data);







        for (uint256 i = 0; i < ids.length; ++i) {



            uint256 id = ids[i];







            require(_owners[id] == from && amounts[i] < 2, "ERC1155: insufficient balance for transfer");







            if (amounts[i] == 1) {



                _owners[id] = to;



            }



        }







        emit TransferBatch(operator, from, to, ids, amounts);







        _afterTokenTransfer(operator, from, to, ids, amounts, data);







        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);



    }







    /**



     * @dev Sets a new URI for all token types, by relying on the token type ID



     * substitution mechanism



     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].



     *



     * By this mechanism, any occurrence of the `\{id\}` substring in either the



     * URI or any of the amounts in the JSON file at said URI will be replaced by



     * clients with the token type ID.



     *



     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be



     * interpreted by clients as



     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`



     * for token type ID 0x4cce0.



     *



     * See {uri}.



     *



     * Because these URIs cannot be meaningfully represented by the {URI} event,



     * this function emits no events.



     */



    function _setURI(string memory newuri) internal virtual {



        _uri = newuri;



    }







    /**



     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.



     *



     * Emits a {TransferSingle} event.



     *



     * Requirements:



     *



     * - `to` cannot be the zero address.



     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the



     * acceptance magic value.



     */















    function _mint(



        address to,



        uint256 id,



        uint256 amount,



        bytes memory data



    ) internal virtual {



        require(to != address(0), "ERC1155: mint to the zero address");



        // require(amount < 2, "ERC1155D: exceeds supply");



        // require(id < MAX_SUPPLY, "ERC1155D: invalid id");







        address operator = _msgSender();



        uint256[] memory ids = _asSingletonArray(id);



        uint256[] memory amounts = _asSingletonArray(amount);







        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);







        // The ERC1155 spec allows for transfering zero tokens, but we are still expected



        // to run the other checks and emit the event. But we don't want an ownership change



        // in that case



        if (amount == 1) {



            _owners[id] = to;



        }







        emit TransferSingle(operator, address(0), to, id, amount);







        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);







        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);



    }







    /**



     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.



     *



     * Emits a {TransferSingle} event.



     *



     * Requirements:



     *



     * - `to` cannot be the zero address.



     * - `id` must be less than MAX_SUPPLY;



     * This does not implement smart contract checks according to ERC1155 so it exists as a separate function



     */







    function _mintSingle(address to, uint256 id) internal virtual {



        require(to != address(0), "ERC1155: mint to the zero address"); // you can remove this if only minting to msg.sender



        require(_owners[id] == address(0), "ERC1155D: supply exceeded");



        require(id < MAX_SUPPLY, "ERC1155D: invalid id"); // you can remove this if the check is done outside







        _owners[id] = to; // this can be made more efficient with assembly if you know what you are doing!



        emit TransferSingle(to, address(0), to, id, 1);



    }







    /**



     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.



     *



     * Requirements:



     *



     * - `ids` and `amounts` must have the same length.



     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the



     * acceptance magic value.



     */



    function _mintBatch(



        address to,



        uint256[] memory ids,



        uint256[] memory amounts,



        bytes memory data



    ) internal virtual {



        require(to != address(0), "ERC1155: mint to the zero address");



        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");







        address operator = _msgSender();







        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);







        for (uint256 i = 0; i < ids.length; i++) {



            require(amounts[i] < 2, "ERC1155D: exceeds supply");



            require(_owners[ids[i]] == address(0), "ERC1155D: supply exceeded");







            if (amounts[i] == 1) {



                _owners[ids[i]] = to;



            }



        }







        emit TransferBatch(operator, address(0), to, ids, amounts);







        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);







        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);



    }







    /**



     * @dev Destroys `amount` tokens of token type `id` from `from`



     *



     * Requirements:



     *



     * - `from` cannot be the zero address.



     * - `from` must have at least `amount` tokens of token type `id`.



     */



    function _burn(



        address from,



        uint256 id,



        uint256 amount



    ) internal virtual {



        require(from != address(0), "ERC1155: burn from the zero address");







        address operator = _msgSender();



        uint256[] memory ids = _asSingletonArray(id);



        uint256[] memory amounts = _asSingletonArray(amount);







        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");







        require(_owners[id] == from && amount < 2, "ERC1155: burn amount exceeds balance");



        if (amount == 1) {



            _owners[id] = address(0);



        }







        emit TransferSingle(operator, from, address(0), id, amount);







        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");



    }







    /**



     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.



     *



     * Requirements:



     *



     * - `ids` and `amounts` must have the same length.



     */



    function _burnBatch(



        address from,



        uint256[] memory ids,



        uint256[] memory amounts



    ) internal virtual {



        require(from != address(0), "ERC1155: burn from the zero address");



        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");







        address operator = _msgSender();







        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");







        for (uint256 i = 0; i < ids.length; i++) {



            uint256 id = ids[i];



            require(_owners[id] == from && amounts[i] < 2, "ERC1155: burn amount exceeds balance");



            if (amounts[i] == 1) {



                _owners[id] = address(0);



            }



        }







        emit TransferBatch(operator, from, address(0), ids, amounts);







        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");



    }







    /**



     * @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, "ERC1155: setting approval status for self");



        _operatorApprovals[owner][operator] = approved;



        emit ApprovalForAll(owner, operator, approved);



    }







    /**



     * @dev Hook that is called before any token transfer. This includes minting



     * and burning, as well as batched variants.



     *



     * The same hook is called on both single and batched variants. For single



     * transfers, the length of the `id` and `amount` arrays will be 1.



     *



     * Calling conditions (for each `id` and `amount` pair):



     *



     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens



     * of token type `id` will be  transferred to `to`.



     * - When `from` is zero, `amount` tokens of token type `id` will be minted



     * for `to`.



     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`



     * will be burned.



     * - `from` and `to` are never both zero.



     * - `ids` and `amounts` have the same, non-zero length.



     *



     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].



     */



    function _beforeTokenTransfer(



        address operator,



        address from,



        address to,



        uint256[] memory ids,



        uint256[] memory amounts,



        bytes memory data



    ) internal virtual {}







    /**



     * @dev Hook that is called after any token transfer. This includes minting



     * and burning, as well as batched variants.



     *



     * The same hook is called on both single and batched variants. For single



     * transfers, the length of the `id` and `amount` arrays will be 1.



     *



     * Calling conditions (for each `id` and `amount` pair):



     *



     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens



     * of token type `id` will be  transferred to `to`.



     * - When `from` is zero, `amount` tokens of token type `id` will be minted



     * for `to`.



     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`



     * will be burned.



     * - `from` and `to` are never both zero.



     * - `ids` and `amounts` have the same, non-zero length.



     *



     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].



     */



    function _afterTokenTransfer(



        address operator,



        address from,



        address to,



        uint256[] memory ids,



        uint256[] memory amounts,



        bytes memory data



    ) internal virtual {}







    function _doSafeTransferAcceptanceCheck(



        address operator,



        address from,



        address to,



        uint256 id,



        uint256 amount,



        bytes memory data



    ) private {



        if (to.isContract()) {



            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {



                if (response != IERC1155Receiver.onERC1155Received.selector) {



                    revert("ERC1155: ERC1155Receiver rejected tokens");



                }



            } catch Error(string memory reason) {



                revert(reason);



            } catch {



                revert("ERC1155: transfer to non ERC1155Receiver implementer");



            }



        }



    }







    function _doSafeBatchTransferAcceptanceCheck(



        address operator,



        address from,



        address to,



        uint256[] memory ids,



        uint256[] memory amounts,



        bytes memory data



    ) private {



        if (to.isContract()) {



            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (



                bytes4 response



            ) {



                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {



                    revert("ERC1155: ERC1155Receiver rejected tokens");



                }



            } catch Error(string memory reason) {



                revert(reason);



            } catch {



                revert("ERC1155: transfer to non ERC1155Receiver implementer");



            }



        }



    }







    function _asSingletonArray(uint256 element) internal pure returns (uint256[] memory) {



        uint256[] memory array = new uint256[](1);



        array[0] = element;







        return array;



    }







    function _prepayGas(uint256 start, uint256 end) internal {



        require(end <= MAX_SUPPLY, "ERC1155D: end id exceeds maximum");







        for (uint256 i = start; i < end; i++) {







            bytes32 slotValue;



            assembly {



                slotValue := sload(add(_owners.slot, i))



            }







            bytes32 leftmostBitSetToOne = slotValue | bytes32(uint256(1) << 255);



            assembly {



                sstore(add(_owners.slot, i), leftmostBitSetToOne)



            }



        }



    }







    function getOwnershipRecordOffChain() external view returns(address[MAX_SUPPLY] memory) {



        return _owners;



    }







    function ownerOfERC721Like(uint256 id) external view returns(address) {



        require(id < _owners.length, "ERC1155D: id exceeds maximum");



        address owner = _owners[id];



        require(owner != address(0), "ERC1155D: owner query for nonexistent token");



        return owner;



    }







    function getERC721BalanceOffChain(address _address) external view returns(uint256) {



        uint256 counter = 0;



        for (uint256 i; i < _owners.length; i++) {



            if (_owners[i] == _address) {



                counter++;



            }



        }



        return counter;



    }



}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"uri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkiflocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getERC721BalanceOffChain","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwnershipRecordOffChain","outputs":[{"internalType":"address[8888]","name":"","type":"address[8888]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","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":"id","type":"uint256"}],"name":"ownerOfERC721Like","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enter","type":"bool"}],"name":"setlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620021f4380380620021f483398101604081905262000034916200023a565b6200003f336200008d565b825162000055906122bc906020860190620000dd565b5081516200006c906122bd906020850190620000dd565b50805162000083906122ba906020840190620000dd565b505050506200031e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620000eb90620002cb565b90600052602060002090601f0160209004810192826200010f57600085556200015a565b82601f106200012a57805160ff19168380011785556200015a565b828001600101855582156200015a579182015b828111156200015a5782518255916020019190600101906200013d565b50620001689291506200016c565b5090565b5b808211156200016857600081556001016200016d565b600082601f8301126200019557600080fd5b81516001600160401b0380821115620001b257620001b262000308565b604051601f8301601f19908116603f01168101908282118183101715620001dd57620001dd62000308565b81604052838152602092508683858801011115620001fa57600080fd5b600091505b838210156200021e5785820183015181830184015290820190620001ff565b83821115620002305760008385830101525b9695505050505050565b6000806000606084860312156200025057600080fd5b83516001600160401b03808211156200026857600080fd5b620002768783880162000183565b945060208601519150808211156200028d57600080fd5b6200029b8783880162000183565b93506040860151915080821115620002b257600080fd5b50620002c18682870162000183565b9150509250925092565b600181811c90821680620002e057607f821691505b602082108114156200030257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611ec6806200032e6000396000f3fe608060405234801561001057600080fd5b50600436106101415760003560e01c806356e695ed116100b8578063a22cb4651161007c578063a22cb46514610297578063a35da419146102aa578063c204642c146102bd578063e985e9c5146102d0578063f242432a1461030d578063f2fde38b1461032057600080fd5b806356e695ed1461023a578063715018a61461024f5780638da5cb5b146102575780638e4777891461027c57806395d89b411461028f57600080fd5b80630e89341c1161010a5780630e89341c146101cc5780632eb2c2d6146101df57806332cb6b0c146101f2578063386b0565146101fb57806339f81d8b146102075780634e1273f41461021a57600080fd5b8062fdd58e1461014657806301ffc9a71461016c57806302fe53051461018f5780630411b252146101a457806306fdde03146101b7575b600080fd5b6101596101543660046117f6565b610333565b6040519081526020015b60405180910390f35b61017f61017a366004611987565b610437565b6040519015158152602001610163565b6101a261019d3660046119c1565b610489565b005b6101a26101b2366004611725565b6104bf565b6101bf6104e1565b6040516101639190611bd4565b6101bf6101da366004611a12565b610570565b6101a26101ed36600461167b565b610605565b6101596122b881565b6122bb5460ff1661017f565b61015961021536600461162d565b61069c565b61022d61022836600461189b565b610701565b6040516101639190611b93565b61024261082b565b6040516101639190611b56565b6101a2610873565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610163565b61026461028a366004611a12565b6108a9565b6101bf610980565b6101a26102a53660046117cc565b61098e565b6101a26102b836600461196c565b61099d565b6101a26102cb366004611820565b6109db565b61017f6102de366004611648565b6001600160a01b0391821660009081526122b96020908152604080832093909416825291909152205460ff1690565b6101a261031b366004611767565b610a64565b6101a261032e36600461162d565b610aeb565b60006001600160a01b0383166103a45760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b6122b882106103f55760405162461bcd60e51b815260206004820152601c60248201527f45524331313535443a2069642065786365656473206d6178696d756d00000000604482015260640161039b565b826001600160a01b03166001836122b8811061041357610413611da8565b01546001600160a01b03161461042a57600061042d565b60015b60ff169392505050565b60006001600160e01b03198216636cdb3d1360e11b148061046857506001600160e01b031982166303a24d0760e21b145b8061048357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146104b35760405162461bcd60e51b815260040161039b90611cbe565b6104bc81610b83565b50565b6104db8484838560405180602001604052806000815250610a64565b50505050565b6122bc80546104ef90611d17565b80601f016020809104026020016040519081016040528092919081815260200182805461051b90611d17565b80156105685780601f1061053d57610100808354040283529160200191610568565b820191906000526020600020905b81548152906001019060200180831161054b57829003601f168201915b505050505081565b60606122ba805461058090611d17565b80601f01602080910402602001604051908101604052809291908181526020018280546105ac90611d17565b80156105f95780601f106105ce576101008083540402835291602001916105f9565b820191906000526020600020905b8154815290600101906020018083116105dc57829003601f168201915b50505050509050919050565b6001600160a01b038516331480610621575061062185336102de565b6106885760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161039b565b6106958585858585610b97565b5050505050565b600080805b6122b88110156106fa57836001600160a01b03166001826122b881106106c9576106c9611da8565b01546001600160a01b031614156106e857816106e481611d7f565b9250505b806106f281611d7f565b9150506106a1565b5092915050565b606081518351146107665760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161039b565b6000835167ffffffffffffffff81111561078257610782611dbe565b6040519080825280602002602001820160405280156107ab578160200160208202803683370190505b50905060005b8451811015610823576107f68582815181106107cf576107cf611da8565b60200260200101518583815181106107e9576107e9611da8565b6020026020010151610333565b82828151811061080857610808611da8565b602090810291909101015261081c81611d7f565b90506107b1565b509392505050565b61083361144b565b6040805162045700810191829052906001906122b89082845b81546001600160a01b0316815260019091019060200180831161084c575050505050905090565b6000546001600160a01b0316331461089d5760405162461bcd60e51b815260040161039b90611cbe565b6108a76000610ddf565b565b60006122b882106108fc5760405162461bcd60e51b815260206004820152601c60248201527f45524331313535443a2069642065786365656473206d6178696d756d00000000604482015260640161039b565b60006001836122b8811061091257610912611da8565b01546001600160a01b03169050806104835760405162461bcd60e51b815260206004820152602b60248201527f45524331313535443a206f776e657220717565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b606482015260840161039b565b6122bd80546104ef90611d17565b610999338383610e2f565b5050565b6000546001600160a01b031633146109c75760405162461bcd60e51b815260040161039b90611cbe565b6122bb805460ff1916911515919091179055565b6000546001600160a01b03163314610a055760405162461bcd60e51b815260040161039b90611cbe565b60005b828110156104db57610a52848483818110610a2557610a25611da8565b9050602002016020810190610a3a919061162d565b83600160405180602001604052806000815250610f11565b80610a5c81611d7f565b915050610a08565b6001600160a01b038516331480610a805750610a8085336102de565b610ade5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161039b565b610695858585858561102e565b6000546001600160a01b03163314610b155760405162461bcd60e51b815260040161039b90611cbe565b6001600160a01b038116610b7a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039b565b6104bc81610ddf565b8051610999906122ba90602084019061146c565b8151835114610bf95760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161039b565b6001600160a01b038416610c1f5760405162461bcd60e51b815260040161039b90611c2f565b6122bb5460ff1615610c735760405162461bcd60e51b815260206004820152601e60248201527f63616e74207472616e736665722063757272656e746c79206c6f636b65640000604482015260640161039b565b3360005b8451811015610d71576000858281518110610c9457610c94611da8565b60200260200101519050876001600160a01b03166001826122b88110610cbc57610cbc611da8565b01546001600160a01b0316148015610ced57506002858381518110610ce357610ce3611da8565b6020026020010151105b610d095760405162461bcd60e51b815260040161039b90611c74565b848281518110610d1b57610d1b611da8565b602002602001015160011415610d6057866001826122b88110610d4057610d40611da8565b0180546001600160a01b0319166001600160a01b03929092169190911790555b50610d6a81611d7f565b9050610c77565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610dc1929190611ba6565b60405180910390a4610dd78187878787876111cb565b505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b03161415610ea35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161039b565b6001600160a01b0383811660008181526122b96020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416610f715760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161039b565b336000610f7d85611336565b90506000610f8a85611336565b90508460011415610fca57866001876122b88110610faa57610faa611da8565b0180546001600160a01b0319166001600160a01b03929092169190911790555b60408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461102583600089898989611381565b50505050505050565b6001600160a01b0384166110545760405162461bcd60e51b815260040161039b90611c2f565b6122bb5460ff16156110a85760405162461bcd60e51b815260206004820152601e60248201527f63616e74207472616e736665722063757272656e746c79206c6f636b65640000604482015260640161039b565b3360006110b485611336565b905060006110c185611336565b9050876001600160a01b03166001876122b881106110e1576110e1611da8565b01546001600160a01b03161480156110f95750600285105b6111155760405162461bcd60e51b815260040161039b90611c74565b846001141561115357866001876122b8811061113357611133611da8565b0180546001600160a01b0319166001600160a01b03929092169190911790555b866001600160a01b0316886001600160a01b0316846001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516111ab929190918252602082015260400190565b60405180910390a46111c1838989898989611381565b5050505050505050565b6001600160a01b0384163b15610dd75760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061120f9089908990889088908890600401611ab3565b602060405180830381600087803b15801561122957600080fd5b505af1925050508015611259575060408051601f3d908101601f19168201909252611256918101906119a4565b60015b61130657611265611dd4565b806308c379a0141561129f575061127a611df0565b8061128557506112a1565b8060405162461bcd60e51b815260040161039b9190611bd4565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161039b565b6001600160e01b0319811663bc197c8160e01b146110255760405162461bcd60e51b815260040161039b90611be7565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061137057611370611da8565b602090810291909101015292915050565b6001600160a01b0384163b15610dd75760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906113c59089908990889088908890600401611b11565b602060405180830381600087803b1580156113df57600080fd5b505af192505050801561140f575060408051601f3d908101601f1916820190925261140c918101906119a4565b60015b61141b57611265611dd4565b6001600160e01b0319811663f23a6e6160e01b146110255760405162461bcd60e51b815260040161039b90611be7565b604051806204570001604052806122b8906020820280368337509192915050565b82805461147890611d17565b90600052602060002090601f01602090048101928261149a57600085556114e0565b82601f106114b357805160ff19168380011785556114e0565b828001600101855582156114e0579182015b828111156114e05782518255916020019190600101906114c5565b506114ec9291506114f0565b5090565b5b808211156114ec57600081556001016114f1565b600067ffffffffffffffff83111561151f5761151f611dbe565b604051611536601f8501601f191660200182611d52565b80915083815284848401111561154b57600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461157a57600080fd5b919050565b600082601f83011261159057600080fd5b8135602061159d82611cf3565b6040516115aa8282611d52565b8381528281019150858301600585901b870184018810156115ca57600080fd5b60005b858110156115e9578135845292840192908401906001016115cd565b5090979650505050505050565b8035801515811461157a57600080fd5b600082601f83011261161757600080fd5b61162683833560208501611505565b9392505050565b60006020828403121561163f57600080fd5b61162682611563565b6000806040838503121561165b57600080fd5b61166483611563565b915061167260208401611563565b90509250929050565b600080600080600060a0868803121561169357600080fd5b61169c86611563565b94506116aa60208701611563565b9350604086013567ffffffffffffffff808211156116c757600080fd5b6116d389838a0161157f565b945060608801359150808211156116e957600080fd5b6116f589838a0161157f565b9350608088013591508082111561170b57600080fd5b5061171888828901611606565b9150509295509295909350565b6000806000806080858703121561173b57600080fd5b61174485611563565b935061175260208601611563565b93969395505050506040820135916060013590565b600080600080600060a0868803121561177f57600080fd5b61178886611563565b945061179660208701611563565b93506040860135925060608601359150608086013567ffffffffffffffff8111156117c057600080fd5b61171888828901611606565b600080604083850312156117df57600080fd5b6117e883611563565b9150611672602084016115f6565b6000806040838503121561180957600080fd5b61181283611563565b946020939093013593505050565b60008060006040848603121561183557600080fd5b833567ffffffffffffffff8082111561184d57600080fd5b818601915086601f83011261186157600080fd5b81358181111561187057600080fd5b8760208260051b850101111561188557600080fd5b6020928301989097509590910135949350505050565b600080604083850312156118ae57600080fd5b823567ffffffffffffffff808211156118c657600080fd5b818501915085601f8301126118da57600080fd5b813560206118e782611cf3565b6040516118f48282611d52565b8381528281019150858301600585901b870184018b101561191457600080fd5b600096505b8487101561193e5761192a81611563565b835260019690960195918301918301611919565b509650508601359250508082111561195557600080fd5b506119628582860161157f565b9150509250929050565b60006020828403121561197e57600080fd5b611626826115f6565b60006020828403121561199957600080fd5b813561162681611e7a565b6000602082840312156119b657600080fd5b815161162681611e7a565b6000602082840312156119d357600080fd5b813567ffffffffffffffff8111156119ea57600080fd5b8201601f810184136119fb57600080fd5b611a0a84823560208401611505565b949350505050565b600060208284031215611a2457600080fd5b5035919050565b600081518084526020808501945080840160005b83811015611a5b57815187529582019590820190600101611a3f565b509495945050505050565b6000815180845260005b81811015611a8c57602081850181015186830182015201611a70565b81811115611a9e576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090611adf90830186611a2b565b8281036060840152611af18186611a2b565b90508281036080840152611b058185611a66565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611b4b90830184611a66565b979650505050505050565b620457008101818360005b6122b8811015611b8a5781516001600160a01b0316835260209283019290910190600101611b61565b50505092915050565b6020815260006116266020830184611a2b565b604081526000611bb96040830185611a2b565b8281036020840152611bcb8185611a2b565b95945050505050565b6020815260006116266020830184611a66565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff821115611d0d57611d0d611dbe565b5060051b60200190565b600181811c90821680611d2b57607f821691505b60208210811415611d4c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611d7857611d78611dbe565b6040525050565b6000600019821415611da157634e487b7160e01b600052601160045260246000fd5b5060010190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611ded5760046000803e5060005160e01c5b90565b600060443d1015611dfe5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611e2e57505050505090565b8285019150815181811115611e465750505050505090565b843d8701016020828501011115611e605750505050505090565b611e6f60208286010187611d52565b509095945050505050565b6001600160e01b0319811681146104bc57600080fdfea2646970667358221220432b70f1394ae14238ba043eaf962c07e1cb21e6a96e968223f631958ab60a3464736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001254686520537175697272656c7320466c6f770000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354534600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000053697066733a2f2f6261667962656967646f633361727134616d6a7a72667a366e616d73666a363767356f786834796d6432766e79627963767a366e716336647366692f73712d6d657461646174612e6a736f6e00000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101415760003560e01c806356e695ed116100b8578063a22cb4651161007c578063a22cb46514610297578063a35da419146102aa578063c204642c146102bd578063e985e9c5146102d0578063f242432a1461030d578063f2fde38b1461032057600080fd5b806356e695ed1461023a578063715018a61461024f5780638da5cb5b146102575780638e4777891461027c57806395d89b411461028f57600080fd5b80630e89341c1161010a5780630e89341c146101cc5780632eb2c2d6146101df57806332cb6b0c146101f2578063386b0565146101fb57806339f81d8b146102075780634e1273f41461021a57600080fd5b8062fdd58e1461014657806301ffc9a71461016c57806302fe53051461018f5780630411b252146101a457806306fdde03146101b7575b600080fd5b6101596101543660046117f6565b610333565b6040519081526020015b60405180910390f35b61017f61017a366004611987565b610437565b6040519015158152602001610163565b6101a261019d3660046119c1565b610489565b005b6101a26101b2366004611725565b6104bf565b6101bf6104e1565b6040516101639190611bd4565b6101bf6101da366004611a12565b610570565b6101a26101ed36600461167b565b610605565b6101596122b881565b6122bb5460ff1661017f565b61015961021536600461162d565b61069c565b61022d61022836600461189b565b610701565b6040516101639190611b93565b61024261082b565b6040516101639190611b56565b6101a2610873565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610163565b61026461028a366004611a12565b6108a9565b6101bf610980565b6101a26102a53660046117cc565b61098e565b6101a26102b836600461196c565b61099d565b6101a26102cb366004611820565b6109db565b61017f6102de366004611648565b6001600160a01b0391821660009081526122b96020908152604080832093909416825291909152205460ff1690565b6101a261031b366004611767565b610a64565b6101a261032e36600461162d565b610aeb565b60006001600160a01b0383166103a45760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b6122b882106103f55760405162461bcd60e51b815260206004820152601c60248201527f45524331313535443a2069642065786365656473206d6178696d756d00000000604482015260640161039b565b826001600160a01b03166001836122b8811061041357610413611da8565b01546001600160a01b03161461042a57600061042d565b60015b60ff169392505050565b60006001600160e01b03198216636cdb3d1360e11b148061046857506001600160e01b031982166303a24d0760e21b145b8061048357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146104b35760405162461bcd60e51b815260040161039b90611cbe565b6104bc81610b83565b50565b6104db8484838560405180602001604052806000815250610a64565b50505050565b6122bc80546104ef90611d17565b80601f016020809104026020016040519081016040528092919081815260200182805461051b90611d17565b80156105685780601f1061053d57610100808354040283529160200191610568565b820191906000526020600020905b81548152906001019060200180831161054b57829003601f168201915b505050505081565b60606122ba805461058090611d17565b80601f01602080910402602001604051908101604052809291908181526020018280546105ac90611d17565b80156105f95780601f106105ce576101008083540402835291602001916105f9565b820191906000526020600020905b8154815290600101906020018083116105dc57829003601f168201915b50505050509050919050565b6001600160a01b038516331480610621575061062185336102de565b6106885760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161039b565b6106958585858585610b97565b5050505050565b600080805b6122b88110156106fa57836001600160a01b03166001826122b881106106c9576106c9611da8565b01546001600160a01b031614156106e857816106e481611d7f565b9250505b806106f281611d7f565b9150506106a1565b5092915050565b606081518351146107665760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161039b565b6000835167ffffffffffffffff81111561078257610782611dbe565b6040519080825280602002602001820160405280156107ab578160200160208202803683370190505b50905060005b8451811015610823576107f68582815181106107cf576107cf611da8565b60200260200101518583815181106107e9576107e9611da8565b6020026020010151610333565b82828151811061080857610808611da8565b602090810291909101015261081c81611d7f565b90506107b1565b509392505050565b61083361144b565b6040805162045700810191829052906001906122b89082845b81546001600160a01b0316815260019091019060200180831161084c575050505050905090565b6000546001600160a01b0316331461089d5760405162461bcd60e51b815260040161039b90611cbe565b6108a76000610ddf565b565b60006122b882106108fc5760405162461bcd60e51b815260206004820152601c60248201527f45524331313535443a2069642065786365656473206d6178696d756d00000000604482015260640161039b565b60006001836122b8811061091257610912611da8565b01546001600160a01b03169050806104835760405162461bcd60e51b815260206004820152602b60248201527f45524331313535443a206f776e657220717565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b606482015260840161039b565b6122bd80546104ef90611d17565b610999338383610e2f565b5050565b6000546001600160a01b031633146109c75760405162461bcd60e51b815260040161039b90611cbe565b6122bb805460ff1916911515919091179055565b6000546001600160a01b03163314610a055760405162461bcd60e51b815260040161039b90611cbe565b60005b828110156104db57610a52848483818110610a2557610a25611da8565b9050602002016020810190610a3a919061162d565b83600160405180602001604052806000815250610f11565b80610a5c81611d7f565b915050610a08565b6001600160a01b038516331480610a805750610a8085336102de565b610ade5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161039b565b610695858585858561102e565b6000546001600160a01b03163314610b155760405162461bcd60e51b815260040161039b90611cbe565b6001600160a01b038116610b7a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039b565b6104bc81610ddf565b8051610999906122ba90602084019061146c565b8151835114610bf95760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161039b565b6001600160a01b038416610c1f5760405162461bcd60e51b815260040161039b90611c2f565b6122bb5460ff1615610c735760405162461bcd60e51b815260206004820152601e60248201527f63616e74207472616e736665722063757272656e746c79206c6f636b65640000604482015260640161039b565b3360005b8451811015610d71576000858281518110610c9457610c94611da8565b60200260200101519050876001600160a01b03166001826122b88110610cbc57610cbc611da8565b01546001600160a01b0316148015610ced57506002858381518110610ce357610ce3611da8565b6020026020010151105b610d095760405162461bcd60e51b815260040161039b90611c74565b848281518110610d1b57610d1b611da8565b602002602001015160011415610d6057866001826122b88110610d4057610d40611da8565b0180546001600160a01b0319166001600160a01b03929092169190911790555b50610d6a81611d7f565b9050610c77565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610dc1929190611ba6565b60405180910390a4610dd78187878787876111cb565b505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b03161415610ea35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161039b565b6001600160a01b0383811660008181526122b96020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416610f715760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161039b565b336000610f7d85611336565b90506000610f8a85611336565b90508460011415610fca57866001876122b88110610faa57610faa611da8565b0180546001600160a01b0319166001600160a01b03929092169190911790555b60408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461102583600089898989611381565b50505050505050565b6001600160a01b0384166110545760405162461bcd60e51b815260040161039b90611c2f565b6122bb5460ff16156110a85760405162461bcd60e51b815260206004820152601e60248201527f63616e74207472616e736665722063757272656e746c79206c6f636b65640000604482015260640161039b565b3360006110b485611336565b905060006110c185611336565b9050876001600160a01b03166001876122b881106110e1576110e1611da8565b01546001600160a01b03161480156110f95750600285105b6111155760405162461bcd60e51b815260040161039b90611c74565b846001141561115357866001876122b8811061113357611133611da8565b0180546001600160a01b0319166001600160a01b03929092169190911790555b866001600160a01b0316886001600160a01b0316846001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516111ab929190918252602082015260400190565b60405180910390a46111c1838989898989611381565b5050505050505050565b6001600160a01b0384163b15610dd75760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061120f9089908990889088908890600401611ab3565b602060405180830381600087803b15801561122957600080fd5b505af1925050508015611259575060408051601f3d908101601f19168201909252611256918101906119a4565b60015b61130657611265611dd4565b806308c379a0141561129f575061127a611df0565b8061128557506112a1565b8060405162461bcd60e51b815260040161039b9190611bd4565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161039b565b6001600160e01b0319811663bc197c8160e01b146110255760405162461bcd60e51b815260040161039b90611be7565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061137057611370611da8565b602090810291909101015292915050565b6001600160a01b0384163b15610dd75760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906113c59089908990889088908890600401611b11565b602060405180830381600087803b1580156113df57600080fd5b505af192505050801561140f575060408051601f3d908101601f1916820190925261140c918101906119a4565b60015b61141b57611265611dd4565b6001600160e01b0319811663f23a6e6160e01b146110255760405162461bcd60e51b815260040161039b90611be7565b604051806204570001604052806122b8906020820280368337509192915050565b82805461147890611d17565b90600052602060002090601f01602090048101928261149a57600085556114e0565b82601f106114b357805160ff19168380011785556114e0565b828001600101855582156114e0579182015b828111156114e05782518255916020019190600101906114c5565b506114ec9291506114f0565b5090565b5b808211156114ec57600081556001016114f1565b600067ffffffffffffffff83111561151f5761151f611dbe565b604051611536601f8501601f191660200182611d52565b80915083815284848401111561154b57600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461157a57600080fd5b919050565b600082601f83011261159057600080fd5b8135602061159d82611cf3565b6040516115aa8282611d52565b8381528281019150858301600585901b870184018810156115ca57600080fd5b60005b858110156115e9578135845292840192908401906001016115cd565b5090979650505050505050565b8035801515811461157a57600080fd5b600082601f83011261161757600080fd5b61162683833560208501611505565b9392505050565b60006020828403121561163f57600080fd5b61162682611563565b6000806040838503121561165b57600080fd5b61166483611563565b915061167260208401611563565b90509250929050565b600080600080600060a0868803121561169357600080fd5b61169c86611563565b94506116aa60208701611563565b9350604086013567ffffffffffffffff808211156116c757600080fd5b6116d389838a0161157f565b945060608801359150808211156116e957600080fd5b6116f589838a0161157f565b9350608088013591508082111561170b57600080fd5b5061171888828901611606565b9150509295509295909350565b6000806000806080858703121561173b57600080fd5b61174485611563565b935061175260208601611563565b93969395505050506040820135916060013590565b600080600080600060a0868803121561177f57600080fd5b61178886611563565b945061179660208701611563565b93506040860135925060608601359150608086013567ffffffffffffffff8111156117c057600080fd5b61171888828901611606565b600080604083850312156117df57600080fd5b6117e883611563565b9150611672602084016115f6565b6000806040838503121561180957600080fd5b61181283611563565b946020939093013593505050565b60008060006040848603121561183557600080fd5b833567ffffffffffffffff8082111561184d57600080fd5b818601915086601f83011261186157600080fd5b81358181111561187057600080fd5b8760208260051b850101111561188557600080fd5b6020928301989097509590910135949350505050565b600080604083850312156118ae57600080fd5b823567ffffffffffffffff808211156118c657600080fd5b818501915085601f8301126118da57600080fd5b813560206118e782611cf3565b6040516118f48282611d52565b8381528281019150858301600585901b870184018b101561191457600080fd5b600096505b8487101561193e5761192a81611563565b835260019690960195918301918301611919565b509650508601359250508082111561195557600080fd5b506119628582860161157f565b9150509250929050565b60006020828403121561197e57600080fd5b611626826115f6565b60006020828403121561199957600080fd5b813561162681611e7a565b6000602082840312156119b657600080fd5b815161162681611e7a565b6000602082840312156119d357600080fd5b813567ffffffffffffffff8111156119ea57600080fd5b8201601f810184136119fb57600080fd5b611a0a84823560208401611505565b949350505050565b600060208284031215611a2457600080fd5b5035919050565b600081518084526020808501945080840160005b83811015611a5b57815187529582019590820190600101611a3f565b509495945050505050565b6000815180845260005b81811015611a8c57602081850181015186830182015201611a70565b81811115611a9e576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090611adf90830186611a2b565b8281036060840152611af18186611a2b565b90508281036080840152611b058185611a66565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611b4b90830184611a66565b979650505050505050565b620457008101818360005b6122b8811015611b8a5781516001600160a01b0316835260209283019290910190600101611b61565b50505092915050565b6020815260006116266020830184611a2b565b604081526000611bb96040830185611a2b565b8281036020840152611bcb8185611a2b565b95945050505050565b6020815260006116266020830184611a66565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff821115611d0d57611d0d611dbe565b5060051b60200190565b600181811c90821680611d2b57607f821691505b60208210811415611d4c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611d7857611d78611dbe565b6040525050565b6000600019821415611da157634e487b7160e01b600052601160045260246000fd5b5060010190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611ded5760046000803e5060005160e01c5b90565b600060443d1015611dfe5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611e2e57505050505090565b8285019150815181811115611e465750505050505090565b843d8701016020828501011115611e605750505050505090565b611e6f60208286010187611d52565b509095945050505050565b6001600160e01b0319811681146104bc57600080fdfea2646970667358221220432b70f1394ae14238ba043eaf962c07e1cb21e6a96e968223f631958ab60a3464736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001254686520537175697272656c7320466c6f770000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354534600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000053697066733a2f2f6261667962656967646f633361727134616d6a7a72667a366e616d73666a363767356f786834796d6432766e79627963767a366e716336647366692f73712d6d657461646174612e6a736f6e00000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): The Squirrels Flow
Arg [1] : _symbol (string): TSF
Arg [2] : uri_ (string): ipfs://bafybeigdoc3arq4amjzrfz6namsfj67g5oxh4ymd2vnybycvz6nqc6dsfi/sq-metadata.json

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 54686520537175697272656c7320466c6f770000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5453460000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000053
Arg [8] : 697066733a2f2f6261667962656967646f633361727134616d6a7a72667a366e
Arg [9] : 616d73666a363767356f786834796d6432766e79627963767a366e7163366473
Arg [10] : 66692f73712d6d657461646174612e6a736f6e00000000000000000000000000


Deployed Bytecode Sourcemap

23869:23721:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26288:338;;;;;;:::i;:::-;;:::i;:::-;;;18747:25:1;;;18735:2;18720:18;26288:338:0;;;;;;;;24902:340;;;;;;:::i;:::-;;:::i;:::-;;;11935:14:1;;11928:22;11910:41;;11898:2;11883:18;24902:340:0;11770:187:1;25461:98:0;;;;;;:::i;:::-;;:::i;:::-;;26100:160;;;;;;:::i;:::-;;:::i;24457:18::-;;;:::i;:::-;;;;;;;:::i;25262:178::-;;;;;;:::i;:::-;;:::i;28700:514::-;;;;;;:::i;:::-;;:::i;24003:41::-;;24040:4;24003:41;;25974:93;26046:6;;;;25974:93;;47238:343;;;;;;:::i;:::-;;:::i;26846:620::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46739:133::-;;;:::i;:::-;;;;;;;:::i;4795:103::-;;;:::i;4144:87::-;4190:7;4217:6;-1:-1:-1;;;;;4217:6:0;4144:87;;;-1:-1:-1;;;;;9057:32:1;;;9039:51;;9027:2;9012:18;4144:87:0;8893:203:1;46892:326:0;;;;;;:::i;:::-;;:::i;24518:20::-;;;:::i;27569:167::-;;;;;;:::i;:::-;;:::i;25855:87::-;;;;;;:::i;:::-;;:::i;25588:247::-;;;;;;:::i;:::-;;:::i;27838:180::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27967:27:0;;;27937:4;27967:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;27838:180;28120:473;;;;;;:::i;:::-;;:::i;5053:201::-;;;;;;:::i;:::-;;:::i;26288:338::-;26374:7;-1:-1:-1;;;;;26408:21:0;;26400:77;;;;-1:-1:-1;;;26400:77:0;;13218:2:1;26400:77:0;;;13200:21:1;13257:2;13237:18;;;13230:30;13296:34;13276:18;;;13269:62;-1:-1:-1;;;13347:18:1;;;13340:41;13398:19;;26400:77:0;;;;;;;;;24040:4;26502:2;:15;26494:56;;;;-1:-1:-1;;;26494:56:0;;14806:2:1;26494:56:0;;;14788:21:1;14845:2;14825:18;;;14818:30;14884;14864:18;;;14857:58;14932:18;;26494:56:0;14604:352:1;26494:56:0;26597:7;-1:-1:-1;;;;;26582:22:0;:7;26590:2;26582:11;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;26582:11:0;:22;:30;;26611:1;26582:30;;;26607:1;26582:30;26575:37;;;26288:338;-1:-1:-1;;;26288:338:0:o;24902:340::-;25004:4;-1:-1:-1;;;;;;25053:41:0;;-1:-1:-1;;;25053:41:0;;:116;;-1:-1:-1;;;;;;;25117:52:0;;-1:-1:-1;;;25117:52:0;25053:116;:175;;;-1:-1:-1;;;;;;;;;;16006:40:0;;;25192:36;25027:201;24902:340;-1:-1:-1;;24902:340:0:o;25461:98::-;4190:7;4217:6;-1:-1:-1;;;;;4217:6:0;2948:10;4364:23;4356:68;;;;-1:-1:-1;;;4356:68:0;;;;;;;:::i;:::-;25532:13:::1;25540:4;25532:7;:13::i;:::-;25461:98:::0;:::o;26100:160::-;26195:38;26212:4;26217:2;26220;26223:6;26195:38;;;;;;;;;;;;:16;:38::i;:::-;26100:160;;;;:::o;24457:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25262:178::-;25331:13;25397:4;25363:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25262:178;;;:::o;28700:514::-;-1:-1:-1;;;;;28981:20:0;;2948:10;28981:20;;:60;;-1:-1:-1;29005:36:0;29022:4;2948:10;27838:180;:::i;29005:36::-;28953:178;;;;-1:-1:-1;;;28953:178:0;;15569:2:1;28953:178:0;;;15551:21:1;15608:2;15588:18;;;15581:30;15647:34;15627:18;;;15620:62;-1:-1:-1;;;15698:18:1;;;15691:48;15756:19;;28953:178:0;15367:414:1;28953:178:0;29148:52;29171:4;29177:2;29181:3;29186:7;29195:4;29148:22;:52::i;:::-;28700:514;;;;;:::o;47238:343::-;47312:7;;;47374:163;47394:14;47390:1;:18;47374:163;;;47454:8;-1:-1:-1;;;;;47440:22:0;:7;47448:1;47440:10;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;47440:10:0;:22;47436:84;;;47489:9;;;;:::i;:::-;;;;47436:84;47410:3;;;;:::i;:::-;;;;47374:163;;;-1:-1:-1;47560:7:0;47238:343;-1:-1:-1;;47238:343:0:o;26846:620::-;27032:16;27105:3;:10;27086:8;:15;:29;27078:83;;;;-1:-1:-1;;;27078:83:0;;17582:2:1;27078:83:0;;;17564:21:1;17621:2;17601:18;;;17594:30;17660:34;17640:18;;;17633:62;-1:-1:-1;;;17711:18:1;;;17704:39;17760:19;;27078:83:0;17380:405:1;27078:83:0;27186:30;27233:8;:15;27219:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27219:30:0;;27186:63;;27279:9;27274:134;27298:8;:15;27294:1;:19;27274:134;;;27360:30;27370:8;27379:1;27370:11;;;;;;;;:::i;:::-;;;;;;;27383:3;27387:1;27383:6;;;;;;;;:::i;:::-;;;;;;;27360:9;:30::i;:::-;27341:13;27355:1;27341:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;27315:3;;;:::i;:::-;;;27274:134;;;-1:-1:-1;27439:13:0;26846:620;-1:-1:-1;;;26846:620:0:o;46739:133::-;46799:26;;:::i;:::-;46844:14;;;;;;;;;;;46851:7;;46844:14;;46851:7;46844:14;;;;-1:-1:-1;;;;;46844:14:0;;;;;;;;;;;;;;;;;;;;;;46739:133;:::o;4795:103::-;4190:7;4217:6;-1:-1:-1;;;;;4217:6:0;2948:10;4364:23;4356:68;;;;-1:-1:-1;;;4356:68:0;;;;;;;:::i;:::-;4860:30:::1;4887:1;4860:18;:30::i;:::-;4795:103::o:0;46892:326::-;46953:7;46992:14;46987:2;:19;46979:60;;;;-1:-1:-1;;;46979:60:0;;14806:2:1;46979:60:0;;;14788:21:1;14845:2;14825:18;;;14818:30;14884;14864:18;;;14857:58;14932:18;;46979:60:0;14604:352:1;46979:60:0;47056:13;47072:7;47080:2;47072:11;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;47072:11:0;;-1:-1:-1;47108:19:0;47100:75;;;;-1:-1:-1;;;47100:75:0;;16760:2:1;47100:75:0;;;16742:21:1;16799:2;16779:18;;;16772:30;16838:34;16818:18;;;16811:62;-1:-1:-1;;;16889:18:1;;;16882:41;16940:19;;47100:75:0;16558:407:1;24518:20:0;;;;;;;:::i;27569:167::-;27670:52;2948:10;27703:8;27713;27670:18;:52::i;:::-;27569:167;;:::o;25855:87::-;4190:7;4217:6;-1:-1:-1;;;;;4217:6:0;2948:10;4364:23;4356:68;;;;-1:-1:-1;;;4356:68:0;;;;;;;:::i;:::-;25915:6:::1;:13:::0;;-1:-1:-1;;25915:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;25855:87::o;25588:247::-;4190:7;4217:6;-1:-1:-1;;;;;4217:6:0;2948:10;4364:23;4356:68;;;;-1:-1:-1;;;4356:68:0;;;;;;;:::i;:::-;25701:6:::1;25697:124;25708:18:::0;;::::1;25697:124;;;25764:30;25770:9;;25780:1;25770:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;25784:2;25788:1;25764:30;;;;;;;;;;;::::0;:5:::1;:30::i;:::-;25727:3:::0;::::1;::::0;::::1;:::i;:::-;;;;25697:124;;28120:473:::0;-1:-1:-1;;;;;28376:20:0;;2948:10;28376:20;;:60;;-1:-1:-1;28400:36:0;28417:4;2948:10;27838:180;:::i;28400:36::-;28348:169;;;;-1:-1:-1;;;28348:169:0;;14037:2:1;28348:169:0;;;14019:21:1;14076:2;14056:18;;;14049:30;14115:34;14095:18;;;14088:62;-1:-1:-1;;;14166:18:1;;;14159:39;14215:19;;28348:169:0;13835:405:1;28348:169:0;28534:45;28552:4;28558:2;28562;28566:6;28574:4;28534:17;:45::i;5053:201::-;4190:7;4217:6;-1:-1:-1;;;;;4217:6:0;2948:10;4364:23;4356:68;;;;-1:-1:-1;;;4356:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5142:22:0;::::1;5134:73;;;::::0;-1:-1:-1;;;5134:73:0;;13630:2:1;5134:73:0::1;::::0;::::1;13612:21:1::0;13669:2;13649:18;;;13642:30;13708:34;13688:18;;;13681:62;-1:-1:-1;;;13759:18:1;;;13752:36;13805:19;;5134:73:0::1;13428:402:1::0;5134:73:0::1;5218:28;5237:8;5218:18;:28::i;33763:100::-:0;33836:13;;;;:4;;:13;;;;;:::i;31537:1256::-;31806:7;:14;31792:3;:10;:28;31784:81;;;;-1:-1:-1;;;31784:81:0;;17992:2:1;31784:81:0;;;17974:21:1;18031:2;18011:18;;;18004:30;18070:34;18050:18;;;18043:62;-1:-1:-1;;;18121:18:1;;;18114:38;18169:19;;31784:81:0;17790:404:1;31784:81:0;-1:-1:-1;;;;;31890:16:0;;31882:66;;;;-1:-1:-1;;;31882:66:0;;;;;;;:::i;:::-;31973:6;;;;:13;31965:56;;;;-1:-1:-1;;;31965:56:0;;14447:2:1;31965:56:0;;;14429:21:1;14486:2;14466:18;;;14459:30;14525:32;14505:18;;;14498:60;14575:18;;31965:56:0;14245:354:1;31965:56:0;2948:10;32046:16;32187:332;32211:3;:10;32207:1;:14;32187:332;;;32249:10;32262:3;32266:1;32262:6;;;;;;;;:::i;:::-;;;;;;;32249:19;;32320:4;-1:-1:-1;;;;;32305:19:0;:7;32313:2;32305:11;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;32305:11:0;:19;:37;;;;;32341:1;32328:7;32336:1;32328:10;;;;;;;;:::i;:::-;;;;;;;:14;32305:37;32297:92;;;;-1:-1:-1;;;32297:92:0;;;;;;;:::i;:::-;32422:7;32430:1;32422:10;;;;;;;;:::i;:::-;;;;;;;32436:1;32422:15;32418:84;;;32478:2;32464:7;32472:2;32464:11;;;;;;;:::i;:::-;;:16;;-1:-1:-1;;;;;;32464:16:0;-1:-1:-1;;;;;32464:16:0;;;;;;;;;;32418:84;-1:-1:-1;32223:3:0;;;:::i;:::-;;;32187:332;;;;32578:2;-1:-1:-1;;;;;32548:47:0;32572:4;-1:-1:-1;;;;;32548:47:0;32562:8;-1:-1:-1;;;;;32548:47:0;;32582:3;32587:7;32548:47;;;;;;;:::i;:::-;;;;;;;;32704:75;32740:8;32750:4;32756:2;32760:3;32765:7;32774:4;32704:35;:75::i;:::-;31767:1026;31537:1256;;;;;:::o;5414:191::-;5488:16;5507:6;;-1:-1:-1;;;;;5524:17:0;;;-1:-1:-1;;;;;;5524:17:0;;;;;;5557:40;;5507:6;;;;;;;5557:40;;5488:16;5557:40;5477:128;5414:191;:::o;40922:379::-;41107:8;-1:-1:-1;;;;;41098:17:0;:5;-1:-1:-1;;;;;41098:17:0;;;41090:71;;;;-1:-1:-1;;;41090:71:0;;17172:2:1;41090:71:0;;;17154:21:1;17211:2;17191:18;;;17184:30;17250:34;17230:18;;;17223:62;-1:-1:-1;;;17301:18:1;;;17294:39;17350:19;;41090:71:0;16970:405:1;41090:71:0;-1:-1:-1;;;;;41178:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41178:46:0;;;;;;;;;;41246:41;;11910::1;;;41246::0;;11883:18:1;41246:41:0;;;;;;;40922:379;;;:::o;34351:1264::-;-1:-1:-1;;;;;34540:16:0;;34532:62;;;;-1:-1:-1;;;34532:62:0;;18401:2:1;34532:62:0;;;18383:21:1;18440:2;18420:18;;;18413:30;18479:34;18459:18;;;18452:62;-1:-1:-1;;;18530:18:1;;;18523:31;18571:19;;34532:62:0;18199:397:1;34532:62:0;2948:10;34754:16;34825:21;34843:2;34825:17;:21::i;:::-;34802:44;;34863:24;34890:25;34908:6;34890:17;:25::i;:::-;34863:52;;35263:6;35273:1;35263:11;35259:72;;;35311:2;35297:7;35305:2;35297:11;;;;;;;:::i;:::-;;:16;;-1:-1:-1;;;;;;35297:16:0;-1:-1:-1;;;;;35297:16:0;;;;;;;;;;35259:72;35360:52;;;18957:25:1;;;19013:2;18998:18;;18991:34;;;-1:-1:-1;;;;;35360:52:0;;;;35393:1;;35360:52;;;;;;18930:18:1;35360:52:0;;;;;;;35527:74;35558:8;35576:1;35580:2;35584;35588:6;35596:4;35527:30;:74::i;:::-;34515:1100;;;34351:1264;;;;:::o;29762:1345::-;-1:-1:-1;;;;;29992:16:0;;29984:66;;;;-1:-1:-1;;;29984:66:0;;;;;;;:::i;:::-;30075:6;;;;:13;30067:56;;;;-1:-1:-1;;;30067:56:0;;14447:2:1;30067:56:0;;;14429:21:1;14486:2;14466:18;;;14459:30;14525:32;14505:18;;;14498:60;14575:18;;30067:56:0;14245:354:1;30067:56:0;2948:10;30140:16;30211:21;30229:2;30211:17;:21::i;:::-;30188:44;;30249:24;30276:25;30294:6;30276:17;:25::i;:::-;30249:52;;30451:4;-1:-1:-1;;;;;30436:19:0;:7;30444:2;30436:11;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;30436:11:0;:19;:33;;;;;30468:1;30459:6;:10;30436:33;30428:88;;;;-1:-1:-1;;;30428:88:0;;;;;;;:::i;:::-;30773:6;30783:1;30773:11;30769:72;;;30821:2;30807:7;30815:2;30807:11;;;;;;;:::i;:::-;;:16;;-1:-1:-1;;;;;;30807:16:0;-1:-1:-1;;;;;30807:16:0;;;;;;;;;;30769:72;30901:2;-1:-1:-1;;;;;30870:46:0;30895:4;-1:-1:-1;;;;;30870:46:0;30885:8;-1:-1:-1;;;;;30870:46:0;;30905:2;30909:6;30870:46;;;;;;18957:25:1;;;19013:2;18998:18;;18991:34;18945:2;18930:18;;18783:248;30870:46:0;;;;;;;;31025:68;31056:8;31066:4;31072:2;31076;31080:6;31088:4;31025:30;:68::i;:::-;29967:1140;;;29762:1345;;;;;:::o;44899:939::-;-1:-1:-1;;;;;45187:13:0;;7140:19;:23;45183:642;;45229:79;;-1:-1:-1;;;45229:79:0;;-1:-1:-1;;;;;45229:43:0;;;;;:79;;45273:8;;45283:4;;45289:3;;45294:7;;45303:4;;45229:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45229:79:0;;;;;;;;-1:-1:-1;;45229:79:0;;;;;;;;;;;;:::i;:::-;;;45225:583;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;45663:6;45656:14;;-1:-1:-1;;;45656:14:0;;;;;;;;:::i;45225:583::-;;;45724:62;;-1:-1:-1;;;45724:62:0;;12388:2:1;45724:62:0;;;12370:21:1;12427:2;12407:18;;;12400:30;12466:34;12446:18;;;12439:62;-1:-1:-1;;;12517:18:1;;;12510:50;12577:19;;45724:62:0;12186:416:1;45225:583:0;-1:-1:-1;;;;;;45408:60:0;;-1:-1:-1;;;45408:60:0;45404:171;;45499:50;;-1:-1:-1;;;45499:50:0;;;;;;;:::i;45858:229::-;45985:16;;;45999:1;45985:16;;;;;;;;;45925;;45960:22;;45985:16;;;;;;;;;;;;-1:-1:-1;45985:16:0;45960:41;;46029:7;46018:5;46024:1;46018:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;46068:5;45858:229;-1:-1:-1;;45858:229:0:o;44021:858::-;-1:-1:-1;;;;;44284:13:0;;7140:19;:23;44280:586;;44326:72;;-1:-1:-1;;;44326:72:0;;-1:-1:-1;;;;;44326:38:0;;;;;:72;;44365:8;;44375:4;;44381:2;;44385:6;;44393:4;;44326:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44326:72:0;;;;;;;;-1:-1:-1;;44326:72:0;;;;;;;;;;;;:::i;:::-;;;44322:527;;;;:::i;:::-;-1:-1:-1;;;;;;44454:55:0;;-1:-1:-1;;;44454:55:0;44450:166;;44540:50;;-1:-1:-1;;;44540:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:70;;650:1;647;640:12;584:70;487:173;;;:::o;665:735::-;719:5;772:3;765:4;757:6;753:17;749:27;739:55;;790:1;787;780:12;739:55;826:6;813:20;852:4;875:43;915:2;875:43;:::i;:::-;947:2;941:9;959:31;987:2;979:6;959:31;:::i;:::-;1025:18;;;1059:15;;;;-1:-1:-1;1094:15:1;;;1144:1;1140:10;;;1128:23;;1124:32;;1121:41;-1:-1:-1;1118:61:1;;;1175:1;1172;1165:12;1118:61;1197:1;1207:163;1221:2;1218:1;1215:9;1207:163;;;1278:17;;1266:30;;1316:12;;;;1348;;;;1239:1;1232:9;1207:163;;;-1:-1:-1;1388:6:1;;665:735;-1:-1:-1;;;;;;;665:735:1:o;1405:160::-;1470:20;;1526:13;;1519:21;1509:32;;1499:60;;1555:1;1552;1545:12;1570:220;1612:5;1665:3;1658:4;1650:6;1646:17;1642:27;1632:55;;1683:1;1680;1673:12;1632:55;1705:79;1780:3;1771:6;1758:20;1751:4;1743:6;1739:17;1705:79;:::i;:::-;1696:88;1570:220;-1:-1:-1;;;1570:220:1:o;1795:186::-;1854:6;1907:2;1895:9;1886:7;1882:23;1878:32;1875:52;;;1923:1;1920;1913:12;1875:52;1946:29;1965:9;1946:29;:::i;1986:260::-;2054:6;2062;2115:2;2103:9;2094:7;2090:23;2086:32;2083:52;;;2131:1;2128;2121:12;2083:52;2154:29;2173:9;2154:29;:::i;:::-;2144:39;;2202:38;2236:2;2225:9;2221:18;2202:38;:::i;:::-;2192:48;;1986:260;;;;;:::o;2251:943::-;2405:6;2413;2421;2429;2437;2490:3;2478:9;2469:7;2465:23;2461:33;2458:53;;;2507:1;2504;2497:12;2458:53;2530:29;2549:9;2530:29;:::i;:::-;2520:39;;2578:38;2612:2;2601:9;2597:18;2578:38;:::i;:::-;2568:48;;2667:2;2656:9;2652:18;2639:32;2690:18;2731:2;2723:6;2720:14;2717:34;;;2747:1;2744;2737:12;2717:34;2770:61;2823:7;2814:6;2803:9;2799:22;2770:61;:::i;:::-;2760:71;;2884:2;2873:9;2869:18;2856:32;2840:48;;2913:2;2903:8;2900:16;2897:36;;;2929:1;2926;2919:12;2897:36;2952:63;3007:7;2996:8;2985:9;2981:24;2952:63;:::i;:::-;2942:73;;3068:3;3057:9;3053:19;3040:33;3024:49;;3098:2;3088:8;3085:16;3082:36;;;3114:1;3111;3104:12;3082:36;;3137:51;3180:7;3169:8;3158:9;3154:24;3137:51;:::i;:::-;3127:61;;;2251:943;;;;;;;;:::o;3199:397::-;3285:6;3293;3301;3309;3362:3;3350:9;3341:7;3337:23;3333:33;3330:53;;;3379:1;3376;3369:12;3330:53;3402:29;3421:9;3402:29;:::i;:::-;3392:39;;3450:38;3484:2;3473:9;3469:18;3450:38;:::i;:::-;3199:397;;3440:48;;-1:-1:-1;;;;3535:2:1;3520:18;;3507:32;;3586:2;3571:18;3558:32;;3199:397::o;3601:606::-;3705:6;3713;3721;3729;3737;3790:3;3778:9;3769:7;3765:23;3761:33;3758:53;;;3807:1;3804;3797:12;3758:53;3830:29;3849:9;3830:29;:::i;:::-;3820:39;;3878:38;3912:2;3901:9;3897:18;3878:38;:::i;:::-;3868:48;;3963:2;3952:9;3948:18;3935:32;3925:42;;4014:2;4003:9;3999:18;3986:32;3976:42;;4069:3;4058:9;4054:19;4041:33;4097:18;4089:6;4086:30;4083:50;;;4129:1;4126;4119:12;4083:50;4152:49;4193:7;4184:6;4173:9;4169:22;4152:49;:::i;4212:254::-;4277:6;4285;4338:2;4326:9;4317:7;4313:23;4309:32;4306:52;;;4354:1;4351;4344:12;4306:52;4377:29;4396:9;4377:29;:::i;:::-;4367:39;;4425:35;4456:2;4445:9;4441:18;4425:35;:::i;4471:254::-;4539:6;4547;4600:2;4588:9;4579:7;4575:23;4571:32;4568:52;;;4616:1;4613;4606:12;4568:52;4639:29;4658:9;4639:29;:::i;:::-;4629:39;4715:2;4700:18;;;;4687:32;;-1:-1:-1;;;4471:254:1:o;4730:689::-;4825:6;4833;4841;4894:2;4882:9;4873:7;4869:23;4865:32;4862:52;;;4910:1;4907;4900:12;4862:52;4950:9;4937:23;4979:18;5020:2;5012:6;5009:14;5006:34;;;5036:1;5033;5026:12;5006:34;5074:6;5063:9;5059:22;5049:32;;5119:7;5112:4;5108:2;5104:13;5100:27;5090:55;;5141:1;5138;5131:12;5090:55;5181:2;5168:16;5207:2;5199:6;5196:14;5193:34;;;5223:1;5220;5213:12;5193:34;5278:7;5271:4;5261:6;5258:1;5254:14;5250:2;5246:23;5242:34;5239:47;5236:67;;;5299:1;5296;5289:12;5236:67;5330:4;5322:13;;;;5354:6;;-1:-1:-1;5392:20:1;;;;5379:34;;4730:689;-1:-1:-1;;;;4730:689:1:o;5424:1219::-;5542:6;5550;5603:2;5591:9;5582:7;5578:23;5574:32;5571:52;;;5619:1;5616;5609:12;5571:52;5659:9;5646:23;5688:18;5729:2;5721:6;5718:14;5715:34;;;5745:1;5742;5735:12;5715:34;5783:6;5772:9;5768:22;5758:32;;5828:7;5821:4;5817:2;5813:13;5809:27;5799:55;;5850:1;5847;5840:12;5799:55;5886:2;5873:16;5908:4;5931:43;5971:2;5931:43;:::i;:::-;6003:2;5997:9;6015:31;6043:2;6035:6;6015:31;:::i;:::-;6081:18;;;6115:15;;;;-1:-1:-1;6150:11:1;;;6192:1;6188:10;;;6180:19;;6176:28;;6173:41;-1:-1:-1;6170:61:1;;;6227:1;6224;6217:12;6170:61;6249:1;6240:10;;6259:169;6273:2;6270:1;6267:9;6259:169;;;6330:23;6349:3;6330:23;:::i;:::-;6318:36;;6291:1;6284:9;;;;;6374:12;;;;6406;;6259:169;;;-1:-1:-1;6447:6:1;-1:-1:-1;;6491:18:1;;6478:32;;-1:-1:-1;;6522:16:1;;;6519:36;;;6551:1;6548;6541:12;6519:36;;6574:63;6629:7;6618:8;6607:9;6603:24;6574:63;:::i;:::-;6564:73;;;5424:1219;;;;;:::o;6648:180::-;6704:6;6757:2;6745:9;6736:7;6732:23;6728:32;6725:52;;;6773:1;6770;6763:12;6725:52;6796:26;6812:9;6796:26;:::i;6833:245::-;6891:6;6944:2;6932:9;6923:7;6919:23;6915:32;6912:52;;;6960:1;6957;6950:12;6912:52;6999:9;6986:23;7018:30;7042:5;7018:30;:::i;7083:249::-;7152:6;7205:2;7193:9;7184:7;7180:23;7176:32;7173:52;;;7221:1;7218;7211:12;7173:52;7253:9;7247:16;7272:30;7296:5;7272:30;:::i;7337:450::-;7406:6;7459:2;7447:9;7438:7;7434:23;7430:32;7427:52;;;7475:1;7472;7465:12;7427:52;7515:9;7502:23;7548:18;7540:6;7537:30;7534:50;;;7580:1;7577;7570:12;7534:50;7603:22;;7656:4;7648:13;;7644:27;-1:-1:-1;7634:55:1;;7685:1;7682;7675:12;7634:55;7708:73;7773:7;7768:2;7755:16;7750:2;7746;7742:11;7708:73;:::i;:::-;7698:83;7337:450;-1:-1:-1;;;;7337:450:1:o;7792:180::-;7851:6;7904:2;7892:9;7883:7;7879:23;7875:32;7872:52;;;7920:1;7917;7910:12;7872:52;-1:-1:-1;7943:23:1;;7792:180;-1:-1:-1;7792:180:1:o;7977:435::-;8030:3;8068:5;8062:12;8095:6;8090:3;8083:19;8121:4;8150:2;8145:3;8141:12;8134:19;;8187:2;8180:5;8176:14;8208:1;8218:169;8232:6;8229:1;8226:13;8218:169;;;8293:13;;8281:26;;8327:12;;;;8362:15;;;;8254:1;8247:9;8218:169;;;-1:-1:-1;8403:3:1;;7977:435;-1:-1:-1;;;;;7977:435:1:o;8417:471::-;8458:3;8496:5;8490:12;8523:6;8518:3;8511:19;8548:1;8558:162;8572:6;8569:1;8566:13;8558:162;;;8634:4;8690:13;;;8686:22;;8680:29;8662:11;;;8658:20;;8651:59;8587:12;8558:162;;;8738:6;8735:1;8732:13;8729:87;;;8804:1;8797:4;8788:6;8783:3;8779:16;8775:27;8768:38;8729:87;-1:-1:-1;8870:2:1;8849:15;-1:-1:-1;;8845:29:1;8836:39;;;;8877:4;8832:50;;8417:471;-1:-1:-1;;8417:471:1:o;9101:826::-;-1:-1:-1;;;;;9498:15:1;;;9480:34;;9550:15;;9545:2;9530:18;;9523:43;9460:3;9597:2;9582:18;;9575:31;;;9423:4;;9629:57;;9666:19;;9658:6;9629:57;:::i;:::-;9734:9;9726:6;9722:22;9717:2;9706:9;9702:18;9695:50;9768:44;9805:6;9797;9768:44;:::i;:::-;9754:58;;9861:9;9853:6;9849:22;9843:3;9832:9;9828:19;9821:51;9889:32;9914:6;9906;9889:32;:::i;:::-;9881:40;9101:826;-1:-1:-1;;;;;;;;9101:826:1:o;9932:560::-;-1:-1:-1;;;;;10229:15:1;;;10211:34;;10281:15;;10276:2;10261:18;;10254:43;10328:2;10313:18;;10306:34;;;10371:2;10356:18;;10349:34;;;10191:3;10414;10399:19;;10392:32;;;10154:4;;10441:45;;10466:19;;10458:6;10441:45;:::i;:::-;10433:53;9932:560;-1:-1:-1;;;;;;;9932:560:1:o;10497:532::-;10683:6;10668:22;;10672:9;10767:6;10641:4;10801:222;10815:6;10812:1;10809:13;10801:222;;;10880:13;;-1:-1:-1;;;;;10876:39:1;10864:52;;10939:4;10963:12;;;;10998:15;;;;10912:1;10830:9;10801:222;;;10805:3;;;10497:532;;;;:::o;11034:261::-;11213:2;11202:9;11195:21;11176:4;11233:56;11285:2;11274:9;11270:18;11262:6;11233:56;:::i;11300:465::-;11557:2;11546:9;11539:21;11520:4;11583:56;11635:2;11624:9;11620:18;11612:6;11583:56;:::i;:::-;11687:9;11679:6;11675:22;11670:2;11659:9;11655:18;11648:50;11715:44;11752:6;11744;11715:44;:::i;:::-;11707:52;11300:465;-1:-1:-1;;;;;11300:465:1:o;11962:219::-;12111:2;12100:9;12093:21;12074:4;12131:44;12171:2;12160:9;12156:18;12148:6;12131:44;:::i;12607:404::-;12809:2;12791:21;;;12848:2;12828:18;;;12821:30;12887:34;12882:2;12867:18;;12860:62;-1:-1:-1;;;12953:2:1;12938:18;;12931:38;13001:3;12986:19;;12607:404::o;14961:401::-;15163:2;15145:21;;;15202:2;15182:18;;;15175:30;15241:34;15236:2;15221:18;;15214:62;-1:-1:-1;;;15307:2:1;15292:18;;15285:35;15352:3;15337:19;;14961:401::o;15786:406::-;15988:2;15970:21;;;16027:2;16007:18;;;16000:30;16066:34;16061:2;16046:18;;16039:62;-1:-1:-1;;;16132:2:1;16117:18;;16110:40;16182:3;16167:19;;15786:406::o;16197:356::-;16399:2;16381:21;;;16418:18;;;16411:30;16477:34;16472:2;16457:18;;16450:62;16544:2;16529:18;;16197:356::o;19036:183::-;19096:4;19129:18;19121:6;19118:30;19115:56;;;19151:18;;:::i;:::-;-1:-1:-1;19196:1:1;19192:14;19208:4;19188:25;;19036:183::o;19224:380::-;19303:1;19299:12;;;;19346;;;19367:61;;19421:4;19413:6;19409:17;19399:27;;19367:61;19474:2;19466:6;19463:14;19443:18;19440:38;19437:161;;;19520:10;19515:3;19511:20;19508:1;19501:31;19555:4;19552:1;19545:15;19583:4;19580:1;19573:15;19437:161;;19224:380;;;:::o;19609:249::-;19719:2;19700:13;;-1:-1:-1;;19696:27:1;19684:40;;19754:18;19739:34;;19775:22;;;19736:62;19733:88;;;19801:18;;:::i;:::-;19837:2;19830:22;-1:-1:-1;;19609:249:1:o;19863:232::-;19902:3;-1:-1:-1;;19923:17:1;;19920:140;;;19982:10;19977:3;19973:20;19970:1;19963:31;20017:4;20014:1;20007:15;20045:4;20042:1;20035:15;19920:140;-1:-1:-1;20087:1:1;20076:13;;19863:232::o;20100:127::-;20161:10;20156:3;20152:20;20149:1;20142:31;20192:4;20189:1;20182:15;20216:4;20213:1;20206:15;20232:127;20293:10;20288:3;20284:20;20281:1;20274:31;20324:4;20321:1;20314:15;20348:4;20345:1;20338:15;20364:179;20399:3;20441:1;20423:16;20420:23;20417:120;;;20487:1;20484;20481;20466:23;-1:-1:-1;20524:1:1;20518:8;20513:3;20509:18;20417:120;20364:179;:::o;20548:671::-;20587:3;20629:4;20611:16;20608:26;20605:39;;;20548:671;:::o;20605:39::-;20671:2;20665:9;-1:-1:-1;;20736:16:1;20732:25;;20729:1;20665:9;20708:50;20787:4;20781:11;20811:16;20846:18;20917:2;20910:4;20902:6;20898:17;20895:25;20890:2;20882:6;20879:14;20876:45;20873:58;;;20924:5;;;;;20548:671;:::o;20873:58::-;20961:6;20955:4;20951:17;20940:28;;20997:3;20991:10;21024:2;21016:6;21013:14;21010:27;;;21030:5;;;;;;20548:671;:::o;21010:27::-;21114:2;21095:16;21089:4;21085:27;21081:36;21074:4;21065:6;21060:3;21056:16;21052:27;21049:69;21046:82;;;21121:5;;;;;;20548:671;:::o;21046:82::-;21137:57;21188:4;21179:6;21171;21167:19;21163:30;21157:4;21137:57;:::i;:::-;-1:-1:-1;21210:3:1;;20548:671;-1:-1:-1;;;;;20548:671:1:o;21224:131::-;-1:-1:-1;;;;;;21298:32:1;;21288:43;;21278:71;;21345:1;21342;21335:12

Swarm Source

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