ETH Price: $3,911.72 (+0.09%)

Token

the sph3res (SPH3RES)
 

Overview

Max Total Supply

361 SPH3RES

Holders

339

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SPH3RES
0x04bd51ac71a7220ae589079d5436cad92b760ad3
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Sph3res

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : Sph3res.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

///////////////////////
//                   //
//                   //
//    the sph3res    //
//                   //
//                   //
///////////////////////
/// @creator: sph3res.eth
/// @author: mitch0z
/// gm fren
/// gm pak

import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";


contract Sph3res is ERC721, Ownable, ReentrancyGuard{

    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;

    address constant sph3res_ = 0x928De321C5231c2b9a6C4282F443b0270F6f5848; 
    address constant ashToken = 0x64D91f12Ece7362F91A6f8E7940Cd55F05060b92; 

    uint256 constant private spheresPerClaim = 2; 
    uint256 constant private maxOriginClaimers = 21; 
    uint256 constant private maxSupplyOrigins = 42; 
    uint256 constant private maxSupply = 1024; 
    uint256 public price = 50000000000000000; 
    uint256 public ashPrice = 5000000000000000000;   
    bool public sharingAllowed = false;  
    string private baseURI;    

    uint256 private royaltyBps;
    address payable private royaltyRecipient;
    
    mapping (address => uint256) private sphereCount; 
    mapping (uint256 => string) private tokenURIs;

    mapping (uint256 => bool) private isSphereFrozen;
    mapping (uint256 => bool) private isOrigin; 
    mapping (address => bool) private receivedSphere;

    mapping (uint256 => string) private sphereName; 
    mapping (string => uint256) private spheresPerName;

    mapping (address => uint256) private originClaimers; 
    mapping (address => uint256) private claimedOrigins; 

    mapping(address => mapping (address => uint256)) allowed;

    mapping (address => bool) private admins;

    event sphereFrozen(uint256 _tokenid);
    event originClaimersSet(address[]);
    event originsMinted(address _owner, string _name);
    event sphereSpawned(address _owner, string _name);
    
    event royaltiesUpdated(address payable _recipient,uint256 bps);

    constructor() ERC721("the sph3res","SPH3RES"){
        addAdmin(msg.sender);
        
        royaltyRecipient = payable(sph3res_);
        royaltyBps = 500;
    }
    
    modifier isAdmin
    {
        require(admins[msg.sender] == true, "Sender is not admin");
        _;
    }

    modifier onlyUnclaimedHolder {
        require(originClaimers[msg.sender] >= spheresPerClaim, "Must have at least one possible claim!"); 
        require(claimedOrigins[msg.sender] <= originClaimers[msg.sender], "You cannot claim more than allowed!");
        _;
    }

    modifier supplyNotReached {
         require(totalSupply() < maxSupply, "Maximum supply has been reached!");
        _;
    }

    function setOriginClaimers(address[] memory _originclaimers) public isAdmin onlyOwner
    {        
        for(uint i = 0;i<_originclaimers.length;i++)
        {
            if(originClaimers[_originclaimers[i]]>=spheresPerClaim)
            {
                originClaimers[_originclaimers[i]] += spheresPerClaim;
            }
            else
            {
                originClaimers[_originclaimers[i]] = spheresPerClaim;
            }
        }

        emit originClaimersSet( _originclaimers);
    }

    function mintOrigins(string calldata _name) external onlyUnclaimedHolder supplyNotReached{

        for(uint i = 0;i<originClaimers[msg.sender];i++)
        {  
            spawnNewSphere(msg.sender,true, _name);
        }

        originClaimers[msg.sender] = 0;

        emit originsMinted(msg.sender,_name);
    }
    
    function spawnNewSphere(address _to, bool _isOrigin, string memory _name) private supplyNotReached {

        uint256 newtokenId =  _tokenIdCounter.current() + 1;

        require(!_exists(newtokenId),"This tokenid already exists!");

        isSphereFrozen[newtokenId] = false;
        isOrigin[newtokenId]= _isOrigin;

        sphereName[newtokenId] = _name;
        spheresPerName[_name]++;

        sphereCount[_to]++; 

        _tokenIdCounter.increment();

        receivedSphere[_to] = true;
        
        _safeMint(_to, newtokenId);

        emit sphereSpawned(_to, _name);
    }

    /* THX FOR SHARING */

    function shareSphere(address _to, uint _tokenid) public payable supplyNotReached{
        require(ownerOf(_tokenid) == msg.sender, "This sph3re does not belong to you.");
        require(price <= msg.value, "Price too low!");        
        require(!receivedSphere[_to],"This account already received a shared or origin sph3re.");
        require(!isSphereFrozen[_tokenid], "This sph3re is frozen and can't be shared anymore!");
        require(msg.sender != _to, "You cannot share a sph3re with yourself!");
        require(sharingAllowed, "Sharing is not allowed yet!");

        (bool sent, /* bytes memory data */) = payable(sph3res_).call{value: msg.value}("");
        require(sent, "Failed to transfer ETH!");

        string memory oldname = getName(_tokenid);
        spawnNewSphere(_to, false, oldname);
        freezeSphere(_tokenid);
    }

    function shareSphereWithAsh(address _to, uint _tokenid) public supplyNotReached{
        require(ownerOf(_tokenid) == msg.sender, "This sph3re does not belong to you.");             
        require(!receivedSphere[_to],"This account already received a shared or origin sph3re.");
        require(!isSphereFrozen[_tokenid], "This sph3re is frozen and can't be shared anymore!");
        require(msg.sender != _to, "You cannot share a sph3re with yourself!");
        require(sharingAllowed, "Sharing is not allowed yet!");

        IERC20 ash = IERC20(ashToken); 
        uint256 userBalance = ash.balanceOf(msg.sender);
        require(userBalance >= ashPrice, "Not enough ASH in wallet!");
               
        require(ash.transferFrom(msg.sender,sph3res_,ashPrice),"Unable to transfer enough ASH! Check token allowance.");
        
        string memory oldname = getName(_tokenid);
        spawnNewSphere(_to, false, oldname);
        freezeSphere(_tokenid);
    }

    /* ------x3------ */

    function freezeSphere(uint _tokenid) private{
        isSphereFrozen[_tokenid] = true;
        emit sphereFrozen(_tokenid);
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_tokenId <= _tokenIdCounter.current(), "ERC721Metadata: URI query for nonexistent token");
        require(_tokenId > 0, "ERC721Metadata: URI query for nonexistent token");
        
        string memory base = _baseURI();

        if (bytes(base).length == 0) {
            return "";
        }
        else{
            return string(abi.encodePacked(base, Strings.toString(_tokenId)));
        }
    }

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

    function getBaseURI() public view returns (string memory) {
        return baseURI;
    }

    function setBaseURI(string memory _uri) public isAdmin {
        baseURI = _uri;
    }

    function updatePrice(uint256 _price) public isAdmin {
        price = _price;
    }

    function updateAshPrice(uint256 _price) public isAdmin {
        ashPrice = _price;
    }

    function updateRoyalties(address payable _recipient, uint256 _bps) external isAdmin {
        royaltyRecipient = _recipient;
        royaltyBps = _bps;

        emit royaltiesUpdated(_recipient, _bps);
    }

    function royaltyInfo(uint256, uint256 value) external view returns (address, uint256) {
        return (royaltyRecipient, value*royaltyBps/10000);
    }
   
    function totalSupply() public view returns (uint256) {
        return _tokenIdCounter.current();
    }

    function getCurrentTokenId() public view returns(uint)
    {
        return _tokenIdCounter.current();
    }
    
    function getIsSphereFrozen(uint _tokenid) public view returns(bool){
        return isSphereFrozen[_tokenid];
    }

    function getIsOrigin(uint _tokenid) public view returns(bool)
    {
        return isOrigin[_tokenid];
    }

    function getName(uint _tokenid) public view returns(string memory)
    {
        return sphereName[_tokenid];
    }

    function setName(uint _tokenid, string memory _name) public isAdmin
    {
       sphereName[_tokenid] = _name;
    }

    function getSpheresPerName(string memory _name) public view returns(uint256)
    {
        return spheresPerName[_name];
    }

    function getOriginClaims(address _address) public view returns(uint256)
    {
        return originClaimers[_address];
    }

    function addAdmin(address _admin) public onlyOwner
    {
        admins[_admin] = true;
    }

    function removeAdmin(address _admin) public isAdmin
    {
        admins[_admin] = false;
    }
    
    function allowSharing(bool _sharingAllowed) public isAdmin
    {
       sharingAllowed = _sharingAllowed;
    }


}

