ETH Price: $2,628.10 (+7.54%)

Token

Beard Bears yOGi Pass (BBYOGI)
 

Overview

Max Total Supply

100 BBYOGI

Holders

98

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Beard Bears yOGi Pass The holders of these passes (limited to 100) will recieve significant perks as the true yOGis.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BeardBearsyOGiPass

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 2 of 16: BeardBearsyOGiPass.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;

import './ERC721Enumerable.sol';
import './Ownable.sol';
import './Strings.sol';
import './Payment.sol';
import './Guard.sol';

contract BeardBearsyOGiPass is ERC721Enumerable, Ownable, Payment, Guard {
    using Strings for uint256;
    string public baseURI;

  	//settings
  	uint256 public maxSupply = 100;

	//shares
	address[] private addressList = [
		0x3Ae370AcD5Fe41D40A484007EEdF8A060A6c210D];
	uint[] private shareList = [100];

	//token
	constructor(
	string memory _name,
	string memory _symbol,
	string memory _initBaseURI
	) 
    ERC721(_name, _symbol)
	    Payment(addressList, shareList){
	    setURI(_initBaseURI);
	}

	// admin minting
	function gift(uint[] calldata gifts, address[] calldata recipient) external onlyOwner{
	require(gifts.length == recipient.length);
	uint g = 0;
	uint256 s = totalSupply();
	for(uint i = 0; i < gifts.length; ++i){
	g += gifts[i];
	}
	require( s + g <= maxSupply, "Too many" );
	delete g;
	for(uint i = 0; i < recipient.length; ++i){
	for(uint j = 0; j < gifts[i]; ++j){
	_safeMint( recipient[i], s++, "" );
	}
	}
	delete s;	
	}

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

	function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
	require(tokenId <= maxSupply);
	string memory currentBaseURI = _baseURI();
	return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : "";
	}

	//write metadata
	function setURI(string memory _newBaseURI) public onlyOwner {
	baseURI = _newBaseURI;
	}

	function withdraw() public payable onlyOwner {
	(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
	require(success);
	}
}

File 1 of 16: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 16: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 4 of 16: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 16: ERC721.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./ERC165.sol";

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;     
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }     
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
          if( owner == _owners[i] ){
            ++count;
          }
        }
        delete length;
        return count;
    }
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }     
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }
	function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
	function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
	function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
	function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }
	function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
	function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
	function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
	function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }
	function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }
	function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 6 of 16: ERC721Enumerable.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;
