ETH Price: $2,579.50 (-4.31%)

Super Bank Bros (SBB)
 

Overview

TokenID

215

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SuperBankBros

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : SuperBankBros.sol
pragma solidity ^0.8.17;

import "@openzeppelin/contracts/access/Ownable.sol";
import "tiny-erc721/contracts/TinyERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";

contract SuperBankBros is TinyERC721, Ownable, DefaultOperatorFilterer {

    string public baseURI;

    address public lead;

    bool public publicPaused = true;
    
    uint256 public cost = 0.003 ether;
    uint256 public maxSupply = 6969;
    uint256 public maxPerWalletPaid = 20;
    uint256 public maxPerWalletFree = 1;
    uint256 public maxPerTxPaid = 10;
    uint256 public maxPerTxFree = 1;
    uint256 supply = totalSupply();

    mapping(address => uint) public addressMintedBalance;
    mapping(address => uint) public addressMintedBalanceFree;


 constructor(
    string memory _baseURI,
    address _lead
  )TinyERC721("Super Bank Bros", "SBB", 0) {
    baseURI = _baseURI;
    lead = _lead;
  }

  modifier publicnotPaused() {
    require(!publicPaused, "Contract is Paused");
     _;
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, 'The caller is another contract.');
    _;
  }

  function tokenURI(uint256 _tokenId) public view override returns (string memory) {
    require(_exists(_tokenId), "Token does not exist.");
    return string(abi.encodePacked(baseURI, Strings.toString(_tokenId),".json"));
  }

  function togglePublic(bool _state) external onlyOwner {
    publicPaused = _state;
  }

  function privateMint(uint256 _quanitity) public onlyOwner {        
    uint256 supply = totalSupply();
    require(_quanitity + supply <= maxSupply);
    _safeMint(msg.sender, _quanitity);
  }

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

  function setmaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

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

  function setmaxPerWalletPaid(uint256 _MPWPaid) public onlyOwner {
    maxPerWalletPaid = _MPWPaid;
  }

  function setmaxPerTxPaid(uint256 _MPTxPaid) public onlyOwner {
    maxPerTxPaid = _MPTxPaid;
  }

  function setmaxPerWalletFree(uint256 _MPWFree) public onlyOwner {
    maxPerWalletFree = _MPWFree;
  }

  function setmaxPerTxFree(uint256 _MPTxFree) public onlyOwner {
    maxPerTxFree = _MPTxFree;
  }

  function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

  function paidMint(uint256 _quantity)
    public 
    payable 
    publicnotPaused() 
    callerIsUser() 
  {
    uint256 supply = totalSupply();
    require(msg.value >= cost * _quantity, "Not Enough Ether");
    require(_quantity <= maxPerTxPaid, "Over Tx Limit");
    require(_quantity + supply <= maxSupply, "SoldOut");
    require(addressMintedBalance[msg.sender] < maxPerWalletPaid, "Over Max Per Wallet");
    addressMintedBalance[msg.sender] += _quantity;
    
    _safeMint(msg.sender, _quantity);
  }

  function freeMint(uint256 _quantitty)
    public  
    publicnotPaused() 
    callerIsUser() 
  {
    uint256 supply = totalSupply();
    require(_quantitty <= maxPerTxFree, "Over Tx Limit");
    require(_quantitty + supply <= maxSupply, "SoldOut");
    require(addressMintedBalanceFree[msg.sender] < maxPerWalletFree, "Over MaxPerWallet");
    addressMintedBalanceFree[msg.sender] += _quantitty;
    
    _safeMint(msg.sender, _quantitty);
  }

  function withdraw() public onlyOwner {
    (bool success, ) = lead.call{value: address(this).balance}("");
    require(success, "Failed to send to lead.");
  }

}

File 2 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../../utils/introspection/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 5 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 6 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 14 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

File 12 of 14 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

File 13 of 14 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

File 14 of 14 : TinyERC721.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error TokenDataQueryForNonexistentToken();
error OwnerQueryForNonexistentToken();
error OperatorQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

