ETH Price: $3,095.81 (+0.40%)
Gas: 12 Gwei

Token

Joumeijin (JOUME)
 

Overview

Max Total Supply

884 JOUME

Holders

266

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xkairo.eth
Balance
52 JOUME
0xEC4762fb859a53c15D1689c08FD5E48C5c1C47Fa
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Joumeijin the collection has 3333 tokens that are the reincarnation of the initial phase.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Joumeijin

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion
File 1 of 13 : Phase3.sol
//SPDX-License-Identifier: Unlicense

/*

 __      __  __    __  _______   ________  ______ 
|  \    /  \|  \  |  \|       \ |        \|      \
 \$$\  /  $$| $$  | $$| $$$$$$$\| $$$$$$$$ \$$$$$$
  \$$\/  $$ | $$  | $$| $$__| $$| $$__      | $$  
   \$$  $$  | $$  | $$| $$    $$| $$  \     | $$  
    \$$$$   | $$  | $$| $$$$$$$\| $$$$$     | $$  
    | $$    | $$__/ $$| $$  | $$| $$_____  _| $$_ 
    | $$     \$$    $$| $$  | $$| $$     \|   $$ \
     \$$      \$$$$$$  \$$   \$$ \$$$$$$$$ \$$$$$$
                                                  
                                                  
                                    by: The Croc              

*/
pragma solidity 0.8.15;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";

//error
error NoYureiOwned();
error NotYourPhurbaNerd();
error AlreadyThereSer();
error NotAFriend();
error noFriendFount();
error noOniOwned();
//phurba
abstract contract phurbaContract{

    function DestroyKey(uint256 tokenId) public virtual;
    function setApprovalForAll(address operator, bool approved) public virtual;
    function ownerOf(uint256 tokenId) public virtual returns (address);
}
//yurei
abstract contract YureiContract{

    function balanceOf(address owner) public view virtual returns (uint256);
   
}

contract Joumeijin is ERC721, ERC2981, Ownable {


    //Events
    event Minted(uint256 indexed tokenId);

    //var
    uint256 public MaxSupply = 3333;
    uint256 private _supply;

    uint256 public price = 0.005 ether;
    uint256 public publicPrice = 0.05 ether;
    uint256 public KeyPrice = 0.01 ether; 
    string public URI;
    string private uriSuffix = ".json";

    mapping(uint256 => bool) public isBurned; 
    mapping(address => bool) public PublicList;
    mapping(address => bool) public FriendListCount;
    //mapping(address => bool) public FriendList;
    mapping(address => bool) public OniClaimed;

    address[] public Friends;
    bool public KeyBurn = false;
    bool public YureiKeyBurn = false;
    bool public Onimint = false;

    enum State {
    Closed,
    Private,
    Public
    }

    State public salestatus = State.Closed;

    address public KeycontractAddress = 0xaC07B10340318A47E6396Bbec0B92611c865D8Cd;
    address public YureiAddress = 0x54251bc32A9f389DF7c764AB50BB829ccDcB41bc;
    address public SoulOniAddress = 0xeAcbfd060f4B5aaa0E20fa47c098068CBe23F299;
    //only approved operators
    mapping (address => bool) public ApprovedAddr;

    constructor(address _RoyaltyReceiver, uint96 _royaltyAmount)  ERC721("Joumeijin", "JOUME")  {
        setRoyaltyInfo(_RoyaltyReceiver,_royaltyAmount);
    }

   
    modifier IsUser() {
        require(tx.origin == msg.sender, "Cannot be called by a contract");
        _;
    }

    modifier OnlyWhitelistedOp(address _ops){
        require(ApprovedAddr[_ops], "Not approved operator");
        _;
    }

    modifier OwnYurei() {
        YureiContract Yurei = YureiContract(YureiAddress);
        if(Yurei.balanceOf(msg.sender)<1) revert NoYureiOwned();
        _;
    }

    modifier OwnOni() {
        YureiContract SoulOni = YureiContract(SoulOniAddress);
        if(SoulOni.balanceOf(msg.sender)<1) revert noOniOwned();
        _;
    }

    modifier OwnAFriend(address _nerd){
        bool found;
        for(uint256 i=0; i< Friends.length; i++){
            YureiContract FriendContract = YureiContract(Friends[i]);
            if(FriendContract.balanceOf(msg.sender)>0) {
                found = true;
                break;
            }

        }
        require(found, "No friend found");
        _;
    }


    function setState(State _saleState) external onlyOwner {
    
    salestatus = _saleState;
    
    }

    //Metadata

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

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(URI, Strings.toString(tokenId), uriSuffix));
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        URI = _newBaseURI;
    }

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

    
    //Friends Mint


    function NerdMint() external payable IsUser OwnAFriend(msg.sender) {
        require(salestatus == State.Private, "Private is not open");
        require(!FriendListCount[msg.sender],"Insufficient mints left");
        require(msg.value == publicPrice,"insufficient funds provided");

        FriendListCount[msg.sender] = true;
        mint(msg.sender);
        
    }

    //Public mint
    function mintPublic() external payable IsUser {
        require(salestatus == State.Public, "Public is not open");
        require(!PublicList[msg.sender],"Insufficient mints left");
        require(msg.value == publicPrice,"insufficient funds provided");

        PublicList[msg.sender] = true;
        mint(msg.sender);
    }



    //YureiMint

    function _StartRitual(uint256 Phurba) internal {
        require(!isBurned[Phurba],"This Phurba is used");

        
        phurbaContract key = phurbaContract(KeycontractAddress);
        if(key.ownerOf(Phurba) != msg.sender) revert NotYourPhurbaNerd();
        key.DestroyKey(Phurba);
        isBurned[Phurba]=true;

    }

    //phurba burn mint
    function BurnPhurbaMint(uint256 _key) public payable IsUser {
        require(KeyBurn, "Burn not open");
        require(msg.value == KeyPrice,"insufficient funds provided");

        _StartRitual(_key);
        mint(msg.sender);
    }

    //yurei holders only mint
    function BurnAndMint(uint256 _Phurba) public payable IsUser OwnYurei {
        require(YureiKeyBurn, "hold your hoeses");
        require(msg.value == price,"insufficient funds provided");

        _StartRitual(_Phurba);
        mint(msg.sender);

        
    }

    //soulOni Claim
    function SoulOniMint() external OwnOni {
        require(Onimint, "hold your hoeses");
        require(!OniClaimed[msg.sender],"Insufficient mints left");

        OniClaimed[msg.sender] = true;
        mint(msg.sender);

    }
    //mint function
    function mint(address _who) internal {
        require(totalSupply() < MaxSupply, "max supply reached");
        _supply++;
        _mint(_who, totalSupply());

        emit Minted(totalSupply());

    }
    //owner mint
    function OwnerMint(address to) public onlyOwner {
        mint(to);
        
    }

    ///////////////////////////////Owner//////////////////////////////////////

    //start Burn to mint for yurei holders or phurba only
    function StartTheFire(bool key, bool yurei,bool oni) onlyOwner external{
        KeyBurn=key;
        YureiKeyBurn=yurei;
        Onimint=oni;

    }


    //set contract for SoulOni

     function SetOniContract(address _contr) external onlyOwner {
        SoulOniAddress = _contr;
    }
    
    //set contract for phurba

     function SetKeyContract(address _contr) external onlyOwner {
        KeycontractAddress = _contr;
    }

    //set contract address for yurei
    function SetYureiContract(address _contr) external onlyOwner {
        YureiAddress = _contr;
    }
    //add a friend to the FL
    function AddFriend(address _friend) external onlyOwner {

        Friends.push(_friend);
    }

    //approval modification

    function AddApprover(address Approver) public onlyOwner {
        require(!ApprovedAddr[Approver], "Contract is already in the whitelist");
        ApprovedAddr[Approver] = true;
    }

    function removeApprover(address Approver) public onlyOwner {
        delete ApprovedAddr[Approver];
    }

    //Override functions

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

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


    //royalty 100 is 1%
    
     function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) {
         return super.supportsInterface(interfaceId);
    }

    function setRoyaltyInfo(address _receiver, uint96 _royaltyAmount) public onlyOwner {
        _setDefaultRoyalty(_receiver,_royaltyAmount);
    }

    function withdraw() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
}