import "./ERC721.sol";
import "./IERC721Enumerable.sol";
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) {
        require(index < ERC721.balanceOf(owner), "ERC721Enum: owner ioob");
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        require(0 < ERC721.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

File 7 of 16: Guard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 8 of 16: IERC165.sol
// SPDX-License-Identifier: MIT

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 9 of 16: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 16: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 11 of 16: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 12 of 16: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 13 of 16: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 14 of 16: Payment.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Address.sol";
import "./Context.sol";
import "./SafeMath.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract Payment is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 15 of 16: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 16 of 16: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"gifts","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6064600d5560a0604052733ae370acd5fe41d40a484007eedf8a060a6c210d60809081526200003390600e90600162000586565b506040805160208101909152606481526200005390600f906001620005f0565b503480156200006157600080fd5b506040516200343c3803806200343c833981016040819052620000849162000794565b600e805480602002602001604051908101604052809291908181526020018280548015620000dc57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620000bd575b5050505050600f8054806020026020016040519081016040528092919081815260200182805480156200012f57602002820191906000526020600020905b8154815260200190600101908083116200011a575b505087518893508792506200014d9150600090602085019062000633565b5080516200016390600190602084019062000633565b505050620001806200017a620002cd60201b60201c565b620002d1565b8051825114620001f25760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002455760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401620001e9565b60005b8251811015620002b1576200029c8382815181106200026b576200026b62000825565b602002602001015183838151811062000288576200028862000825565b60200260200101516200032360201b60201c565b80620002a88162000851565b91505062000248565b50506001600b5550620002c48162000511565b505050620008c7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003905760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b6064820152608401620001e9565b60008111620003e25760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401620001e9565b6001600160a01b038216600090815260086020526040902054156200045e5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b6064820152608401620001e9565b600a8054600181019091557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319166001600160a01b0384169081179091556000908152600860205260409020819055600654620004c89082906200086f565b600655604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6005546001600160a01b031633146200056d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001e9565b80516200058290600c90602084019062000633565b5050565b828054828255906000526020600020908101928215620005de579160200282015b82811115620005de57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620005a7565b50620005ec929150620006b0565b5090565b828054828255906000526020600020908101928215620005de579160200282015b82811115620005de578251829060ff1690559160200191906001019062000611565b82805462000641906200088a565b90600052602060002090601f016020900481019282620006655760008555620005de565b82601f106200068057805160ff1916838001178555620005de565b82800160010185558215620005de579182015b82811115620005de57825182559160200191906001019062000693565b5b80821115620005ec5760008155600101620006b1565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620006ef57600080fd5b81516001600160401b03808211156200070c576200070c620006c7565b604051601f8301601f19908116603f01168101908282118183101715620007375762000737620006c7565b816040528381526020925086838588010111156200075457600080fd5b600091505b8382101562000778578582018301518183018401529082019062000759565b838211156200078a5760008385830101525b9695505050505050565b600080600060608486031215620007aa57600080fd5b83516001600160401b0380821115620007c257600080fd5b620007d087838801620006dd565b94506020860151915080821115620007e757600080fd5b620007f587838801620006dd565b935060408601519150808211156200080c57600080fd5b506200081b86828701620006dd565b9150509250925092565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156200086857620008686200083b565b5060010190565b600082198211156200088557620008856200083b565b500190565b600181811c908216806200089f57607f821691505b60208210811415620008c157634e487b7160e01b600052602260045260246000fd5b50919050565b612b6580620008d76000396000f3fe6080604052600436106101dc5760003560e01c806370a0823111610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146105ee578063e33b7de314610604578063e985e9c514610619578063f2fde38b1461066f57600080fd5b8063a22cb4651461054b578063b88d4fde1461056b578063c87b56dd1461058b578063ce7c2ac2146105ab57600080fd5b80638da5cb5b116100d15780638da5cb5b146104a857806395d89b41146104d357806396ea3a47146104e85780639852595c1461050857600080fd5b806370a0823114610426578063715018a6146104465780638462151c1461045b5780638b83209b1461048857600080fd5b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103b15780634f6ccce7146103d15780636352211e146103f15780636c0360eb1461041157600080fd5b806323b872dd146103545780632f745c59146103745780633a98ef39146103945780633ccfd60b146103a957600080fd5b8063081812fc116101b6578063081812fc146102b0578063095ea7b3146102f557806318160ddd14610315578063191655871461033457600080fd5b806301ffc9a71461023757806302fe53051461026c57806306fdde031461028e57600080fd5b36610232577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561024357600080fd5b5061025761025236600461248d565b61068f565b60405190151581526020015b60405180910390f35b34801561027857600080fd5b5061028c61028736600461256d565b6106eb565b005b34801561029a57600080fd5b506102a361076e565b604051610263919061262c565b3480156102bc57600080fd5b506102d06102cb36600461263f565b610800565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610263565b34801561030157600080fd5b5061028c61031036600461267a565b6108a6565b34801561032157600080fd5b506002545b604051908152602001610263565b34801561034057600080fd5b5061028c61034f3660046126a6565b6109ff565b34801561036057600080fd5b5061028c61036f3660046126c3565b610c3a565b34801561038057600080fd5b5061032661038f36600461267a565b610cc1565b3480156103a057600080fd5b50600654610326565b61028c610ddd565b3480156103bd57600080fd5b5061028c6103cc3660046126c3565b610e9c565b3480156103dd57600080fd5b506103266103ec36600461263f565b610eb7565b3480156103fd57600080fd5b506102d061040c36600461263f565b610f14565b34801561041d57600080fd5b506102a3610fc1565b34801561043257600080fd5b506103266104413660046126a6565b61104f565b34801561045257600080fd5b5061028c61114e565b34801561046757600080fd5b5061047b6104763660046126a6565b6111c1565b6040516102639190612704565b34801561049457600080fd5b506102d06104a336600461263f565b6112bb565b3480156104b457600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff166102d0565b3480156104df57600080fd5b506102a36112f8565b3480156104f457600080fd5b5061028c610503366004612794565b611307565b34801561051457600080fd5b506103266105233660046126a6565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561055757600080fd5b5061028c610566366004612800565b6114cc565b34801561057757600080fd5b5061028c61058636600461283e565b6115c9565b34801561059757600080fd5b506102a36105a636600461263f565b611657565b3480156105b757600080fd5b506103266105c63660046126a6565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205490565b3480156105fa57600080fd5b50610326600d5481565b34801561061057600080fd5b50600754610326565b34801561062557600080fd5b506102576106343660046128be565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561067b57600080fd5b5061028c61068a3660046126a6565b6116c4565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806106e557506106e5826117bd565b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146107575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b805161076a90600c9060208401906123cf565b5050565b60606000805461077d906128ec565b80601f01602080910402602001604051908101604052809291908181526020018280546107a9906128ec565b80156107f65780601f106107cb576101008083540402835291602001916107f6565b820191906000526020600020905b8154815290600101906020018083116107d957829003601f168201915b5050505050905090565b600061080b826118a0565b61087d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161074e565b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006108b182610f14565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109555760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161074e565b3373ffffffffffffffffffffffffffffffffffffffff8216148061097e575061097e8133610634565b6109f05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161074e565b6109fa8383611904565b505050565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260086020526040902054610a975760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f7368617265730000000000000000000000000000000000000000000000000000606482015260840161074e565b600060075447610aa7919061296f565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600960209081526040808320546006546008909352908320549394509192610aeb9085612987565b610af591906129f3565b610aff9190612a07565b905080610b745760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e74000000000000000000000000000000000000000000606482015260840161074e565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020526040902054610ba590829061296f565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260096020526040902055600754610bd990829061296f565b600755610be683826119a4565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610c443382611aca565b610cb65760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161074e565b6109fa838383611c06565b6000610ccc8361104f565b8210610d1a5760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f6200000000000000000000604482015260640161074e565b6000805b600254811015610d945760028181548110610d3b57610d3b612a1e565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff86811691161415610d845783821415610d785791506106e59050565b610d8182612a4d565b91505b610d8d81612a4d565b9050610d1e565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f6200000000000000000000604482015260640161074e565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074e565b604051600090339047908381818185875af1925050503d8060008114610e86576040519150601f19603f3d011682016040523d82523d6000602084013e610e8b565b606091505b5050905080610e9957600080fd5b50565b6109fa838383604051806020016040528060008152506115c9565b6000610ec260025490565b8210610f105760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604482015260640161074e565b5090565b60008060028381548110610f2a57610f2a612a1e565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff169050806106e55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161074e565b600c8054610fce906128ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffa906128ec565b80156110475780601f1061101c57610100808354040283529160200191611047565b820191906000526020600020905b81548152906001019060200180831161102a57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff82166110da5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161074e565b600254600090815b8181101561114557600281815481106110fd576110fd612a1e565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff868116911614156111355761113283612a4d565b92505b61113e81612a4d565b90506110e2565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146111b55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074e565b6111bf6000611dd5565b565b60606111cc8261104f565b60001061121b5760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f6200000000000000000000604482015260640161074e565b60006112268361104f565b905060008167ffffffffffffffff811115611243576112436124aa565b60405190808252806020026020018201604052801561126c578160200160208202803683370190505b50905060005b828110156112b3576112848582610cc1565b82828151811061129657611296612a1e565b6020908102919091010152806112ab81612a4d565b915050611272565b509392505050565b6000600a82815481106112d0576112d0612a1e565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b60606001805461077d906128ec565b60055473ffffffffffffffffffffffffffffffffffffffff16331461136e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074e565b82811461137a57600080fd5b60008061138660025490565b905060005b858110156113c9578686828181106113a5576113a5612a1e565b90506020020135836113b7919061296f565b92506113c281612a4d565b905061138b565b50600d546113d7838361296f565b11156114255760405162461bcd60e51b815260206004820152600860248201527f546f6f206d616e79000000000000000000000000000000000000000000000000604482015260640161074e565b6000915060005b838110156114c35760005b87878381811061144957611449612a1e565b905060200201358110156114b2576114a286868481811061146c5761146c612a1e565b905060200201602081019061148191906126a6565b8461148b81612a4d565b955060405180602001604052806000815250611e4c565b6114ab81612a4d565b9050611437565b506114bc81612a4d565b905061142c565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff82163314156115325760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161074e565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115d33383611aca565b6116455760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161074e565b61165184848484611ed5565b50505050565b6060600d5482111561166857600080fd5b6000611672611f5e565b9050600081511161169257604051806020016040528060008152506116bd565b8061169c84611f6d565b6040516020016116ad929190612a86565b6040516020818303038152906040525b9392505050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461172b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074e565b73ffffffffffffffffffffffffffffffffffffffff81166117b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161074e565b610e9981611dd5565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061185057507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106e557507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146106e5565b600254600090821080156106e55750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106118da576118da612a1e565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061195e82610f14565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156119f45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161074e565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114611a4e576040519150601f19603f3d011682016040523d82523d6000602084013e611a53565b606091505b50509050806109fa5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161074e565b6000611ad5826118a0565b611b475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161074e565b6000611b5283610f14565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bc157508373ffffffffffffffffffffffffffffffffffffffff16611ba984610800565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bfe575073ffffffffffffffffffffffffffffffffffffffff80821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611c2682610f14565b73ffffffffffffffffffffffffffffffffffffffff1614611caf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161074e565b73ffffffffffffffffffffffffffffffffffffffff8216611d375760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161074e565b611d42600082611904565b8160028281548110611d5657611d56612a1e565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611e56838361209f565b611e6360008484846121f9565b6109fa5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161074e565b611ee0848484611c06565b611eec848484846121f9565b6116515760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161074e565b6060600c805461077d906128ec565b606081611fad57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611fd75780611fc181612a4d565b9150611fd09050600a836129f3565b9150611fb1565b60008167ffffffffffffffff811115611ff257611ff26124aa565b6040519080825280601f01601f19166020018201604052801561201c576020820181803683370190505b5090505b8415611bfe57612031600183612a07565b915061203e600a86612ab5565b61204990603061296f565b60f81b81838151811061205e5761205e612a1e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612098600a866129f3565b9450612020565b73ffffffffffffffffffffffffffffffffffffffff82166121025760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161074e565b61210b816118a0565b156121585760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074e565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b156123c4576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612270903390899088908890600401612ac9565b6020604051808303816000875af19250505080156122c9575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526122c691810190612b12565b60015b612379573d8080156122f7576040519150601f19603f3d011682016040523d82523d6000602084013e6122fc565b606091505b5080516123715760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161074e565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611bfe565b506001949350505050565b8280546123db906128ec565b90600052602060002090601f0160209004810192826123fd5760008555612443565b82601f1061241657805160ff1916838001178555612443565b82800160010185558215612443579182015b82811115612443578251825591602001919060010190612428565b50610f109291505b80821115610f10576000815560010161244b565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e9957600080fd5b60006020828403121561249f57600080fd5b81356116bd8161245f565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156124f4576124f46124aa565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561253a5761253a6124aa565b8160405280935085815286868601111561255357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561257f57600080fd5b813567ffffffffffffffff81111561259657600080fd5b8201601f810184136125a757600080fd5b611bfe848235602084016124d9565b60005b838110156125d15781810151838201526020016125b9565b838111156116515750506000910152565b600081518084526125fa8160208601602086016125b6565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006116bd60208301846125e2565b60006020828403121561265157600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff81168114610e9957600080fd5b6000806040838503121561268d57600080fd5b823561269881612658565b946020939093013593505050565b6000602082840312156126b857600080fd5b81356116bd81612658565b6000806000606084860312156126d857600080fd5b83356126e381612658565b925060208401356126f381612658565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b8181101561273c57835183529284019291840191600101612720565b50909695505050505050565b60008083601f84011261275a57600080fd5b50813567ffffffffffffffff81111561277257600080fd5b6020830191508360208260051b850101111561278d57600080fd5b9250929050565b600080600080604085870312156127aa57600080fd5b843567ffffffffffffffff808211156127c257600080fd5b6127ce88838901612748565b909650945060208701359150808211156127e757600080fd5b506127f487828801612748565b95989497509550505050565b6000806040838503121561281357600080fd5b823561281e81612658565b91506020830135801515811461283357600080fd5b809150509250929050565b6000806000806080858703121561285457600080fd5b843561285f81612658565b9350602085013561286f81612658565b925060408501359150606085013567ffffffffffffffff81111561289257600080fd5b8501601f810187136128a357600080fd5b6128b2878235602084016124d9565b91505092959194509250565b600080604083850312156128d157600080fd5b82356128dc81612658565b9150602083013561283381612658565b600181811c9082168061290057607f821691505b6020821081141561293a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561298257612982612940565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129bf576129bf612940565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612a0257612a026129c4565b500490565b600082821015612a1957612a19612940565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a7f57612a7f612940565b5060010190565b60008351612a988184602088016125b6565b835190830190612aac8183602088016125b6565b01949350505050565b600082612ac457612ac46129c4565b500690565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612b0860808301846125e2565b9695505050505050565b600060208284031215612b2457600080fd5b81516116bd8161245f56fea264697066735822122052596051df5d0e33399304a79ce32f41f8a1f653cd500f13f6f33c7e80fe4db664736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000015426561726420426561727320794f47692050617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000064242594f47490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d545a696179586a505766376b693355474162757978664a3869694d726367326f386f4d3759646a354e6d41412f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101dc5760003560e01c806370a0823111610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146105ee578063e33b7de314610604578063e985e9c514610619578063f2fde38b1461066f57600080fd5b8063a22cb4651461054b578063b88d4fde1461056b578063c87b56dd1461058b578063ce7c2ac2146105ab57600080fd5b80638da5cb5b116100d15780638da5cb5b146104a857806395d89b41146104d357806396ea3a47146104e85780639852595c1461050857600080fd5b806370a0823114610426578063715018a6146104465780638462151c1461045b5780638b83209b1461048857600080fd5b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103b15780634f6ccce7146103d15780636352211e146103f15780636c0360eb1461041157600080fd5b806323b872dd146103545780632f745c59146103745780633a98ef39146103945780633ccfd60b146103a957600080fd5b8063081812fc116101b6578063081812fc146102b0578063095ea7b3146102f557806318160ddd14610315578063191655871461033457600080fd5b806301ffc9a71461023757806302fe53051461026c57806306fdde031461028e57600080fd5b36610232577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561024357600080fd5b5061025761025236600461248d565b61068f565b60405190151581526020015b60405180910390f35b34801561027857600080fd5b5061028c61028736600461256d565b6106eb565b005b34801561029a57600080fd5b506102a361076e565b604051610263919061262c565b3480156102bc57600080fd5b506102d06102cb36600461263f565b610800565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610263565b34801561030157600080fd5b5061028c61031036600461267a565b6108a6565b34801561032157600080fd5b506002545b604051908152602001610263565b34801561034057600080fd5b5061028c61034f3660046126a6565b6109ff565b34801561036057600080fd5b5061028c61036f3660046126c3565b610c3a565b34801561038057600080fd5b5061032661038f36600461267a565b610cc1565b3480156103a057600080fd5b50600654610326565b61028c610ddd565b3480156103bd57600080fd5b5061028c6103cc3660046126c3565b610e9c565b3480156103dd57600080fd5b506103266103ec36600461263f565b610eb7565b3480156103fd57600080fd5b506102d061040c36600461263f565b610f14565b34801561041d57600080fd5b506102a3610fc1565b34801561043257600080fd5b506103266104413660046126a6565b61104f565b34801561045257600080fd5b5061028c61114e565b34801561046757600080fd5b5061047b6104763660046126a6565b6111c1565b6040516102639190612704565b34801561049457600080fd5b506102d06104a336600461263f565b6112bb565b3480156104b457600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff166102d0565b3480156104df57600080fd5b506102a36112f8565b3480156104f457600080fd5b5061028c610503366004612794565b611307565b34801561051457600080fd5b506103266105233660046126a6565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561055757600080fd5b5061028c610566366004612800565b6114cc565b34801561057757600080fd5b5061028c61058636600461283e565b6115c9565b34801561059757600080fd5b506102a36105a636600461263f565b611657565b3480156105b757600080fd5b506103266105c63660046126a6565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205490565b3480156105fa57600080fd5b50610326600d5481565b34801561061057600080fd5b50600754610326565b34801561062557600080fd5b506102576106343660046128be565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561067b57600080fd5b5061028c61068a3660046126a6565b6116c4565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806106e557506106e5826117bd565b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146107575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b805161076a90600c9060208401906123cf565b5050565b60606000805461077d906128ec565b80601f01602080910402602001604051908101604052809291908181526020018280546107a9906128ec565b80156107f65780601f106107cb576101008083540402835291602001916107f6565b820191906000526020600020905b8154815290600101906020018083116107d957829003601f168201915b5050505050905090565b600061080b826118a0565b61087d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161074e565b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006108b182610f14565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109555760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161074e565b3373ffffffffffffffffffffffffffffffffffffffff8216148061097e575061097e8133610634565b6109f05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161074e565b6109fa8383611904565b505050565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260086020526040902054610a975760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f7368617265730000000000000000000000000000000000000000000000000000606482015260840161074e565b600060075447610aa7919061296f565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600960209081526040808320546006546008909352908320549394509192610aeb9085612987565b610af591906129f3565b610aff9190612a07565b905080610b745760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e74000000000000000000000000000000000000000000606482015260840161074e565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020526040902054610ba590829061296f565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260096020526040902055600754610bd990829061296f565b600755610be683826119a4565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610c443382611aca565b610cb65760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161074e565b6109fa838383611c06565b6000610ccc8361104f565b8210610d1a5760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f6200000000000000000000604482015260640161074e565b6000805b600254811015610d945760028181548110610d3b57610d3b612a1e565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff86811691161415610d845783821415610d785791506106e59050565b610d8182612a4d565b91505b610d8d81612a4d565b9050610d1e565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f6200000000000000000000604482015260640161074e565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074e565b604051600090339047908381818185875af1925050503d8060008114610e86576040519150601f19603f3d011682016040523d82523d6000602084013e610e8b565b606091505b5050905080610e9957600080fd5b50565b6109fa838383604051806020016040528060008152506115c9565b6000610ec260025490565b8210610f105760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604482015260640161074e565b5090565b60008060028381548110610f2a57610f2a612a1e565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff169050806106e55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161074e565b600c8054610fce906128ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffa906128ec565b80156110475780601f1061101c57610100808354040283529160200191611047565b820191906000526020600020905b81548152906001019060200180831161102a57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff82166110da5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161074e565b600254600090815b8181101561114557600281815481106110fd576110fd612a1e565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff868116911614156111355761113283612a4d565b92505b61113e81612a4d565b90506110e2565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146111b55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074e565b6111bf6000611dd5565b565b60606111cc8261104f565b60001061121b5760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f6200000000000000000000604482015260640161074e565b60006112268361104f565b905060008167ffffffffffffffff811115611243576112436124aa565b60405190808252806020026020018201604052801561126c578160200160208202803683370190505b50905060005b828110156112b3576112848582610cc1565b82828151811061129657611296612a1e565b6020908102919091010152806112ab81612a4d565b915050611272565b509392505050565b6000600a82815481106112d0576112d0612a1e565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b60606001805461077d906128ec565b60055473ffffffffffffffffffffffffffffffffffffffff16331461136e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074e565b82811461137a57600080fd5b60008061138660025490565b905060005b858110156113c9578686828181106113a5576113a5612a1e565b90506020020135836113b7919061296f565b92506113c281612a4d565b905061138b565b50600d546113d7838361296f565b11156114255760405162461bcd60e51b815260206004820152600860248201527f546f6f206d616e79000000000000000000000000000000000000000000000000604482015260640161074e565b6000915060005b838110156114c35760005b87878381811061144957611449612a1e565b905060200201358110156114b2576114a286868481811061146c5761146c612a1e565b905060200201602081019061148191906126a6565b8461148b81612a4d565b955060405180602001604052806000815250611e4c565b6114ab81612a4d565b9050611437565b506114bc81612a4d565b905061142c565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff82163314156115325760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161074e565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115d33383611aca565b6116455760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161074e565b61165184848484611ed5565b50505050565b6060600d5482111561166857600080fd5b6000611672611f5e565b9050600081511161169257604051806020016040528060008152506116bd565b8061169c84611f6d565b6040516020016116ad929190612a86565b6040516020818303038152906040525b9392505050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461172b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074e565b73ffffffffffffffffffffffffffffffffffffffff81166117b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161074e565b610e9981611dd5565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061185057507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106e557507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146106e5565b600254600090821080156106e55750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106118da576118da612a1e565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061195e82610f14565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156119f45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161074e565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114611a4e576040519150601f19603f3d011682016040523d82523d6000602084013e611a53565b606091505b50509050806109fa5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161074e565b6000611ad5826118a0565b611b475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161074e565b6000611b5283610f14565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bc157508373ffffffffffffffffffffffffffffffffffffffff16611ba984610800565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bfe575073ffffffffffffffffffffffffffffffffffffffff80821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611c2682610f14565b73ffffffffffffffffffffffffffffffffffffffff1614611caf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161074e565b73ffffffffffffffffffffffffffffffffffffffff8216611d375760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161074e565b611d42600082611904565b8160028281548110611d5657611d56612a1e565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611e56838361209f565b611e6360008484846121f9565b6109fa5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161074e565b611ee0848484611c06565b611eec848484846121f9565b6116515760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161074e565b6060600c805461077d906128ec565b606081611fad57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611fd75780611fc181612a4d565b9150611fd09050600a836129f3565b9150611fb1565b60008167ffffffffffffffff811115611ff257611ff26124aa565b6040519080825280601f01601f19166020018201604052801561201c576020820181803683370190505b5090505b8415611bfe57612031600183612a07565b915061203e600a86612ab5565b61204990603061296f565b60f81b81838151811061205e5761205e612a1e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612098600a866129f3565b9450612020565b73ffffffffffffffffffffffffffffffffffffffff82166121025760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161074e565b61210b816118a0565b156121585760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074e565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b156123c4576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612270903390899088908890600401612ac9565b6020604051808303816000875af19250505080156122c9575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526122c691810190612b12565b60015b612379573d8080156122f7576040519150601f19603f3d011682016040523d82523d6000602084013e6122fc565b606091505b5080516123715760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161074e565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611bfe565b506001949350505050565b8280546123db906128ec565b90600052602060002090601f0160209004810192826123fd5760008555612443565b82601f1061241657805160ff1916838001178555612443565b82800160010185558215612443579182015b82811115612443578251825591602001919060010190612428565b50610f109291505b80821115610f10576000815560010161244b565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e9957600080fd5b60006020828403121561249f57600080fd5b81356116bd8161245f565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156124f4576124f46124aa565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561253a5761253a6124aa565b8160405280935085815286868601111561255357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561257f57600080fd5b813567ffffffffffffffff81111561259657600080fd5b8201601f810184136125a757600080fd5b611bfe848235602084016124d9565b60005b838110156125d15781810151838201526020016125b9565b838111156116515750506000910152565b600081518084526125fa8160208601602086016125b6565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006116bd60208301846125e2565b60006020828403121561265157600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff81168114610e9957600080fd5b6000806040838503121561268d57600080fd5b823561269881612658565b946020939093013593505050565b6000602082840312156126b857600080fd5b81356116bd81612658565b6000806000606084860312156126d857600080fd5b83356126e381612658565b925060208401356126f381612658565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b8181101561273c57835183529284019291840191600101612720565b50909695505050505050565b60008083601f84011261275a57600080fd5b50813567ffffffffffffffff81111561277257600080fd5b6020830191508360208260051b850101111561278d57600080fd5b9250929050565b600080600080604085870312156127aa57600080fd5b843567ffffffffffffffff808211156127c257600080fd5b6127ce88838901612748565b909650945060208701359150808211156127e757600080fd5b506127f487828801612748565b95989497509550505050565b6000806040838503121561281357600080fd5b823561281e81612658565b91506020830135801515811461283357600080fd5b809150509250929050565b6000806000806080858703121561285457600080fd5b843561285f81612658565b9350602085013561286f81612658565b925060408501359150606085013567ffffffffffffffff81111561289257600080fd5b8501601f810187136128a357600080fd5b6128b2878235602084016124d9565b91505092959194509250565b600080604083850312156128d157600080fd5b82356128dc81612658565b9150602083013561283381612658565b600181811c9082168061290057607f821691505b6020821081141561293a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561298257612982612940565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129bf576129bf612940565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612a0257612a026129c4565b500490565b600082821015612a1957612a19612940565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a7f57612a7f612940565b5060010190565b60008351612a988184602088016125b6565b835190830190612aac8183602088016125b6565b01949350505050565b600082612ac457612ac46129c4565b500690565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612b0860808301846125e2565b9695505050505050565b600060208284031215612b2457600080fd5b81516116bd8161245f56fea264697066735822122052596051df5d0e33399304a79ce32f41f8a1f653cd500f13f6f33c7e80fe4db664736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000015426561726420426561727320794f47692050617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000064242594f47490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d545a696179586a505766376b693355474162757978664a3869694d726367326f386f4d3759646a354e6d41412f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Beard Bears yOGi Pass
Arg [1] : _symbol (string): BBYOGI
Arg [2] : _initBaseURI (string): https://ipfs.io/ipfs/QmTZiayXjPWf7ki3UGAbuyxfJ8iiMrcg2o8oM7Ydj5NmAA/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [4] : 426561726420426561727320794f476920506173730000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4242594f47490000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d545a696179586a5057
Arg [9] : 66376b693355474162757978664a3869694d726367326f386f4d3759646a354e
Arg [10] : 6d41412f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

199:1665:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2627:40:13;682:10:2;2627:40:13;;;218:42:16;206:55;;;188:74;;2657:9:13;293:2:16;278:18;;271:34;161:18;2627:40:13;;;;;;;199:1665:1;;;;;193:224:5;;;;;;;;;;-1:-1:-1;193:224:5;;;;;:::i;:::-;;:::i;:::-;;;913:14:16;;906:22;888:41;;876:2;861:18;193:224:5;;;;;;;;1615:90:1;;;;;;;;;;-1:-1:-1;1615:90:1;;;;;:::i;:::-;;:::i;:::-;;1672:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2305:221::-;;;;;;;;;;-1:-1:-1;2305:221:4;;;;;:::i;:::-;;:::i;:::-;;;3452:42:16;3440:55;;;3422:74;;3410:2;3395:18;2305:221:4;3276:226:16;1888:411:4;;;;;;;;;;-1:-1:-1;1888:411:4;;;;;:::i;:::-;;:::i;1351:110:5:-;;;;;;;;;;-1:-1:-1;1439:7:5;:14;1351:110;;;4132:25:16;;;4120:2;4105:18;1351:110:5;3986:177:16;3791:600:13;;;;;;;;;;-1:-1:-1;3791:600:13;;;;;:::i;:::-;;:::i;3003:339:4:-;;;;;;;;;;-1:-1:-1;3003:339:4;;;;;:::i;:::-;;:::i;423:499:5:-;;;;;;;;;;-1:-1:-1;423:499:5;;;;;:::i;:::-;;:::i;2752:89:13:-;;;;;;;;;;-1:-1:-1;2822:12:13;;2752:89;;1710:151:1;;;:::i;3348:185:4:-;;;;;;;;;;-1:-1:-1;3348:185:4;;;;;:::i;:::-;;:::i;1467:200:5:-;;;;;;;;;;-1:-1:-1;1467:200:5;;;;;:::i;:::-;;:::i;1427:239:4:-;;;;;;;;;;-1:-1:-1;1427:239:4;;;;;:::i;:::-;;:::i;311:21:1:-;;;;;;;;;;;;;:::i;1007:414:4:-;;;;;;;;;;-1:-1:-1;1007:414:4;;;;;:::i;:::-;;:::i;1650:94:12:-;;;;;;;;;;;;;:::i;928:417:5:-;;;;;;;;;;-1:-1:-1;928:417:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3499:98:13:-;;;;;;;;;;-1:-1:-1;3499:98:13;;;;;:::i;:::-;;:::i;999:87:12:-;;;;;;;;;;-1:-1:-1;1072:6:12;;;;999:87;;1778:104:4;;;;;;;;;;;;;:::i;751:441:1:-;;;;;;;;;;-1:-1:-1;751:441:1;;;;;:::i;:::-;;:::i;3306:107:13:-;;;;;;;;;;-1:-1:-1;3306:107:13;;;;;:::i;:::-;3388:18;;3362:7;3388:18;;;:9;:18;;;;;;;3306:107;2532:295:4;;;;;;;;;;-1:-1:-1;2532:295:4;;;;;:::i;:::-;;:::i;3539:328::-;;;;;;;;;;-1:-1:-1;3539:328:4;;;;;:::i;:::-;;:::i;1309:282:1:-;;;;;;;;;;-1:-1:-1;1309:282:1;;;;;:::i;:::-;;:::i;3109:103:13:-;;;;;;;;;;-1:-1:-1;3109:103:13;;;;;:::i;:::-;3189:16;;3163:7;3189:16;;;:7;:16;;;;;;;3109:103;355:30:1;;;;;;;;;;;;;;;;2930:93:13;;;;;;;;;;-1:-1:-1;3002:14:13;;2930:93;;2833:164:4;;;;;;;;;;-1:-1:-1;2833:164:4;;;;;:::i;:::-;2954:25;;;;2930:4;2954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;2833:164;1899:192:12;;;;;;;;;;-1:-1:-1;1899:192:12;;;;;:::i;:::-;;:::i;193:224:5:-;295:4;319:50;;;334:35;319:50;;:90;;;373:36;397:11;373:23;:36::i;:::-;312:97;193:224;-1:-1:-1;;193:224:5:o;1615:90:1:-;1072:6:12;;1219:23;1072:6;682:10:2;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;8744:2:16;1211:68:12;;;8726:21:16;;;8763:18;;;8756:30;8822:34;8802:18;;;8795:62;8874:18;;1211:68:12;;;;;;;;;1679:21:1;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1615:90:::0;:::o;1672:100:4:-;1726:13;1759:5;1752:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1672:100;:::o;2305:221::-;2381:7;2409:16;2417:7;2409;:16::i;:::-;2401:73;;;;-1:-1:-1;;;2401:73:4;;9547:2:16;2401:73:4;;;9529:21:16;9586:2;9566:18;;;9559:30;9625:34;9605:18;;;9598:62;9696:14;9676:18;;;9669:42;9728:19;;2401:73:4;9345:408:16;2401:73:4;-1:-1:-1;2494:24:4;;;;:15;:24;;;;;;;;;2305:221::o;1888:411::-;1969:13;1985:23;2000:7;1985:14;:23::i;:::-;1969:39;;2033:5;2027:11;;:2;:11;;;;2019:57;;;;-1:-1:-1;;;2019:57:4;;9960:2:16;2019:57:4;;;9942:21:16;9999:2;9979:18;;;9972:30;10038:34;10018:18;;;10011:62;10109:3;10089:18;;;10082:31;10130:19;;2019:57:4;9758:397:16;2019:57:4;682:10:2;2111:21:4;;;;;:62;;-1:-1:-1;2136:37:4;2153:5;682:10:2;2833:164:4;:::i;2136:37::-;2089:168;;;;-1:-1:-1;;;2089:168:4;;10362:2:16;2089:168:4;;;10344:21:16;10401:2;10381:18;;;10374:30;10440:34;10420:18;;;10413:62;10511:26;10491:18;;;10484:54;10555:19;;2089:168:4;10160:420:16;2089:168:4;2270:21;2279:2;2283:7;2270:8;:21::i;:::-;1958:341;1888:411;;:::o;3791:600:13:-;3866:16;;;3885:1;3866:16;;;:7;:16;;;;;;3858:71;;;;-1:-1:-1;;;3858:71:13;;10787:2:16;3858:71:13;;;10769:21:16;10826:2;10806:18;;;10799:30;10865:34;10845:18;;;10838:62;10936:8;10916:18;;;10909:36;10962:19;;3858:71:13;10585:402:16;3858:71:13;3940:21;3988:14;;3964:21;:38;;;;:::i;:::-;4082:18;;;4012:15;4082:18;;;:9;:18;;;;;;;;;4067:12;;4047:7;:16;;;;;;;3940:62;;-1:-1:-1;4012:15:13;;4031:32;;3940:62;4031:32;:::i;:::-;4030:49;;;;:::i;:::-;:70;;;;:::i;:::-;4012:88;-1:-1:-1;4119:12:13;4111:68;;;;-1:-1:-1;;;4111:68:13;;12193:2:16;4111:68:13;;;12175:21:16;12232:2;12212:18;;;12205:30;12271:34;12251:18;;;12244:62;12342:13;12322:18;;;12315:41;12373:19;;4111:68:13;11991:407:16;4111:68:13;4211:18;;;;;;;:9;:18;;;;;;:28;;4232:7;;4211:28;:::i;:::-;4190:18;;;;;;;:9;:18;;;;;:49;4266:14;;:24;;4283:7;;4266:24;:::i;:::-;4249:14;:41;4301:35;4319:7;4328;4301:17;:35::i;:::-;4351:33;;;218:42:16;206:55;;188:74;;293:2;278:18;;271:34;;;4351:33:13;;161:18:16;4351:33:13;;;;;;;3848:543;;3791:600;:::o;3003:339:4:-;3198:41;682:10:2;3231:7:4;3198:18;:41::i;:::-;3190:103;;;;-1:-1:-1;;;3190:103:4;;12915:2:16;3190:103:4;;;12897:21:16;12954:2;12934:18;;;12927:30;12993:34;12973:18;;;12966:62;13064:19;13044:18;;;13037:47;13101:19;;3190:103:4;12713:413:16;3190:103:4;3306:28;3316:4;3322:2;3326:7;3306:9;:28::i;423:499:5:-;512:15;556:23;573:5;556:16;:23::i;:::-;548:5;:31;540:66;;;;-1:-1:-1;;;540:66:5;;13333:2:16;540:66:5;;;13315:21:16;13372:2;13352:18;;;13345:30;13411:24;13391:18;;;13384:52;13453:18;;540:66:5;13131:346:16;540:66:5;617:10;643:6;638:226;655:7;:14;651:18;;638:226;;;704:7;712:1;704:10;;;;;;;;:::i;:::-;;;;;;;;;;;;695:19;;;704:10;;695:19;691:162;;;748:5;739;:14;735:102;;;784:1;-1:-1:-1;777:8:5;;-1:-1:-1;777:8:5;735:102;830:7;;;:::i;:::-;;;735:102;671:3;;;:::i;:::-;;;638:226;;;-1:-1:-1;874:40:5;;-1:-1:-1;;;874:40:5;;13333:2:16;874:40:5;;;13315:21:16;13372:2;13352:18;;;13345:30;13411:24;13391:18;;;13384:52;13453:18;;874:40:5;13131:346:16;1710:151:1;1072:6:12;;1219:23;1072:6;682:10:2;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;8744:2:16;1211:68:12;;;8726:21:16;;;8763:18;;;8756:30;8822:34;8802:18;;;8795:62;8874:18;;1211:68:12;8542:356:16;1211:68:12;1778:58:1::1;::::0;1760:12:::1;::::0;1786:10:::1;::::0;1810:21:::1;::::0;1760:12;1778:58;1760:12;1778:58;1810:21;1786:10;1778:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1759:77;;;1848:7;1840:16;;;::::0;::::1;;1755:106;1710:151::o:0;3348:185:4:-;3486:39;3503:4;3509:2;3513:7;3486:39;;;;;;;;;;;;:16;:39::i;1467:200:5:-;1542:7;1578:30;1439:7;:14;;1351:110;1578:30;1570:5;:38;1562:74;;;;-1:-1:-1;;;1562:74:5;;14283:2:16;1562:74:5;;;14265:21:16;14322:2;14302:18;;;14295:30;14361:25;14341:18;;;14334:53;14404:18;;1562:74:5;14081:347:16;1562:74:5;-1:-1:-1;1654:5:5;1467:200::o;1427:239:4:-;1499:7;1519:13;1535:7;1543;1535:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;1570:19:4;1562:73;;;;-1:-1:-1;;;1562:73:4;;14635:2:16;1562:73:4;;;14617:21:16;14674:2;14654:18;;;14647:30;14713:34;14693:18;;;14686:62;14784:11;14764:18;;;14757:39;14813:19;;1562:73:4;14433:405:16;311:21:1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1007:414:4:-;1079:7;1107:19;;;1099:74;;;;-1:-1:-1;;;1099:74:4;;15045:2:16;1099:74:4;;;15027:21:16;15084:2;15064:18;;;15057:30;15123:34;15103:18;;;15096:62;15194:12;15174:18;;;15167:40;15224:19;;1099:74:4;14843:406:16;1099:74:4;1223:7;:14;1184:10;;;1248:119;1269:6;1265:1;:10;1248:119;;;1308:7;1316:1;1308:10;;;;;;;;:::i;:::-;;;;;;;;;;;;1299:19;;;1308:10;;1299:19;1295:61;;;1335:7;;;:::i;:::-;;;1295:61;1277:3;;;:::i;:::-;;;1248:119;;;-1:-1:-1;1408:5:4;;1007:414;-1:-1:-1;;;1007:414:4:o;1650:94:12:-;1072:6;;1219:23;1072:6;682:10:2;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;8744:2:16;1211:68:12;;;8726:21:16;;;8763:18;;;8756:30;8822:34;8802:18;;;8795:62;8874:18;;1211:68:12;8542:356:16;1211:68:12;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;928:417:5:-;987:16;1028:23;1045:5;1028:16;:23::i;:::-;1024:1;:27;1016:62;;;;-1:-1:-1;;;1016:62:5;;13333:2:16;1016:62:5;;;13315:21:16;13372:2;13352:18;;;13345:30;13411:24;13391:18;;;13384:52;13453:18;;1016:62:5;13131:346:16;1016:62:5;1089:18;1110:16;1120:5;1110:9;:16::i;:::-;1089:37;;1137:25;1179:10;1165:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1165:25:5;;1137:53;;1206:9;1201:111;1225:10;1221:1;:14;1201:111;;;1271:29;1291:5;1298:1;1271:19;:29::i;:::-;1257:8;1266:1;1257:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;1237:3;;;;:::i;:::-;;;;1201:111;;;-1:-1:-1;1329:8:5;928:417;-1:-1:-1;;;928:417:5:o;3499:98:13:-;3550:7;3576;3584:5;3576:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;3499:98;-1:-1:-1;;3499:98:13:o;1778:104:4:-;1834:13;1867:7;1860:14;;;;;:::i;751:441:1:-;1072:6:12;;1219:23;1072:6;682:10:2;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;8744:2:16;1211:68:12;;;8726:21:16;;;8763:18;;;8756:30;8822:34;8802:18;;;8795:62;8874:18;;1211:68:12;8542:356:16;1211:68:12;848:32:1;;::::1;840:41;;;::::0;::::1;;885:6;899:9:::0;911:13:::1;1439:7:5::0;:14;;1351:110;911:13:1::1;899:25;;932:6;928:60;944:16:::0;;::::1;928:60;;;975:5;;981:1;975:8;;;;;;;:::i;:::-;;;;;;;970:13;;;;;:::i;:::-;::::0;-1:-1:-1;962:3:1::1;::::0;::::1;:::i;:::-;;;928:60;;;-1:-1:-1::0;1009:9:1::1;::::0;1000:5:::1;1004:1:::0;1000;:5:::1;:::i;:::-;:18;;991:41;;;::::0;-1:-1:-1;;;991:41:1;;15456:2:16;991:41:1::1;::::0;::::1;15438:21:16::0;15495:1;15475:18;;;15468:29;15533:10;15513:18;;;15506:38;15561:18;;991:41:1::1;15254:331:16::0;991:41:1::1;1036:8;;;1052:6;1048:127;1064:20:::0;;::::1;1048:127;;;1098:6;1094:77;1114:5;;1120:1;1114:8;;;;;;;:::i;:::-;;;;;;;1110:1;:12;1094:77;;;1132:34;1143:9;;1153:1;1143:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;1157:3:::0;::::1;::::0;::::1;:::i;:::-;;;1132:34;;;;;;;;;;;::::0;:9:::1;:34::i;:::-;1124:3;::::0;::::1;:::i;:::-;;;1094:77;;;-1:-1:-1::0;1086:3:1::1;::::0;::::1;:::i;:::-;;;1048:127;;;-1:-1:-1::0;;;;;;;751:441:1:o;2532:295:4:-;2635:24;;;682:10:2;2635:24:4;;2627:62;;;;-1:-1:-1;;;2627:62:4;;15792:2:16;2627:62:4;;;15774:21:16;15831:2;15811:18;;;15804:30;15870:27;15850:18;;;15843:55;15915:18;;2627:62:4;15590:349:16;2627:62:4;682:10:2;2702:32:4;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;2771:48;;888:41:16;;;2702:42:4;;682:10:2;2771:48:4;;861:18:16;2771:48:4;;;;;;;2532:295;;:::o;3539:328::-;3714:41;682:10:2;3747:7:4;3714:18;:41::i;:::-;3706:103;;;;-1:-1:-1;;;3706:103:4;;12915:2:16;3706:103:4;;;12897:21:16;12954:2;12934:18;;;12927:30;12993:34;12973:18;;;12966:62;13064:19;13044:18;;;13037:47;13101:19;;3706:103:4;12713:413:16;3706:103:4;3820:39;3834:4;3840:2;3844:7;3853:5;3820:13;:39::i;:::-;3539:328;;;;:::o;1309:282:1:-;1382:13;1420:9;;1409:7;:20;;1401:29;;;;;;1434:28;1465:10;:8;:10::i;:::-;1434:41;;1517:1;1492:14;1486:28;:32;:100;;;;;;;;;;;;;;;;;1545:14;1561:18;:7;:16;:18::i;:::-;1528:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1486:100;1479:107;1309:282;-1:-1:-1;;;1309:282:1:o;1899:192:12:-;1072:6;;1219:23;1072:6;682:10:2;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;8744:2:16;1211:68:12;;;8726:21:16;;;8763:18;;;8756:30;8822:34;8802:18;;;8795:62;8874:18;;1211:68:12;8542:356:16;1211:68:12;1988:22:::1;::::0;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:12;;16621:2:16;1980:73:12::1;::::0;::::1;16603:21:16::0;16660:2;16640:18;;;16633:30;16699:34;16679:18;;;16672:62;16770:8;16750:18;;;16743:36;16796:19;;1980:73:12::1;16419:402:16::0;1980:73:12::1;2064:19;2074:8;2064:9;:19::i;696:305:4:-:0;798:4;835:40;;;850:25;835:40;;:105;;-1:-1:-1;892:48:4;;;907:33;892:48;835:105;:158;;;-1:-1:-1;911:25:3;896:40;;;;957:36:4;787:157:3;4196:155:4;4295:7;:14;4261:4;;4285:24;;:58;;;;;4341:1;4313:30;;:7;4321;4313:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;:30;;4278:65;4196:155;-1:-1:-1;;4196:155:4:o;6345:174::-;6420:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;6474:23;6420:24;6474:14;:23::i;:::-;6465:46;;;;;;;;;;;;6345:174;;:::o;2065:317:0:-;2180:6;2155:21;:31;;2147:73;;;;-1:-1:-1;;;2147:73:0;;17028:2:16;2147:73:0;;;17010:21:16;17067:2;17047:18;;;17040:30;17106:31;17086:18;;;17079:59;17155:18;;2147:73:0;16826:353:16;2147:73:0;2234:12;2252:9;:14;;2274:6;2252:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233:52;;;2304:7;2296:78;;;;-1:-1:-1;;;2296:78:0;;17386:2:16;2296:78:0;;;17368:21:16;17425:2;17405:18;;;17398:30;17464:34;17444:18;;;17437:62;17535:28;17515:18;;;17508:56;17581:19;;2296:78:0;17184:422:16;4354:348:4;4447:4;4472:16;4480:7;4472;:16::i;:::-;4464:73;;;;-1:-1:-1;;;4464:73:4;;17813:2:16;4464:73:4;;;17795:21:16;17852:2;17832:18;;;17825:30;17891:34;17871:18;;;17864:62;17962:14;17942:18;;;17935:42;17994:19;;4464:73:4;17611:408:16;4464:73:4;4548:13;4564:23;4579:7;4564:14;:23::i;:::-;4548:39;;4617:5;4606:16;;:7;:16;;;:51;;;;4650:7;4626:31;;:20;4638:7;4626:11;:20::i;:::-;:31;;;4606:51;:87;;;-1:-1:-1;2954:25:4;;;;2930:4;2954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;4661:32;4598:96;4354:348;-1:-1:-1;;;;4354:348:4:o;5826:516::-;5985:4;5958:31;;:23;5973:7;5958:14;:23::i;:::-;:31;;;5950:85;;;;-1:-1:-1;;;5950:85:4;;18226:2:16;5950:85:4;;;18208:21:16;18265:2;18245:18;;;18238:30;18304:34;18284:18;;;18277:62;18375:11;18355:18;;;18348:39;18404:19;;5950:85:4;18024:405:16;5950:85:4;6054:16;;;6046:65;;;;-1:-1:-1;;;6046:65:4;;18636:2:16;6046:65:4;;;18618:21:16;18675:2;18655:18;;;18648:30;18714:34;18694:18;;;18687:62;18785:6;18765:18;;;18758:34;18809:19;;6046:65:4;18434:400:16;6046:65:4;6228:29;6245:1;6249:7;6228:8;:29::i;:::-;6287:2;6268:7;6276;6268:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;;;;;;;;;;6307:27;;6326:7;;6307:27;;;;;;;;;;6268:16;6307:27;5826:516;;;:::o;2099:173:12:-;2174:6;;;;2191:17;;;;;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;4818:321:4:-;4948:18;4954:2;4958:7;4948:5;:18::i;:::-;4999:54;5030:1;5034:2;5038:7;5047:5;4999:22;:54::i;:::-;4977:154;;;;-1:-1:-1;;;4977:154:4;;19041:2:16;4977:154:4;;;19023:21:16;19080:2;19060:18;;;19053:30;19119:34;19099:18;;;19092:62;19190:20;19170:18;;;19163:48;19228:19;;4977:154:4;18839:414:16;3878:315:4;4035:28;4045:4;4051:2;4055:7;4035:9;:28::i;:::-;4082:48;4105:4;4111:2;4115:7;4124:5;4082:22;:48::i;:::-;4074:111;;;;-1:-1:-1;;;4074:111:4;;19041:2:16;4074:111:4;;;19023:21:16;19080:2;19060:18;;;19053:30;19119:34;19099:18;;;19092:62;19190:20;19170:18;;;19163:48;19228:19;;4074:111:4;18839:414:16;1215:89:1;1266:13;1292:7;1285:14;;;;;:::i;288:723:15:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:15;;;;;;;;;;;;;;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:15;;-1:-1:-1;744:2:15;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:15;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:15;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;949:11:15;958:2;949:11;;:::i;:::-;;;818:154;;5142:346:4;5222:16;;;5214:61;;;;-1:-1:-1;;;5214:61:4;;19577:2:16;5214:61:4;;;19559:21:16;;;19596:18;;;19589:30;19655:34;19635:18;;;19628:62;19707:18;;5214:61:4;19375:356:16;5214:61:4;5295:16;5303:7;5295;:16::i;:::-;5294:17;5286:58;;;;-1:-1:-1;;;5286:58:4;;19938:2:16;5286:58:4;;;19920:21:16;19977:2;19957:18;;;19950:30;20016;19996:18;;;19989:58;20064:18;;5286:58:4;19736:352:16;5286:58:4;5413:7;:16;;;;;;;-1:-1:-1;5413:16:4;;;;;;;;;;;;;;;;;;5447:33;;5472:7;;-1:-1:-1;5447:33:4;;-1:-1:-1;;5447:33:4;5142:346;;:::o;6522:799::-;6677:4;6698:13;;;1066:20:0;1114:8;6694:620:4;;6734:72;;;;;:36;;;;;;:72;;682:10:2;;6785:4:4;;6791:7;;6800:5;;6734:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6734:72:4;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;6730:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6976:13:4;;6972:272;;7019:60;;-1:-1:-1;;;7019:60:4;;19041:2:16;7019:60:4;;;19023:21:16;19080:2;19060:18;;;19053:30;19119:34;19099:18;;;19092:62;19190:20;19170:18;;;19163:48;19228:19;;7019:60:4;18839:414:16;6972:272:4;7194:6;7188:13;7179:6;7175:2;7171:15;7164:38;6730:529;6857:51;;6867:41;6857:51;;-1:-1:-1;6850:58:4;;6694:620;-1:-1:-1;7298:4:4;6522:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316:177:16;401:66;394:5;390:78;383:5;380:89;370:117;;483:1;480;473:12;498:245;556:6;609:2;597:9;588:7;584:23;580:32;577:52;;;625:1;622;615:12;577:52;664:9;651:23;683:30;707:5;683:30;:::i;940:184::-;992:77;989:1;982:88;1089:4;1086:1;1079:15;1113:4;1110:1;1103:15;1129:691;1194:5;1224:18;1265:2;1257:6;1254:14;1251:40;;;1271:18;;:::i;:::-;1405:2;1399:9;1471:2;1459:15;;1310:66;1455:24;;;1481:2;1451:33;1447:42;1435:55;;;1505:18;;;1525:22;;;1502:46;1499:72;;;1551:18;;:::i;:::-;1591:10;1587:2;1580:22;1620:6;1611:15;;1650:6;1642;1635:22;1690:3;1681:6;1676:3;1672:16;1669:25;1666:45;;;1707:1;1704;1697:12;1666:45;1757:6;1752:3;1745:4;1737:6;1733:17;1720:44;1812:1;1805:4;1796:6;1788;1784:19;1780:30;1773:41;;;;1129:691;;;;;:::o;1825:451::-;1894:6;1947:2;1935:9;1926:7;1922:23;1918:32;1915:52;;;1963:1;1960;1953:12;1915:52;2003:9;1990:23;2036:18;2028:6;2025:30;2022:50;;;2068:1;2065;2058:12;2022:50;2091:22;;2144:4;2136:13;;2132:27;-1:-1:-1;2122:55:16;;2173:1;2170;2163:12;2122:55;2196:74;2262:7;2257:2;2244:16;2239:2;2235;2231:11;2196:74;:::i;2281:258::-;2353:1;2363:113;2377:6;2374:1;2371:13;2363:113;;;2453:11;;;2447:18;2434:11;;;2427:39;2399:2;2392:10;2363:113;;;2494:6;2491:1;2488:13;2485:48;;;-1:-1:-1;;2529:1:16;2511:16;;2504:27;2281:258::o;2544:317::-;2586:3;2624:5;2618:12;2651:6;2646:3;2639:19;2667:63;2723:6;2716:4;2711:3;2707:14;2700:4;2693:5;2689:16;2667:63;:::i;:::-;2775:2;2763:15;2780:66;2759:88;2750:98;;;;2850:4;2746:109;;2544:317;-1:-1:-1;;2544:317:16:o;2866:220::-;3015:2;3004:9;2997:21;2978:4;3035:45;3076:2;3065:9;3061:18;3053:6;3035:45;:::i;3091:180::-;3150:6;3203:2;3191:9;3182:7;3178:23;3174:32;3171:52;;;3219:1;3216;3209:12;3171:52;-1:-1:-1;3242:23:16;;3091:180;-1:-1:-1;3091:180:16:o;3507:154::-;3593:42;3586:5;3582:54;3575:5;3572:65;3562:93;;3651:1;3648;3641:12;3666:315;3734:6;3742;3795:2;3783:9;3774:7;3770:23;3766:32;3763:52;;;3811:1;3808;3801:12;3763:52;3850:9;3837:23;3869:31;3894:5;3869:31;:::i;:::-;3919:5;3971:2;3956:18;;;;3943:32;;-1:-1:-1;;;3666:315:16:o;4168:255::-;4235:6;4288:2;4276:9;4267:7;4263:23;4259:32;4256:52;;;4304:1;4301;4294:12;4256:52;4343:9;4330:23;4362:31;4387:5;4362:31;:::i;4428:456::-;4505:6;4513;4521;4574:2;4562:9;4553:7;4549:23;4545:32;4542:52;;;4590:1;4587;4580:12;4542:52;4629:9;4616:23;4648:31;4673:5;4648:31;:::i;:::-;4698:5;-1:-1:-1;4755:2:16;4740:18;;4727:32;4768:33;4727:32;4768:33;:::i;:::-;4428:456;;4820:7;;-1:-1:-1;;;4874:2:16;4859:18;;;;4846:32;;4428:456::o;5141:632::-;5312:2;5364:21;;;5434:13;;5337:18;;;5456:22;;;5283:4;;5312:2;5535:15;;;;5509:2;5494:18;;;5283:4;5578:169;5592:6;5589:1;5586:13;5578:169;;;5653:13;;5641:26;;5722:15;;;;5687:12;;;;5614:1;5607:9;5578:169;;;-1:-1:-1;5764:3:16;;5141:632;-1:-1:-1;;;;;;5141:632:16:o;5778:367::-;5841:8;5851:6;5905:3;5898:4;5890:6;5886:17;5882:27;5872:55;;5923:1;5920;5913:12;5872:55;-1:-1:-1;5946:20:16;;5989:18;5978:30;;5975:50;;;6021:1;6018;6011:12;5975:50;6058:4;6050:6;6046:17;6034:29;;6118:3;6111:4;6101:6;6098:1;6094:14;6086:6;6082:27;6078:38;6075:47;6072:67;;;6135:1;6132;6125:12;6072:67;5778:367;;;;;:::o;6150:773::-;6272:6;6280;6288;6296;6349:2;6337:9;6328:7;6324:23;6320:32;6317:52;;;6365:1;6362;6355:12;6317:52;6405:9;6392:23;6434:18;6475:2;6467:6;6464:14;6461:34;;;6491:1;6488;6481:12;6461:34;6530:70;6592:7;6583:6;6572:9;6568:22;6530:70;:::i;:::-;6619:8;;-1:-1:-1;6504:96:16;-1:-1:-1;6707:2:16;6692:18;;6679:32;;-1:-1:-1;6723:16:16;;;6720:36;;;6752:1;6749;6742:12;6720:36;;6791:72;6855:7;6844:8;6833:9;6829:24;6791:72;:::i;:::-;6150:773;;;;-1:-1:-1;6882:8:16;-1:-1:-1;;;;6150:773:16:o;6928:416::-;6993:6;7001;7054:2;7042:9;7033:7;7029:23;7025:32;7022:52;;;7070:1;7067;7060:12;7022:52;7109:9;7096:23;7128:31;7153:5;7128:31;:::i;:::-;7178:5;-1:-1:-1;7235:2:16;7220:18;;7207:32;7277:15;;7270:23;7258:36;;7248:64;;7308:1;7305;7298:12;7248:64;7331:7;7321:17;;;6928:416;;;;;:::o;7349:795::-;7444:6;7452;7460;7468;7521:3;7509:9;7500:7;7496:23;7492:33;7489:53;;;7538:1;7535;7528:12;7489:53;7577:9;7564:23;7596:31;7621:5;7596:31;:::i;:::-;7646:5;-1:-1:-1;7703:2:16;7688:18;;7675:32;7716:33;7675:32;7716:33;:::i;:::-;7768:7;-1:-1:-1;7822:2:16;7807:18;;7794:32;;-1:-1:-1;7877:2:16;7862:18;;7849:32;7904:18;7893:30;;7890:50;;;7936:1;7933;7926:12;7890:50;7959:22;;8012:4;8004:13;;8000:27;-1:-1:-1;7990:55:16;;8041:1;8038;8031:12;7990:55;8064:74;8130:7;8125:2;8112:16;8107:2;8103;8099:11;8064:74;:::i;:::-;8054:84;;;7349:795;;;;;;;:::o;8149:388::-;8217:6;8225;8278:2;8266:9;8257:7;8253:23;8249:32;8246:52;;;8294:1;8291;8284:12;8246:52;8333:9;8320:23;8352:31;8377:5;8352:31;:::i;:::-;8402:5;-1:-1:-1;8459:2:16;8444:18;;8431:32;8472:33;8431:32;8472:33;:::i;8903:437::-;8982:1;8978:12;;;;9025;;;9046:61;;9100:4;9092:6;9088:17;9078:27;;9046:61;9153:2;9145:6;9142:14;9122:18;9119:38;9116:218;;;9190:77;9187:1;9180:88;9291:4;9288:1;9281:15;9319:4;9316:1;9309:15;9116:218;;8903:437;;;:::o;10992:184::-;11044:77;11041:1;11034:88;11141:4;11138:1;11131:15;11165:4;11162:1;11155:15;11181:128;11221:3;11252:1;11248:6;11245:1;11242:13;11239:39;;;11258:18;;:::i;:::-;-1:-1:-1;11294:9:16;;11181:128::o;11314:228::-;11354:7;11480:1;11412:66;11408:74;11405:1;11402:81;11397:1;11390:9;11383:17;11379:105;11376:131;;;11487:18;;:::i;:::-;-1:-1:-1;11527:9:16;;11314:228::o;11547:184::-;11599:77;11596:1;11589:88;11696:4;11693:1;11686:15;11720:4;11717:1;11710:15;11736:120;11776:1;11802;11792:35;;11807:18;;:::i;:::-;-1:-1:-1;11841:9:16;;11736:120::o;11861:125::-;11901:4;11929:1;11926;11923:8;11920:34;;;11934:18;;:::i;:::-;-1:-1:-1;11971:9:16;;11861:125::o;13482:184::-;13534:77;13531:1;13524:88;13631:4;13628:1;13621:15;13655:4;13652:1;13645:15;13671:195;13710:3;13741:66;13734:5;13731:77;13728:103;;;13811:18;;:::i;:::-;-1:-1:-1;13858:1:16;13847:13;;13671:195::o;15944:470::-;16123:3;16161:6;16155:13;16177:53;16223:6;16218:3;16211:4;16203:6;16199:17;16177:53;:::i;:::-;16293:13;;16252:16;;;;16315:57;16293:13;16252:16;16349:4;16337:17;;16315:57;:::i;:::-;16388:20;;15944:470;-1:-1:-1;;;;15944:470:16:o;19258:112::-;19290:1;19316;19306:35;;19321:18;;:::i;:::-;-1:-1:-1;19355:9:16;;19258:112::o;20093:512::-;20287:4;20316:42;20397:2;20389:6;20385:15;20374:9;20367:34;20449:2;20441:6;20437:15;20432:2;20421:9;20417:18;20410:43;;20489:6;20484:2;20473:9;20469:18;20462:34;20532:3;20527:2;20516:9;20512:18;20505:31;20553:46;20594:3;20583:9;20579:19;20571:6;20553:46;:::i;:::-;20545:54;20093:512;-1:-1:-1;;;;;;20093:512:16:o;20610:249::-;20679:6;20732:2;20720:9;20711:7;20707:23;20703:32;20700:52;;;20748:1;20745;20738:12;20700:52;20780:9;20774:16;20799:30;20823:5;20799:30;:::i

Swarm Source

ipfs://52596051df5d0e33399304a79ce32f41f8a1f653cd500f13f6f33c7e80fe4db6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.