contract TinyERC721 is Context, ERC165, IERC721, IERC721Metadata {
  using Address for address;
  using Strings for uint256;

  struct TokenData {
    address owner;
    bytes12 aux;
  }

  uint256 private immutable _maxBatchSize;

  mapping(uint256 => TokenData) private _tokens;
  uint256 private _mintCounter;

  string private _name;
  string private _symbol;

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

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

  function totalSupply() public view virtual returns (uint256) {
    return _mintCounter;
  }

  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 name() public view virtual override returns (string memory) {
    return _name;
  }

  function symbol() public view virtual override returns (string memory) {
    return _symbol;
  }

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

  function balanceOf(address owner) public view virtual override returns (uint256) {
    if (owner == address(0)) revert BalanceQueryForZeroAddress();

    uint256 total = totalSupply();
    uint256 count;
    address lastOwner;
    for (uint256 i; i < total; ++i) {
      address tokenOwner = _tokens[i].owner;
      if (tokenOwner != address(0)) lastOwner = tokenOwner;
      if (lastOwner == owner) ++count;
    }

    return count;
  }

  function _tokenData(uint256 tokenId) internal view returns (TokenData storage) {
    if (!_exists(tokenId)) revert TokenDataQueryForNonexistentToken();

    TokenData storage token = _tokens[tokenId];
    uint256 currentIndex = tokenId;
    while (token.owner == address(0)) {
      unchecked {
        --currentIndex;
      }
      token = _tokens[currentIndex];
    }

    return token;
  }

  function ownerOf(uint256 tokenId) public view virtual override returns (address) {
    if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();
    return _tokenData(tokenId).owner;
  }

  function approve(address to, uint256 tokenId) public virtual override {
    TokenData memory token = _tokenData(tokenId);
    address owner = token.owner;
    if (to == owner) revert ApprovalToCurrentOwner();

    if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
      revert ApprovalCallerNotOwnerNorApproved();
    }

    _approve(to, tokenId, token);
  }

  function getApproved(uint256 tokenId) public view virtual override returns (address) {
    if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

    return _tokenApprovals[tokenId];
  }

  function setApprovalForAll(address operator, bool approved) public virtual override {
    if (operator == _msgSender()) revert ApproveToCaller();

    _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 {
    TokenData memory token = _tokenData(tokenId);
    if (!_isApprovedOrOwner(_msgSender(), tokenId, token)) revert TransferCallerNotOwnerNorApproved();

    _transfer(from, to, tokenId, token);
  }

  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 {
    TokenData memory token = _tokenData(tokenId);
    if (!_isApprovedOrOwner(_msgSender(), tokenId, token)) revert TransferCallerNotOwnerNorApproved();

    _safeTransfer(from, to, tokenId, token, _data);
  }

  function _safeTransfer(
    address from,
    address to,
    uint256 tokenId,
    TokenData memory token,
    bytes memory _data
  ) internal virtual {
    _transfer(from, to, tokenId, token);

    if (to.isContract() && !_checkOnERC721Received(from, to, tokenId, _data))
      revert TransferToNonERC721ReceiverImplementer();
  }

  function _exists(uint256 tokenId) internal view virtual returns (bool) {
    return tokenId < _mintCounter;
  }

  function _isApprovedOrOwner(
    address spender,
    uint256 tokenId,
    TokenData memory token
  ) internal view virtual returns (bool) {
    address owner = token.owner;
    return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
  }

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

  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal virtual {
    uint256 startTokenId = _mintCounter;
    _mint(to, quantity);

    if (to.isContract()) {
      unchecked {
        for (uint256 i; i < quantity; ++i) {
          if (!_checkOnERC721Received(address(0), to, startTokenId + i, _data))
            revert TransferToNonERC721ReceiverImplementer();
        }
      }
    }
  }

  function _mint(address to, uint256 quantity) internal virtual {
    if (to == address(0)) revert MintToZeroAddress();
    if (quantity == 0) revert MintZeroQuantity();

    uint256 startTokenId = _mintCounter;
    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    unchecked {
      for (uint256 i; i < quantity; ++i) {
        if (_maxBatchSize == 0 ? i == 0 : i % _maxBatchSize == 0) {
          TokenData storage token = _tokens[startTokenId + i];
          token.owner = to;
          token.aux = _calculateAux(address(0), to, startTokenId + i, 0);
        }

        emit Transfer(address(0), to, startTokenId + i);
      }
      _mintCounter += quantity;
    }

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

  function _transfer(
    address from,
    address to,
    uint256 tokenId,
    TokenData memory token
  ) internal virtual {
    if (token.owner != from) revert TransferFromIncorrectOwner();
    if (to == address(0)) revert TransferToZeroAddress();

    _beforeTokenTransfers(from, to, tokenId, 1);

    _approve(address(0), tokenId, token);

    unchecked {
      uint256 nextTokenId = tokenId + 1;
      if (_exists(nextTokenId)) {
        TokenData storage nextToken = _tokens[nextTokenId];
        if (nextToken.owner == address(0)) {
          nextToken.owner = token.owner;
          nextToken.aux = token.aux;
        }
      }
    }

    TokenData storage newToken = _tokens[tokenId];
    newToken.owner = to;
    newToken.aux = _calculateAux(from, to, tokenId, token.aux);

    emit Transfer(from, to, tokenId);

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

  function _calculateAux(
    address from,
    address to,
    uint256 tokenId,
    bytes12 current
  ) internal view virtual returns (bytes12) {}

  function _approve(
    address to,
    uint256 tokenId,
    TokenData memory token
  ) internal virtual {
    _tokenApprovals[tokenId] = to;
    emit Approval(token.owner, to, tokenId);
  }

  function _checkOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) private returns (bool) {
    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 TransferToNonERC721ReceiverImplementer();
      } else {
        assembly {
          revert(add(32, reason), mload(reason))
        }
      }
    }
  }

  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"address","name":"_lead","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenDataQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalanceFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantitty","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lead","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_quantity","type":"uint256"}],"name":"paidMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quanitity","type":"uint256"}],"name":"privateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MPTxFree","type":"uint256"}],"name":"setmaxPerTxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MPTxPaid","type":"uint256"}],"name":"setmaxPerTxPaid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MPWFree","type":"uint256"}],"name":"setmaxPerWalletFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MPWPaid","type":"uint256"}],"name":"setmaxPerWalletPaid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526001600860146101000a81548160ff021916908315150217905550660aa87bee538000600955611b39600a556014600b556001600c55600a600d556001600e5562000054620003b060201b60201c565b600f553480156200006457600080fd5b5060405162004f6c38038062004f6c83398181016040528101906200008a919062000680565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600f81526020017f53757065722042616e6b2042726f7300000000000000000000000000000000008152506040518060400160405280600381526020017f53424200000000000000000000000000000000000000000000000000000000008152506000826002908162000120919062000931565b50816003908162000132919062000931565b5080608081815250505050506200015e62000152620003ba60201b60201c565b620003c260201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200035357801562000219576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001df92919062000a29565b600060405180830381600087803b158015620001fa57600080fd5b505af11580156200020f573d6000803e3d6000fd5b5050505062000352565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002d3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200029992919062000a29565b600060405180830381600087803b158015620002b457600080fd5b505af1158015620002c9573d6000803e3d6000fd5b5050505062000351565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200031c919062000a56565b600060405180830381600087803b1580156200033757600080fd5b505af11580156200034c573d6000803e3d6000fd5b505050505b5b5b5050816007908162000366919062000931565b5080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000a73565b6000600154905090565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004f182620004a6565b810181811067ffffffffffffffff82111715620005135762000512620004b7565b5b80604052505050565b60006200052862000488565b9050620005368282620004e6565b919050565b600067ffffffffffffffff821115620005595762000558620004b7565b5b6200056482620004a6565b9050602081019050919050565b60005b838110156200059157808201518184015260208101905062000574565b60008484015250505050565b6000620005b4620005ae846200053b565b6200051c565b905082815260208101848484011115620005d357620005d2620004a1565b5b620005e084828562000571565b509392505050565b600082601f8301126200060057620005ff6200049c565b5b8151620006128482602086016200059d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000648826200061b565b9050919050565b6200065a816200063b565b81146200066657600080fd5b50565b6000815190506200067a816200064f565b92915050565b600080604083850312156200069a576200069962000492565b5b600083015167ffffffffffffffff811115620006bb57620006ba62000497565b5b620006c985828601620005e8565b9250506020620006dc8582860162000669565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200073957607f821691505b6020821081036200074f576200074e620006f1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007b97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200077a565b620007c586836200077a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008126200080c6200080684620007dd565b620007e7565b620007dd565b9050919050565b6000819050919050565b6200082e83620007f1565b620008466200083d8262000819565b84845462000787565b825550505050565b600090565b6200085d6200084e565b6200086a81848462000823565b505050565b5b8181101562000892576200088660008262000853565b60018101905062000870565b5050565b601f821115620008e157620008ab8162000755565b620008b6846200076a565b81016020851015620008c6578190505b620008de620008d5856200076a565b8301826200086f565b50505b505050565b600082821c905092915050565b60006200090660001984600802620008e6565b1980831691505092915050565b6000620009218383620008f3565b9150826002028217905092915050565b6200093c82620006e6565b67ffffffffffffffff811115620009585762000957620004b7565b5b62000964825462000720565b6200097182828562000896565b600060209050601f831160018114620009a9576000841562000994578287015190505b620009a0858262000913565b86555062000a10565b601f198416620009b98662000755565b60005b82811015620009e357848901518255600182019150602085019450602081019050620009bc565b8683101562000a035784890151620009ff601f891682620008f3565b8355505b6001600288020188555050505b505050505050565b62000a23816200063b565b82525050565b600060408201905062000a40600083018562000a18565b62000a4f602083018462000a18565b9392505050565b600060208201905062000a6d600083018462000a18565b92915050565b6080516144d662000a9660003960008181612e0b0152612e3301526144d66000f3fe6080604052600436106102465760003560e01c806365cde7331161013957806395e534ba116100b6578063b88d4fde1161007a578063b88d4fde14610845578063c87b56dd1461086e578063cdfc609d146108ab578063d5abeb01146108d6578063e985e9c514610901578063f2fde38b1461093e57610246565b806395e534ba14610774578063980a70d21461079d5780639e98fbe7146107c8578063a22cb465146107f3578063abfe40a81461081c57610246565b80637c928fe9116100fd5780637c928fe9146106a15780637f5f5a45146106ca5780638da5cb5b146106f557806395982f321461072057806395d89b411461074957610246565b806365cde733146105dd5780636c0360eb146105f95780636cfcc2111461062457806370a082311461064d578063715018a61461068a57610246565b806323b872dd116101c757806345801a0e1161018b57806345801a0e146104e657806346bb0a161461052357806355f804b31461054e5780636352211e1461057757806364f655a3146105b457610246565b806323b872dd146104295780633ccfd60b1461045257806341f434341461046957806342842e0e1461049457806344a0d68a146104bd57610246565b80630e21f59f1161020e5780630e21f59f1461034457806313faede61461036d57806318160ddd1461039857806318cae269146103c3578063228025e81461040057610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780630bb12bb814610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613174565b610967565b60405161027f91906131bc565b60405180910390f35b34801561029457600080fd5b5061029d610a49565b6040516102aa9190613267565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906132bf565b610adb565b6040516102e7919061332d565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613374565b610b57565b005b34801561032557600080fd5b5061032e610b70565b60405161033b91906131bc565b60405180910390f35b34801561035057600080fd5b5061036b600480360381019061036691906133e0565b610b83565b005b34801561037957600080fd5b50610382610c1c565b60405161038f919061341c565b60405180910390f35b3480156103a457600080fd5b506103ad610c22565b6040516103ba919061341c565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190613437565b610c2c565b6040516103f7919061341c565b60405180910390f35b34801561040c57600080fd5b50610427600480360381019061042291906132bf565b610c44565b005b34801561043557600080fd5b50610450600480360381019061044b9190613464565b610cca565b005b34801561045e57600080fd5b50610467610d19565b005b34801561047557600080fd5b5061047e610e66565b60405161048b9190613516565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190613464565b610e78565b005b3480156104c957600080fd5b506104e460048036038101906104df91906132bf565b610ec7565b005b3480156104f257600080fd5b5061050d60048036038101906105089190613437565b610f4d565b60405161051a919061341c565b60405180910390f35b34801561052f57600080fd5b50610538610f65565b604051610545919061332d565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190613666565b610f8b565b005b34801561058357600080fd5b5061059e600480360381019061059991906132bf565b61101a565b6040516105ab919061332d565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d691906132bf565b61108f565b005b6105f760048036038101906105f291906132bf565b611115565b005b34801561060557600080fd5b5061060e6113ab565b60405161061b9190613267565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906132bf565b611439565b005b34801561065957600080fd5b50610674600480360381019061066f9190613437565b6114bf565b604051610681919061341c565b60405180910390f35b34801561069657600080fd5b5061069f611610565b005b3480156106ad57600080fd5b506106c860048036038101906106c391906132bf565b611698565b005b3480156106d657600080fd5b506106df6118de565b6040516106ec919061341c565b60405180910390f35b34801561070157600080fd5b5061070a6118e4565b604051610717919061332d565b60405180910390f35b34801561072c57600080fd5b50610747600480360381019061074291906132bf565b61190e565b005b34801561075557600080fd5b5061075e611994565b60405161076b9190613267565b60405180910390f35b34801561078057600080fd5b5061079b600480360381019061079691906132bf565b611a26565b005b3480156107a957600080fd5b506107b2611aac565b6040516107bf919061341c565b60405180910390f35b3480156107d457600080fd5b506107dd611ab2565b6040516107ea919061341c565b60405180910390f35b3480156107ff57600080fd5b5061081a600480360381019061081591906136af565b611ab8565b005b34801561082857600080fd5b50610843600480360381019061083e91906132bf565b611ad1565b005b34801561085157600080fd5b5061086c60048036038101906108679190613790565b611b81565b005b34801561087a57600080fd5b50610895600480360381019061089091906132bf565b611bd2565b6040516108a29190613267565b60405180910390f35b3480156108b757600080fd5b506108c0611c4e565b6040516108cd919061341c565b60405180910390f35b3480156108e257600080fd5b506108eb611c54565b6040516108f8919061341c565b60405180910390f35b34801561090d57600080fd5b5061092860048036038101906109239190613813565b611c5a565b60405161093591906131bc565b60405180910390f35b34801561094a57600080fd5b5061096560048036038101906109609190613437565b611cee565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a425750610a4182611de5565b5b9050919050565b606060028054610a5890613882565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8490613882565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae682611e4f565b610b1c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b6181611e5d565b610b6b8383611f5a565b505050565b600860149054906101000a900460ff1681565b610b8b612114565b73ffffffffffffffffffffffffffffffffffffffff16610ba96118e4565b73ffffffffffffffffffffffffffffffffffffffff1614610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf6906138ff565b60405180910390fd5b80600860146101000a81548160ff02191690831515021790555050565b60095481565b6000600154905090565b60106020528060005260406000206000915090505481565b610c4c612114565b73ffffffffffffffffffffffffffffffffffffffff16610c6a6118e4565b73ffffffffffffffffffffffffffffffffffffffff1614610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb7906138ff565b60405180910390fd5b80600a8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d0857610d0733611e5d565b5b610d1384848461211c565b50505050565b610d21612114565b73ffffffffffffffffffffffffffffffffffffffff16610d3f6118e4565b73ffffffffffffffffffffffffffffffffffffffff1614610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c906138ff565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610ddd90613950565b60006040518083038185875af1925050503d8060008114610e1a576040519150601f19603f3d011682016040523d82523d6000602084013e610e1f565b606091505b5050905080610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a906139b1565b60405180910390fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610eb657610eb533611e5d565b5b610ec1848484612229565b50505050565b610ecf612114565b73ffffffffffffffffffffffffffffffffffffffff16610eed6118e4565b73ffffffffffffffffffffffffffffffffffffffff1614610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a906138ff565b60405180910390fd5b8060098190555050565b60116020528060005260406000206000915090505481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f93612114565b73ffffffffffffffffffffffffffffffffffffffff16610fb16118e4565b73ffffffffffffffffffffffffffffffffffffffff1614611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe906138ff565b60405180910390fd5b80600790816110169190613b73565b5050565b600061102582611e4f565b61105b576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61106482612249565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611097612114565b73ffffffffffffffffffffffffffffffffffffffff166110b56118e4565b73ffffffffffffffffffffffffffffffffffffffff161461110b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611102906138ff565b60405180910390fd5b80600d8190555050565b600860149054906101000a900460ff1615611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c90613c91565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca90613cfd565b60405180910390fd5b60006111dd610c22565b9050816009546111ed9190613d4c565b34101561122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690613dda565b60405180910390fd5b600d54821115611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90613e46565b60405180910390fd5b600a5481836112839190613e66565b11156112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90613ee6565b60405180910390fd5b600b54601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90613f52565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113969190613e66565b925050819055506113a73383612328565b5050565b600780546113b890613882565b80601f01602080910402602001604051908101604052809291908181526020018280546113e490613882565b80156114315780601f1061140657610100808354040283529160200191611431565b820191906000526020600020905b81548152906001019060200180831161141457829003601f168201915b505050505081565b611441612114565b73ffffffffffffffffffffffffffffffffffffffff1661145f6118e4565b73ffffffffffffffffffffffffffffffffffffffff16146114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac906138ff565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611526576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611530610c22565b905060008060005b8381101561160457600080600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115b2578092505b8673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115f257836115ef90613f72565b93505b50806115fd90613f72565b9050611538565b50819350505050919050565b611618612114565b73ffffffffffffffffffffffffffffffffffffffff166116366118e4565b73ffffffffffffffffffffffffffffffffffffffff161461168c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611683906138ff565b60405180910390fd5b6116966000612346565b565b600860149054906101000a900460ff16156116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90613c91565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90613cfd565b60405180910390fd5b6000611760610c22565b9050600e548211156117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e90613e46565b60405180910390fd5b600a5481836117b69190613e66565b11156117f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ee90613ee6565b60405180910390fd5b600c54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190614006565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118c99190613e66565b925050819055506118da3383612328565b5050565b600c5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611916612114565b73ffffffffffffffffffffffffffffffffffffffff166119346118e4565b73ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611981906138ff565b60405180910390fd5b80600e8190555050565b6060600380546119a390613882565b80601f01602080910402602001604051908101604052809291908181526020018280546119cf90613882565b8015611a1c5780601f106119f157610100808354040283529160200191611a1c565b820191906000526020600020905b8154815290600101906020018083116119ff57829003601f168201915b5050505050905090565b611a2e612114565b73ffffffffffffffffffffffffffffffffffffffff16611a4c6118e4565b73ffffffffffffffffffffffffffffffffffffffff1614611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a99906138ff565b60405180910390fd5b80600c8190555050565b600e5481565b600d5481565b81611ac281611e5d565b611acc838361240c565b505050565b611ad9612114565b73ffffffffffffffffffffffffffffffffffffffff16611af76118e4565b73ffffffffffffffffffffffffffffffffffffffff1614611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b44906138ff565b60405180910390fd5b6000611b57610c22565b9050600a548183611b689190613e66565b1115611b7357600080fd5b611b7d3383612328565b5050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611bbf57611bbe33611e5d565b5b611bcb85858585612583565b5050505050565b6060611bdd82611e4f565b611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390614072565b60405180910390fd5b6007611c2783612692565b604051602001611c3892919061419d565b6040516020818303038152906040529050919050565b600b5481565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cf6612114565b73ffffffffffffffffffffffffffffffffffffffff16611d146118e4565b73ffffffffffffffffffffffffffffffffffffffff1614611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d61906138ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd09061423e565b60405180910390fd5b611de281612346565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611f57576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611ed492919061425e565b602060405180830381865afa158015611ef1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f15919061429c565b611f5657806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611f4d919061332d565b60405180910390fd5b5b50565b6000611f6582612249565b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900460a01b73ffffffffffffffffffffffffffffffffffffffff191673ffffffffffffffffffffffffffffffffffffffff19168152505090506000816000015190508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361207b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661209a612114565b73ffffffffffffffffffffffffffffffffffffffff16141580156120cc57506120ca816120c5612114565b611c5a565b155b15612103576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61210e8484846127f2565b50505050565b600033905090565b600061212782612249565b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900460a01b73ffffffffffffffffffffffffffffffffffffffff191673ffffffffffffffffffffffffffffffffffffffff19168152505090506121e16121da612114565b83836128a8565b612217576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122238484848461293a565b50505050565b61224483838360405180602001604052806000815250611b81565b505050565b600061225482611e4f565b61228a576040517f3210dcc600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806000848152602001908152602001600020905060008390505b600073ffffffffffffffffffffffffffffffffffffffff168260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361231e578060019003905060008082815260200190815260200160002091506122a6565b8192505050919050565b612342828260405180602001604052806000815250612c1c565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612414612114565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612478576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060056000612485612114565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612532612114565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161257791906131bc565b60405180910390a35050565b600061258e83612249565b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900460a01b73ffffffffffffffffffffffffffffffffffffffff191673ffffffffffffffffffffffffffffffffffffffff1916815250509050612648612641612114565b84836128a8565b61267e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61268b8585858486612cb4565b5050505050565b6060600082036126d9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127ed565b600082905060005b6000821461270b5780806126f490613f72565b915050600a8261270491906142f8565b91506126e1565b60008167ffffffffffffffff8111156127275761272661353b565b5b6040519080825280601f01601f1916602001820160405280156127595781602001600182028036833780820191505090505b5090505b600085146127e6576001826127729190614329565b9150600a85612781919061435d565b603061278d9190613e66565b60f81b8183815181106127a3576127a261438e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127df91906142f8565b945061275d565b8093505050505b919050565b826004600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080826000015190508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806128f257506128f18186611c5a565b5b8061293057508473ffffffffffffffffffffffffffffffffffffffff1661291885610adb565b73ffffffffffffffffffffffffffffffffffffffff16145b9150509392505050565b8373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129a3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a09576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a168484846001612d32565b612a22600083836127f2565b6000600183019050612a3381611e4f565b15612b1c5760008060008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612b1a5782600001518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001518160000160146101000a8154816bffffffffffffffffffffffff021916908360a01c02179055505b505b5060008060008481526020019081526020016000209050838160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612b868585858560200151612d38565b8160000160146101000a8154816bffffffffffffffffffffffff021916908360a01c0217905550828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c158585856001612d42565b5050505050565b60006001549050612c2d8484612d48565b612c4c8473ffffffffffffffffffffffffffffffffffffffff16612f95565b15612cae5760005b83811015612cac57612c6b60008683850186612fb8565b612ca1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001019050612c54565b505b50505050565b612cc08585858561293a565b612cdf8473ffffffffffffffffffffffffffffffffffffffff16612f95565b8015612cf45750612cf285858584612fb8565b155b15612d2b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b50505050565b6000949350505050565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612dae576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008103612de8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006001549050612dfc6000848385612d32565b60005b82811015612f725760007f000000000000000000000000000000000000000000000000000000000000000014612e685760007f00000000000000000000000000000000000000000000000000000000000000008281612e6157612e606142c9565b5b0614612e6d565b600081145b15612f0957600080600083850181526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612ee0600086848601600060a01b612d38565b8160000160146101000a8154816bffffffffffffffffffffffff021916908360a01c0217905550505b8082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4806001019050612dff565b5081600160008282540192505081905550612f906000848385612d42565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fde612114565b8786866040518563ffffffff1660e01b81526004016130009493929190614412565b6020604051808303816000875af192505050801561303c57506040513d601f19601f820116820180604052508101906130399190614473565b60015b6130b5573d806000811461306c576040519150601f19603f3d011682016040523d82523d6000602084013e613071565b606091505b5060008151036130ad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131518161311c565b811461315c57600080fd5b50565b60008135905061316e81613148565b92915050565b60006020828403121561318a57613189613112565b5b60006131988482850161315f565b91505092915050565b60008115159050919050565b6131b6816131a1565b82525050565b60006020820190506131d160008301846131ad565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132115780820151818401526020810190506131f6565b60008484015250505050565b6000601f19601f8301169050919050565b6000613239826131d7565b61324381856131e2565b93506132538185602086016131f3565b61325c8161321d565b840191505092915050565b60006020820190508181036000830152613281818461322e565b905092915050565b6000819050919050565b61329c81613289565b81146132a757600080fd5b50565b6000813590506132b981613293565b92915050565b6000602082840312156132d5576132d4613112565b5b60006132e3848285016132aa565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613317826132ec565b9050919050565b6133278161330c565b82525050565b6000602082019050613342600083018461331e565b92915050565b6133518161330c565b811461335c57600080fd5b50565b60008135905061336e81613348565b92915050565b6000806040838503121561338b5761338a613112565b5b60006133998582860161335f565b92505060206133aa858286016132aa565b9150509250929050565b6133bd816131a1565b81146133c857600080fd5b50565b6000813590506133da816133b4565b92915050565b6000602082840312156133f6576133f5613112565b5b6000613404848285016133cb565b91505092915050565b61341681613289565b82525050565b6000602082019050613431600083018461340d565b92915050565b60006020828403121561344d5761344c613112565b5b600061345b8482850161335f565b91505092915050565b60008060006060848603121561347d5761347c613112565b5b600061348b8682870161335f565b935050602061349c8682870161335f565b92505060406134ad868287016132aa565b9150509250925092565b6000819050919050565b60006134dc6134d76134d2846132ec565b6134b7565b6132ec565b9050919050565b60006134ee826134c1565b9050919050565b6000613500826134e3565b9050919050565b613510816134f5565b82525050565b600060208201905061352b6000830184613507565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135738261321d565b810181811067ffffffffffffffff821117156135925761359161353b565b5b80604052505050565b60006135a5613108565b90506135b1828261356a565b919050565b600067ffffffffffffffff8211156135d1576135d061353b565b5b6135da8261321d565b9050602081019050919050565b82818337600083830152505050565b6000613609613604846135b6565b61359b565b90508281526020810184848401111561362557613624613536565b5b6136308482856135e7565b509392505050565b600082601f83011261364d5761364c613531565b5b813561365d8482602086016135f6565b91505092915050565b60006020828403121561367c5761367b613112565b5b600082013567ffffffffffffffff81111561369a57613699613117565b5b6136a684828501613638565b91505092915050565b600080604083850312156136c6576136c5613112565b5b60006136d48582860161335f565b92505060206136e5858286016133cb565b9150509250929050565b600067ffffffffffffffff82111561370a5761370961353b565b5b6137138261321d565b9050602081019050919050565b600061373361372e846136ef565b61359b565b90508281526020810184848401111561374f5761374e613536565b5b61375a8482856135e7565b509392505050565b600082601f83011261377757613776613531565b5b8135613787848260208601613720565b91505092915050565b600080600080608085870312156137aa576137a9613112565b5b60006137b88782880161335f565b94505060206137c98782880161335f565b93505060406137da878288016132aa565b925050606085013567ffffffffffffffff8111156137fb576137fa613117565b5b61380787828801613762565b91505092959194509250565b6000806040838503121561382a57613829613112565b5b60006138388582860161335f565b92505060206138498582860161335f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061389a57607f821691505b6020821081036138ad576138ac613853565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138e96020836131e2565b91506138f4826138b3565b602082019050919050565b60006020820190508181036000830152613918816138dc565b9050919050565b600081905092915050565b50565b600061393a60008361391f565b91506139458261392a565b600082019050919050565b600061395b8261392d565b9150819050919050565b7f4661696c656420746f2073656e6420746f206c6561642e000000000000000000600082015250565b600061399b6017836131e2565b91506139a682613965565b602082019050919050565b600060208201905081810360008301526139ca8161398e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613a337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826139f6565b613a3d86836139f6565b95508019841693508086168417925050509392505050565b6000613a70613a6b613a6684613289565b6134b7565b613289565b9050919050565b6000819050919050565b613a8a83613a55565b613a9e613a9682613a77565b848454613a03565b825550505050565b600090565b613ab3613aa6565b613abe818484613a81565b505050565b5b81811015613ae257613ad7600082613aab565b600181019050613ac4565b5050565b601f821115613b2757613af8816139d1565b613b01846139e6565b81016020851015613b10578190505b613b24613b1c856139e6565b830182613ac3565b50505b505050565b600082821c905092915050565b6000613b4a60001984600802613b2c565b1980831691505092915050565b6000613b638383613b39565b9150826002028217905092915050565b613b7c826131d7565b67ffffffffffffffff811115613b9557613b9461353b565b5b613b9f8254613882565b613baa828285613ae6565b600060209050601f831160018114613bdd5760008415613bcb578287015190505b613bd58582613b57565b865550613c3d565b601f198416613beb866139d1565b60005b82811015613c1357848901518255600182019150602085019450602081019050613bee565b86831015613c305784890151613c2c601f891682613b39565b8355505b6001600288020188555050505b505050505050565b7f436f6e7472616374206973205061757365640000000000000000000000000000600082015250565b6000613c7b6012836131e2565b9150613c8682613c45565b602082019050919050565b60006020820190508181036000830152613caa81613c6e565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163742e00600082015250565b6000613ce7601f836131e2565b9150613cf282613cb1565b602082019050919050565b60006020820190508181036000830152613d1681613cda565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d5782613289565b9150613d6283613289565b9250828202613d7081613289565b91508282048414831517613d8757613d86613d1d565b5b5092915050565b7f4e6f7420456e6f75676820457468657200000000000000000000000000000000600082015250565b6000613dc46010836131e2565b9150613dcf82613d8e565b602082019050919050565b60006020820190508181036000830152613df381613db7565b9050919050565b7f4f766572205478204c696d697400000000000000000000000000000000000000600082015250565b6000613e30600d836131e2565b9150613e3b82613dfa565b602082019050919050565b60006020820190508181036000830152613e5f81613e23565b9050919050565b6000613e7182613289565b9150613e7c83613289565b9250828201905080821115613e9457613e93613d1d565b5b92915050565b7f536f6c644f757400000000000000000000000000000000000000000000000000600082015250565b6000613ed06007836131e2565b9150613edb82613e9a565b602082019050919050565b60006020820190508181036000830152613eff81613ec3565b9050919050565b7f4f766572204d6178205065722057616c6c657400000000000000000000000000600082015250565b6000613f3c6013836131e2565b9150613f4782613f06565b602082019050919050565b60006020820190508181036000830152613f6b81613f2f565b9050919050565b6000613f7d82613289565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613faf57613fae613d1d565b5b600182019050919050565b7f4f766572204d617850657257616c6c6574000000000000000000000000000000600082015250565b6000613ff06011836131e2565b9150613ffb82613fba565b602082019050919050565b6000602082019050818103600083015261401f81613fe3565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b600061405c6015836131e2565b915061406782614026565b602082019050919050565b6000602082019050818103600083015261408b8161404f565b9050919050565b600081905092915050565b600081546140aa81613882565b6140b48186614092565b945060018216600081146140cf57600181146140e457614117565b60ff1983168652811515820286019350614117565b6140ed856139d1565b60005b8381101561410f578154818901526001820191506020810190506140f0565b838801955050505b50505092915050565b600061412b826131d7565b6141358185614092565b93506141458185602086016131f3565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614187600583614092565b915061419282614151565b600582019050919050565b60006141a9828561409d565b91506141b58284614120565b91506141c08261417a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142286026836131e2565b9150614233826141cc565b604082019050919050565b600060208201905081810360008301526142578161421b565b9050919050565b6000604082019050614273600083018561331e565b614280602083018461331e565b9392505050565b600081519050614296816133b4565b92915050565b6000602082840312156142b2576142b1613112565b5b60006142c084828501614287565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061430382613289565b915061430e83613289565b92508261431e5761431d6142c9565b5b828204905092915050565b600061433482613289565b915061433f83613289565b925082820390508181111561435757614356613d1d565b5b92915050565b600061436882613289565b915061437383613289565b925082614383576143826142c9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006143e4826143bd565b6143ee81856143c8565b93506143fe8185602086016131f3565b6144078161321d565b840191505092915050565b6000608082019050614427600083018761331e565b614434602083018661331e565b614441604083018561340d565b818103606083015261445381846143d9565b905095945050505050565b60008151905061446d81613148565b92915050565b60006020828403121561448957614488613112565b5b60006144978482850161445e565b9150509291505056fea264697066735822122052c0ebf6b7a4487898f68875bed84a395ae6ada8364e27c1dba0ee2dd7dacd8c64736f6c634300081100330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000259f10fefbf5de6367c242ab9bca80b3775aa0970000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52596842684151354d6f3979696b546754585a53324454324b64526b507174467059356e74396864747732322f00000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c806365cde7331161013957806395e534ba116100b6578063b88d4fde1161007a578063b88d4fde14610845578063c87b56dd1461086e578063cdfc609d146108ab578063d5abeb01146108d6578063e985e9c514610901578063f2fde38b1461093e57610246565b806395e534ba14610774578063980a70d21461079d5780639e98fbe7146107c8578063a22cb465146107f3578063abfe40a81461081c57610246565b80637c928fe9116100fd5780637c928fe9146106a15780637f5f5a45146106ca5780638da5cb5b146106f557806395982f321461072057806395d89b411461074957610246565b806365cde733146105dd5780636c0360eb146105f95780636cfcc2111461062457806370a082311461064d578063715018a61461068a57610246565b806323b872dd116101c757806345801a0e1161018b57806345801a0e146104e657806346bb0a161461052357806355f804b31461054e5780636352211e1461057757806364f655a3146105b457610246565b806323b872dd146104295780633ccfd60b1461045257806341f434341461046957806342842e0e1461049457806344a0d68a146104bd57610246565b80630e21f59f1161020e5780630e21f59f1461034457806313faede61461036d57806318160ddd1461039857806318cae269146103c3578063228025e81461040057610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780630bb12bb814610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613174565b610967565b60405161027f91906131bc565b60405180910390f35b34801561029457600080fd5b5061029d610a49565b6040516102aa9190613267565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906132bf565b610adb565b6040516102e7919061332d565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613374565b610b57565b005b34801561032557600080fd5b5061032e610b70565b60405161033b91906131bc565b60405180910390f35b34801561035057600080fd5b5061036b600480360381019061036691906133e0565b610b83565b005b34801561037957600080fd5b50610382610c1c565b60405161038f919061341c565b60405180910390f35b3480156103a457600080fd5b506103ad610c22565b6040516103ba919061341c565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190613437565b610c2c565b6040516103f7919061341c565b60405180910390f35b34801561040c57600080fd5b50610427600480360381019061042291906132bf565b610c44565b005b34801561043557600080fd5b50610450600480360381019061044b9190613464565b610cca565b005b34801561045e57600080fd5b50610467610d19565b005b34801561047557600080fd5b5061047e610e66565b60405161048b9190613516565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190613464565b610e78565b005b3480156104c957600080fd5b506104e460048036038101906104df91906132bf565b610ec7565b005b3480156104f257600080fd5b5061050d60048036038101906105089190613437565b610f4d565b60405161051a919061341c565b60405180910390f35b34801561052f57600080fd5b50610538610f65565b604051610545919061332d565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190613666565b610f8b565b005b34801561058357600080fd5b5061059e600480360381019061059991906132bf565b61101a565b6040516105ab919061332d565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d691906132bf565b61108f565b005b6105f760048036038101906105f291906132bf565b611115565b005b34801561060557600080fd5b5061060e6113ab565b60405161061b9190613267565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906132bf565b611439565b005b34801561065957600080fd5b50610674600480360381019061066f9190613437565b6114bf565b604051610681919061341c565b60405180910390f35b34801561069657600080fd5b5061069f611610565b005b3480156106ad57600080fd5b506106c860048036038101906106c391906132bf565b611698565b005b3480156106d657600080fd5b506106df6118de565b6040516106ec919061341c565b60405180910390f35b34801561070157600080fd5b5061070a6118e4565b604051610717919061332d565b60405180910390f35b34801561072c57600080fd5b50610747600480360381019061074291906132bf565b61190e565b005b34801561075557600080fd5b5061075e611994565b60405161076b9190613267565b60405180910390f35b34801561078057600080fd5b5061079b600480360381019061079691906132bf565b611a26565b005b3480156107a957600080fd5b506107b2611aac565b6040516107bf919061341c565b60405180910390f35b3480156107d457600080fd5b506107dd611ab2565b6040516107ea919061341c565b60405180910390f35b3480156107ff57600080fd5b5061081a600480360381019061081591906136af565b611ab8565b005b34801561082857600080fd5b50610843600480360381019061083e91906132bf565b611ad1565b005b34801561085157600080fd5b5061086c60048036038101906108679190613790565b611b81565b005b34801561087a57600080fd5b50610895600480360381019061089091906132bf565b611bd2565b6040516108a29190613267565b60405180910390f35b3480156108b757600080fd5b506108c0611c4e565b6040516108cd919061341c565b60405180910390f35b3480156108e257600080fd5b506108eb611c54565b6040516108f8919061341c565b60405180910390f35b34801561090d57600080fd5b5061092860048036038101906109239190613813565b611c5a565b60405161093591906131bc565b60405180910390f35b34801561094a57600080fd5b5061096560048036038101906109609190613437565b611cee565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a425750610a4182611de5565b5b9050919050565b606060028054610a5890613882565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8490613882565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae682611e4f565b610b1c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b6181611e5d565b610b6b8383611f5a565b505050565b600860149054906101000a900460ff1681565b610b8b612114565b73ffffffffffffffffffffffffffffffffffffffff16610ba96118e4565b73ffffffffffffffffffffffffffffffffffffffff1614610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf6906138ff565b60405180910390fd5b80600860146101000a81548160ff02191690831515021790555050565b60095481565b6000600154905090565b60106020528060005260406000206000915090505481565b610c4c612114565b73ffffffffffffffffffffffffffffffffffffffff16610c6a6118e4565b73ffffffffffffffffffffffffffffffffffffffff1614610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb7906138ff565b60405180910390fd5b80600a8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d0857610d0733611e5d565b5b610d1384848461211c565b50505050565b610d21612114565b73ffffffffffffffffffffffffffffffffffffffff16610d3f6118e4565b73ffffffffffffffffffffffffffffffffffffffff1614610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c906138ff565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610ddd90613950565b60006040518083038185875af1925050503d8060008114610e1a576040519150601f19603f3d011682016040523d82523d6000602084013e610e1f565b606091505b5050905080610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a906139b1565b60405180910390fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610eb657610eb533611e5d565b5b610ec1848484612229565b50505050565b610ecf612114565b73ffffffffffffffffffffffffffffffffffffffff16610eed6118e4565b73ffffffffffffffffffffffffffffffffffffffff1614610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a906138ff565b60405180910390fd5b8060098190555050565b60116020528060005260406000206000915090505481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f93612114565b73ffffffffffffffffffffffffffffffffffffffff16610fb16118e4565b73ffffffffffffffffffffffffffffffffffffffff1614611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe906138ff565b60405180910390fd5b80600790816110169190613b73565b5050565b600061102582611e4f565b61105b576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61106482612249565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611097612114565b73ffffffffffffffffffffffffffffffffffffffff166110b56118e4565b73ffffffffffffffffffffffffffffffffffffffff161461110b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611102906138ff565b60405180910390fd5b80600d8190555050565b600860149054906101000a900460ff1615611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c90613c91565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca90613cfd565b60405180910390fd5b60006111dd610c22565b9050816009546111ed9190613d4c565b34101561122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690613dda565b60405180910390fd5b600d54821115611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90613e46565b60405180910390fd5b600a5481836112839190613e66565b11156112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90613ee6565b60405180910390fd5b600b54601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90613f52565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113969190613e66565b925050819055506113a73383612328565b5050565b600780546113b890613882565b80601f01602080910402602001604051908101604052809291908181526020018280546113e490613882565b80156114315780601f1061140657610100808354040283529160200191611431565b820191906000526020600020905b81548152906001019060200180831161141457829003601f168201915b505050505081565b611441612114565b73ffffffffffffffffffffffffffffffffffffffff1661145f6118e4565b73ffffffffffffffffffffffffffffffffffffffff16146114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac906138ff565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611526576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611530610c22565b905060008060005b8381101561160457600080600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115b2578092505b8673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115f257836115ef90613f72565b93505b50806115fd90613f72565b9050611538565b50819350505050919050565b611618612114565b73ffffffffffffffffffffffffffffffffffffffff166116366118e4565b73ffffffffffffffffffffffffffffffffffffffff161461168c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611683906138ff565b60405180910390fd5b6116966000612346565b565b600860149054906101000a900460ff16156116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90613c91565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90613cfd565b60405180910390fd5b6000611760610c22565b9050600e548211156117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e90613e46565b60405180910390fd5b600a5481836117b69190613e66565b11156117f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ee90613ee6565b60405180910390fd5b600c54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190614006565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118c99190613e66565b925050819055506118da3383612328565b5050565b600c5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611916612114565b73ffffffffffffffffffffffffffffffffffffffff166119346118e4565b73ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611981906138ff565b60405180910390fd5b80600e8190555050565b6060600380546119a390613882565b80601f01602080910402602001604051908101604052809291908181526020018280546119cf90613882565b8015611a1c5780601f106119f157610100808354040283529160200191611a1c565b820191906000526020600020905b8154815290600101906020018083116119ff57829003601f168201915b5050505050905090565b611a2e612114565b73ffffffffffffffffffffffffffffffffffffffff16611a4c6118e4565b73ffffffffffffffffffffffffffffffffffffffff1614611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a99906138ff565b60405180910390fd5b80600c8190555050565b600e5481565b600d5481565b81611ac281611e5d565b611acc838361240c565b505050565b611ad9612114565b73ffffffffffffffffffffffffffffffffffffffff16611af76118e4565b73ffffffffffffffffffffffffffffffffffffffff1614611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b44906138ff565b60405180910390fd5b6000611b57610c22565b9050600a548183611b689190613e66565b1115611b7357600080fd5b611b7d3383612328565b5050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611bbf57611bbe33611e5d565b5b611bcb85858585612583565b5050505050565b6060611bdd82611e4f565b611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390614072565b60405180910390fd5b6007611c2783612692565b604051602001611c3892919061419d565b6040516020818303038152906040529050919050565b600b5481565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cf6612114565b73ffffffffffffffffffffffffffffffffffffffff16611d146118e4565b73ffffffffffffffffffffffffffffffffffffffff1614611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d61906138ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd09061423e565b60405180910390fd5b611de281612346565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611f57576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611ed492919061425e565b602060405180830381865afa158015611ef1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f15919061429c565b611f5657806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611f4d919061332d565b60405180910390fd5b5b50565b6000611f6582612249565b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900460a01b73ffffffffffffffffffffffffffffffffffffffff191673ffffffffffffffffffffffffffffffffffffffff19168152505090506000816000015190508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361207b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661209a612114565b73ffffffffffffffffffffffffffffffffffffffff16141580156120cc57506120ca816120c5612114565b611c5a565b155b15612103576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61210e8484846127f2565b50505050565b600033905090565b600061212782612249565b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900460a01b73ffffffffffffffffffffffffffffffffffffffff191673ffffffffffffffffffffffffffffffffffffffff19168152505090506121e16121da612114565b83836128a8565b612217576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122238484848461293a565b50505050565b61224483838360405180602001604052806000815250611b81565b505050565b600061225482611e4f565b61228a576040517f3210dcc600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806000848152602001908152602001600020905060008390505b600073ffffffffffffffffffffffffffffffffffffffff168260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361231e578060019003905060008082815260200190815260200160002091506122a6565b8192505050919050565b612342828260405180602001604052806000815250612c1c565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612414612114565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612478576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060056000612485612114565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612532612114565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161257791906131bc565b60405180910390a35050565b600061258e83612249565b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900460a01b73ffffffffffffffffffffffffffffffffffffffff191673ffffffffffffffffffffffffffffffffffffffff1916815250509050612648612641612114565b84836128a8565b61267e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61268b8585858486612cb4565b5050505050565b6060600082036126d9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127ed565b600082905060005b6000821461270b5780806126f490613f72565b915050600a8261270491906142f8565b91506126e1565b60008167ffffffffffffffff8111156127275761272661353b565b5b6040519080825280601f01601f1916602001820160405280156127595781602001600182028036833780820191505090505b5090505b600085146127e6576001826127729190614329565b9150600a85612781919061435d565b603061278d9190613e66565b60f81b8183815181106127a3576127a261438e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127df91906142f8565b945061275d565b8093505050505b919050565b826004600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080826000015190508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806128f257506128f18186611c5a565b5b8061293057508473ffffffffffffffffffffffffffffffffffffffff1661291885610adb565b73ffffffffffffffffffffffffffffffffffffffff16145b9150509392505050565b8373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129a3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a09576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a168484846001612d32565b612a22600083836127f2565b6000600183019050612a3381611e4f565b15612b1c5760008060008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612b1a5782600001518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001518160000160146101000a8154816bffffffffffffffffffffffff021916908360a01c02179055505b505b5060008060008481526020019081526020016000209050838160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612b868585858560200151612d38565b8160000160146101000a8154816bffffffffffffffffffffffff021916908360a01c0217905550828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c158585856001612d42565b5050505050565b60006001549050612c2d8484612d48565b612c4c8473ffffffffffffffffffffffffffffffffffffffff16612f95565b15612cae5760005b83811015612cac57612c6b60008683850186612fb8565b612ca1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001019050612c54565b505b50505050565b612cc08585858561293a565b612cdf8473ffffffffffffffffffffffffffffffffffffffff16612f95565b8015612cf45750612cf285858584612fb8565b155b15612d2b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b50505050565b6000949350505050565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612dae576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008103612de8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006001549050612dfc6000848385612d32565b60005b82811015612f725760007f000000000000000000000000000000000000000000000000000000000000000014612e685760007f00000000000000000000000000000000000000000000000000000000000000008281612e6157612e606142c9565b5b0614612e6d565b600081145b15612f0957600080600083850181526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612ee0600086848601600060a01b612d38565b8160000160146101000a8154816bffffffffffffffffffffffff021916908360a01c0217905550505b8082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4806001019050612dff565b5081600160008282540192505081905550612f906000848385612d42565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fde612114565b8786866040518563ffffffff1660e01b81526004016130009493929190614412565b6020604051808303816000875af192505050801561303c57506040513d601f19601f820116820180604052508101906130399190614473565b60015b6130b5573d806000811461306c576040519150601f19603f3d011682016040523d82523d6000602084013e613071565b606091505b5060008151036130ad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131518161311c565b811461315c57600080fd5b50565b60008135905061316e81613148565b92915050565b60006020828403121561318a57613189613112565b5b60006131988482850161315f565b91505092915050565b60008115159050919050565b6131b6816131a1565b82525050565b60006020820190506131d160008301846131ad565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132115780820151818401526020810190506131f6565b60008484015250505050565b6000601f19601f8301169050919050565b6000613239826131d7565b61324381856131e2565b93506132538185602086016131f3565b61325c8161321d565b840191505092915050565b60006020820190508181036000830152613281818461322e565b905092915050565b6000819050919050565b61329c81613289565b81146132a757600080fd5b50565b6000813590506132b981613293565b92915050565b6000602082840312156132d5576132d4613112565b5b60006132e3848285016132aa565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613317826132ec565b9050919050565b6133278161330c565b82525050565b6000602082019050613342600083018461331e565b92915050565b6133518161330c565b811461335c57600080fd5b50565b60008135905061336e81613348565b92915050565b6000806040838503121561338b5761338a613112565b5b60006133998582860161335f565b92505060206133aa858286016132aa565b9150509250929050565b6133bd816131a1565b81146133c857600080fd5b50565b6000813590506133da816133b4565b92915050565b6000602082840312156133f6576133f5613112565b5b6000613404848285016133cb565b91505092915050565b61341681613289565b82525050565b6000602082019050613431600083018461340d565b92915050565b60006020828403121561344d5761344c613112565b5b600061345b8482850161335f565b91505092915050565b60008060006060848603121561347d5761347c613112565b5b600061348b8682870161335f565b935050602061349c8682870161335f565b92505060406134ad868287016132aa565b9150509250925092565b6000819050919050565b60006134dc6134d76134d2846132ec565b6134b7565b6132ec565b9050919050565b60006134ee826134c1565b9050919050565b6000613500826134e3565b9050919050565b613510816134f5565b82525050565b600060208201905061352b6000830184613507565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135738261321d565b810181811067ffffffffffffffff821117156135925761359161353b565b5b80604052505050565b60006135a5613108565b90506135b1828261356a565b919050565b600067ffffffffffffffff8211156135d1576135d061353b565b5b6135da8261321d565b9050602081019050919050565b82818337600083830152505050565b6000613609613604846135b6565b61359b565b90508281526020810184848401111561362557613624613536565b5b6136308482856135e7565b509392505050565b600082601f83011261364d5761364c613531565b5b813561365d8482602086016135f6565b91505092915050565b60006020828403121561367c5761367b613112565b5b600082013567ffffffffffffffff81111561369a57613699613117565b5b6136a684828501613638565b91505092915050565b600080604083850312156136c6576136c5613112565b5b60006136d48582860161335f565b92505060206136e5858286016133cb565b9150509250929050565b600067ffffffffffffffff82111561370a5761370961353b565b5b6137138261321d565b9050602081019050919050565b600061373361372e846136ef565b61359b565b90508281526020810184848401111561374f5761374e613536565b5b61375a8482856135e7565b509392505050565b600082601f83011261377757613776613531565b5b8135613787848260208601613720565b91505092915050565b600080600080608085870312156137aa576137a9613112565b5b60006137b88782880161335f565b94505060206137c98782880161335f565b93505060406137da878288016132aa565b925050606085013567ffffffffffffffff8111156137fb576137fa613117565b5b61380787828801613762565b91505092959194509250565b6000806040838503121561382a57613829613112565b5b60006138388582860161335f565b92505060206138498582860161335f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061389a57607f821691505b6020821081036138ad576138ac613853565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138e96020836131e2565b91506138f4826138b3565b602082019050919050565b60006020820190508181036000830152613918816138dc565b9050919050565b600081905092915050565b50565b600061393a60008361391f565b91506139458261392a565b600082019050919050565b600061395b8261392d565b9150819050919050565b7f4661696c656420746f2073656e6420746f206c6561642e000000000000000000600082015250565b600061399b6017836131e2565b91506139a682613965565b602082019050919050565b600060208201905081810360008301526139ca8161398e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613a337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826139f6565b613a3d86836139f6565b95508019841693508086168417925050509392505050565b6000613a70613a6b613a6684613289565b6134b7565b613289565b9050919050565b6000819050919050565b613a8a83613a55565b613a9e613a9682613a77565b848454613a03565b825550505050565b600090565b613ab3613aa6565b613abe818484613a81565b505050565b5b81811015613ae257613ad7600082613aab565b600181019050613ac4565b5050565b601f821115613b2757613af8816139d1565b613b01846139e6565b81016020851015613b10578190505b613b24613b1c856139e6565b830182613ac3565b50505b505050565b600082821c905092915050565b6000613b4a60001984600802613b2c565b1980831691505092915050565b6000613b638383613b39565b9150826002028217905092915050565b613b7c826131d7565b67ffffffffffffffff811115613b9557613b9461353b565b5b613b9f8254613882565b613baa828285613ae6565b600060209050601f831160018114613bdd5760008415613bcb578287015190505b613bd58582613b57565b865550613c3d565b601f198416613beb866139d1565b60005b82811015613c1357848901518255600182019150602085019450602081019050613bee565b86831015613c305784890151613c2c601f891682613b39565b8355505b6001600288020188555050505b505050505050565b7f436f6e7472616374206973205061757365640000000000000000000000000000600082015250565b6000613c7b6012836131e2565b9150613c8682613c45565b602082019050919050565b60006020820190508181036000830152613caa81613c6e565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163742e00600082015250565b6000613ce7601f836131e2565b9150613cf282613cb1565b602082019050919050565b60006020820190508181036000830152613d1681613cda565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d5782613289565b9150613d6283613289565b9250828202613d7081613289565b91508282048414831517613d8757613d86613d1d565b5b5092915050565b7f4e6f7420456e6f75676820457468657200000000000000000000000000000000600082015250565b6000613dc46010836131e2565b9150613dcf82613d8e565b602082019050919050565b60006020820190508181036000830152613df381613db7565b9050919050565b7f4f766572205478204c696d697400000000000000000000000000000000000000600082015250565b6000613e30600d836131e2565b9150613e3b82613dfa565b602082019050919050565b60006020820190508181036000830152613e5f81613e23565b9050919050565b6000613e7182613289565b9150613e7c83613289565b9250828201905080821115613e9457613e93613d1d565b5b92915050565b7f536f6c644f757400000000000000000000000000000000000000000000000000600082015250565b6000613ed06007836131e2565b9150613edb82613e9a565b602082019050919050565b60006020820190508181036000830152613eff81613ec3565b9050919050565b7f4f766572204d6178205065722057616c6c657400000000000000000000000000600082015250565b6000613f3c6013836131e2565b9150613f4782613f06565b602082019050919050565b60006020820190508181036000830152613f6b81613f2f565b9050919050565b6000613f7d82613289565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613faf57613fae613d1d565b5b600182019050919050565b7f4f766572204d617850657257616c6c6574000000000000000000000000000000600082015250565b6000613ff06011836131e2565b9150613ffb82613fba565b602082019050919050565b6000602082019050818103600083015261401f81613fe3565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b600061405c6015836131e2565b915061406782614026565b602082019050919050565b6000602082019050818103600083015261408b8161404f565b9050919050565b600081905092915050565b600081546140aa81613882565b6140b48186614092565b945060018216600081146140cf57600181146140e457614117565b60ff1983168652811515820286019350614117565b6140ed856139d1565b60005b8381101561410f578154818901526001820191506020810190506140f0565b838801955050505b50505092915050565b600061412b826131d7565b6141358185614092565b93506141458185602086016131f3565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614187600583614092565b915061419282614151565b600582019050919050565b60006141a9828561409d565b91506141b58284614120565b91506141c08261417a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142286026836131e2565b9150614233826141cc565b604082019050919050565b600060208201905081810360008301526142578161421b565b9050919050565b6000604082019050614273600083018561331e565b614280602083018461331e565b9392505050565b600081519050614296816133b4565b92915050565b6000602082840312156142b2576142b1613112565b5b60006142c084828501614287565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061430382613289565b915061430e83613289565b92508261431e5761431d6142c9565b5b828204905092915050565b600061433482613289565b915061433f83613289565b925082820390508181111561435757614356613d1d565b5b92915050565b600061436882613289565b915061437383613289565b925082614383576143826142c9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006143e4826143bd565b6143ee81856143c8565b93506143fe8185602086016131f3565b6144078161321d565b840191505092915050565b6000608082019050614427600083018761331e565b614434602083018661331e565b614441604083018561340d565b818103606083015261445381846143d9565b905095945050505050565b60008151905061446d81613148565b92915050565b60006020828403121561448957614488613112565b5b60006144978482850161445e565b9150509291505056fea264697066735822122052c0ebf6b7a4487898f68875bed84a395ae6ada8364e27c1dba0ee2dd7dacd8c64736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000259f10fefbf5de6367c242ab9bca80b3775aa0970000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52596842684151354d6f3979696b546754585a53324454324b64526b507174467059356e74396864747732322f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs://QmRYhBhAQ5Mo9yikTgTXZS2DT2KdRkPqtFpY5nt9hdtw22/
Arg [1] : _lead (address): 0x259f10fefBf5de6367c242aB9bca80b3775AA097

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000259f10fefbf5de6367c242ab9bca80b3775aa097
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d52596842684151354d6f3979696b546754585a53324454
Arg [4] : 324b64526b507174467059356e74396864747732322f00000000000000000000


Loading...
Loading
Loading...
Loading
[ 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.