File 2 of 13 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 3 of 13 : 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 4 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 5 of 13 : 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 6 of 13 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 7 of 13 : 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 8 of 13 : 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 9 of 13 : 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 10 of 13 : 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 11 of 13 : 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 12 of 13 : 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 13 of 13 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_RoyaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyAmount","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"NoYureiOwned","type":"error"},{"inputs":[],"name":"NotYourPhurbaNerd","type":"error"},{"inputs":[],"name":"noOniOwned","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":"uint256","name":"tokenId","type":"uint256"}],"name":"Minted","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":[{"internalType":"address","name":"Approver","type":"address"}],"name":"AddApprover","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_friend","type":"address"}],"name":"AddFriend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ApprovedAddr","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_Phurba","type":"uint256"}],"name":"BurnAndMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_key","type":"uint256"}],"name":"BurnPhurbaMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"FriendListCount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"Friends","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"KeyBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"KeyPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"KeycontractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NerdMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"OniClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Onimint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"OwnerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"PublicList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_contr","type":"address"}],"name":"SetKeyContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contr","type":"address"}],"name":"SetOniContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contr","type":"address"}],"name":"SetYureiContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SoulOniAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SoulOniMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"key","type":"bool"},{"internalType":"bool","name":"yurei","type":"bool"},{"internalType":"bool","name":"oni","type":"bool"}],"name":"StartTheFire","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"YureiAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"YureiKeyBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isBurned","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"Approver","type":"address"}],"name":"removeApprover","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":[],"name":"salestatus","outputs":[{"internalType":"enum Joumeijin.State","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyAmount","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Joumeijin.State","name":"_saleState","type":"uint8"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"}]

610d056009556611c37937e08000600b5566b1a2bc2ec50000600c55662386f26fc10000600d5560c06040526005608090815264173539b7b760d91b60a052600f906200004d9082620003ef565b50601580546001600160c01b03191677ac07b10340318a47e6396bbec0b92611c865d8cd00000000179055601680547354251bc32a9f389df7c764ab50bb829ccdcb41bc6001600160a01b0319918216179091556017805473eacbfd060f4b5aaa0e20fa47c098068cbe23f2999216919091179055348015620000cf57600080fd5b506040516200405838038062004058833981016040819052620000f291620004bb565b604051806040016040528060098152602001682537bab6b2b4b534b760b91b815250604051806040016040528060058152602001644a4f554d4560d81b8152508160009081620001439190620003ef565b506001620001528282620003ef565b5050506200016f620001696200018360201b60201c565b62000187565b6200017b8282620001d9565b505062000510565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620002395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b62000245828262000249565b5050565b6127106001600160601b0382161115620002b95760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840162000230565b6001600160a01b038216620003115760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000230565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600655565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200037557607f821691505b6020821081036200039657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003ea57600081815260208120601f850160051c81016020861015620003c55750805b601f850160051c820191505b81811015620003e657828155600101620003d1565b5050505b505050565b81516001600160401b038111156200040b576200040b6200034a565b62000423816200041c845462000360565b846200039c565b602080601f8311600181146200045b5760008415620004425750858301515b600019600386901b1c1916600185901b178555620003e6565b600085815260208120601f198616915b828110156200048c578886015182559484019460019091019084016200046b565b5085821015620004ab5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008060408385031215620004cf57600080fd5b82516001600160a01b0381168114620004e757600080fd5b60208401519092506001600160601b03811681146200050557600080fd5b809150509250929050565b613b3880620005206000396000f3fe60806040526004361061034a5760003560e01c80636cf4c88f116101bb578063a2456e97116100f7578063c87b56dd11610095578063db44fe071161006f578063db44fe0714610962578063e985e9c514610992578063ec1d4112146109db578063f2fde38b146109fb57600080fd5b8063c87b56dd146108f4578063d543e68314610914578063d713d7af1461094257600080fd5b8063b36c1284116100d1578063b36c12841461087e578063b88d4fde14610894578063bfa3c96a146108b4578063c5aedf1a146108d457600080fd5b8063a2456e9714610840578063a41da53b14610848578063a945bf801461086857600080fd5b80638a1a8bbf1161016457806395d89b411161013e57806395d89b41146107c55780639fce84ca146107da578063a035b1fe1461080a578063a22cb4651461082057600080fd5b80638a1a8bbf1461077f5780638c874ebd1461079f5780638da5cb5b146107a757600080fd5b806375f138bd1161019557806375f138bd1461071e5780637c98e0bf14610738578063847b04731461076057600080fd5b80636cf4c88f146106c957806370a08231146106e9578063715018a61461070957600080fd5b80631cbf32361161028a5780633ccfd60b11610233578063559815bf1161020d578063559815bf1461063957806355f804b31461066957806356de96db146106895780636352211e146106a957600080fd5b80633ccfd60b146105d457806342842e0e146105e95780634e4d052b1461060957600080fd5b80632a55205a116102645780632a55205a14610552578063366e38d614610591578063392ad9c2146105c157600080fd5b80631cbf3236146104fc57806322c13e821461051257806323b872dd1461053257600080fd5b806307e50761116102f75780630e24b567116102d15780630e24b567146104935780631141d7de146104a857806313962258146104bd57806318160ddd146104dd57600080fd5b806307e5076114610433578063081812fc14610453578063095ea7b31461047357600080fd5b806304ed51681161032857806304ed5168146103b957806306e7e582146103d957806306fdde031461041157600080fd5b8063012e5be11461034f57806301ffc9a71461036457806302fa7c4714610399575b600080fd5b61036261035d3660046131e2565b610a1b565b005b34801561037057600080fd5b5061038461037f366004613229565b610b27565b60405190151581526020015b60405180910390f35b3480156103a557600080fd5b506103626103b4366004613262565b610b38565b3480156103c557600080fd5b506103626103d43660046132ac565b610ba0565b3480156103e557600080fd5b506016546103f9906001600160a01b031681565b6040516001600160a01b039091168152602001610390565b34801561041d57600080fd5b50610426610c03565b604051610390919061333f565b34801561043f57600080fd5b5061036261044e3660046132ac565b610c95565b34801561045f57600080fd5b506103f961046e3660046131e2565b610d29565b34801561047f57600080fd5b5061036261048e366004613352565b610dcf565b34801561049f57600080fd5b50610362610e48565b3480156104b457600080fd5b50610426610fe5565b3480156104c957600080fd5b506103626104d83660046132ac565b611073565b3480156104e957600080fd5b50600a545b604051908152602001610390565b34801561050857600080fd5b506104ee600d5481565b34801561051e57600080fd5b506017546103f9906001600160a01b031681565b34801561053e57600080fd5b5061036261054d36600461337e565b611137565b34801561055e57600080fd5b5061057261056d3660046133bf565b6111be565b604080516001600160a01b039093168352602083019190915201610390565b34801561059d57600080fd5b506103846105ac3660046132ac565b60126020526000908152604090205460ff1681565b6103626105cf3660046131e2565b61129b565b3480156105e057600080fd5b50610362611466565b3480156105f557600080fd5b5061036261060436600461337e565b6114ec565b34801561061557600080fd5b506103846106243660046132ac565b60136020526000908152604090205460ff1681565b34801561064557600080fd5b506103846106543660046132ac565b60186020526000908152604090205460ff1681565b34801561067557600080fd5b506103626106843660046134a4565b611507565b34801561069557600080fd5b506103626106a43660046134ed565b61156d565b3480156106b557600080fd5b506103f96106c43660046131e2565b61160f565b3480156106d557600080fd5b506103626106e43660046132ac565b61169a565b3480156106f557600080fd5b506104ee6107043660046132ac565b611715565b34801561071557600080fd5b506103626117af565b34801561072a57600080fd5b506015546103849060ff1681565b34801561074457600080fd5b506015546103f99064010000000090046001600160a01b031681565b34801561076c57600080fd5b5060155461038490610100900460ff1681565b34801561078b57600080fd5b506103f961079a3660046131e2565b611815565b61036261183f565b3480156107b357600080fd5b506008546001600160a01b03166103f9565b3480156107d157600080fd5b506104266119cf565b3480156107e657600080fd5b506103846107f53660046132ac565b60116020526000908152604090205460ff1681565b34801561081657600080fd5b506104ee600b5481565b34801561082c57600080fd5b5061036261083b366004613523565b6119de565b610362611a52565b34801561085457600080fd5b50610362610863366004613558565b611d07565b34801561087457600080fd5b506104ee600c5481565b34801561088a57600080fd5b506104ee60095481565b3480156108a057600080fd5b506103626108af36600461359b565b611df0565b3480156108c057600080fd5b506103626108cf3660046132ac565b611e7e565b3480156108e057600080fd5b506015546103849062010000900460ff1681565b34801561090057600080fd5b5061042661090f3660046131e2565b611f8a565b34801561092057600080fd5b50601554610935906301000000900460ff1681565b604051610390919061364a565b34801561094e57600080fd5b5061036261095d3660046132ac565b61204c565b34801561096e57600080fd5b5061038461097d3660046131e2565b60106020526000908152604090205460ff1681565b34801561099e57600080fd5b506103846109ad36600461368b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109e757600080fd5b506103626109f63660046132ac565b6120e0565b348015610a0757600080fd5b50610362610a163660046132ac565b61217c565b323314610a6f5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f742062652063616c6c6564206279206120636f6e7472616374000060448201526064015b60405180910390fd5b60155460ff16610ac15760405162461bcd60e51b815260206004820152600d60248201527f4275726e206e6f74206f70656e000000000000000000000000000000000000006044820152606401610a66565b600d543414610b125760405162461bcd60e51b815260206004820152601b60248201527f696e73756666696369656e742066756e64732070726f766964656400000000006044820152606401610a66565b610b1b8161225b565b610b243361241c565b50565b6000610b32826124c5565b92915050565b6008546001600160a01b03163314610b925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b610b9c828261251b565b5050565b6008546001600160a01b03163314610bfa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b610b248161241c565b606060008054610c12906136b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3e906136b9565b8015610c8b5780601f10610c6057610100808354040283529160200191610c8b565b820191906000526020600020905b815481529060010190602001808311610c6e57829003601f168201915b5050505050905090565b6008546001600160a01b03163314610cef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b601780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316610db35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a66565b506000908152600460205260409020546001600160a01b031690565b6001600160a01b038216600090815260186020526040902054829060ff16610e395760405162461bcd60e51b815260206004820152601560248201527f4e6f7420617070726f766564206f70657261746f7200000000000000000000006044820152606401610a66565b610e438383612646565b505050565b6017546040517f70a082310000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b039091169060019082906370a0823190602401602060405180830381865afa158015610eae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed2919061370c565b1015610f0a576040517f02dcaf2c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60155462010000900460ff16610f625760405162461bcd60e51b815260206004820152601060248201527f686f6c6420796f757220686f65736573000000000000000000000000000000006044820152606401610a66565b3360009081526013602052604090205460ff1615610fc25760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e74206d696e7473206c6566740000000000000000006044820152606401610a66565b336000818152601360205260409020805460ff19166001179055610b249061241c565b600e8054610ff2906136b9565b80601f016020809104026020016040519081016040528092919081815260200182805461101e906136b9565b801561106b5780601f106110405761010080835404028352916020019161106b565b820191906000526020600020905b81548152906001019060200180831161104e57829003601f168201915b505050505081565b6008546001600160a01b031633146110cd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b601480546001810182556000919091527fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6111413382612772565b6111b35760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a66565b610e4383838361287a565b60008281526007602090815260408083208151808301909252546001600160a01b038116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff1692820192909252829161125f5750604080518082019091526006546001600160a01b03811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b602081015160009061271090611283906bffffffffffffffffffffffff1687613754565b61128d91906137c0565b915196919550909350505050565b3233146112ea5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f742062652063616c6c6564206279206120636f6e747261637400006044820152606401610a66565b6016546040517f70a082310000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b039091169060019082906370a0823190602401602060405180830381865afa158015611350573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611374919061370c565b10156113ac576040517f3f57b26d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601554610100900460ff166114035760405162461bcd60e51b815260206004820152601060248201527f686f6c6420796f757220686f65736573000000000000000000000000000000006044820152606401610a66565b600b5434146114545760405162461bcd60e51b815260206004820152601b60248201527f696e73756666696369656e742066756e64732070726f766964656400000000006044820152606401610a66565b61145d8261225b565b610b9c3361241c565b6008546001600160a01b031633146114c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b60405133904780156108fc02916000818181858888f19350505050158015610b24573d6000803e3d6000fd5b610e4383838360405180602001604052806000815250611df0565b6008546001600160a01b031633146115615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b600e610b9c8282613822565b6008546001600160a01b031633146115c75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b601580548291907fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff1663010000008360028111156116075761160761361b565b021790555050565b6000818152600260205260408120546001600160a01b031680610b325760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a66565b6008546001600160a01b031633146116f45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b6001600160a01b03166000908152601860205260409020805460ff19169055565b60006001600160a01b0382166117935760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a66565b506001600160a01b031660009081526003602052604090205490565b6008546001600160a01b031633146118095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b6118136000612a5f565b565b6014818154811061182557600080fd5b6000918252602090912001546001600160a01b0316905081565b32331461188e5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f742062652063616c6c6564206279206120636f6e747261637400006044820152606401610a66565b60026015546301000000900460ff1660028111156118ae576118ae61361b565b146118fb5760405162461bcd60e51b815260206004820152601260248201527f5075626c6963206973206e6f74206f70656e00000000000000000000000000006044820152606401610a66565b3360009081526011602052604090205460ff161561195b5760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e74206d696e7473206c6566740000000000000000006044820152606401610a66565b600c5434146119ac5760405162461bcd60e51b815260206004820152601b60248201527f696e73756666696369656e742066756e64732070726f766964656400000000006044820152606401610a66565b336000818152601160205260409020805460ff191660011790556118139061241c565b606060018054610c12906136b9565b6001600160a01b038216600090815260186020526040902054829060ff16611a485760405162461bcd60e51b815260206004820152601560248201527f4e6f7420617070726f766564206f70657261746f7200000000000000000000006044820152606401610a66565b610e438383612ac9565b323314611aa15760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f742062652063616c6c6564206279206120636f6e747261637400006044820152606401610a66565b336000805b601454811015611b7857600060148281548110611ac557611ac561393c565b60009182526020822001546040517f70a082310000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b03909116925082906370a0823190602401602060405180830381865afa158015611b31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b55919061370c565b1115611b65576001925050611b78565b5080611b708161396b565b915050611aa6565b5080611bc65760405162461bcd60e51b815260206004820152600f60248201527f4e6f20667269656e6420666f756e6400000000000000000000000000000000006044820152606401610a66565b60016015546301000000900460ff166002811115611be657611be661361b565b14611c335760405162461bcd60e51b815260206004820152601360248201527f50726976617465206973206e6f74206f70656e000000000000000000000000006044820152606401610a66565b3360009081526012602052604090205460ff1615611c935760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e74206d696e7473206c6566740000000000000000006044820152606401610a66565b600c543414611ce45760405162461bcd60e51b815260206004820152601b60248201527f696e73756666696369656e742066756e64732070726f766964656400000000006044820152606401610a66565b336000818152601260205260409020805460ff19166001179055610b9c9061241c565b6008546001600160a01b03163314611d615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b601580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000169315157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169390931761010092151592909202919091177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff166201000091151591909102179055565b611dfa3383612772565b611e6c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a66565b611e7884848484612ad4565b50505050565b6008546001600160a01b03163314611ed85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b6001600160a01b03811660009081526018602052604090205460ff1615611f665760405162461bcd60e51b8152602060048201526024808201527f436f6e747261637420697320616c726561647920696e2074686520776869746560448201527f6c697374000000000000000000000000000000000000000000000000000000006064820152608401610a66565b6001600160a01b03166000908152601860205260409020805460ff19166001179055565b6000818152600260205260409020546060906001600160a01b03166120175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a66565b600e61202283612b5d565b600f60405160200161203693929190613a16565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146120a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b601680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6008546001600160a01b0316331461213a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b601580546001600160a01b03909216640100000000027fffffffffffffffff0000000000000000000000000000000000000000ffffffff909216919091179055565b6008546001600160a01b031633146121d65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b6001600160a01b0381166122525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a66565b610b2481612a5f565b60008181526010602052604090205460ff16156122ba5760405162461bcd60e51b815260206004820152601360248201527f54686973205068757262612069732075736564000000000000000000000000006044820152606401610a66565b6015546040517f6352211e000000000000000000000000000000000000000000000000000000008152600481018390526401000000009091046001600160a01b03169033908290636352211e906024016020604051808303816000875af1158015612329573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061234d9190613a49565b6001600160a01b03161461238d576040517f7a35d64a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fa58eada8000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b0382169063a58eada890602401600060405180830381600087803b1580156123e857600080fd5b505af11580156123fc573d6000803e3d6000fd5b50505060009283525050601060205260409020805460ff19166001179055565b600954600a541061246f5760405162461bcd60e51b815260206004820152601260248201527f6d617820737570706c79207265616368656400000000000000000000000000006044820152606401610a66565b600a805490600061247f8361396b565b919050555061249681612491600a5490565b612c92565b600a546040517f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a90600090a250565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610b325750610b3282612dec565b6127106bffffffffffffffffffffffff821611156125a15760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610a66565b6001600160a01b0382166125f75760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610a66565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600655565b60006126518261160f565b9050806001600160a01b0316836001600160a01b0316036126da5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a66565b336001600160a01b03821614806126f657506126f681336109ad565b6127685760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a66565b610e438383612ecf565b6000818152600260205260408120546001600160a01b03166127fc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a66565b60006128078361160f565b9050806001600160a01b0316846001600160a01b031614806128425750836001600160a01b031661283784610d29565b6001600160a01b0316145b8061287257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661288d8261160f565b6001600160a01b0316146129095760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610a66565b6001600160a01b0382166129845760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a66565b61298f600082612ecf565b6001600160a01b03831660009081526003602052604081208054600192906129b8908490613a66565b90915550506001600160a01b03821660009081526003602052604081208054600192906129e6908490613a7d565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b9c338383612f55565b612adf84848461287a565b612aeb84848484613023565b611e785760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a66565b606081600003612ba057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612bca5780612bb48161396b565b9150612bc39050600a836137c0565b9150612ba4565b60008167ffffffffffffffff811115612be557612be56133e1565b6040519080825280601f01601f191660200182016040528015612c0f576020820181803683370190505b5090505b841561287257612c24600183613a66565b9150612c31600a86613a95565b612c3c906030613a7d565b60f81b818381518110612c5157612c5161393c565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612c8b600a866137c0565b9450612c13565b6001600160a01b038216612ce85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a66565b6000818152600260205260409020546001600160a01b031615612d4d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a66565b6001600160a01b0382166000908152600360205260408120805460019290612d76908490613a7d565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612e7f57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b3257507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610b32565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190612f1c8261160f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b816001600160a01b0316836001600160a01b031603612fb65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a66565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006001600160a01b0384163b156131d7576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290613080903390899088908890600401613aa9565b6020604051808303816000875af19250505080156130d9575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526130d691810190613ae5565b60015b61318c573d808015613107576040519150601f19603f3d011682016040523d82523d6000602084013e61310c565b606091505b5080516000036131845760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a66565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612872565b506001949350505050565b6000602082840312156131f457600080fd5b5035919050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610b2457600080fd5b60006020828403121561323b57600080fd5b8135613246816131fb565b9392505050565b6001600160a01b0381168114610b2457600080fd5b6000806040838503121561327557600080fd5b82356132808161324d565b915060208301356bffffffffffffffffffffffff811681146132a157600080fd5b809150509250929050565b6000602082840312156132be57600080fd5b81356132468161324d565b60005b838110156132e45781810151838201526020016132cc565b83811115611e785750506000910152565b6000815180845261330d8160208601602086016132c9565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061324660208301846132f5565b6000806040838503121561336557600080fd5b82356133708161324d565b946020939093013593505050565b60008060006060848603121561339357600080fd5b833561339e8161324d565b925060208401356133ae8161324d565b929592945050506040919091013590565b600080604083850312156133d257600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561342b5761342b6133e1565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613471576134716133e1565b8160405280935085815286868601111561348a57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156134b657600080fd5b813567ffffffffffffffff8111156134cd57600080fd5b8201601f810184136134de57600080fd5b61287284823560208401613410565b6000602082840312156134ff57600080fd5b81356003811061324657600080fd5b8035801515811461351e57600080fd5b919050565b6000806040838503121561353657600080fd5b82356135418161324d565b915061354f6020840161350e565b90509250929050565b60008060006060848603121561356d57600080fd5b6135768461350e565b92506135846020850161350e565b91506135926040850161350e565b90509250925092565b600080600080608085870312156135b157600080fd5b84356135bc8161324d565b935060208501356135cc8161324d565b925060408501359150606085013567ffffffffffffffff8111156135ef57600080fd5b8501601f8101871361360057600080fd5b61360f87823560208401613410565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6020810160038310613685577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b6000806040838503121561369e57600080fd5b82356136a98161324d565b915060208301356132a18161324d565b600181811c908216806136cd57607f821691505b602082108103613706577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60006020828403121561371e57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561378c5761378c613725565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826137cf576137cf613791565b500490565b601f821115610e4357600081815260208120601f850160051c810160208610156137fb5750805b601f850160051c820191505b8181101561381a57828155600101613807565b505050505050565b815167ffffffffffffffff81111561383c5761383c6133e1565b6138508161384a84546136b9565b846137d4565b602080601f8311600181146138a3576000841561386d5750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b17855561381a565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b828110156138f0578886015182559484019460019091019084016138d1565b508582101561392c57878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361399c5761399c613725565b5060010190565b600081546139b0816136b9565b600182811680156139c857600181146139dd57613a0c565b60ff1984168752821515830287019450613a0c565b8560005260208060002060005b85811015613a035781548a8201529084019082016139ea565b50505082870194505b5050505092915050565b6000613a2282866139a3565b8451613a328183602089016132c9565b613a3e818301866139a3565b979650505050505050565b600060208284031215613a5b57600080fd5b81516132468161324d565b600082821015613a7857613a78613725565b500390565b60008219821115613a9057613a90613725565b500190565b600082613aa457613aa4613791565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613adb60808301846132f5565b9695505050505050565b600060208284031215613af757600080fd5b8151613246816131fb56fea264697066735822122064202929d2f382e8f5f2eea2ff05507c0953d09fa45438efb4a7e9290e2f2c8864736f6c634300080f0033000000000000000000000000ef3bd95241015b733bd8fbb9572c4c5e7377692d00000000000000000000000000000000000000000000000000000000000002b2

Deployed Bytecode

0x60806040526004361061034a5760003560e01c80636cf4c88f116101bb578063a2456e97116100f7578063c87b56dd11610095578063db44fe071161006f578063db44fe0714610962578063e985e9c514610992578063ec1d4112146109db578063f2fde38b146109fb57600080fd5b8063c87b56dd146108f4578063d543e68314610914578063d713d7af1461094257600080fd5b8063b36c1284116100d1578063b36c12841461087e578063b88d4fde14610894578063bfa3c96a146108b4578063c5aedf1a146108d457600080fd5b8063a2456e9714610840578063a41da53b14610848578063a945bf801461086857600080fd5b80638a1a8bbf1161016457806395d89b411161013e57806395d89b41146107c55780639fce84ca146107da578063a035b1fe1461080a578063a22cb4651461082057600080fd5b80638a1a8bbf1461077f5780638c874ebd1461079f5780638da5cb5b146107a757600080fd5b806375f138bd1161019557806375f138bd1461071e5780637c98e0bf14610738578063847b04731461076057600080fd5b80636cf4c88f146106c957806370a08231146106e9578063715018a61461070957600080fd5b80631cbf32361161028a5780633ccfd60b11610233578063559815bf1161020d578063559815bf1461063957806355f804b31461066957806356de96db146106895780636352211e146106a957600080fd5b80633ccfd60b146105d457806342842e0e146105e95780634e4d052b1461060957600080fd5b80632a55205a116102645780632a55205a14610552578063366e38d614610591578063392ad9c2146105c157600080fd5b80631cbf3236146104fc57806322c13e821461051257806323b872dd1461053257600080fd5b806307e50761116102f75780630e24b567116102d15780630e24b567146104935780631141d7de146104a857806313962258146104bd57806318160ddd146104dd57600080fd5b806307e5076114610433578063081812fc14610453578063095ea7b31461047357600080fd5b806304ed51681161032857806304ed5168146103b957806306e7e582146103d957806306fdde031461041157600080fd5b8063012e5be11461034f57806301ffc9a71461036457806302fa7c4714610399575b600080fd5b61036261035d3660046131e2565b610a1b565b005b34801561037057600080fd5b5061038461037f366004613229565b610b27565b60405190151581526020015b60405180910390f35b3480156103a557600080fd5b506103626103b4366004613262565b610b38565b3480156103c557600080fd5b506103626103d43660046132ac565b610ba0565b3480156103e557600080fd5b506016546103f9906001600160a01b031681565b6040516001600160a01b039091168152602001610390565b34801561041d57600080fd5b50610426610c03565b604051610390919061333f565b34801561043f57600080fd5b5061036261044e3660046132ac565b610c95565b34801561045f57600080fd5b506103f961046e3660046131e2565b610d29565b34801561047f57600080fd5b5061036261048e366004613352565b610dcf565b34801561049f57600080fd5b50610362610e48565b3480156104b457600080fd5b50610426610fe5565b3480156104c957600080fd5b506103626104d83660046132ac565b611073565b3480156104e957600080fd5b50600a545b604051908152602001610390565b34801561050857600080fd5b506104ee600d5481565b34801561051e57600080fd5b506017546103f9906001600160a01b031681565b34801561053e57600080fd5b5061036261054d36600461337e565b611137565b34801561055e57600080fd5b5061057261056d3660046133bf565b6111be565b604080516001600160a01b039093168352602083019190915201610390565b34801561059d57600080fd5b506103846105ac3660046132ac565b60126020526000908152604090205460ff1681565b6103626105cf3660046131e2565b61129b565b3480156105e057600080fd5b50610362611466565b3480156105f557600080fd5b5061036261060436600461337e565b6114ec565b34801561061557600080fd5b506103846106243660046132ac565b60136020526000908152604090205460ff1681565b34801561064557600080fd5b506103846106543660046132ac565b60186020526000908152604090205460ff1681565b34801561067557600080fd5b506103626106843660046134a4565b611507565b34801561069557600080fd5b506103626106a43660046134ed565b61156d565b3480156106b557600080fd5b506103f96106c43660046131e2565b61160f565b3480156106d557600080fd5b506103626106e43660046132ac565b61169a565b3480156106f557600080fd5b506104ee6107043660046132ac565b611715565b34801561071557600080fd5b506103626117af565b34801561072a57600080fd5b506015546103849060ff1681565b34801561074457600080fd5b506015546103f99064010000000090046001600160a01b031681565b34801561076c57600080fd5b5060155461038490610100900460ff1681565b34801561078b57600080fd5b506103f961079a3660046131e2565b611815565b61036261183f565b3480156107b357600080fd5b506008546001600160a01b03166103f9565b3480156107d157600080fd5b506104266119cf565b3480156107e657600080fd5b506103846107f53660046132ac565b60116020526000908152604090205460ff1681565b34801561081657600080fd5b506104ee600b5481565b34801561082c57600080fd5b5061036261083b366004613523565b6119de565b610362611a52565b34801561085457600080fd5b50610362610863366004613558565b611d07565b34801561087457600080fd5b506104ee600c5481565b34801561088a57600080fd5b506104ee60095481565b3480156108a057600080fd5b506103626108af36600461359b565b611df0565b3480156108c057600080fd5b506103626108cf3660046132ac565b611e7e565b3480156108e057600080fd5b506015546103849062010000900460ff1681565b34801561090057600080fd5b5061042661090f3660046131e2565b611f8a565b34801561092057600080fd5b50601554610935906301000000900460ff1681565b604051610390919061364a565b34801561094e57600080fd5b5061036261095d3660046132ac565b61204c565b34801561096e57600080fd5b5061038461097d3660046131e2565b60106020526000908152604090205460ff1681565b34801561099e57600080fd5b506103846109ad36600461368b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109e757600080fd5b506103626109f63660046132ac565b6120e0565b348015610a0757600080fd5b50610362610a163660046132ac565b61217c565b323314610a6f5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f742062652063616c6c6564206279206120636f6e7472616374000060448201526064015b60405180910390fd5b60155460ff16610ac15760405162461bcd60e51b815260206004820152600d60248201527f4275726e206e6f74206f70656e000000000000000000000000000000000000006044820152606401610a66565b600d543414610b125760405162461bcd60e51b815260206004820152601b60248201527f696e73756666696369656e742066756e64732070726f766964656400000000006044820152606401610a66565b610b1b8161225b565b610b243361241c565b50565b6000610b32826124c5565b92915050565b6008546001600160a01b03163314610b925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b610b9c828261251b565b5050565b6008546001600160a01b03163314610bfa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b610b248161241c565b606060008054610c12906136b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3e906136b9565b8015610c8b5780601f10610c6057610100808354040283529160200191610c8b565b820191906000526020600020905b815481529060010190602001808311610c6e57829003601f168201915b5050505050905090565b6008546001600160a01b03163314610cef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b601780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316610db35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a66565b506000908152600460205260409020546001600160a01b031690565b6001600160a01b038216600090815260186020526040902054829060ff16610e395760405162461bcd60e51b815260206004820152601560248201527f4e6f7420617070726f766564206f70657261746f7200000000000000000000006044820152606401610a66565b610e438383612646565b505050565b6017546040517f70a082310000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b039091169060019082906370a0823190602401602060405180830381865afa158015610eae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed2919061370c565b1015610f0a576040517f02dcaf2c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60155462010000900460ff16610f625760405162461bcd60e51b815260206004820152601060248201527f686f6c6420796f757220686f65736573000000000000000000000000000000006044820152606401610a66565b3360009081526013602052604090205460ff1615610fc25760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e74206d696e7473206c6566740000000000000000006044820152606401610a66565b336000818152601360205260409020805460ff19166001179055610b249061241c565b600e8054610ff2906136b9565b80601f016020809104026020016040519081016040528092919081815260200182805461101e906136b9565b801561106b5780601f106110405761010080835404028352916020019161106b565b820191906000526020600020905b81548152906001019060200180831161104e57829003601f168201915b505050505081565b6008546001600160a01b031633146110cd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b601480546001810182556000919091527fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6111413382612772565b6111b35760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a66565b610e4383838361287a565b60008281526007602090815260408083208151808301909252546001600160a01b038116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff1692820192909252829161125f5750604080518082019091526006546001600160a01b03811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b602081015160009061271090611283906bffffffffffffffffffffffff1687613754565b61128d91906137c0565b915196919550909350505050565b3233146112ea5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f742062652063616c6c6564206279206120636f6e747261637400006044820152606401610a66565b6016546040517f70a082310000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b039091169060019082906370a0823190602401602060405180830381865afa158015611350573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611374919061370c565b10156113ac576040517f3f57b26d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601554610100900460ff166114035760405162461bcd60e51b815260206004820152601060248201527f686f6c6420796f757220686f65736573000000000000000000000000000000006044820152606401610a66565b600b5434146114545760405162461bcd60e51b815260206004820152601b60248201527f696e73756666696369656e742066756e64732070726f766964656400000000006044820152606401610a66565b61145d8261225b565b610b9c3361241c565b6008546001600160a01b031633146114c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b60405133904780156108fc02916000818181858888f19350505050158015610b24573d6000803e3d6000fd5b610e4383838360405180602001604052806000815250611df0565b6008546001600160a01b031633146115615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b600e610b9c8282613822565b6008546001600160a01b031633146115c75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b601580548291907fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff1663010000008360028111156116075761160761361b565b021790555050565b6000818152600260205260408120546001600160a01b031680610b325760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a66565b6008546001600160a01b031633146116f45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b6001600160a01b03166000908152601860205260409020805460ff19169055565b60006001600160a01b0382166117935760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a66565b506001600160a01b031660009081526003602052604090205490565b6008546001600160a01b031633146118095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b6118136000612a5f565b565b6014818154811061182557600080fd5b6000918252602090912001546001600160a01b0316905081565b32331461188e5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f742062652063616c6c6564206279206120636f6e747261637400006044820152606401610a66565b60026015546301000000900460ff1660028111156118ae576118ae61361b565b146118fb5760405162461bcd60e51b815260206004820152601260248201527f5075626c6963206973206e6f74206f70656e00000000000000000000000000006044820152606401610a66565b3360009081526011602052604090205460ff161561195b5760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e74206d696e7473206c6566740000000000000000006044820152606401610a66565b600c5434146119ac5760405162461bcd60e51b815260206004820152601b60248201527f696e73756666696369656e742066756e64732070726f766964656400000000006044820152606401610a66565b336000818152601160205260409020805460ff191660011790556118139061241c565b606060018054610c12906136b9565b6001600160a01b038216600090815260186020526040902054829060ff16611a485760405162461bcd60e51b815260206004820152601560248201527f4e6f7420617070726f766564206f70657261746f7200000000000000000000006044820152606401610a66565b610e438383612ac9565b323314611aa15760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f742062652063616c6c6564206279206120636f6e747261637400006044820152606401610a66565b336000805b601454811015611b7857600060148281548110611ac557611ac561393c565b60009182526020822001546040517f70a082310000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b03909116925082906370a0823190602401602060405180830381865afa158015611b31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b55919061370c565b1115611b65576001925050611b78565b5080611b708161396b565b915050611aa6565b5080611bc65760405162461bcd60e51b815260206004820152600f60248201527f4e6f20667269656e6420666f756e6400000000000000000000000000000000006044820152606401610a66565b60016015546301000000900460ff166002811115611be657611be661361b565b14611c335760405162461bcd60e51b815260206004820152601360248201527f50726976617465206973206e6f74206f70656e000000000000000000000000006044820152606401610a66565b3360009081526012602052604090205460ff1615611c935760405162461bcd60e51b815260206004820152601760248201527f496e73756666696369656e74206d696e7473206c6566740000000000000000006044820152606401610a66565b600c543414611ce45760405162461bcd60e51b815260206004820152601b60248201527f696e73756666696369656e742066756e64732070726f766964656400000000006044820152606401610a66565b336000818152601260205260409020805460ff19166001179055610b9c9061241c565b6008546001600160a01b03163314611d615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b601580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000169315157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169390931761010092151592909202919091177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff166201000091151591909102179055565b611dfa3383612772565b611e6c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a66565b611e7884848484612ad4565b50505050565b6008546001600160a01b03163314611ed85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b6001600160a01b03811660009081526018602052604090205460ff1615611f665760405162461bcd60e51b8152602060048201526024808201527f436f6e747261637420697320616c726561647920696e2074686520776869746560448201527f6c697374000000000000000000000000000000000000000000000000000000006064820152608401610a66565b6001600160a01b03166000908152601860205260409020805460ff19166001179055565b6000818152600260205260409020546060906001600160a01b03166120175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a66565b600e61202283612b5d565b600f60405160200161203693929190613a16565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146120a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b601680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6008546001600160a01b0316331461213a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b601580546001600160a01b03909216640100000000027fffffffffffffffff0000000000000000000000000000000000000000ffffffff909216919091179055565b6008546001600160a01b031633146121d65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b6001600160a01b0381166122525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a66565b610b2481612a5f565b60008181526010602052604090205460ff16156122ba5760405162461bcd60e51b815260206004820152601360248201527f54686973205068757262612069732075736564000000000000000000000000006044820152606401610a66565b6015546040517f6352211e000000000000000000000000000000000000000000000000000000008152600481018390526401000000009091046001600160a01b03169033908290636352211e906024016020604051808303816000875af1158015612329573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061234d9190613a49565b6001600160a01b03161461238d576040517f7a35d64a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fa58eada8000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b0382169063a58eada890602401600060405180830381600087803b1580156123e857600080fd5b505af11580156123fc573d6000803e3d6000fd5b50505060009283525050601060205260409020805460ff19166001179055565b600954600a541061246f5760405162461bcd60e51b815260206004820152601260248201527f6d617820737570706c79207265616368656400000000000000000000000000006044820152606401610a66565b600a805490600061247f8361396b565b919050555061249681612491600a5490565b612c92565b600a546040517f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a90600090a250565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610b325750610b3282612dec565b6127106bffffffffffffffffffffffff821611156125a15760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610a66565b6001600160a01b0382166125f75760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610a66565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600655565b60006126518261160f565b9050806001600160a01b0316836001600160a01b0316036126da5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a66565b336001600160a01b03821614806126f657506126f681336109ad565b6127685760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a66565b610e438383612ecf565b6000818152600260205260408120546001600160a01b03166127fc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a66565b60006128078361160f565b9050806001600160a01b0316846001600160a01b031614806128425750836001600160a01b031661283784610d29565b6001600160a01b0316145b8061287257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661288d8261160f565b6001600160a01b0316146129095760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610a66565b6001600160a01b0382166129845760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a66565b61298f600082612ecf565b6001600160a01b03831660009081526003602052604081208054600192906129b8908490613a66565b90915550506001600160a01b03821660009081526003602052604081208054600192906129e6908490613a7d565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b9c338383612f55565b612adf84848461287a565b612aeb84848484613023565b611e785760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a66565b606081600003612ba057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612bca5780612bb48161396b565b9150612bc39050600a836137c0565b9150612ba4565b60008167ffffffffffffffff811115612be557612be56133e1565b6040519080825280601f01601f191660200182016040528015612c0f576020820181803683370190505b5090505b841561287257612c24600183613a66565b9150612c31600a86613a95565b612c3c906030613a7d565b60f81b818381518110612c5157612c5161393c565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612c8b600a866137c0565b9450612c13565b6001600160a01b038216612ce85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a66565b6000818152600260205260409020546001600160a01b031615612d4d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a66565b6001600160a01b0382166000908152600360205260408120805460019290612d76908490613a7d565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612e7f57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b3257507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610b32565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190612f1c8261160f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b816001600160a01b0316836001600160a01b031603612fb65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a66565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006001600160a01b0384163b156131d7576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290613080903390899088908890600401613aa9565b6020604051808303816000875af19250505080156130d9575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526130d691810190613ae5565b60015b61318c573d808015613107576040519150601f19603f3d011682016040523d82523d6000602084013e61310c565b606091505b5080516000036131845760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a66565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612872565b506001949350505050565b6000602082840312156131f457600080fd5b5035919050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610b2457600080fd5b60006020828403121561323b57600080fd5b8135613246816131fb565b9392505050565b6001600160a01b0381168114610b2457600080fd5b6000806040838503121561327557600080fd5b82356132808161324d565b915060208301356bffffffffffffffffffffffff811681146132a157600080fd5b809150509250929050565b6000602082840312156132be57600080fd5b81356132468161324d565b60005b838110156132e45781810151838201526020016132cc565b83811115611e785750506000910152565b6000815180845261330d8160208601602086016132c9565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061324660208301846132f5565b6000806040838503121561336557600080fd5b82356133708161324d565b946020939093013593505050565b60008060006060848603121561339357600080fd5b833561339e8161324d565b925060208401356133ae8161324d565b929592945050506040919091013590565b600080604083850312156133d257600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561342b5761342b6133e1565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613471576134716133e1565b8160405280935085815286868601111561348a57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156134b657600080fd5b813567ffffffffffffffff8111156134cd57600080fd5b8201601f810184136134de57600080fd5b61287284823560208401613410565b6000602082840312156134ff57600080fd5b81356003811061324657600080fd5b8035801515811461351e57600080fd5b919050565b6000806040838503121561353657600080fd5b82356135418161324d565b915061354f6020840161350e565b90509250929050565b60008060006060848603121561356d57600080fd5b6135768461350e565b92506135846020850161350e565b91506135926040850161350e565b90509250925092565b600080600080608085870312156135b157600080fd5b84356135bc8161324d565b935060208501356135cc8161324d565b925060408501359150606085013567ffffffffffffffff8111156135ef57600080fd5b8501601f8101871361360057600080fd5b61360f87823560208401613410565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6020810160038310613685577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b6000806040838503121561369e57600080fd5b82356136a98161324d565b915060208301356132a18161324d565b600181811c908216806136cd57607f821691505b602082108103613706577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60006020828403121561371e57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561378c5761378c613725565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826137cf576137cf613791565b500490565b601f821115610e4357600081815260208120601f850160051c810160208610156137fb5750805b601f850160051c820191505b8181101561381a57828155600101613807565b505050505050565b815167ffffffffffffffff81111561383c5761383c6133e1565b6138508161384a84546136b9565b846137d4565b602080601f8311600181146138a3576000841561386d5750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b17855561381a565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b828110156138f0578886015182559484019460019091019084016138d1565b508582101561392c57878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361399c5761399c613725565b5060010190565b600081546139b0816136b9565b600182811680156139c857600181146139dd57613a0c565b60ff1984168752821515830287019450613a0c565b8560005260208060002060005b85811015613a035781548a8201529084019082016139ea565b50505082870194505b5050505092915050565b6000613a2282866139a3565b8451613a328183602089016132c9565b613a3e818301866139a3565b979650505050505050565b600060208284031215613a5b57600080fd5b81516132468161324d565b600082821015613a7857613a78613725565b500390565b60008219821115613a9057613a90613725565b500190565b600082613aa457613aa4613791565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613adb60808301846132f5565b9695505050505050565b600060208284031215613af757600080fd5b8151613246816131fb56fea264697066735822122064202929d2f382e8f5f2eea2ff05507c0953d09fa45438efb4a7e9290e2f2c8864736f6c634300080f0033

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

000000000000000000000000ef3bd95241015b733bd8fbb9572c4c5e7377692d00000000000000000000000000000000000000000000000000000000000002b2

-----Decoded View---------------
Arg [0] : _RoyaltyReceiver (address): 0xEf3bd95241015B733BD8fbb9572C4C5E7377692d
Arg [1] : _royaltyAmount (uint96): 690

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000ef3bd95241015b733bd8fbb9572c4c5e7377692d
Arg [1] : 00000000000000000000000000000000000000000000000000000000000002b2


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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