File 2 of 16 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 3 of 16 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 4 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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);
    }

    /**
     * @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);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 5 of 16 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 6 of 16 : 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 7 of 16 : 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 16 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 9 of 16 : 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 10 of 16 : 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 11 of 16 : 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 12 of 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 16 : 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 14 of 16 : 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 15 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 16 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"","type":"address[]"}],"name":"originClaimersSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_owner","type":"address"},{"indexed":false,"internalType":"string","name":"_name","type":"string"}],"name":"originsMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address payable","name":"_recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"bps","type":"uint256"}],"name":"royaltiesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenid","type":"uint256"}],"name":"sphereFrozen","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_owner","type":"address"},{"indexed":false,"internalType":"string","name":"_name","type":"string"}],"name":"sphereSpawned","type":"event"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_sharingAllowed","type":"bool"}],"name":"allowSharing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ashPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenid","type":"uint256"}],"name":"getIsOrigin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenid","type":"uint256"}],"name":"getIsSphereFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenid","type":"uint256"}],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getOriginClaims","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"getSpheresPerName","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"string","name":"_name","type":"string"}],"name":"mintOrigins","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_admin","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenid","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_originclaimers","type":"address[]"}],"name":"setOriginClaimers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenid","type":"uint256"}],"name":"shareSphere","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenid","type":"uint256"}],"name":"shareSphereWithAsh","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sharingAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"updateAshPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_bps","type":"uint256"}],"name":"updateRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266b1a2bc2ec50000600955674563918244f40000600a556000600b60006101000a81548160ff0219169083151502179055503480156200004357600080fd5b506040518060400160405280600b81526020017f74686520737068337265730000000000000000000000000000000000000000008152506040518060400160405280600781526020017f53504833524553000000000000000000000000000000000000000000000000008152508160009080519060200190620000c892919062000363565b508060019080519060200190620000e192919062000363565b50505062000104620000f86200018160201b60201c565b6200018960201b60201c565b60016007819055506200011d336200024f60201b60201c565b73928de321c5231c2b9a6c4282f443b0270f6f5848600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101f4600d81905550620004ed565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200025f6200018160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002856200033960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d59062000455565b60405180910390fd5b6001601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003719062000488565b90600052602060002090601f016020900481019282620003955760008555620003e1565b82601f10620003b057805160ff1916838001178555620003e1565b82800160010185558215620003e1579182015b82811115620003e0578251825591602001919060010190620003c3565b5b509050620003f09190620003f4565b5090565b5b808211156200040f576000816000905550600101620003f5565b5090565b60006200042260208362000477565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190508181036000830152620004708162000413565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004a157607f821691505b60208210811415620004b857620004b7620004be565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61581680620004fd6000396000f3fe60806040526004361061023b5760003560e01c8063714c53981161012e578063a6a17978116100ab578063e985e9c51161006f578063e985e9c5146108a9578063f16da125146108e6578063f2fde38b1461090f578063fa7cc36514610938578063fe55932a146109635761023b565b8063a6a17978146107c1578063ad9a0e50146107ea578063b88d4fde14610827578063c84cbaf314610850578063c87b56dd1461086c5761023b565b80638da5cb5b116100f25780638da5cb5b146106ee57806395d89b41146107195780639cfc049914610744578063a035b1fe1461076d578063a22cb465146107985761023b565b8063714c53981461062f578063715018a61461065a5780638af5abba146106715780638cf776041461069a5780638d6cc56d146106c55761023b565b80632a55205a116101bc5780636352211e116101805780636352211e146105265780636b8ff574146105635780636c2f5acd146105a057806370480275146105c957806370a08231146105f25761023b565b80632a55205a1461042e5780632c3c926b1461046c57806342842e0e146104a957806355f804b3146104d257806356189236146104fb5761023b565b8063095ea7b311610203578063095ea7b31461035f578063146bb92e146103885780631785f53c146103b157806318160ddd146103da57806323b872dd146104055761023b565b806301ffc9a714610240578063034674971461027d57806304516303146102ba57806306fdde03146102f7578063081812fc14610322575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613f40565b61098c565b6040516102749190614ebb565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190614018565b610a6e565b6040516102b19190614ebb565b60405180910390f35b3480156102c657600080fd5b506102e160048036038101906102dc9190614018565b610a98565b6040516102ee9190614ebb565b60405180910390f35b34801561030357600080fd5b5061030c610ac2565b6040516103199190614ed6565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190614018565b610b54565b6040516103569190614d47565b60405180910390f35b34801561036b57600080fd5b5061038660048036038101906103819190613e71565b610bd9565b005b34801561039457600080fd5b506103af60048036038101906103aa9190613eee565b610cf1565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190613cca565b610da1565b005b3480156103e657600080fd5b506103ef610e8f565b6040516103fc91906152b8565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190613d6b565b610ea0565b005b34801561043a57600080fd5b50610455600480360381019061045091906140be565b610f00565b604051610463929190614e70565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613cca565b610f4c565b6040516104a091906152b8565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190613d6b565b610f95565b005b3480156104de57600080fd5b506104f960048036038101906104f49190613fd7565b610fb5565b005b34801561050757600080fd5b50610510611062565b60405161051d91906152b8565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190614018565b611073565b60405161055a9190614d47565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190614018565b611125565b6040516105979190614ed6565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190613cf3565b6111ca565b005b3480156105d557600080fd5b506105f060048036038101906105eb9190613cca565b6112e2565b005b3480156105fe57600080fd5b5061061960048036038101906106149190613cca565b6113b9565b60405161062691906152b8565b60405180910390f35b34801561063b57600080fd5b50610644611471565b6040516106519190614ed6565b60405180910390f35b34801561066657600080fd5b5061066f611503565b005b34801561067d57600080fd5b5061069860048036038101906106939190613e71565b61158b565b005b3480156106a657600080fd5b506106af6119f0565b6040516106bc91906152b8565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190614018565b6119f6565b005b3480156106fa57600080fd5b50610703611a93565b6040516107109190614d47565b60405180910390f35b34801561072557600080fd5b5061072e611abd565b60405161073b9190614ed6565b60405180910390f35b34801561075057600080fd5b5061076b60048036038101906107669190614018565b611b4f565b005b34801561077957600080fd5b50610782611bec565b60405161078f91906152b8565b60405180910390f35b3480156107a457600080fd5b506107bf60048036038101906107ba9190613e35565b611bf2565b005b3480156107cd57600080fd5b506107e860048036038101906107e39190613ead565b611c08565b005b3480156107f657600080fd5b50610811600480360381019061080c9190613fd7565b611f1a565b60405161081e91906152b8565b60405180910390f35b34801561083357600080fd5b5061084e60048036038101906108499190613dba565b611f42565b005b61086a60048036038101906108659190613e71565b611fa4565b005b34801561087857600080fd5b50610893600480360381019061088e9190614018565b61233e565b6040516108a09190614ed6565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb9190613d2f565b612430565b6040516108dd9190614ebb565b60405180910390f35b3480156108f257600080fd5b5061090d60048036038101906109089190613f92565b6124c4565b005b34801561091b57600080fd5b5061093660048036038101906109319190613cca565b612785565b005b34801561094457600080fd5b5061094d61287d565b60405161095a9190614ebb565b60405180910390f35b34801561096f57600080fd5b5061098a6004803603810190610985919061406a565b612890565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a675750610a668261294f565b5b9050919050565b60006012600083815260200190815260200160002060009054906101000a900460ff169050919050565b60006011600083815260200190815260200160002060009054906101000a900460ff169050919050565b606060008054610ad1906155f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610afd906155f4565b8015610b4a5780601f10610b1f57610100808354040283529160200191610b4a565b820191906000526020600020905b815481529060010190602001808311610b2d57829003601f168201915b5050505050905090565b6000610b5f826129b9565b610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590615158565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be482611073565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90615258565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c74612a25565b73ffffffffffffffffffffffffffffffffffffffff161480610ca35750610ca281610c9d612a25565b612430565b5b610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd990615098565b60405180910390fd5b610cec8383612a2d565b505050565b60011515601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b90615198565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60011515601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90615198565b60405180910390fd5b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610e9b6008612ae6565b905090565b610eb1610eab612a25565b82612af4565b610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee790615278565b60405180910390fd5b610efb838383612bd2565b505050565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600d5485610f37919061549e565b610f41919061546d565b915091509250929050565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fb083838360405180602001604052806000815250611f42565b505050565b60011515601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90615198565b60405180910390fd5b80600c908051906020019061105e9291906139cf565b5050565b600061106e6008612ae6565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561111c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611113906150d8565b60405180910390fd5b80915050919050565b6060601460008381526020019081526020016000208054611145906155f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611171906155f4565b80156111be5780601f10611193576101008083540402835291602001916111be565b820191906000526020600020905b8154815290600101906020018083116111a157829003601f168201915b50505050509050919050565b60011515601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490615198565b60405180910390fd5b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d819055507f41008812a3a07584cddf95ab462d19d69b31c3d4545e1a53323a6a6c31eadfbc82826040516112d6929190614d62565b60405180910390a15050565b6112ea612a25565b73ffffffffffffffffffffffffffffffffffffffff16611308611a93565b73ffffffffffffffffffffffffffffffffffffffff161461135e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135590615178565b60405180910390fd5b6001601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611421906150b8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600c8054611480906155f4565b80601f01602080910402602001604051908101604052809291908181526020018280546114ac906155f4565b80156114f95780601f106114ce576101008083540402835291602001916114f9565b820191906000526020600020905b8154815290600101906020018083116114dc57829003601f168201915b5050505050905090565b61150b612a25565b73ffffffffffffffffffffffffffffffffffffffff16611529611a93565b73ffffffffffffffffffffffffffffffffffffffff161461157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690615178565b60405180910390fd5b6115896000612e2e565b565b610400611596610e8f565b106115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd90615038565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166115f682611073565b73ffffffffffffffffffffffffffffffffffffffff161461164c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611643906150f8565b60405180910390fd5b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d090614ff8565b60405180910390fd5b6011600082815260200190815260200160002060009054906101000a900460ff161561173a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173190615078565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a090615058565b60405180910390fd5b600b60009054906101000a900460ff166117f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ef90614fd8565b60405180910390fd5b60007364d91f12ece7362f91a6f8e7940cd55f05060b92905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161184c9190614d47565b60206040518083038186803b15801561186457600080fd5b505afa158015611878573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189c9190614041565b9050600a548110156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90615238565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166323b872dd3373928de321c5231c2b9a6c4282f443b0270f6f5848600a546040518463ffffffff1660e01b815260040161193693929190614d8b565b602060405180830381600087803b15801561195057600080fd5b505af1158015611964573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119889190613f17565b6119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90615118565b60405180910390fd5b60006119d284611125565b90506119e085600083612ef4565b6119e984613155565b5050505050565b600a5481565b60011515601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090615198565b60405180910390fd5b8060098190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611acc906155f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611af8906155f4565b8015611b455780601f10611b1a57610100808354040283529160200191611b45565b820191906000526020600020905b815481529060010190602001808311611b2857829003601f168201915b5050505050905090565b60011515601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd990615198565b60405180910390fd5b80600a8190555050565b60095481565b611c04611bfd612a25565b83836131bb565b5050565b60011515601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9290615198565b60405180910390fd5b611ca3612a25565b73ffffffffffffffffffffffffffffffffffffffff16611cc1611a93565b73ffffffffffffffffffffffffffffffffffffffff1614611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0e90615178565b60405180910390fd5b60005b8151811015611edf57600260166000848481518110611d62577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611e4657600260166000848481518110611de9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e3a9190615417565b92505081905550611ecc565b600260166000848481518110611e85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8080611ed790615626565b915050611d1a565b507f5c931db48d8c3b77cc273b68d2138916bfb4b8001c803d414ca9fecfd10e121981604051611f0f9190614e99565b60405180910390a150565b6000601582604051611f2c9190614cf7565b9081526020016040518091039020549050919050565b611f53611f4d612a25565b83612af4565b611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990615278565b60405180910390fd5b611f9e84848484613328565b50505050565b610400611faf610e8f565b10611fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe690615038565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661200f82611073565b73ffffffffffffffffffffffffffffffffffffffff1614612065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205c906150f8565b60405180910390fd5b3460095411156120aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a190614f58565b60405180910390fd5b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212e90614ff8565b60405180910390fd5b6011600082815260200190815260200160002060009054906101000a900460ff1615612198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218f90615078565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415612207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fe90615058565b60405180910390fd5b600b60009054906101000a900460ff16612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d90614fd8565b60405180910390fd5b600073928de321c5231c2b9a6c4282f443b0270f6f584873ffffffffffffffffffffffffffffffffffffffff163460405161229090614d32565b60006040518083038185875af1925050503d80600081146122cd576040519150601f19603f3d011682016040523d82523d6000602084013e6122d2565b606091505b5050905080612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230d90614ef8565b60405180910390fd5b600061232183611125565b905061232f84600083612ef4565b61233883613155565b50505050565b606061234a6008612ae6565b82111561238c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612383906151f8565b60405180910390fd5b600082116123cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c6906151f8565b60405180910390fd5b60006123d9613384565b90506000815114156123fd576040518060200160405280600081525091505061242b565b8061240784613416565b604051602001612418929190614d0e565b6040516020818303038152906040529150505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6002601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015612547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253e906151d8565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff90615218565b60405180910390fd5b610400612613610e8f565b10612653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264a90615038565b60405180910390fd5b60005b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811015612700576126ed33600185858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612ef4565b80806126f890615626565b915050612656565b506000601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507fe3b77dbfa4c5fb8ab9c572d8c62807aea11fc66a87f3e546f75da517a3e8159f33838360405161277993929190614e0e565b60405180910390a15050565b61278d612a25565b73ffffffffffffffffffffffffffffffffffffffff166127ab611a93565b73ffffffffffffffffffffffffffffffffffffffff1614612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f890615178565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286890614f38565b60405180910390fd5b61287a81612e2e565b50565b600b60009054906101000a900460ff1681565b60011515601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514612923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291a90615198565b60405180910390fd5b8060146000848152602001908152602001600020908051906020019061294a9291906139cf565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612aa083611073565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000612aff826129b9565b612b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3590615018565b60405180910390fd5b6000612b4983611073565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612bb857508373ffffffffffffffffffffffffffffffffffffffff16612ba084610b54565b73ffffffffffffffffffffffffffffffffffffffff16145b80612bc95750612bc88185612430565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612bf282611073565b73ffffffffffffffffffffffffffffffffffffffff1614612c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3f906151b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caf90614f98565b60405180910390fd5b612cc38383836135c3565b612cce600082612a2d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d1e91906154f8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d759190615417565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610400612eff610e8f565b10612f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3690615038565b60405180910390fd5b60006001612f4d6008612ae6565b612f579190615417565b9050612f62816129b9565b15612fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9990615298565b60405180910390fd5b60006011600083815260200190815260200160002060006101000a81548160ff021916908315150217905550826012600083815260200190815260200160002060006101000a81548160ff021916908315150217905550816014600083815260200190815260200160002090805190602001906130209291906139cf565b506015826040516130319190614cf7565b9081526020016040518091039020600081548092919061305090615626565b9190505550600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906130a590615626565b91905055506130b460086135c8565b6001601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061311684826135de565b7fc7f6bbce88a44b161a2874ede68d5373268f0b46ccab8709649cdf49181297da8483604051613147929190614e40565b60405180910390a150505050565b60016011600083815260200190815260200160002060006101000a81548160ff0219169083151502179055507f62a64299e0e48e1b3fc1682117ecfa325d3b61283354e67b8d38eb4b03b721ea816040516131b091906152b8565b60405180910390a150565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561322a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322190614fb8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161331b9190614ebb565b60405180910390a3505050565b613333848484612bd2565b61333f848484846135fc565b61337e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337590614f18565b60405180910390fd5b50505050565b6060600c8054613393906155f4565b80601f01602080910402602001604051908101604052809291908181526020018280546133bf906155f4565b801561340c5780601f106133e15761010080835404028352916020019161340c565b820191906000526020600020905b8154815290600101906020018083116133ef57829003601f168201915b5050505050905090565b6060600082141561345e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135be565b600082905060005b6000821461349057808061347990615626565b915050600a82613489919061546d565b9150613466565b60008167ffffffffffffffff8111156134d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135045781602001600182028036833780820191505090505b5090505b600085146135b75760018261351d91906154f8565b9150600a8561352c919061566f565b60306135389190615417565b60f81b818381518110613574577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135b0919061546d565b9450613508565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b6135f8828260405180602001604052806000815250613793565b5050565b600061361d8473ffffffffffffffffffffffffffffffffffffffff166137ee565b15613786578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613646612a25565b8786866040518563ffffffff1660e01b81526004016136689493929190614dc2565b602060405180830381600087803b15801561368257600080fd5b505af19250505080156136b357506040513d601f19601f820116820180604052508101906136b09190613f69565b60015b613736573d80600081146136e3576040519150601f19603f3d011682016040523d82523d6000602084013e6136e8565b606091505b5060008151141561372e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372590614f18565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061378b565b600190505b949350505050565b61379d8383613801565b6137aa60008484846135fc565b6137e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137e090614f18565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386890615138565b60405180910390fd5b61387a816129b9565b156138ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138b190614f78565b60405180910390fd5b6138c6600083836135c3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139169190615417565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546139db906155f4565b90600052602060002090601f0160209004810192826139fd5760008555613a44565b82601f10613a1657805160ff1916838001178555613a44565b82800160010185558215613a44579182015b82811115613a43578251825591602001919060010190613a28565b5b509050613a519190613a55565b5090565b5b80821115613a6e576000816000905550600101613a56565b5090565b6000613a85613a8084615304565b6152d3565b90508083825260208201905082856020860282011115613aa457600080fd5b60005b85811015613ad45781613aba8882613b5a565b845260208401935060208301925050600181019050613aa7565b5050509392505050565b6000613af1613aec84615330565b6152d3565b905082815260208101848484011115613b0957600080fd5b613b148482856155b2565b509392505050565b6000613b2f613b2a84615360565b6152d3565b905082815260208101848484011115613b4757600080fd5b613b528482856155b2565b509392505050565b600081359050613b698161576d565b92915050565b600081359050613b7e81615784565b92915050565b600082601f830112613b9557600080fd5b8135613ba5848260208601613a72565b91505092915050565b600081359050613bbd8161579b565b92915050565b600081519050613bd28161579b565b92915050565b600081359050613be7816157b2565b92915050565b600081519050613bfc816157b2565b92915050565b600082601f830112613c1357600080fd5b8135613c23848260208601613ade565b91505092915050565b60008083601f840112613c3e57600080fd5b8235905067ffffffffffffffff811115613c5757600080fd5b602083019150836001820283011115613c6f57600080fd5b9250929050565b600082601f830112613c8757600080fd5b8135613c97848260208601613b1c565b91505092915050565b600081359050613caf816157c9565b92915050565b600081519050613cc4816157c9565b92915050565b600060208284031215613cdc57600080fd5b6000613cea84828501613b5a565b91505092915050565b60008060408385031215613d0657600080fd5b6000613d1485828601613b6f565b9250506020613d2585828601613ca0565b9150509250929050565b60008060408385031215613d4257600080fd5b6000613d5085828601613b5a565b9250506020613d6185828601613b5a565b9150509250929050565b600080600060608486031215613d8057600080fd5b6000613d8e86828701613b5a565b9350506020613d9f86828701613b5a565b9250506040613db086828701613ca0565b9150509250925092565b60008060008060808587031215613dd057600080fd5b6000613dde87828801613b5a565b9450506020613def87828801613b5a565b9350506040613e0087828801613ca0565b925050606085013567ffffffffffffffff811115613e1d57600080fd5b613e2987828801613c02565b91505092959194509250565b60008060408385031215613e4857600080fd5b6000613e5685828601613b5a565b9250506020613e6785828601613bae565b9150509250929050565b60008060408385031215613e8457600080fd5b6000613e9285828601613b5a565b9250506020613ea385828601613ca0565b9150509250929050565b600060208284031215613ebf57600080fd5b600082013567ffffffffffffffff811115613ed957600080fd5b613ee584828501613b84565b91505092915050565b600060208284031215613f0057600080fd5b6000613f0e84828501613bae565b91505092915050565b600060208284031215613f2957600080fd5b6000613f3784828501613bc3565b91505092915050565b600060208284031215613f5257600080fd5b6000613f6084828501613bd8565b91505092915050565b600060208284031215613f7b57600080fd5b6000613f8984828501613bed565b91505092915050565b60008060208385031215613fa557600080fd5b600083013567ffffffffffffffff811115613fbf57600080fd5b613fcb85828601613c2c565b92509250509250929050565b600060208284031215613fe957600080fd5b600082013567ffffffffffffffff81111561400357600080fd5b61400f84828501613c76565b91505092915050565b60006020828403121561402a57600080fd5b600061403884828501613ca0565b91505092915050565b60006020828403121561405357600080fd5b600061406184828501613cb5565b91505092915050565b6000806040838503121561407d57600080fd5b600061408b85828601613ca0565b925050602083013567ffffffffffffffff8111156140a857600080fd5b6140b485828601613c76565b9150509250929050565b600080604083850312156140d157600080fd5b60006140df85828601613ca0565b92505060206140f085828601613ca0565b9150509250929050565b60006141068383614121565b60208301905092915050565b61411b8161553e565b82525050565b61412a8161552c565b82525050565b6141398161552c565b82525050565b600061414a826153a0565b61415481856153ce565b935061415f83615390565b8060005b8381101561419057815161417788826140fa565b9750614182836153c1565b925050600181019050614163565b5085935050505092915050565b6141a681615550565b82525050565b60006141b7826153ab565b6141c181856153df565b93506141d18185602086016155c1565b6141da8161575c565b840191505092915050565b60006141f183856153fb565b93506141fe8385846155b2565b6142078361575c565b840190509392505050565b600061421d826153b6565b61422781856153fb565b93506142378185602086016155c1565b6142408161575c565b840191505092915050565b6000614256826153b6565b614260818561540c565b93506142708185602086016155c1565b80840191505092915050565b60006142896017836153fb565b91507f4661696c656420746f207472616e7366657220455448210000000000000000006000830152602082019050919050565b60006142c96032836153fb565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061432f6026836153fb565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614395600e836153fb565b91507f507269636520746f6f206c6f77210000000000000000000000000000000000006000830152602082019050919050565b60006143d5601c836153fb565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006144156024836153fb565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061447b6019836153fb565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006144bb601b836153fb565b91507f53686172696e67206973206e6f7420616c6c6f776564207965742100000000006000830152602082019050919050565b60006144fb6038836153fb565b91507f54686973206163636f756e7420616c726561647920726563656976656420612060008301527f736861726564206f72206f726967696e207370683372652e00000000000000006020830152604082019050919050565b6000614561602c836153fb565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006145c76020836153fb565b91507f4d6178696d756d20737570706c7920686173206265656e2072656163686564216000830152602082019050919050565b60006146076028836153fb565b91507f596f752063616e6e6f742073686172652061207370683372652077697468207960008301527f6f757273656c66210000000000000000000000000000000000000000000000006020830152604082019050919050565b600061466d6032836153fb565b91507f54686973207370683372652069732066726f7a656e20616e642063616e27742060008301527f62652073686172656420616e796d6f72652100000000000000000000000000006020830152604082019050919050565b60006146d36038836153fb565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614739602a836153fb565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061479f6029836153fb565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006148056023836153fb565b91507f546869732073706833726520646f6573206e6f742062656c6f6e6720746f207960008301527f6f752e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061486b6035836153fb565b91507f556e61626c6520746f207472616e7366657220656e6f7567682041534821204360008301527f6865636b20746f6b656e20616c6c6f77616e63652e00000000000000000000006020830152604082019050919050565b60006148d16020836153fb565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614911602c836153fb565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006149776020836153fb565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006149b76013836153fb565b91507f53656e646572206973206e6f742061646d696e000000000000000000000000006000830152602082019050919050565b60006149f76029836153fb565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a5d6026836153fb565b91507f4d7573742068617665206174206c65617374206f6e6520706f737369626c652060008301527f636c61696d2100000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ac3602f836153fb565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614b296023836153fb565b91507f596f752063616e6e6f7420636c61696d206d6f7265207468616e20616c6c6f7760008301527f65642100000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b8f6019836153fb565b91507f4e6f7420656e6f7567682041534820696e2077616c6c657421000000000000006000830152602082019050919050565b6000614bcf6021836153fb565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c356000836153f0565b9150600082019050919050565b6000614c4f6031836153fb565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614cb5601c836153fb565b91507f5468697320746f6b656e696420616c72656164792065786973747321000000006000830152602082019050919050565b614cf1816155a8565b82525050565b6000614d03828461424b565b915081905092915050565b6000614d1a828561424b565b9150614d26828461424b565b91508190509392505050565b6000614d3d82614c28565b9150819050919050565b6000602082019050614d5c6000830184614130565b92915050565b6000604082019050614d776000830185614112565b614d846020830184614ce8565b9392505050565b6000606082019050614da06000830186614130565b614dad6020830185614130565b614dba6040830184614ce8565b949350505050565b6000608082019050614dd76000830187614130565b614de46020830186614130565b614df16040830185614ce8565b8181036060830152614e0381846141ac565b905095945050505050565b6000604082019050614e236000830186614130565b8181036020830152614e368184866141e5565b9050949350505050565b6000604082019050614e556000830185614130565b8181036020830152614e678184614212565b90509392505050565b6000604082019050614e856000830185614130565b614e926020830184614ce8565b9392505050565b60006020820190508181036000830152614eb3818461413f565b905092915050565b6000602082019050614ed0600083018461419d565b92915050565b60006020820190508181036000830152614ef08184614212565b905092915050565b60006020820190508181036000830152614f118161427c565b9050919050565b60006020820190508181036000830152614f31816142bc565b9050919050565b60006020820190508181036000830152614f5181614322565b9050919050565b60006020820190508181036000830152614f7181614388565b9050919050565b60006020820190508181036000830152614f91816143c8565b9050919050565b60006020820190508181036000830152614fb181614408565b9050919050565b60006020820190508181036000830152614fd18161446e565b9050919050565b60006020820190508181036000830152614ff1816144ae565b9050919050565b60006020820190508181036000830152615011816144ee565b9050919050565b6000602082019050818103600083015261503181614554565b9050919050565b60006020820190508181036000830152615051816145ba565b9050919050565b60006020820190508181036000830152615071816145fa565b9050919050565b6000602082019050818103600083015261509181614660565b9050919050565b600060208201905081810360008301526150b1816146c6565b9050919050565b600060208201905081810360008301526150d18161472c565b9050919050565b600060208201905081810360008301526150f181614792565b9050919050565b60006020820190508181036000830152615111816147f8565b9050919050565b600060208201905081810360008301526151318161485e565b9050919050565b60006020820190508181036000830152615151816148c4565b9050919050565b6000602082019050818103600083015261517181614904565b9050919050565b600060208201905081810360008301526151918161496a565b9050919050565b600060208201905081810360008301526151b1816149aa565b9050919050565b600060208201905081810360008301526151d1816149ea565b9050919050565b600060208201905081810360008301526151f181614a50565b9050919050565b6000602082019050818103600083015261521181614ab6565b9050919050565b6000602082019050818103600083015261523181614b1c565b9050919050565b6000602082019050818103600083015261525181614b82565b9050919050565b6000602082019050818103600083015261527181614bc2565b9050919050565b6000602082019050818103600083015261529181614c42565b9050919050565b600060208201905081810360008301526152b181614ca8565b9050919050565b60006020820190506152cd6000830184614ce8565b92915050565b6000604051905081810181811067ffffffffffffffff821117156152fa576152f961572d565b5b8060405250919050565b600067ffffffffffffffff82111561531f5761531e61572d565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561534b5761534a61572d565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561537b5761537a61572d565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615422826155a8565b915061542d836155a8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615462576154616156a0565b5b828201905092915050565b6000615478826155a8565b9150615483836155a8565b925082615493576154926156cf565b5b828204905092915050565b60006154a9826155a8565b91506154b4836155a8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154ed576154ec6156a0565b5b828202905092915050565b6000615503826155a8565b915061550e836155a8565b925082821015615521576155206156a0565b5b828203905092915050565b600061553782615588565b9050919050565b600061554982615588565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156155df5780820151818401526020810190506155c4565b838111156155ee576000848401525b50505050565b6000600282049050600182168061560c57607f821691505b602082108114156156205761561f6156fe565b5b50919050565b6000615631826155a8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615664576156636156a0565b5b600182019050919050565b600061567a826155a8565b9150615685836155a8565b925082615695576156946156cf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6157768161552c565b811461578157600080fd5b50565b61578d8161553e565b811461579857600080fd5b50565b6157a481615550565b81146157af57600080fd5b50565b6157bb8161555c565b81146157c657600080fd5b50565b6157d2816155a8565b81146157dd57600080fd5b5056fea2646970667358221220cd2422b154fab77693525680ee889b97b6836b7a914714c937843490eee8281064736f6c63430008000033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063714c53981161012e578063a6a17978116100ab578063e985e9c51161006f578063e985e9c5146108a9578063f16da125146108e6578063f2fde38b1461090f578063fa7cc36514610938578063fe55932a146109635761023b565b8063a6a17978146107c1578063ad9a0e50146107ea578063b88d4fde14610827578063c84cbaf314610850578063c87b56dd1461086c5761023b565b80638da5cb5b116100f25780638da5cb5b146106ee57806395d89b41146107195780639cfc049914610744578063a035b1fe1461076d578063a22cb465146107985761023b565b8063714c53981461062f578063715018a61461065a5780638af5abba146106715780638cf776041461069a5780638d6cc56d146106c55761023b565b80632a55205a116101bc5780636352211e116101805780636352211e146105265780636b8ff574146105635780636c2f5acd146105a057806370480275146105c957806370a08231146105f25761023b565b80632a55205a1461042e5780632c3c926b1461046c57806342842e0e146104a957806355f804b3146104d257806356189236146104fb5761023b565b8063095ea7b311610203578063095ea7b31461035f578063146bb92e146103885780631785f53c146103b157806318160ddd146103da57806323b872dd146104055761023b565b806301ffc9a714610240578063034674971461027d57806304516303146102ba57806306fdde03146102f7578063081812fc14610322575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613f40565b61098c565b6040516102749190614ebb565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190614018565b610a6e565b6040516102b19190614ebb565b60405180910390f35b3480156102c657600080fd5b506102e160048036038101906102dc9190614018565b610a98565b6040516102ee9190614ebb565b60405180910390f35b34801561030357600080fd5b5061030c610ac2565b6040516103199190614ed6565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190614018565b610b54565b6040516103569190614d47565b60405180910390f35b34801561036b57600080fd5b5061038660048036038101906103819190613e71565b610bd9565b005b34801561039457600080fd5b506103af60048036038101906103aa9190613eee565b610cf1565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190613cca565b610da1565b005b3480156103e657600080fd5b506103ef610e8f565b6040516103fc91906152b8565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190613d6b565b610ea0565b005b34801561043a57600080fd5b50610455600480360381019061045091906140be565b610f00565b604051610463929190614e70565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613cca565b610f4c565b6040516104a091906152b8565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190613d6b565b610f95565b005b3480156104de57600080fd5b506104f960048036038101906104f49190613fd7565b610fb5565b005b34801561050757600080fd5b50610510611062565b60405161051d91906152b8565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190614018565b611073565b60405161055a9190614d47565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190614018565b611125565b6040516105979190614ed6565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190613cf3565b6111ca565b005b3480156105d557600080fd5b506105f060048036038101906105eb9190613cca565b6112e2565b005b3480156105fe57600080fd5b5061061960048036038101906106149190613cca565b6113b9565b60405161062691906152b8565b60405180910390f35b34801561063b57600080fd5b50610644611471565b6040516106519190614ed6565b60405180910390f35b34801561066657600080fd5b5061066f611503565b005b34801561067d57600080fd5b5061069860048036038101906106939190613e71565b61158b565b005b3480156106a657600080fd5b506106af6119f0565b6040516106bc91906152b8565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190614018565b6119f6565b005b3480156106fa57600080fd5b50610703611a93565b6040516107109190614d47565b60405180910390f35b34801561072557600080fd5b5061072e611abd565b60405161073b9190614ed6565b60405180910390f35b34801561075057600080fd5b5061076b60048036038101906107669190614018565b611b4f565b005b34801561077957600080fd5b50610782611bec565b60405161078f91906152b8565b60405180910390f35b3480156107a457600080fd5b506107bf60048036038101906107ba9190613e35565b611bf2565b005b3480156107cd57600080fd5b506107e860048036038101906107e39190613ead565b611c08565b005b3480156107f657600080fd5b50610811600480360381019061080c9190613fd7565b611f1a565b60405161081e91906152b8565b60405180910390f35b34801561083357600080fd5b5061084e60048036038101906108499190613dba565b611f42565b005b61086a60048036038101906108659190613e71565b611fa4565b005b34801561087857600080fd5b50610893600480360381019061088e9190614018565b61233e565b6040516108a09190614ed6565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb9190613d2f565b612430565b6040516108dd9190614ebb565b60405180910390f35b3480156108f257600080fd5b5061090d60048036038101906109089190613f92565b6124c4565b005b34801561091b57600080fd5b5061093660048036038101906109319190613cca565b612785565b005b34801561094457600080fd5b5061094d61287d565b60405161095a9190614ebb565b60405180910390f35b34801561096f57600080fd5b5061098a6004803603810190610985919061406a565b612890565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a675750610a668261294f565b5b9050919050565b60006012600083815260200190815260200160002060009054906101000a900460ff169050919050565b60006011600083815260200190815260200160002060009054906101000a900460ff169050919050565b606060008054610ad1906155f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610afd906155f4565b8015610b4a5780601f10610b1f57610100808354040283529160200191610b4a565b820191906000526020600020905b815481529060010190602001808311610b2d57829003601f168201915b5050505050905090565b6000610b5f826129b9565b610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590615158565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be482611073565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90615258565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c74612a25565b73ffffffffffffffffffffffffffffffffffffffff161480610ca35750610ca281610c9d612a25565b612430565b5b610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd990615098565b60405180910390fd5b610cec8383612a2d565b505050565b60011515601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b90615198565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60011515601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90615198565b60405180910390fd5b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610e9b6008612ae6565b905090565b610eb1610eab612a25565b82612af4565b610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee790615278565b60405180910390fd5b610efb838383612bd2565b505050565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600d5485610f37919061549e565b610f41919061546d565b915091509250929050565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fb083838360405180602001604052806000815250611f42565b505050565b60011515601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90615198565b60405180910390fd5b80600c908051906020019061105e9291906139cf565b5050565b600061106e6008612ae6565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561111c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611113906150d8565b60405180910390fd5b80915050919050565b6060601460008381526020019081526020016000208054611145906155f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611171906155f4565b80156111be5780601f10611193576101008083540402835291602001916111be565b820191906000526020600020905b8154815290600101906020018083116111a157829003601f168201915b50505050509050919050565b60011515601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490615198565b60405180910390fd5b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d819055507f41008812a3a07584cddf95ab462d19d69b31c3d4545e1a53323a6a6c31eadfbc82826040516112d6929190614d62565b60405180910390a15050565b6112ea612a25565b73ffffffffffffffffffffffffffffffffffffffff16611308611a93565b73ffffffffffffffffffffffffffffffffffffffff161461135e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135590615178565b60405180910390fd5b6001601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611421906150b8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600c8054611480906155f4565b80601f01602080910402602001604051908101604052809291908181526020018280546114ac906155f4565b80156114f95780601f106114ce576101008083540402835291602001916114f9565b820191906000526020600020905b8154815290600101906020018083116114dc57829003601f168201915b5050505050905090565b61150b612a25565b73ffffffffffffffffffffffffffffffffffffffff16611529611a93565b73ffffffffffffffffffffffffffffffffffffffff161461157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690615178565b60405180910390fd5b6115896000612e2e565b565b610400611596610e8f565b106115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd90615038565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166115f682611073565b73ffffffffffffffffffffffffffffffffffffffff161461164c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611643906150f8565b60405180910390fd5b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d090614ff8565b60405180910390fd5b6011600082815260200190815260200160002060009054906101000a900460ff161561173a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173190615078565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a090615058565b60405180910390fd5b600b60009054906101000a900460ff166117f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ef90614fd8565b60405180910390fd5b60007364d91f12ece7362f91a6f8e7940cd55f05060b92905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161184c9190614d47565b60206040518083038186803b15801561186457600080fd5b505afa158015611878573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189c9190614041565b9050600a548110156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90615238565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166323b872dd3373928de321c5231c2b9a6c4282f443b0270f6f5848600a546040518463ffffffff1660e01b815260040161193693929190614d8b565b602060405180830381600087803b15801561195057600080fd5b505af1158015611964573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119889190613f17565b6119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90615118565b60405180910390fd5b60006119d284611125565b90506119e085600083612ef4565b6119e984613155565b5050505050565b600a5481565b60011515601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090615198565b60405180910390fd5b8060098190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611acc906155f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611af8906155f4565b8015611b455780601f10611b1a57610100808354040283529160200191611b45565b820191906000526020600020905b815481529060010190602001808311611b2857829003601f168201915b5050505050905090565b60011515601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd990615198565b60405180910390fd5b80600a8190555050565b60095481565b611c04611bfd612a25565b83836131bb565b5050565b60011515601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9290615198565b60405180910390fd5b611ca3612a25565b73ffffffffffffffffffffffffffffffffffffffff16611cc1611a93565b73ffffffffffffffffffffffffffffffffffffffff1614611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0e90615178565b60405180910390fd5b60005b8151811015611edf57600260166000848481518110611d62577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611e4657600260166000848481518110611de9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e3a9190615417565b92505081905550611ecc565b600260166000848481518110611e85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8080611ed790615626565b915050611d1a565b507f5c931db48d8c3b77cc273b68d2138916bfb4b8001c803d414ca9fecfd10e121981604051611f0f9190614e99565b60405180910390a150565b6000601582604051611f2c9190614cf7565b9081526020016040518091039020549050919050565b611f53611f4d612a25565b83612af4565b611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990615278565b60405180910390fd5b611f9e84848484613328565b50505050565b610400611faf610e8f565b10611fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe690615038565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661200f82611073565b73ffffffffffffffffffffffffffffffffffffffff1614612065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205c906150f8565b60405180910390fd5b3460095411156120aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a190614f58565b60405180910390fd5b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212e90614ff8565b60405180910390fd5b6011600082815260200190815260200160002060009054906101000a900460ff1615612198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218f90615078565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415612207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fe90615058565b60405180910390fd5b600b60009054906101000a900460ff16612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d90614fd8565b60405180910390fd5b600073928de321c5231c2b9a6c4282f443b0270f6f584873ffffffffffffffffffffffffffffffffffffffff163460405161229090614d32565b60006040518083038185875af1925050503d80600081146122cd576040519150601f19603f3d011682016040523d82523d6000602084013e6122d2565b606091505b5050905080612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230d90614ef8565b60405180910390fd5b600061232183611125565b905061232f84600083612ef4565b61233883613155565b50505050565b606061234a6008612ae6565b82111561238c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612383906151f8565b60405180910390fd5b600082116123cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c6906151f8565b60405180910390fd5b60006123d9613384565b90506000815114156123fd576040518060200160405280600081525091505061242b565b8061240784613416565b604051602001612418929190614d0e565b6040516020818303038152906040529150505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6002601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015612547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253e906151d8565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff90615218565b60405180910390fd5b610400612613610e8f565b10612653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264a90615038565b60405180910390fd5b60005b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811015612700576126ed33600185858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612ef4565b80806126f890615626565b915050612656565b506000601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507fe3b77dbfa4c5fb8ab9c572d8c62807aea11fc66a87f3e546f75da517a3e8159f33838360405161277993929190614e0e565b60405180910390a15050565b61278d612a25565b73ffffffffffffffffffffffffffffffffffffffff166127ab611a93565b73ffffffffffffffffffffffffffffffffffffffff1614612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f890615178565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286890614f38565b60405180910390fd5b61287a81612e2e565b50565b600b60009054906101000a900460ff1681565b60011515601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514612923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291a90615198565b60405180910390fd5b8060146000848152602001908152602001600020908051906020019061294a9291906139cf565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612aa083611073565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000612aff826129b9565b612b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3590615018565b60405180910390fd5b6000612b4983611073565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612bb857508373ffffffffffffffffffffffffffffffffffffffff16612ba084610b54565b73ffffffffffffffffffffffffffffffffffffffff16145b80612bc95750612bc88185612430565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612bf282611073565b73ffffffffffffffffffffffffffffffffffffffff1614612c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3f906151b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caf90614f98565b60405180910390fd5b612cc38383836135c3565b612cce600082612a2d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d1e91906154f8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d759190615417565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610400612eff610e8f565b10612f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3690615038565b60405180910390fd5b60006001612f4d6008612ae6565b612f579190615417565b9050612f62816129b9565b15612fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9990615298565b60405180910390fd5b60006011600083815260200190815260200160002060006101000a81548160ff021916908315150217905550826012600083815260200190815260200160002060006101000a81548160ff021916908315150217905550816014600083815260200190815260200160002090805190602001906130209291906139cf565b506015826040516130319190614cf7565b9081526020016040518091039020600081548092919061305090615626565b9190505550600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906130a590615626565b91905055506130b460086135c8565b6001601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061311684826135de565b7fc7f6bbce88a44b161a2874ede68d5373268f0b46ccab8709649cdf49181297da8483604051613147929190614e40565b60405180910390a150505050565b60016011600083815260200190815260200160002060006101000a81548160ff0219169083151502179055507f62a64299e0e48e1b3fc1682117ecfa325d3b61283354e67b8d38eb4b03b721ea816040516131b091906152b8565b60405180910390a150565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561322a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322190614fb8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161331b9190614ebb565b60405180910390a3505050565b613333848484612bd2565b61333f848484846135fc565b61337e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337590614f18565b60405180910390fd5b50505050565b6060600c8054613393906155f4565b80601f01602080910402602001604051908101604052809291908181526020018280546133bf906155f4565b801561340c5780601f106133e15761010080835404028352916020019161340c565b820191906000526020600020905b8154815290600101906020018083116133ef57829003601f168201915b5050505050905090565b6060600082141561345e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135be565b600082905060005b6000821461349057808061347990615626565b915050600a82613489919061546d565b9150613466565b60008167ffffffffffffffff8111156134d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135045781602001600182028036833780820191505090505b5090505b600085146135b75760018261351d91906154f8565b9150600a8561352c919061566f565b60306135389190615417565b60f81b818381518110613574577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135b0919061546d565b9450613508565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b6135f8828260405180602001604052806000815250613793565b5050565b600061361d8473ffffffffffffffffffffffffffffffffffffffff166137ee565b15613786578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613646612a25565b8786866040518563ffffffff1660e01b81526004016136689493929190614dc2565b602060405180830381600087803b15801561368257600080fd5b505af19250505080156136b357506040513d601f19601f820116820180604052508101906136b09190613f69565b60015b613736573d80600081146136e3576040519150601f19603f3d011682016040523d82523d6000602084013e6136e8565b606091505b5060008151141561372e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372590614f18565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061378b565b600190505b949350505050565b61379d8383613801565b6137aa60008484846135fc565b6137e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137e090614f18565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386890615138565b60405180910390fd5b61387a816129b9565b156138ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138b190614f78565b60405180910390fd5b6138c6600083836135c3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139169190615417565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546139db906155f4565b90600052602060002090601f0160209004810192826139fd5760008555613a44565b82601f10613a1657805160ff1916838001178555613a44565b82800160010185558215613a44579182015b82811115613a43578251825591602001919060010190613a28565b5b509050613a519190613a55565b5090565b5b80821115613a6e576000816000905550600101613a56565b5090565b6000613a85613a8084615304565b6152d3565b90508083825260208201905082856020860282011115613aa457600080fd5b60005b85811015613ad45781613aba8882613b5a565b845260208401935060208301925050600181019050613aa7565b5050509392505050565b6000613af1613aec84615330565b6152d3565b905082815260208101848484011115613b0957600080fd5b613b148482856155b2565b509392505050565b6000613b2f613b2a84615360565b6152d3565b905082815260208101848484011115613b4757600080fd5b613b528482856155b2565b509392505050565b600081359050613b698161576d565b92915050565b600081359050613b7e81615784565b92915050565b600082601f830112613b9557600080fd5b8135613ba5848260208601613a72565b91505092915050565b600081359050613bbd8161579b565b92915050565b600081519050613bd28161579b565b92915050565b600081359050613be7816157b2565b92915050565b600081519050613bfc816157b2565b92915050565b600082601f830112613c1357600080fd5b8135613c23848260208601613ade565b91505092915050565b60008083601f840112613c3e57600080fd5b8235905067ffffffffffffffff811115613c5757600080fd5b602083019150836001820283011115613c6f57600080fd5b9250929050565b600082601f830112613c8757600080fd5b8135613c97848260208601613b1c565b91505092915050565b600081359050613caf816157c9565b92915050565b600081519050613cc4816157c9565b92915050565b600060208284031215613cdc57600080fd5b6000613cea84828501613b5a565b91505092915050565b60008060408385031215613d0657600080fd5b6000613d1485828601613b6f565b9250506020613d2585828601613ca0565b9150509250929050565b60008060408385031215613d4257600080fd5b6000613d5085828601613b5a565b9250506020613d6185828601613b5a565b9150509250929050565b600080600060608486031215613d8057600080fd5b6000613d8e86828701613b5a565b9350506020613d9f86828701613b5a565b9250506040613db086828701613ca0565b9150509250925092565b60008060008060808587031215613dd057600080fd5b6000613dde87828801613b5a565b9450506020613def87828801613b5a565b9350506040613e0087828801613ca0565b925050606085013567ffffffffffffffff811115613e1d57600080fd5b613e2987828801613c02565b91505092959194509250565b60008060408385031215613e4857600080fd5b6000613e5685828601613b5a565b9250506020613e6785828601613bae565b9150509250929050565b60008060408385031215613e8457600080fd5b6000613e9285828601613b5a565b9250506020613ea385828601613ca0565b9150509250929050565b600060208284031215613ebf57600080fd5b600082013567ffffffffffffffff811115613ed957600080fd5b613ee584828501613b84565b91505092915050565b600060208284031215613f0057600080fd5b6000613f0e84828501613bae565b91505092915050565b600060208284031215613f2957600080fd5b6000613f3784828501613bc3565b91505092915050565b600060208284031215613f5257600080fd5b6000613f6084828501613bd8565b91505092915050565b600060208284031215613f7b57600080fd5b6000613f8984828501613bed565b91505092915050565b60008060208385031215613fa557600080fd5b600083013567ffffffffffffffff811115613fbf57600080fd5b613fcb85828601613c2c565b92509250509250929050565b600060208284031215613fe957600080fd5b600082013567ffffffffffffffff81111561400357600080fd5b61400f84828501613c76565b91505092915050565b60006020828403121561402a57600080fd5b600061403884828501613ca0565b91505092915050565b60006020828403121561405357600080fd5b600061406184828501613cb5565b91505092915050565b6000806040838503121561407d57600080fd5b600061408b85828601613ca0565b925050602083013567ffffffffffffffff8111156140a857600080fd5b6140b485828601613c76565b9150509250929050565b600080604083850312156140d157600080fd5b60006140df85828601613ca0565b92505060206140f085828601613ca0565b9150509250929050565b60006141068383614121565b60208301905092915050565b61411b8161553e565b82525050565b61412a8161552c565b82525050565b6141398161552c565b82525050565b600061414a826153a0565b61415481856153ce565b935061415f83615390565b8060005b8381101561419057815161417788826140fa565b9750614182836153c1565b925050600181019050614163565b5085935050505092915050565b6141a681615550565b82525050565b60006141b7826153ab565b6141c181856153df565b93506141d18185602086016155c1565b6141da8161575c565b840191505092915050565b60006141f183856153fb565b93506141fe8385846155b2565b6142078361575c565b840190509392505050565b600061421d826153b6565b61422781856153fb565b93506142378185602086016155c1565b6142408161575c565b840191505092915050565b6000614256826153b6565b614260818561540c565b93506142708185602086016155c1565b80840191505092915050565b60006142896017836153fb565b91507f4661696c656420746f207472616e7366657220455448210000000000000000006000830152602082019050919050565b60006142c96032836153fb565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061432f6026836153fb565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614395600e836153fb565b91507f507269636520746f6f206c6f77210000000000000000000000000000000000006000830152602082019050919050565b60006143d5601c836153fb565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006144156024836153fb565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061447b6019836153fb565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006144bb601b836153fb565b91507f53686172696e67206973206e6f7420616c6c6f776564207965742100000000006000830152602082019050919050565b60006144fb6038836153fb565b91507f54686973206163636f756e7420616c726561647920726563656976656420612060008301527f736861726564206f72206f726967696e207370683372652e00000000000000006020830152604082019050919050565b6000614561602c836153fb565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006145c76020836153fb565b91507f4d6178696d756d20737570706c7920686173206265656e2072656163686564216000830152602082019050919050565b60006146076028836153fb565b91507f596f752063616e6e6f742073686172652061207370683372652077697468207960008301527f6f757273656c66210000000000000000000000000000000000000000000000006020830152604082019050919050565b600061466d6032836153fb565b91507f54686973207370683372652069732066726f7a656e20616e642063616e27742060008301527f62652073686172656420616e796d6f72652100000000000000000000000000006020830152604082019050919050565b60006146d36038836153fb565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614739602a836153fb565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061479f6029836153fb565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006148056023836153fb565b91507f546869732073706833726520646f6573206e6f742062656c6f6e6720746f207960008301527f6f752e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061486b6035836153fb565b91507f556e61626c6520746f207472616e7366657220656e6f7567682041534821204360008301527f6865636b20746f6b656e20616c6c6f77616e63652e00000000000000000000006020830152604082019050919050565b60006148d16020836153fb565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614911602c836153fb565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006149776020836153fb565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006149b76013836153fb565b91507f53656e646572206973206e6f742061646d696e000000000000000000000000006000830152602082019050919050565b60006149f76029836153fb565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a5d6026836153fb565b91507f4d7573742068617665206174206c65617374206f6e6520706f737369626c652060008301527f636c61696d2100000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ac3602f836153fb565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614b296023836153fb565b91507f596f752063616e6e6f7420636c61696d206d6f7265207468616e20616c6c6f7760008301527f65642100000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b8f6019836153fb565b91507f4e6f7420656e6f7567682041534820696e2077616c6c657421000000000000006000830152602082019050919050565b6000614bcf6021836153fb565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c356000836153f0565b9150600082019050919050565b6000614c4f6031836153fb565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614cb5601c836153fb565b91507f5468697320746f6b656e696420616c72656164792065786973747321000000006000830152602082019050919050565b614cf1816155a8565b82525050565b6000614d03828461424b565b915081905092915050565b6000614d1a828561424b565b9150614d26828461424b565b91508190509392505050565b6000614d3d82614c28565b9150819050919050565b6000602082019050614d5c6000830184614130565b92915050565b6000604082019050614d776000830185614112565b614d846020830184614ce8565b9392505050565b6000606082019050614da06000830186614130565b614dad6020830185614130565b614dba6040830184614ce8565b949350505050565b6000608082019050614dd76000830187614130565b614de46020830186614130565b614df16040830185614ce8565b8181036060830152614e0381846141ac565b905095945050505050565b6000604082019050614e236000830186614130565b8181036020830152614e368184866141e5565b9050949350505050565b6000604082019050614e556000830185614130565b8181036020830152614e678184614212565b90509392505050565b6000604082019050614e856000830185614130565b614e926020830184614ce8565b9392505050565b60006020820190508181036000830152614eb3818461413f565b905092915050565b6000602082019050614ed0600083018461419d565b92915050565b60006020820190508181036000830152614ef08184614212565b905092915050565b60006020820190508181036000830152614f118161427c565b9050919050565b60006020820190508181036000830152614f31816142bc565b9050919050565b60006020820190508181036000830152614f5181614322565b9050919050565b60006020820190508181036000830152614f7181614388565b9050919050565b60006020820190508181036000830152614f91816143c8565b9050919050565b60006020820190508181036000830152614fb181614408565b9050919050565b60006020820190508181036000830152614fd18161446e565b9050919050565b60006020820190508181036000830152614ff1816144ae565b9050919050565b60006020820190508181036000830152615011816144ee565b9050919050565b6000602082019050818103600083015261503181614554565b9050919050565b60006020820190508181036000830152615051816145ba565b9050919050565b60006020820190508181036000830152615071816145fa565b9050919050565b6000602082019050818103600083015261509181614660565b9050919050565b600060208201905081810360008301526150b1816146c6565b9050919050565b600060208201905081810360008301526150d18161472c565b9050919050565b600060208201905081810360008301526150f181614792565b9050919050565b60006020820190508181036000830152615111816147f8565b9050919050565b600060208201905081810360008301526151318161485e565b9050919050565b60006020820190508181036000830152615151816148c4565b9050919050565b6000602082019050818103600083015261517181614904565b9050919050565b600060208201905081810360008301526151918161496a565b9050919050565b600060208201905081810360008301526151b1816149aa565b9050919050565b600060208201905081810360008301526151d1816149ea565b9050919050565b600060208201905081810360008301526151f181614a50565b9050919050565b6000602082019050818103600083015261521181614ab6565b9050919050565b6000602082019050818103600083015261523181614b1c565b9050919050565b6000602082019050818103600083015261525181614b82565b9050919050565b6000602082019050818103600083015261527181614bc2565b9050919050565b6000602082019050818103600083015261529181614c42565b9050919050565b600060208201905081810360008301526152b181614ca8565b9050919050565b60006020820190506152cd6000830184614ce8565b92915050565b6000604051905081810181811067ffffffffffffffff821117156152fa576152f961572d565b5b8060405250919050565b600067ffffffffffffffff82111561531f5761531e61572d565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561534b5761534a61572d565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561537b5761537a61572d565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615422826155a8565b915061542d836155a8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615462576154616156a0565b5b828201905092915050565b6000615478826155a8565b9150615483836155a8565b925082615493576154926156cf565b5b828204905092915050565b60006154a9826155a8565b91506154b4836155a8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154ed576154ec6156a0565b5b828202905092915050565b6000615503826155a8565b915061550e836155a8565b925082821015615521576155206156a0565b5b828203905092915050565b600061553782615588565b9050919050565b600061554982615588565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156155df5780820151818401526020810190506155c4565b838111156155ee576000848401525b50505050565b6000600282049050600182168061560c57607f821691505b602082108114156156205761561f6156fe565b5b50919050565b6000615631826155a8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615664576156636156a0565b5b600182019050919050565b600061567a826155a8565b9150615685836155a8565b925082615695576156946156cf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6157768161552c565b811461578157600080fd5b50565b61578d8161553e565b811461579857600080fd5b50565b6157a481615550565b81146157af57600080fd5b50565b6157bb8161555c565b81146157c657600080fd5b50565b6157d2816155a8565b81146157dd57600080fd5b5056fea2646970667358221220cd2422b154fab77693525680ee889b97b6836b7a914714c937843490eee8281064736f6c63430008000033

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.