ETH Price: $3,389.68 (-1.51%)
Gas: 3 Gwei

Token

Bricks (⬢Bricks)
 

Overview

Max Total Supply

1,847 ⬢Bricks

Holders

234

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
CryptoMorph: Deployer
Balance
181 ⬢Bricks
0x4595ff64328faf80a8cf0d52355639984b6af23c
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:
PixlSoV

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion
File 1 of 16 : PixlSoV.sol
//                                                                                                                                               
//  This is an ERC721 compliant smart contract for:
//   https://pix.ls
//
//  Bug Bounty:
//   Please see the details of our bug bounty program below.  
//   https://pix.ls/bug_bounty
//
//  Disclaimer:
//   We take the greatest of care when making our smart contracts but this is crypto and the future 
//   is always unknown. Even if it is exciting and full of wonderful possibilities, anything can happen,  
//   blockchains will evolve, vulnerabilities can arise, and markets can go up and down. Pix.ls and its  
//   owners accept no liability for any issues related to the use of this contract or any losses that may occur. 
//   This contract should be used for fun, art, and playing with collectables. It should not be used as an  
//   investment contract. Please see our full terms here: 
//   https://pix.ls/terms


// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
import "./base/ERC721Tradeable.sol";

contract PixlSoV is ERC721Tradeable 
{   
    // the mint marshal authorises all mints
    // if set to 0 then minting is disabled
    address private _mintMarshal;

    // only authorized burners can burn tokens
    // this allows nft game contracts to reclaim sov tokens when when minting game tokens
    mapping (address => bool) public isBurner; 

    constructor(address _owner, address _recovery, address _treasury,address _mmarshal, address _proxyRegistry) 
        ERC721Extended(_owner, _recovery, _treasury, "https://pix.ls/meta/sov/", _proxyRegistry) 
        ERC721("Bricks", unicode"⬢Bricks")    
    {        
        // set the mint marshal
        _mintMarshal = _mmarshal;    
           
    }

    

    
    /// MINTING

    // the mint marshal will need to approve all mints
    // set to 0 to disable minting
    function setMintMarshal(address newMarshal) external onlyOwner {
        _mintMarshal = newMarshal;
    }
    
    // ERC721 standard checks:
    // can't mint while the contract is paused (checked in _beforeTokenTransfer())
    // token id's can't already exist 
    // cant mint to address(0)
    // if 'to' refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.

    event Commission(address indexed earner, uint earned, uint tokenId); 

    // mint a single token
    function mint(address to, uint256 tokenId, uint256 expiry, address commissionTo, uint256 commissionWei, address feeTo, bytes memory marshalSignature) external payable reentrancyGuard   
    {       
        // CHECKS
        // check the details match what the marshal has signed
        validMint(_msgSender(), to, tokenId, msg.value, expiry, commissionTo, commissionWei, feeTo, marshalSignature);

        // EFFECTS
        _safeMint(to, tokenId);

        // INTERACTIONS
        // handle payments
        // the amounts have already been checked in hashMintDetails()

        //   security note: calls to a receivers below should only revert if insufficient gas is sent by the minter
        //   receivers can't be smart contracts IF we get them to sign a message before being added as a receiver
        //    - currently only EOA's (externally owned accounts) can sign a message on the ethereum network
        //    - smart contracts don't have a private key and can't sign a message
        //    - this means we should get all commission receivers to sign a message before they can receive commission

        uint _paidComm = 0;
        uint _paidFee = 0;

        // only pay out comm if address provided
        if(commissionTo!=address(0)){
            _paidComm = commissionWei;

            (bool success, ) = commissionTo.call{value:_paidComm}("");    
            require(success, "pay comm failed");        

            emit Commission(commissionTo, _paidComm, tokenId); 
        }

        // if no feeTo is provided then the fee will be retained by the contract
        if(feeTo!=address(0)){            
            _paidFee = msg.value - _paidComm;

            // we could pay the whole fee as commission above, so check for 0
            if(_paidFee>0){
                (bool success, ) = feeTo.call{value:_paidFee}("");    
                require(success, "pay fee failed");    
            }
        }

        // safety check  (should never be hit)
        assert(_paidComm + _paidFee <= msg.value);
    }

    function validMint(address minter, address to, uint256 tokenId, uint256 feeWei, uint256 expiry, address commissionTo, uint256 commissionWei, address feeTo, bytes memory marshalSignature) public view returns(bool)   
    {        
        // get the mint details hash 
        bytes32 _mint_hash = hashMintDetails(minter, to, tokenId, feeWei, expiry, commissionTo, commissionWei, feeTo);

        // check the marshal signed this mint hash
        require(_mintMarshal == signerOfHash(_mint_hash, marshalSignature), "bad hash");  

        // the details and signature are valid
        return true;
    }

    // this generates a hash of a mint details that can then be signed by the mint marshal
    function hashMintDetails(address minter, address to, uint256 tokenId, uint256 feeWei, uint256 expiry, address commissionTo, uint256 commissionWei, address feeTo) public view returns (bytes32){

        // check not already minted
        require(!_exists(tokenId), "already minted");

        // if the marshal is set to 0 then minting is disabled
        require(_mintMarshal!=address(0), "minting off");

        // the mint must not be expired yet
        require(block.timestamp < expiry, "expired");

        // if we must pay commission then we must have a valid amount
        if(commissionTo!=address(0)){           
            require(feeWei>0 && commissionWei>0 && commissionWei<=feeWei, "bad comm");
            require(commissionTo!=minter, "comm self");
        } 

        // if we must pay the fee onwards then we must have a valid fee
        if(feeTo!=address(0)){           
            require(feeWei>0, "feeTo no fee");
        }  

        // nonce is not required because mint's can't be replayed due to the tokenId being used 
        // also, the expiry timestamps are likely to change between all mints

        // now return the hash
        return keccak256(abi.encode(
            minter,
            to,
            tokenId,
            feeWei,
            expiry,
            commissionTo, 
            commissionWei, 
            feeTo,
            address(this)        // including the contract address prevents cross-contract replays  
        ));
    }

    /// BURNING

    // the contract owner can burn tokens it owns
    // or an authorized burner contract can burn any token
    // the contract owner can't burn someone elses tokens
    // normal users can't burn tokens

    // ERC721 standard checks:
    // can't burn while the contract is paused (checked in _beforeTokenTransfer())
    // the token id must exist
    
    // emitted when an authorization changes
    event BurnerSet(address indexed burner, bool auth);
   
    // changes a burners authorization
    function setBurner(address burner, bool authorized) external onlyOwner 
    { 
        isBurner[burner] = authorized;        
        emit BurnerSet(burner, authorized);        
    }

    // burn a single token
    function burn(uint256 tokenId, address belongsTo) external reentrancyGuard  
    {        
        address tokenOwner = ownerOf(tokenId);
        address contractOwner = owner();

        require(belongsTo == tokenOwner, "wrong owner");
        require(isBurner[_msgSender()]==true || 
                (tokenOwner == contractOwner && contractOwner == _msgSender() ), "not authed");
        _burn(tokenId);
    }
}

File 2 of 16 : ERC721Extended.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "../base/OwnableRecoverable.sol";

// ERC721Extended wraps multiple commonly used base contracts into a single contract
// 
// it includes:
//  ERC721 with Enumerable
//  contract ownership & recovery
//  contract pausing
//  base uri management
//  treasury 
//  proxy registry for opensea
//  ERC2981 

abstract contract ERC721Extended is ERC721Enumerable, Pausable, OwnableRecoverable 
{   
    // the treasure address that can make withdrawals from the contract balance
    address public treasury;

    // the base url used for all meta data 
    // used for tokens and for the contract
    string private _baseTokenURI;

    // support for ERC2981
    uint16 private _royaltyFee;
    address private _royaltyReciever;    

    // the opensea proxy registry contract (can be changed if this registry ever moves to a new contract)
    // 0xa5409ec958C83C3f309868babACA7c86DCB077c1  mainnet
    // 0xF57B2c51dED3A29e6891aba85459d600256Cf317  rinkeby
    // 0x0000000000000000000000000000000000000000  local
    address private _proxyRegistryAddress;
    
    constructor(address _owner, address _recovery, address _treasury, string memory _baseUri, address proxyRegistryAddress)  
    {
        // set the owner, recovery & treasury addresses
        transferOwnership(_owner);
        recovery = _recovery;
        treasury = _treasury;

        // set the meta base url
        _baseTokenURI = _baseUri;

        // set the open sea proxy registry address
        _proxyRegistryAddress = proxyRegistryAddress;

        // royalties
        _royaltyFee = 250;
        _royaltyReciever = _owner;
    }

    // used to stop a contract function from being reentrant-called 
    bool private _reentrancyLock = false;
    modifier reentrancyGuard {
        require(!_reentrancyLock, "reentrant");
 
        _reentrancyLock = true;
        _;
        _reentrancyLock = false;
    }


    /// PAUSING

    // only the contract owner can pause and unpause
    // can't pause if already paused
    // can't unpause if already unpaused
    // disables minting, burning, transfers (including marketplace accepted offers)

    function pause(bool on_off) external virtual onlyOwner {        
        if (on_off) _pause(); 
        else _unpause();      
    }
    // function unpause() external virtual onlyOwner {
    //     _unpause();
    // }

    // this hook is called by _mint, _burn & _transfer 
    // it allows us to block these actions while the contract is paused
    // also prevent transfers to the contract address
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        require(to != address(this), "to is contract");
        
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "contract paused");
    }


    /// NAMES

    function setName(string memory name_, string memory symbol_) external onlyOwner {
        ERC721._name = name_;
        ERC721._symbol = symbol_;
    }

    /// TREASURY

    // can only be called by the contract owner
    // withdrawals can only be made to the treasury account

    // allows for a dedicated address to be used for withdrawals
    function setTreasury(address newTreasury) external onlyOwner { 
        require(newTreasury!=address(0), "0 address");
        treasury = newTreasury;
    }

    // funds can be withdrawn to the treasury account for safe keeping
    function treasuryOut(uint amount) external onlyOwner reentrancyGuard {
        
        // can withdraw any amount up to the account balance (0 will withdraw everything)
        uint balance = address(this).balance;
        if(amount == 0 || amount > balance) amount = balance;

        // make the withdrawal
        (bool success, ) = treasury.call{value:amount}("");
        require(success, "call fail");
    }
    
    // the owner can pay funds in at any time although this is not needed
    // perhaps the contract needs to hold a certain balance in future for some external requirement
    function treasuryIn() external payable onlyOwner {

    } 


    /// BASE URI

    // base uri is where the metadata lives
    // only the owner can change this

    function setBaseURI(string memory baseTokenURI) external onlyOwner {
        _baseTokenURI = baseTokenURI;
    }
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    function contractURI() public view returns (string memory) {
        return bytes(_baseTokenURI).length > 0 ? string(abi.encodePacked(_baseTokenURI, "contract")) : "";
    }


    /// PROXY REGISTRY

    // registers a proxy address for OpenSea or others
    // can only be changed by the contract owner
    // setting address to 0 will disable the proxy 

    function setProxyRegistry(address proxyRegistry) external onlyOwner { 

        // check the contract address is correct (will revert if not)
        if(proxyRegistry!= address(0)) {
            ProxyRegistry(proxyRegistry).proxies(address(0));
        }

        _proxyRegistryAddress = proxyRegistry;    
    }

    // this override allows us to whitelist user's OpenSea proxy accounts to enable gas-less listings
    function isApprovedForAll(address token_owner, address operator) public view override returns (bool)
    {
        // whitelist OpenSea proxy contract for easy trading.
        if(_proxyRegistryAddress!= address(0)) {
            ProxyRegistry proxyRegistry = ProxyRegistry(_proxyRegistryAddress);
            if (address(proxyRegistry.proxies(token_owner)) == operator) {
                return true;
            }
        }

        return super.isApprovedForAll(token_owner, operator);
    }


    /// ERC2981 support

    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == 0x2a55205a  // ERC2981
               || super.supportsInterface(interfaceId);
    }

    function royaltyInfo(uint256, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount)
    {
        return (_royaltyReciever, (salePrice * _royaltyFee) / 10000);
    }

    // the royalties fee is set in basis points (eg. 250 basis points = 2.5%)
    function setRoyalties(address newReceiver, uint16 basisPoints) external onlyOwner {
        require(basisPoints <= 10000);
        _royaltyReciever = newReceiver;
        _royaltyFee = basisPoints;
    }

}

// used to whitelist proxy accounts of OpenSea users so that they are automatically able to trade any item on OpenSea
contract OwnableDelegateProxy {}
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

File 3 of 16 : ERC721Tradeable.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;

import "../base/ERC721Extended.sol";

// ERC721Extended wraps multiple commonly used base contracts into a single contract
// 
// it includes:
//  ERC721 with Enumerable
//  contract ownership & recovery
//  contract pausing
//  base uri management
//  treasury 
//  proxy registry for opensea
//  ERC2981 
//  maker/taker off-chain trading system

abstract contract ERC721Tradeable is ERC721Extended 
{   
    // pausing the market disables the built-in maker/taker offer system 
    // it does not affect normal ERC721 transfers 
    bool public marketPaused;

    // the marketplace fee for any internal paid trades (stored in basis points eg. 250 = 2.5% fee) 
    uint16 public marketFee;

    // the marketplace witness is used to validate marketplace offers 
    address private _marketWitness;

    // offer that can no longer be used any more
    mapping (bytes32 => bool) private _cancelledOrCompletedOffers;

    constructor(){
        
        // market starts disabled
        marketPaused = true;       
        marketFee = 250; 
    }


    /// MARKETPLACE

    // this contract includes a maker / taker offerplace
    // (similar to those seen in OpenSea, 0x Protocol and other NFT projects) 
    //
    // offers are made by makers off-chain and filled by callers on-chain
    // makers do this by signing their offer with their wallet 
    // smart contracts can't be makers because they can't sign messages
    // if a witness address is set then it must sign the offer hash too (eg. the website marketplace)

    // there are two types of offers depending on whether the maker specifies a taker in their offer:
    // maker / taker       (peer-to-peer offer:  two users agreeing to trade items)
    // maker / no taker    (open offer:  one user listing their items in the marketplace)

    // if eth is paid then it will always be on the taker side (the maker never pays eth in this simplified model)
    // a market fee is charged if eth is paid
    // trading tokens with no eth is free and no fee is deducted

    // allowed exchanges:

    //   maker tokens  > <  eth                          (maker sells their tokens to anyone)
    //   maker tokens  >                                 (maker gives their tokens away to anyone)

    //   maker tokens  >    taker                        (maker gives their tokens to a specific taker)
    //   maker tokens  > <  taker tokens                     .. for specific tokens back
    //   maker tokens  > <  taker tokens & eth               .. for specific tokens and eth back 
    //   maker tokens  > <  taker eth                        .. for eth only

    //   maker           <  taker tokens                 (taker gives their tokens to the maker)
    //   maker           <  taker tokens & eth               .. and with eth    

    event OfferAccepted(bytes32 indexed hash, address indexed maker, address indexed taker, uint[] makerIds, uint[] takerIds, uint takerWei, uint marketFee);    
    event OfferCancelled(bytes32 indexed hash);
    
    struct Offer {
        address maker;
        address taker;
        uint256[] makerIds;        
        uint256[] takerIds;
        uint256 takerWei;
        uint256 expiry;
        uint256 nonce;
    }

    // pausing the market will stop offers from being able to be accepted (they can still be generated or cancelled)
    function pauseMarket(bool pauseTrading) external onlyOwner {
        marketPaused = pauseTrading;
    }

    // the market fee is set in basis points (eg. 250 basis points = 2.5%)
    function setMarketFee(uint16 basisPoints) external onlyOwner {
        require(basisPoints <= 10000);
        marketFee = basisPoints;
    }

    // if a market witness is set then it will need to sign all offers too (set to 0 to disable)
    function setMarketWitness(address newWitness) external onlyOwner {
        _marketWitness = newWitness;
    }

    // recovers the signer address from a hash and signature
    function signerOfHash(bytes32 _hash, bytes memory signature) public pure returns (address signer){
        require(signature.length == 65, "sig wrong length");

        bytes32 geth_modified_hash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", _hash));
        bytes32 r;
        bytes32 s;
        uint8 v;

        assembly {
            r := mload(add(signature, 32))
            s := mload(add(signature, 64))
            v := byte(0, mload(add(signature, 96)))
        }

        if (v < 27) {
            v += 27;
        }

        require(v == 27 || v == 28, "bad sig v");

        return ecrecover(geth_modified_hash, v, r, s);
    }
 

    // this generates a hash of an offer that can then be signed by a maker
    // the offer has to have basic validity before it can be hashed
    // if checking ids then the tokens need to be owned by the parties too 
    function hashOffer(Offer memory offer, bool checkIds) public view returns (bytes32){

        // the maker can't be 0
        require(offer.maker!=address(0), "maker is 0");

        // maker and taker can't be the same
        require(offer.maker!=offer.taker, "same maker / taker");

        // the offer must not be expired yet
        require(block.timestamp < offer.expiry, "expired");

        // token id must be in the offer
        require(offer.makerIds.length>0 || offer.takerIds.length>0, "no ids");

        // if checking ids then maker must own the maker token ids
        if(checkIds){
            for(uint i=0; i<offer.makerIds.length; i++){
                require(ownerOf(offer.makerIds[i])==offer.maker, "bad maker ids");
            }
        }

        // if no taker has been specified (open offer - i.e. typical marketplace listing)
        if(offer.taker==address(0)){

            // then there can't be taker token ids in the offer
            require(offer.takerIds.length==0, "taker ids with no taker");
        }

        // if a taker has been specified (peer-to-peer offer - i.e. direct trade between two users)
        else{

            if(checkIds){
                // then the taker must own all the taker token ids   
                for(uint i=0; i<offer.takerIds.length; i++){
                    require(ownerOf(offer.takerIds[i])==offer.taker, "bad taker ids");
                }
            }
        }

        // now return the hash
        return keccak256(abi.encode(
            offer.maker,
            offer.taker,
            keccak256(abi.encodePacked(offer.makerIds)),            
            keccak256(abi.encodePacked(offer.takerIds)),
            offer.takerWei,
            offer.expiry,
            offer.nonce,
            address(this)        // including the contract address prevents cross-contract replays  
        ));
    }

    // an offer is valid if:
    //  it's maker / taker details are valid 
    //  it has been signed by the maker
    //  it has not been cancelled or completed yet
    //  the parties own their tokens (if checking ids)
    //  the witness has signed it (if witnessing is enabled)
    //  the trade is valid (if requested)
    function validOffer(Offer memory offer, bytes memory signature, bytes memory witnessSignature, bool checkIds, bool checkTradeValid, uint checkValue) external view returns (bool){

        // will revert if the offer or signer is not valid or checks fail
        bytes32 _offer_hash = _getValidOfferHash(offer, signature, checkIds, checkTradeValid, checkValue);

        // check the witness if needed
        _validWitness(_offer_hash, witnessSignature);

        return true;
    }

    // if a market witness is set then they need to sign the offer hash too
    function _validWitness(bytes32 _offer_hash, bytes memory witnessSignature) internal view {
        if(_marketWitness!=address(0)){       
            require(_marketWitness == signerOfHash(_offer_hash, witnessSignature), "wrong witness");  
        }
    }

    // gets the hash of an offer and checks that it has been signed by the maker
    function _getValidOfferHash(Offer memory offer, bytes memory signature, bool checkIds, bool checkTradeValid, uint checkValue) internal view returns (bytes32){

        // get the offer signer 
        bytes32 _offer_hash = hashOffer(offer, checkIds);
        address _signer = signerOfHash(_offer_hash, signature);
        
        // the signer must be the maker
        require(offer.maker==_signer, "maker not signer");
        
        // the offer can't be cancelled or completed already
        require(_cancelledOrCompletedOffers[_offer_hash]!=true, "offer cancelled or completed");

        // if checking the trade then we need to check the taker side too
        if(checkTradeValid){

            address caller = _msgSender();

            // no trading when paused
            require(!marketPaused, "marketplace paused");

            // caller can't be the maker
            require(caller!=offer.maker, "caller is the maker");

            // if there is a taker specified then they must be the caller
            require(caller==offer.taker || offer.taker==address(0), "caller not the taker");

            // check the correct wei has been provided by the taker (can be 0)
            require(checkValue==offer.takerWei, "wrong payment sent");
        }

        return _offer_hash;
    }
      
    
    // (gas: these functions can run out of gas if too many id's are provided
    //       not limiting them here because block gas limits change over time and we don't know what they will be in future)

    // stops the offer hash from being usable in future
    // can only be cancelled by the maker or the contract owner    
    function cancelOffer(Offer memory offer) external {
        address caller = _msgSender();
        require(caller == offer.maker || caller == owner(), "caller not maker or contract owner");

        // get the offer hash 
        bytes32 _offer_hash = hashOffer(offer, false);
                
        // set the offer hash as cancelled
        _cancelledOrCompletedOffers[_offer_hash]=true;
    
        emit OfferCancelled(_offer_hash);       
    }

    // fills an offer
    
    // offers can't be traded when the market is paused or the contract is paused
    // offers must be valid and signed by the maker 
    // the caller has to be the taker or can be an unknown party if no taker is set
    // eth may or may not be required by the offer
    // tokens must belong to the makers and takers

    function acceptOffer(Offer memory offer, bytes memory signature, bytes memory witnessSignature) external payable reentrancyGuard {
        
        // CHECKS
        
        // will revert if the offer or signer is not valid 
        // will also check token ids to make sure they belong to the parties
        // will check the caller and eth matches the offer taker details 
        bytes32 _offer_hash = _getValidOfferHash(offer, signature, true, true, msg.value);
       
        // check the witness if needed
        _validWitness(_offer_hash, witnessSignature);
       
        // EFFECTS

        address caller = _msgSender();

        // transfer the maker tokens to the caller
        for(uint i=0; i<offer.makerIds.length; i++){
             _safeTransfer(offer.maker, caller, offer.makerIds[i], "");
        }

        // transfer the taker tokens to the maker 
        for(uint i=0; i<offer.takerIds.length; i++){
             _safeTransfer(caller, offer.maker, offer.takerIds[i], "");
        }

        // set the offer as completed (stops the offer from being reused)
        _cancelledOrCompletedOffers[_offer_hash]=true;

        // INTERACTIONS

        // transfer the payment if one is present
        uint _fee = 0;
        if(msg.value>0){

            // calculate the marketplace fee (stored as basis points)
            // eg. 250 basis points is 2.5%  (250/10000) 
            _fee = msg.value * marketFee / 10000;
            uint _earned = msg.value - _fee;

            // safety check (should never be hit)
            assert(_earned<= msg.value && _fee+_earned==msg.value);
            
            // send the payment to the maker
            //   security note: calls to a maker should only revert if insufficient gas is sent by the caller/taker
            //   makers can't be smart contracts because makers need to sign the offer hash for us
            //    - currently only EOA's (externally owned accounts) can sign a message on the ethereum network
            //    - smart contracts don't have a private key and can't sign a message, so they can't be makers here
            //    - offers for specific makers can be blacklisted in the marketplace if required

            (bool success, ) = offer.maker.call{value:_earned}("");    
            require(success, "payment to maker failed");            
        }

        emit OfferAccepted(_offer_hash, offer.maker, caller, offer.makerIds, offer.takerIds, offer.takerWei, _fee);
    } 

}

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

pragma solidity 0.8.7;

import "@openzeppelin/contracts/utils/Context.sol";
/**
 * This is a modified version of the standard OpenZeppelin Ownable contract that allows for a recovery address to be used to recover ownership
 * 
 * 
 * @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 OwnableRecoverable is Context {
    address private _owner;

    // the recovery address can be used to recover ownership if the owner wallet is ever lost
    // it should be a cold-storage wallet stored in a vault and never used for any other operation
    // it should be set in the parent constructor
    // if ownership moves to a new organization then the recovery address should be moved too
    address public recovery;

    // initializes the contract setting the deployer as the initial owner.
    constructor () {
        _setOwner(_msgSender());
    }

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

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

    modifier onlyOwnerOrRecovery() {
        require(_msgSender() == owner() || _msgSender() == recovery, "caller not owner/recovery");
        _;
    }

    /**
     * @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 onlyOwnerOrRecovery {
        require(newOwner != address(0), "cant use 0 addr");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        _owner = newOwner;
    }   

    // the recovery address can be changed by the owner or the recovery address
    function setRecovery(address newRecovery) public virtual onlyOwnerOrRecovery {   
        require(newRecovery != address(0), "cant use 0 addr");
        recovery = newRecovery;
    }
    

}

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

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

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 internal _name;

    // Token symbol
    string internal _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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 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 7 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol"; 

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_recovery","type":"address"},{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"address","name":"_mmarshal","type":"address"},{"internalType":"address","name":"_proxyRegistry","type":"address"}],"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":"burner","type":"address"},{"indexed":false,"internalType":"bool","name":"auth","type":"bool"}],"name":"BurnerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"earner","type":"address"},{"indexed":false,"internalType":"uint256","name":"earned","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Commission","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"hash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"maker","type":"address"},{"indexed":true,"internalType":"address","name":"taker","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"makerIds","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"takerIds","type":"uint256[]"},{"indexed":false,"internalType":"uint256","name":"takerWei","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"marketFee","type":"uint256"}],"name":"OfferAccepted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"hash","type":"bytes32"}],"name":"OfferCancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"components":[{"internalType":"address","name":"maker","type":"address"},{"internalType":"address","name":"taker","type":"address"},{"internalType":"uint256[]","name":"makerIds","type":"uint256[]"},{"internalType":"uint256[]","name":"takerIds","type":"uint256[]"},{"internalType":"uint256","name":"takerWei","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"internalType":"struct ERC721Tradeable.Offer","name":"offer","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"bytes","name":"witnessSignature","type":"bytes"}],"name":"acceptOffer","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"belongsTo","type":"address"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"maker","type":"address"},{"internalType":"address","name":"taker","type":"address"},{"internalType":"uint256[]","name":"makerIds","type":"uint256[]"},{"internalType":"uint256[]","name":"takerIds","type":"uint256[]"},{"internalType":"uint256","name":"takerWei","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"internalType":"struct ERC721Tradeable.Offer","name":"offer","type":"tuple"}],"name":"cancelOffer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"feeWei","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"address","name":"commissionTo","type":"address"},{"internalType":"uint256","name":"commissionWei","type":"uint256"},{"internalType":"address","name":"feeTo","type":"address"}],"name":"hashMintDetails","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"maker","type":"address"},{"internalType":"address","name":"taker","type":"address"},{"internalType":"uint256[]","name":"makerIds","type":"uint256[]"},{"internalType":"uint256[]","name":"takerIds","type":"uint256[]"},{"internalType":"uint256","name":"takerWei","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"internalType":"struct ERC721Tradeable.Offer","name":"offer","type":"tuple"},{"internalType":"bool","name":"checkIds","type":"bool"}],"name":"hashOffer","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBurner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketFee","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"address","name":"commissionTo","type":"address"},{"internalType":"uint256","name":"commissionWei","type":"uint256"},{"internalType":"address","name":"feeTo","type":"address"},{"internalType":"bytes","name":"marshalSignature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"on_off","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"pauseTrading","type":"bool"}],"name":"pauseMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recovery","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"burner","type":"address"},{"internalType":"bool","name":"authorized","type":"bool"}],"name":"setBurner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"basisPoints","type":"uint16"}],"name":"setMarketFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWitness","type":"address"}],"name":"setMarketWitness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarshal","type":"address"}],"name":"setMintMarshal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyRegistry","type":"address"}],"name":"setProxyRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRecovery","type":"address"}],"name":"setRecovery","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newReceiver","type":"address"},{"internalType":"uint16","name":"basisPoints","type":"uint16"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTreasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"signerOfHash","outputs":[{"internalType":"address","name":"signer","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryIn","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"treasuryOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"feeWei","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"address","name":"commissionTo","type":"address"},{"internalType":"uint256","name":"commissionWei","type":"uint256"},{"internalType":"address","name":"feeTo","type":"address"},{"internalType":"bytes","name":"marshalSignature","type":"bytes"}],"name":"validMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"maker","type":"address"},{"internalType":"address","name":"taker","type":"address"},{"internalType":"uint256[]","name":"makerIds","type":"uint256[]"},{"internalType":"uint256[]","name":"takerIds","type":"uint256[]"},{"internalType":"uint256","name":"takerWei","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"internalType":"struct ERC721Tradeable.Offer","name":"offer","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"bytes","name":"witnessSignature","type":"bytes"},{"internalType":"bool","name":"checkIds","type":"bool"},{"internalType":"bool","name":"checkTradeValid","type":"bool"},{"internalType":"uint256","name":"checkValue","type":"uint256"}],"name":"validOffer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6080604052600f805460ff60a01b191690553480156200001e57600080fd5b50604051620056f4380380620056f483398101604081905262000041916200039b565b8484846040518060400160405280601881526020017f68747470733a2f2f7069782e6c732f6d6574612f736f762f00000000000000008152508460405180604001604052806006815260200165427269636b7360d01b81525060405180604001604052806009815260200168e2aca2427269636b7360b81b8152508160009080519060200190620000d4929190620002d8565b508051620000ea906001906020840190620002d8565b5050600a80546001600160a81b0319166101003302179055506200010e85620001ce565b600b80546001600160a01b038087166001600160a01b031992831617909255600c80549286169290911691909117905581516200015390600d906020850190620002d8565b50600f8054600e805460fa6001600160b01b0319909116620100006001600160a01b039a8b160217179055600160a81b928716600161ff0160a01b0319909116179190911761ffff60b01b1916607d60b11b1790555050601280546001600160a01b0319169490921693909317905550620004489350505050565b620001e6600a5461010090046001600160a01b031690565b6001600160a01b0316336001600160a01b03161480620002195750600b546001600160a01b0316336001600160a01b0316145b6200026b5760405162461bcd60e51b815260206004820152601960248201527f63616c6c6572206e6f74206f776e65722f7265636f766572790000000000000060448201526064015b60405180910390fd5b6001600160a01b038116620002b55760405162461bcd60e51b815260206004820152600f60248201526e31b0b73a103ab9b290181030b2323960891b604482015260640162000262565b600a8054610100600160a81b0319166101006001600160a01b0384160217905550565b828054620002e6906200040b565b90600052602060002090601f0160209004810192826200030a576000855562000355565b82601f106200032557805160ff191683800117855562000355565b8280016001018555821562000355579182015b828111156200035557825182559160200191906001019062000338565b506200036392915062000367565b5090565b5b8082111562000363576000815560010162000368565b80516001600160a01b03811681146200039657600080fd5b919050565b600080600080600060a08688031215620003b457600080fd5b620003bf866200037e565b9450620003cf602087016200037e565b9350620003df604087016200037e565b9250620003ef606087016200037e565b9150620003ff608087016200037e565b90509295509295909350565b600181811c908216806200042057607f821691505b602082108114156200044257634e487b7160e01b600052602260045260246000fd5b50919050565b61529c80620004586000396000f3fe60806040526004361061031e5760003560e01c806361d027b3116101a5578063a22cb465116100ec578063e8a3d48511610095578063f0f442601161006f578063f0f4426014610910578063f2fde38b14610930578063fcd3533c14610950578063ff1a62501461097057600080fd5b8063e8a3d485146108bb578063e985e9c5146108d0578063f0d85c89146108f057600080fd5b8063c2202932116100c6578063c22029321461085b578063c87b56dd1461087b578063ddceafa91461089b57600080fd5b8063a22cb465146107fb578063adfdeef91461081b578063b88d4fde1461083b57600080fd5b806380de96bf1161014e578063945cb1cb11610128578063945cb1cb146107a657806395d89b41146107c65780639b850d6e146107db57600080fd5b806380de96bf146107435780638da5cb5b146107635780638f15afbd1461078657600080fd5b8063708fcc3d1161017f578063708fcc3d146106f057806370a082311461070357806370e1f87b1461072357600080fd5b806361d027b3146106a85780636352211e146106c85780636992f91f146106e857600080fd5b80632a55205a116102695780634f6ccce7116102125780635c707f07116101ec5780635c707f07146106505780635c975abb146106705780635ec390d81461068857600080fd5b80634f6ccce7146105fd57806355f804b31461061d578063578ecb621461063d57600080fd5b80633a283bd2116102435780633a283bd21461057a57806342842e0e146105ad5780634334614a146105cd57600080fd5b80632a55205a146104fb5780632f745c591461053a5780633545b6871461055a57600080fd5b80630ccf2156116102cb57806318160ddd116102a557806318160ddd1461049c5780631ef80359146104bb57806323b872dd146104db57600080fd5b80630ccf2156146104145780630d895ee11461045c57806315cfb2cd1461047c57600080fd5b8063081812fc116102fc578063081812fc1461039c578063095ea7b3146103d45780630c222ee5146103f457600080fd5b806301ffc9a71461032357806302329a291461035857806306fdde031461037a575b600080fd5b34801561032f57600080fd5b5061034361033e3660046149fa565b610990565b60405190151581526020015b60405180910390f35b34801561036457600080fd5b50610378610373366004614998565b6109ec565b005b34801561038657600080fd5b5061038f610a6a565b60405161034f9190614f2a565b3480156103a857600080fd5b506103bc6103b7366004614caf565b610afc565b6040516001600160a01b03909116815260200161034f565b3480156103e057600080fd5b506103786103ef3660046148da565b610ba2565b34801561040057600080fd5b5061037861040f3660046148ae565b610cd4565b34801561042057600080fd5b50600f5461044990760100000000000000000000000000000000000000000000900461ffff1681565b60405161ffff909116815260200161034f565b34801561046857600080fd5b50610378610477366004614879565b610db3565b34801561048857600080fd5b50610378610497366004614c94565b610e72565b3480156104a857600080fd5b506008545b60405190815260200161034f565b3480156104c757600080fd5b506104ad6104d6366004614b15565b610f34565b3480156104e757600080fd5b506103786104f6366004614698565b61134d565b34801561050757600080fd5b5061051b610516366004614ced565b6113d4565b604080516001600160a01b03909316835260208301919091520161034f565b34801561054657600080fd5b506104ad6105553660046148da565b611413565b34801561056657600080fd5b506103bc6105753660046149b3565b6114bb565b34801561058657600080fd5b50600f54610343907501000000000000000000000000000000000000000000900460ff1681565b3480156105b957600080fd5b506103786105c8366004614698565b611652565b3480156105d957600080fd5b506103436105e8366004614642565b60136020526000908152604090205460ff1681565b34801561060957600080fd5b506104ad610618366004614caf565b61166d565b34801561062957600080fd5b50610378610638366004614a51565b611711565b61037861064b366004614b5a565b611788565b34801561065c57600080fd5b5061037861066b366004614a86565b611ab3565b34801561067c57600080fd5b50600a5460ff16610343565b34801561069457600080fd5b506103786106a3366004614998565b611b3a565b3480156106b457600080fd5b50600c546103bc906001600160a01b031681565b3480156106d457600080fd5b506103bc6106e3366004614caf565b611be5565b610378611c70565b6103786106fe366004614906565b611cd2565b34801561070f57600080fd5b506104ad61071e366004614642565b611fae565b34801561072f57600080fd5b5061037861073e366004614ae0565b612048565b34801561074f57600080fd5b5061034361075e366004614be2565b61213c565b34801561076f57600080fd5b50600a5461010090046001600160a01b03166103bc565b34801561079257600080fd5b506103786107a1366004614642565b612166565b3480156107b257600080fd5b506103436107c13660046147ca565b612200565b3480156107d257600080fd5b5061038f61228d565b3480156107e757600080fd5b506103786107f6366004614642565b61229c565b34801561080757600080fd5b50610378610816366004614879565b612336565b34801561082757600080fd5b50610378610836366004614642565b6123fb565b34801561084757600080fd5b506103786108563660046146d9565b612537565b34801561086757600080fd5b506104ad610876366004614745565b6125c5565b34801561088757600080fd5b5061038f610896366004614caf565b61287d565b3480156108a757600080fd5b50600b546103bc906001600160a01b031681565b3480156108c757600080fd5b5061038f612966565b3480156108dc57600080fd5b506103436108eb36600461465f565b6129b7565b3480156108fc57600080fd5b5061037861090b366004614642565b612aaf565b34801561091c57600080fd5b5061037861092b366004614642565b612bce565b34801561093c57600080fd5b5061037861094b366004614642565b612cbe565b34801561095c57600080fd5b5061037861096b366004614cc8565b612ddd565b34801561097c57600080fd5b5061037861098b366004614caf565b612fdb565b60007f2a55205a000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614806109e657506109e6826131cb565b92915050565b600a546001600160a01b03610100909104163314610a515760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e65720000000000000000000000000000000060448201526064015b60405180910390fd5b8015610a6257610a5f613221565b50565b610a5f6132c6565b606060008054610a7990615068565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa590615068565b8015610af25780601f10610ac757610100808354040283529160200191610af2565b820191906000526020600020905b815481529060010190602001808311610ad557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a48565b506000908152600460205260409020546001600160a01b031690565b6000610bad82611be5565b9050806001600160a01b0316836001600160a01b03161415610c375760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a48565b336001600160a01b0382161480610c535750610c5381336129b7565b610cc55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a48565b610ccf8383613349565b505050565b600a546001600160a01b03610100909104163314610d345760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b6127108161ffff161115610d4757600080fd5b600e80547fffffffffffffffffffff0000000000000000000000000000000000000000000016620100006001600160a01b0394909416939093027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000169290921761ffff91909116179055565b600a546001600160a01b03610100909104163314610e135760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527fd28dc1379d750c7c8137c7ef7b074f62f1361b9becc7f9d77d8c0d6e46a3cd06910160405180910390a25050565b600a546001600160a01b03610100909104163314610ed25760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b6127108161ffff161115610ee557600080fd5b600f805461ffff909216760100000000000000000000000000000000000000000000027fffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b81516000906001600160a01b0316610f8e5760405162461bcd60e51b815260206004820152600a60248201527f6d616b65722069732030000000000000000000000000000000000000000000006044820152606401610a48565b82602001516001600160a01b031683600001516001600160a01b03161415610ff85760405162461bcd60e51b815260206004820152601260248201527f73616d65206d616b6572202f2074616b657200000000000000000000000000006044820152606401610a48565b8260a00151421061104b5760405162461bcd60e51b815260206004820152600760248201527f65787069726564000000000000000000000000000000000000000000000000006044820152606401610a48565b6000836040015151118061106457506000836060015151115b6110b05760405162461bcd60e51b815260206004820152600660248201527f6e6f2069647300000000000000000000000000000000000000000000000000006044820152606401610a48565b81156111645760005b8360400151518110156111625783600001516001600160a01b03166110fa856040015183815181106110ed576110ed6151c5565b6020026020010151611be5565b6001600160a01b0316146111505760405162461bcd60e51b815260206004820152600d60248201527f626164206d616b657220696473000000000000000000000000000000000000006044820152606401610a48565b8061115a816150bc565b9150506110b9565b505b60208301516001600160a01b03166111ce57606083015151156111c95760405162461bcd60e51b815260206004820152601760248201527f74616b6572206964732077697468206e6f2074616b65720000000000000000006044820152606401610a48565b611275565b81156112755760005b8360600151518110156112735783602001516001600160a01b031661120b856060015183815181106110ed576110ed6151c5565b6001600160a01b0316146112615760405162461bcd60e51b815260206004820152600d60248201527f6261642074616b657220696473000000000000000000000000000000000000006044820152606401610a48565b8061126b816150bc565b9150506111d7565b505b8260000151836020015184604001516040516020016112949190614d76565b6040516020818303038152906040528051906020012085606001516040516020016112bf9190614d76565b60408051601f1981840301815282825280516020918201206080808b015160a0808d015160c0808f01516001600160a01b039c8d16978a01979097529a909916958701959095526060860196909652840152908201929092529283019190915260e0820152306101008201526101200160405160208183030381529060405280519060200120905092915050565b61135733826133cf565b6113c95760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a48565b610ccf8383836134b7565b600e5460009081906001600160a01b036201000082041690612710906113fe9061ffff1686614fe8565b6114089190614fd4565b915091509250929050565b600061141e83611fae565b82106114925760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610a48565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000815160411461150e5760405162461bcd60e51b815260206004820152601060248201527f7369672077726f6e67206c656e677468000000000000000000000000000000006044820152606401610a48565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101849052600090605c0160408051601f19818403018152918152815160209283012091850151908501516060860151929350909160001a601b81101561158857611585601b82614faf565b90505b8060ff16601b148061159d57508060ff16601c145b6115e95760405162461bcd60e51b815260206004820152600960248201527f62616420736967207600000000000000000000000000000000000000000000006044820152606401610a48565b60408051600081526020810180835286905260ff831691810191909152606081018490526080810183905260019060a0016020604051602081039080840390855afa15801561163c573d6000803e3d6000fd5b5050604051601f19015198975050505050505050565b610ccf83838360405180602001604052806000815250612537565b600061167860085490565b82106116ec5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610a48565b600882815481106116ff576116ff6151c5565b90600052602060002001549050919050565b600a546001600160a01b036101009091041633146117715760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b805161178490600d9060208401906143d2565b5050565b600f5474010000000000000000000000000000000000000000900460ff16156117f35760405162461bcd60e51b815260206004820152600960248201527f7265656e7472616e7400000000000000000000000000000000000000000000006044820152606401610a48565b600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000017905560006118428484600180346136a7565b905061184e8183613939565b3360005b8560400151518110156118ad5761189b8660000151838860400151848151811061187e5761187e6151c5565b6020026020010151604051806020016040528060008152506139b1565b806118a5816150bc565b915050611852565b5060005b8560600151518110156118ef576118dd8287600001518860600151848151811061187e5761187e6151c5565b806118e7816150bc565b9150506118b1565b506000828152601160205260408120805460ff191660011790553415611a2157600f546127109061193e90760100000000000000000000000000000000000000000000900461ffff1634614fe8565b6119489190614fd4565b905060006119568234615025565b905034811115801561197057503461196e8284614f97565b145b61197c5761197c615109565b86516040516000916001600160a01b03169083908381818185875af1925050503d80600081146119c8576040519150601f19603f3d011682016040523d82523d6000602084013e6119cd565b606091505b5050905080611a1e5760405162461bcd60e51b815260206004820152601760248201527f7061796d656e7420746f206d616b6572206661696c65640000000000000000006044820152606401610a48565b50505b816001600160a01b031686600001516001600160a01b0316847f9db12f62cd31155414a5f4e35083d1f6111e06a89feec6d8d9a222c80937621b89604001518a606001518b6080015187604051611a7b9493929190614ef1565b60405180910390a45050600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905550505050565b600a546001600160a01b03610100909104163314611b135760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b8151611b269060009060208501906143d2565b508051610ccf9060019060208401906143d2565b600a546001600160a01b03610100909104163314611b9a5760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b600f80549115157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000818152600260205260408120546001600160a01b0316806109e65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a48565b600a546001600160a01b03610100909104163314611cd05760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b565b600f5474010000000000000000000000000000000000000000900460ff1615611d3d5760405162461bcd60e51b815260206004820152600960248201527f7265656e7472616e7400000000000000000000000000000000000000000000006044820152606401610a48565b600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055611d93611d863390565b8888348989898989612200565b50611d9e8787613a3a565b6000806001600160a01b03861615611e9c578491506000866001600160a01b03168360405160006040518083038185875af1925050503d8060008114611e00576040519150601f19603f3d011682016040523d82523d6000602084013e611e05565b606091505b5050905080611e565760405162461bcd60e51b815260206004820152600f60248201527f70617920636f6d6d206661696c656400000000000000000000000000000000006044820152606401610a48565b60408051848152602081018b90526001600160a01b038916917f4810454a46b3b55af7f8915a8b8b454e79d03a0e315d41d8f9d2c20f1d04c6be910160405180910390a2505b6001600160a01b03841615611f6257611eb58234615025565b90508015611f62576000846001600160a01b03168260405160006040518083038185875af1925050503d8060008114611f0a576040519150601f19603f3d011682016040523d82523d6000602084013e611f0f565b606091505b5050905080611f605760405162461bcd60e51b815260206004820152600e60248201527f70617920666565206661696c65640000000000000000000000000000000000006044820152606401610a48565b505b34611f6d8284614f97565b1115611f7b57611f7b615109565b5050600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905550505050505050565b60006001600160a01b03821661202c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a48565b506001600160a01b031660009081526003602052604090205490565b805133906001600160a01b03168114806120745750600a546001600160a01b0382811661010090920416145b6120e65760405162461bcd60e51b815260206004820152602260248201527f63616c6c6572206e6f74206d616b6572206f7220636f6e7472616374206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610a48565b60006120f3836000610f34565b600081815260116020526040808220805460ff191660011790555191925082917f3f9cb69d022b6ec319f86f2df848bcce01f2fc51c9f86396779a8081cf6ca2ea9190a2505050565b60008061214c88888787876136a7565b90506121588187613939565b506001979650505050505050565b600a546001600160a01b036101009091041633146121c65760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b601080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000806122138b8b8b8b8b8b8b8b6125c5565b905061221f81846114bb565b6012546001600160a01b0390811691161461227c5760405162461bcd60e51b815260206004820152600860248201527f62616420686173680000000000000000000000000000000000000000000000006044820152606401610a48565b5060019a9950505050505050505050565b606060018054610a7990615068565b600a546001600160a01b036101009091041633146122fc5760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b601280547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6001600160a01b03821633141561238f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a48565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0361010090910416331461245b5760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b6001600160a01b038116156124fd576040517fc4552791000000000000000000000000000000000000000000000000000000008152600060048201526001600160a01b0382169063c45527919060240160206040518083038186803b1580156124c357600080fd5b505afa1580156124d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124fb9190614a34565b505b600f80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b61254133836133cf565b6125b35760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a48565b6125bf848484846139b1565b50505050565b6000868152600260205260408120546001600160a01b03161561262a5760405162461bcd60e51b815260206004820152600e60248201527f616c7265616479206d696e7465640000000000000000000000000000000000006044820152606401610a48565b6012546001600160a01b03166126825760405162461bcd60e51b815260206004820152600b60248201527f6d696e74696e67206f66660000000000000000000000000000000000000000006044820152606401610a48565b8442106126d15760405162461bcd60e51b815260206004820152600760248201527f65787069726564000000000000000000000000000000000000000000000000006044820152606401610a48565b6001600160a01b038416156127aa576000861180156126f05750600083115b80156126fc5750858311155b6127485760405162461bcd60e51b815260206004820152600860248201527f62616420636f6d6d0000000000000000000000000000000000000000000000006044820152606401610a48565b886001600160a01b0316846001600160a01b031614156127aa5760405162461bcd60e51b815260206004820152600960248201527f636f6d6d2073656c6600000000000000000000000000000000000000000000006044820152606401610a48565b6001600160a01b0382161561280957600086116128095760405162461bcd60e51b815260206004820152600c60248201527f666565546f206e6f2066656500000000000000000000000000000000000000006044820152606401610a48565b50604080516001600160a01b03998a16602080830191909152988a16818301526060810197909752608087019590955260a086019390935290861660c085015260e0840152909316610100820152306101208083019190915283518083039091018152610140909101909252815191012090565b6000818152600260205260409020546060906001600160a01b031661290a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a48565b6000612914613a54565b90506000815111612934576040518060200160405280600081525061295f565b8061293e84613a63565b60405160200161294f929190614dac565b6040516020818303038152906040525b9392505050565b60606000600d805461297790615068565b905011612991575060408051602081019091526000815290565b600d6040516020016129a39190614ddb565b604051602081830303815290604052905090565b600f546000906001600160a01b031615612a8157600f546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03858116600483015291821691841690829063c45527919060240160206040518083038186803b158015612a2e57600080fd5b505afa158015612a42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a669190614a34565b6001600160a01b03161415612a7f5760019150506109e6565b505b6001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff1661295f565b600a5461010090046001600160a01b03166001600160a01b0316336001600160a01b03161480612af25750600b546001600160a01b0316336001600160a01b0316145b612b3e5760405162461bcd60e51b815260206004820152601960248201527f63616c6c6572206e6f74206f776e65722f7265636f76657279000000000000006044820152606401610a48565b6001600160a01b038116612b945760405162461bcd60e51b815260206004820152600f60248201527f63616e74207573652030206164647200000000000000000000000000000000006044820152606401610a48565b600b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600a546001600160a01b03610100909104163314612c2e5760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b6001600160a01b038116612c845760405162461bcd60e51b815260206004820152600960248201527f30206164647265737300000000000000000000000000000000000000000000006044820152606401610a48565b600c80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600a5461010090046001600160a01b03166001600160a01b0316336001600160a01b03161480612d015750600b546001600160a01b0316336001600160a01b0316145b612d4d5760405162461bcd60e51b815260206004820152601960248201527f63616c6c6572206e6f74206f776e65722f7265636f76657279000000000000006044820152606401610a48565b6001600160a01b038116612da35760405162461bcd60e51b815260206004820152600f60248201527f63616e74207573652030206164647200000000000000000000000000000000006044820152606401610a48565b600a80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff166101006001600160a01b0384160217905550565b600f5474010000000000000000000000000000000000000000900460ff1615612e485760405162461bcd60e51b815260206004820152600960248201527f7265656e7472616e7400000000000000000000000000000000000000000000006044820152606401610a48565b600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556000612e9283611be5565b90506000612eae600a546001600160a01b036101009091041690565b9050816001600160a01b0316836001600160a01b031614612f115760405162461bcd60e51b815260206004820152600b60248201527f77726f6e67206f776e65720000000000000000000000000000000000000000006044820152606401610a48565b3360009081526013602052604090205460ff16151560011480612f585750806001600160a01b0316826001600160a01b0316148015612f5857506001600160a01b03811633145b612fa45760405162461bcd60e51b815260206004820152600a60248201527f6e6f7420617574686564000000000000000000000000000000000000000000006044820152606401610a48565b612fad84613b95565b5050600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555050565b600a546001600160a01b0361010090910416331461303b5760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b600f5474010000000000000000000000000000000000000000900460ff16156130a65760405162461bcd60e51b815260206004820152600960248201527f7265656e7472616e7400000000000000000000000000000000000000000000006044820152606401610a48565b600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055478115806130f257508082115b156130fb578091505b600c546040516000916001600160a01b03169084908381818185875af1925050503d8060008114613148576040519150601f19603f3d011682016040523d82523d6000602084013e61314d565b606091505b505090508061319e5760405162461bcd60e51b815260206004820152600960248201527f63616c6c206661696c00000000000000000000000000000000000000000000006044820152606401610a48565b5050600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905550565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806109e657506109e682613c54565b600a5460ff16156132745760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610a48565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586132a93390565b6040516001600160a01b03909116815260200160405180910390a1565b600a5460ff166133185760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610a48565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336132a9565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061339682611be5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166134595760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a48565b600061346483611be5565b9050806001600160a01b0316846001600160a01b0316148061349f5750836001600160a01b031661349484610afc565b6001600160a01b0316145b806134af57506134af81856129b7565b949350505050565b826001600160a01b03166134ca82611be5565b6001600160a01b0316146135465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a48565b6001600160a01b0382166135c15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a48565b6135cc838383613d37565b6135d7600082613349565b6001600160a01b0383166000908152600360205260408120805460019290613600908490615025565b90915550506001600160a01b038216600090815260036020526040812080546001929061362e908490614f97565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806136b48786610f34565b905060006136c282886114bb565b9050806001600160a01b031688600001516001600160a01b0316146137295760405162461bcd60e51b815260206004820152601060248201527f6d616b6572206e6f74207369676e6572000000000000000000000000000000006044820152606401610a48565b60008281526011602052604090205460ff1615156001141561378d5760405162461bcd60e51b815260206004820152601c60248201527f6f666665722063616e63656c6c6564206f7220636f6d706c65746564000000006044820152606401610a48565b841561392e57600f5433907501000000000000000000000000000000000000000000900460ff16156138015760405162461bcd60e51b815260206004820152601260248201527f6d61726b6574706c6163652070617573656400000000000000000000000000006044820152606401610a48565b88516001600160a01b038281169116141561385e5760405162461bcd60e51b815260206004820152601360248201527f63616c6c657220697320746865206d616b6572000000000000000000000000006044820152606401610a48565b88602001516001600160a01b0316816001600160a01b0316148061388d575060208901516001600160a01b0316155b6138d95760405162461bcd60e51b815260206004820152601460248201527f63616c6c6572206e6f74207468652074616b65720000000000000000000000006044820152606401610a48565b8860800151851461392c5760405162461bcd60e51b815260206004820152601260248201527f77726f6e67207061796d656e742073656e7400000000000000000000000000006044820152606401610a48565b505b509695505050505050565b6010546001600160a01b0316156117845761395482826114bb565b6010546001600160a01b039081169116146117845760405162461bcd60e51b815260206004820152600d60248201527f77726f6e67207769746e657373000000000000000000000000000000000000006044820152606401610a48565b6139bc8484846134b7565b6139c884848484613dee565b6125bf5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a48565b611784828260405180602001604052806000815250613f9b565b6060600d8054610a7990615068565b606081613aa357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613acd5780613ab7816150bc565b9150613ac69050600a83614fd4565b9150613aa7565b60008167ffffffffffffffff811115613ae857613ae86151f4565b6040519080825280601f01601f191660200182016040528015613b12576020820181803683370190505b5090505b84156134af57613b27600183615025565b9150613b34600a866150f5565b613b3f906030614f97565b60f81b818381518110613b5457613b546151c5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613b8e600a86614fd4565b9450613b16565b6000613ba082611be5565b9050613bae81600084613d37565b613bb9600083613349565b6001600160a01b0381166000908152600360205260408120805460019290613be2908490615025565b909155505060008281526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480613ce757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109e657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146109e6565b6001600160a01b038216301415613d905760405162461bcd60e51b815260206004820152600e60248201527f746f20697320636f6e74726163740000000000000000000000000000000000006044820152606401610a48565b613d9b838383614024565b600a5460ff1615610ccf5760405162461bcd60e51b815260206004820152600f60248201527f636f6e74726163742070617573656400000000000000000000000000000000006044820152606401610a48565b60006001600160a01b0384163b15613f90576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290613e4b903390899088908890600401614eb5565b602060405180830381600087803b158015613e6557600080fd5b505af1925050508015613e95575060408051601f3d908101601f19168201909252613e9291810190614a17565b60015b613f45573d808015613ec3576040519150601f19603f3d011682016040523d82523d6000602084013e613ec8565b606091505b508051613f3d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a48565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506134af565b506001949350505050565b613fa583836140dc565b613fb26000848484613dee565b610ccf5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a48565b6001600160a01b03831661407f5761407a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6140a2565b816001600160a01b0316836001600160a01b0316146140a2576140a28382614242565b6001600160a01b0382166140b957610ccf816142df565b826001600160a01b0316826001600160a01b031614610ccf57610ccf828261438e565b6001600160a01b0382166141325760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a48565b6000818152600260205260409020546001600160a01b0316156141975760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a48565b6141a360008383613d37565b6001600160a01b03821660009081526003602052604081208054600192906141cc908490614f97565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161424f84611fae565b6142599190615025565b6000838152600760205260409020549091508082146142ac576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906142f190600190615025565b60008381526009602052604081205460088054939450909284908110614319576143196151c5565b90600052602060002001549050806008838154811061433a5761433a6151c5565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061437257614372615196565b6001900381819060005260206000200160009055905550505050565b600061439983611fae565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546143de90615068565b90600052602060002090601f0160209004810192826144005760008555614446565b82601f1061441957805160ff1916838001178555614446565b82800160010185558215614446579182015b8281111561444657825182559160200191906001019061442b565b50614452929150614456565b5090565b5b808211156144525760008155600101614457565b803561447681615223565b919050565b600082601f83011261448c57600080fd5b8135602067ffffffffffffffff8211156144a8576144a86151f4565b8160051b6144b7828201614f66565b8381528281019086840183880185018910156144d257600080fd5b600093505b858410156144f55780358352600193909301929184019184016144d7565b50979650505050505050565b8035801515811461447657600080fd5b600082601f83011261452257600080fd5b813567ffffffffffffffff81111561453c5761453c6151f4565b61454f6020601f19601f84011601614f66565b81815284602083860101111561456457600080fd5b816020850160208301376000918101602001919091529392505050565b600060e0828403121561459357600080fd5b61459b614f3d565b90506145a68261446b565b81526145b46020830161446b565b6020820152604082013567ffffffffffffffff808211156145d457600080fd5b6145e08583860161447b565b604084015260608401359150808211156145f957600080fd5b506146068482850161447b565b6060830152506080820135608082015260a082013560a082015260c082013560c082015292915050565b803561ffff8116811461447657600080fd5b60006020828403121561465457600080fd5b813561295f81615223565b6000806040838503121561467257600080fd5b823561467d81615223565b9150602083013561468d81615223565b809150509250929050565b6000806000606084860312156146ad57600080fd5b83356146b881615223565b925060208401356146c881615223565b929592945050506040919091013590565b600080600080608085870312156146ef57600080fd5b84356146fa81615223565b9350602085013561470a81615223565b925060408501359150606085013567ffffffffffffffff81111561472d57600080fd5b61473987828801614511565b91505092959194509250565b600080600080600080600080610100898b03121561476257600080fd5b883561476d81615223565b9750602089013561477d81615223565b965060408901359550606089013594506080890135935060a08901356147a281615223565b925060c0890135915060e08901356147b981615223565b809150509295985092959890939650565b60008060008060008060008060006101208a8c0312156147e957600080fd5b89356147f481615223565b985060208a013561480481615223565b975060408a0135965060608a0135955060808a0135945060a08a013561482981615223565b935060c08a0135925060e08a013561484081615223565b91506101008a013567ffffffffffffffff81111561485d57600080fd5b6148698c828d01614511565b9150509295985092959850929598565b6000806040838503121561488c57600080fd5b823561489781615223565b91506148a560208401614501565b90509250929050565b600080604083850312156148c157600080fd5b82356148cc81615223565b91506148a560208401614630565b600080604083850312156148ed57600080fd5b82356148f881615223565b946020939093013593505050565b600080600080600080600060e0888a03121561492157600080fd5b873561492c81615223565b96506020880135955060408801359450606088013561494a81615223565b93506080880135925060a088013561496181615223565b915060c088013567ffffffffffffffff81111561497d57600080fd5b6149898a828b01614511565b91505092959891949750929550565b6000602082840312156149aa57600080fd5b61295f82614501565b600080604083850312156149c657600080fd5b82359150602083013567ffffffffffffffff8111156149e457600080fd5b6149f085828601614511565b9150509250929050565b600060208284031215614a0c57600080fd5b813561295f81615238565b600060208284031215614a2957600080fd5b815161295f81615238565b600060208284031215614a4657600080fd5b815161295f81615223565b600060208284031215614a6357600080fd5b813567ffffffffffffffff811115614a7a57600080fd5b6134af84828501614511565b60008060408385031215614a9957600080fd5b823567ffffffffffffffff80821115614ab157600080fd5b614abd86838701614511565b93506020850135915080821115614ad357600080fd5b506149f085828601614511565b600060208284031215614af257600080fd5b813567ffffffffffffffff811115614b0957600080fd5b6134af84828501614581565b60008060408385031215614b2857600080fd5b823567ffffffffffffffff811115614b3f57600080fd5b614b4b85828601614581565b9250506148a560208401614501565b600080600060608486031215614b6f57600080fd5b833567ffffffffffffffff80821115614b8757600080fd5b614b9387838801614581565b94506020860135915080821115614ba957600080fd5b614bb587838801614511565b93506040860135915080821115614bcb57600080fd5b50614bd886828701614511565b9150509250925092565b60008060008060008060c08789031215614bfb57600080fd5b863567ffffffffffffffff80821115614c1357600080fd5b614c1f8a838b01614581565b97506020890135915080821115614c3557600080fd5b614c418a838b01614511565b96506040890135915080821115614c5757600080fd5b50614c6489828a01614511565b945050614c7360608801614501565b9250614c8160808801614501565b915060a087013590509295509295509295565b600060208284031215614ca657600080fd5b61295f82614630565b600060208284031215614cc157600080fd5b5035919050565b60008060408385031215614cdb57600080fd5b82359150602083013561468d81615223565b60008060408385031215614d0057600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b83811015614d3f57815187529582019590820190600101614d23565b509495945050505050565b60008151808452614d6281602086016020860161503c565b601f01601f19169290920160200192915050565b815160009082906020808601845b83811015614da057815185529382019390820190600101614d84565b50929695505050505050565b60008351614dbe81846020880161503c565b835190830190614dd281836020880161503c565b01949350505050565b600080835481600182811c915080831680614df757607f831692505b6020808410821415614e30577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b818015614e445760018114614e5557614e82565b60ff19861689528489019650614e82565b60008a81526020902060005b86811015614e7a5781548b820152908501908301614e61565b505084890196505b5050505050506134af817f636f6e7472616374000000000000000000000000000000000000000000000000815260080190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152614ee76080830184614d4a565b9695505050505050565b608081526000614f046080830187614d0f565b8281036020840152614f168187614d0f565b604084019590955250506060015292915050565b60208152600061295f6020830184614d4a565b60405160e0810167ffffffffffffffff81118282101715614f6057614f606151f4565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715614f8f57614f8f6151f4565b604052919050565b60008219821115614faa57614faa615138565b500190565b600060ff821660ff84168060ff03821115614fcc57614fcc615138565b019392505050565b600082614fe357614fe3615167565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561502057615020615138565b500290565b60008282101561503757615037615138565b500390565b60005b8381101561505757818101518382015260200161503f565b838111156125bf5750506000910152565b600181811c9082168061507c57607f821691505b602082108114156150b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150ee576150ee615138565b5060010190565b60008261510457615104615167565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6001600160a01b0381168114610a5f57600080fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610a5f57600080fdfea264697066735822122055dcb978cc422b216037be37043e23edca5e4164c81374c52006a79d7c22cf3f64736f6c63430008070033000000000000000000000000b8e1b6e0e776d80a4f9ae2f7bf38f6c4ec6718390000000000000000000000005dd897c829b7f885f59f48115fa784e31eec9ed1000000000000000000000000b067079fe999ecec5c9af10de6554ec6efe7ffc6000000000000000000000000beef050f8156e2a31a8cde8c8e13fa38c5a5f726000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x60806040526004361061031e5760003560e01c806361d027b3116101a5578063a22cb465116100ec578063e8a3d48511610095578063f0f442601161006f578063f0f4426014610910578063f2fde38b14610930578063fcd3533c14610950578063ff1a62501461097057600080fd5b8063e8a3d485146108bb578063e985e9c5146108d0578063f0d85c89146108f057600080fd5b8063c2202932116100c6578063c22029321461085b578063c87b56dd1461087b578063ddceafa91461089b57600080fd5b8063a22cb465146107fb578063adfdeef91461081b578063b88d4fde1461083b57600080fd5b806380de96bf1161014e578063945cb1cb11610128578063945cb1cb146107a657806395d89b41146107c65780639b850d6e146107db57600080fd5b806380de96bf146107435780638da5cb5b146107635780638f15afbd1461078657600080fd5b8063708fcc3d1161017f578063708fcc3d146106f057806370a082311461070357806370e1f87b1461072357600080fd5b806361d027b3146106a85780636352211e146106c85780636992f91f146106e857600080fd5b80632a55205a116102695780634f6ccce7116102125780635c707f07116101ec5780635c707f07146106505780635c975abb146106705780635ec390d81461068857600080fd5b80634f6ccce7146105fd57806355f804b31461061d578063578ecb621461063d57600080fd5b80633a283bd2116102435780633a283bd21461057a57806342842e0e146105ad5780634334614a146105cd57600080fd5b80632a55205a146104fb5780632f745c591461053a5780633545b6871461055a57600080fd5b80630ccf2156116102cb57806318160ddd116102a557806318160ddd1461049c5780631ef80359146104bb57806323b872dd146104db57600080fd5b80630ccf2156146104145780630d895ee11461045c57806315cfb2cd1461047c57600080fd5b8063081812fc116102fc578063081812fc1461039c578063095ea7b3146103d45780630c222ee5146103f457600080fd5b806301ffc9a71461032357806302329a291461035857806306fdde031461037a575b600080fd5b34801561032f57600080fd5b5061034361033e3660046149fa565b610990565b60405190151581526020015b60405180910390f35b34801561036457600080fd5b50610378610373366004614998565b6109ec565b005b34801561038657600080fd5b5061038f610a6a565b60405161034f9190614f2a565b3480156103a857600080fd5b506103bc6103b7366004614caf565b610afc565b6040516001600160a01b03909116815260200161034f565b3480156103e057600080fd5b506103786103ef3660046148da565b610ba2565b34801561040057600080fd5b5061037861040f3660046148ae565b610cd4565b34801561042057600080fd5b50600f5461044990760100000000000000000000000000000000000000000000900461ffff1681565b60405161ffff909116815260200161034f565b34801561046857600080fd5b50610378610477366004614879565b610db3565b34801561048857600080fd5b50610378610497366004614c94565b610e72565b3480156104a857600080fd5b506008545b60405190815260200161034f565b3480156104c757600080fd5b506104ad6104d6366004614b15565b610f34565b3480156104e757600080fd5b506103786104f6366004614698565b61134d565b34801561050757600080fd5b5061051b610516366004614ced565b6113d4565b604080516001600160a01b03909316835260208301919091520161034f565b34801561054657600080fd5b506104ad6105553660046148da565b611413565b34801561056657600080fd5b506103bc6105753660046149b3565b6114bb565b34801561058657600080fd5b50600f54610343907501000000000000000000000000000000000000000000900460ff1681565b3480156105b957600080fd5b506103786105c8366004614698565b611652565b3480156105d957600080fd5b506103436105e8366004614642565b60136020526000908152604090205460ff1681565b34801561060957600080fd5b506104ad610618366004614caf565b61166d565b34801561062957600080fd5b50610378610638366004614a51565b611711565b61037861064b366004614b5a565b611788565b34801561065c57600080fd5b5061037861066b366004614a86565b611ab3565b34801561067c57600080fd5b50600a5460ff16610343565b34801561069457600080fd5b506103786106a3366004614998565b611b3a565b3480156106b457600080fd5b50600c546103bc906001600160a01b031681565b3480156106d457600080fd5b506103bc6106e3366004614caf565b611be5565b610378611c70565b6103786106fe366004614906565b611cd2565b34801561070f57600080fd5b506104ad61071e366004614642565b611fae565b34801561072f57600080fd5b5061037861073e366004614ae0565b612048565b34801561074f57600080fd5b5061034361075e366004614be2565b61213c565b34801561076f57600080fd5b50600a5461010090046001600160a01b03166103bc565b34801561079257600080fd5b506103786107a1366004614642565b612166565b3480156107b257600080fd5b506103436107c13660046147ca565b612200565b3480156107d257600080fd5b5061038f61228d565b3480156107e757600080fd5b506103786107f6366004614642565b61229c565b34801561080757600080fd5b50610378610816366004614879565b612336565b34801561082757600080fd5b50610378610836366004614642565b6123fb565b34801561084757600080fd5b506103786108563660046146d9565b612537565b34801561086757600080fd5b506104ad610876366004614745565b6125c5565b34801561088757600080fd5b5061038f610896366004614caf565b61287d565b3480156108a757600080fd5b50600b546103bc906001600160a01b031681565b3480156108c757600080fd5b5061038f612966565b3480156108dc57600080fd5b506103436108eb36600461465f565b6129b7565b3480156108fc57600080fd5b5061037861090b366004614642565b612aaf565b34801561091c57600080fd5b5061037861092b366004614642565b612bce565b34801561093c57600080fd5b5061037861094b366004614642565b612cbe565b34801561095c57600080fd5b5061037861096b366004614cc8565b612ddd565b34801561097c57600080fd5b5061037861098b366004614caf565b612fdb565b60007f2a55205a000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614806109e657506109e6826131cb565b92915050565b600a546001600160a01b03610100909104163314610a515760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e65720000000000000000000000000000000060448201526064015b60405180910390fd5b8015610a6257610a5f613221565b50565b610a5f6132c6565b606060008054610a7990615068565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa590615068565b8015610af25780601f10610ac757610100808354040283529160200191610af2565b820191906000526020600020905b815481529060010190602001808311610ad557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a48565b506000908152600460205260409020546001600160a01b031690565b6000610bad82611be5565b9050806001600160a01b0316836001600160a01b03161415610c375760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a48565b336001600160a01b0382161480610c535750610c5381336129b7565b610cc55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a48565b610ccf8383613349565b505050565b600a546001600160a01b03610100909104163314610d345760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b6127108161ffff161115610d4757600080fd5b600e80547fffffffffffffffffffff0000000000000000000000000000000000000000000016620100006001600160a01b0394909416939093027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000169290921761ffff91909116179055565b600a546001600160a01b03610100909104163314610e135760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527fd28dc1379d750c7c8137c7ef7b074f62f1361b9becc7f9d77d8c0d6e46a3cd06910160405180910390a25050565b600a546001600160a01b03610100909104163314610ed25760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b6127108161ffff161115610ee557600080fd5b600f805461ffff909216760100000000000000000000000000000000000000000000027fffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b81516000906001600160a01b0316610f8e5760405162461bcd60e51b815260206004820152600a60248201527f6d616b65722069732030000000000000000000000000000000000000000000006044820152606401610a48565b82602001516001600160a01b031683600001516001600160a01b03161415610ff85760405162461bcd60e51b815260206004820152601260248201527f73616d65206d616b6572202f2074616b657200000000000000000000000000006044820152606401610a48565b8260a00151421061104b5760405162461bcd60e51b815260206004820152600760248201527f65787069726564000000000000000000000000000000000000000000000000006044820152606401610a48565b6000836040015151118061106457506000836060015151115b6110b05760405162461bcd60e51b815260206004820152600660248201527f6e6f2069647300000000000000000000000000000000000000000000000000006044820152606401610a48565b81156111645760005b8360400151518110156111625783600001516001600160a01b03166110fa856040015183815181106110ed576110ed6151c5565b6020026020010151611be5565b6001600160a01b0316146111505760405162461bcd60e51b815260206004820152600d60248201527f626164206d616b657220696473000000000000000000000000000000000000006044820152606401610a48565b8061115a816150bc565b9150506110b9565b505b60208301516001600160a01b03166111ce57606083015151156111c95760405162461bcd60e51b815260206004820152601760248201527f74616b6572206964732077697468206e6f2074616b65720000000000000000006044820152606401610a48565b611275565b81156112755760005b8360600151518110156112735783602001516001600160a01b031661120b856060015183815181106110ed576110ed6151c5565b6001600160a01b0316146112615760405162461bcd60e51b815260206004820152600d60248201527f6261642074616b657220696473000000000000000000000000000000000000006044820152606401610a48565b8061126b816150bc565b9150506111d7565b505b8260000151836020015184604001516040516020016112949190614d76565b6040516020818303038152906040528051906020012085606001516040516020016112bf9190614d76565b60408051601f1981840301815282825280516020918201206080808b015160a0808d015160c0808f01516001600160a01b039c8d16978a01979097529a909916958701959095526060860196909652840152908201929092529283019190915260e0820152306101008201526101200160405160208183030381529060405280519060200120905092915050565b61135733826133cf565b6113c95760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a48565b610ccf8383836134b7565b600e5460009081906001600160a01b036201000082041690612710906113fe9061ffff1686614fe8565b6114089190614fd4565b915091509250929050565b600061141e83611fae565b82106114925760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610a48565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000815160411461150e5760405162461bcd60e51b815260206004820152601060248201527f7369672077726f6e67206c656e677468000000000000000000000000000000006044820152606401610a48565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101849052600090605c0160408051601f19818403018152918152815160209283012091850151908501516060860151929350909160001a601b81101561158857611585601b82614faf565b90505b8060ff16601b148061159d57508060ff16601c145b6115e95760405162461bcd60e51b815260206004820152600960248201527f62616420736967207600000000000000000000000000000000000000000000006044820152606401610a48565b60408051600081526020810180835286905260ff831691810191909152606081018490526080810183905260019060a0016020604051602081039080840390855afa15801561163c573d6000803e3d6000fd5b5050604051601f19015198975050505050505050565b610ccf83838360405180602001604052806000815250612537565b600061167860085490565b82106116ec5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610a48565b600882815481106116ff576116ff6151c5565b90600052602060002001549050919050565b600a546001600160a01b036101009091041633146117715760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b805161178490600d9060208401906143d2565b5050565b600f5474010000000000000000000000000000000000000000900460ff16156117f35760405162461bcd60e51b815260206004820152600960248201527f7265656e7472616e7400000000000000000000000000000000000000000000006044820152606401610a48565b600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000017905560006118428484600180346136a7565b905061184e8183613939565b3360005b8560400151518110156118ad5761189b8660000151838860400151848151811061187e5761187e6151c5565b6020026020010151604051806020016040528060008152506139b1565b806118a5816150bc565b915050611852565b5060005b8560600151518110156118ef576118dd8287600001518860600151848151811061187e5761187e6151c5565b806118e7816150bc565b9150506118b1565b506000828152601160205260408120805460ff191660011790553415611a2157600f546127109061193e90760100000000000000000000000000000000000000000000900461ffff1634614fe8565b6119489190614fd4565b905060006119568234615025565b905034811115801561197057503461196e8284614f97565b145b61197c5761197c615109565b86516040516000916001600160a01b03169083908381818185875af1925050503d80600081146119c8576040519150601f19603f3d011682016040523d82523d6000602084013e6119cd565b606091505b5050905080611a1e5760405162461bcd60e51b815260206004820152601760248201527f7061796d656e7420746f206d616b6572206661696c65640000000000000000006044820152606401610a48565b50505b816001600160a01b031686600001516001600160a01b0316847f9db12f62cd31155414a5f4e35083d1f6111e06a89feec6d8d9a222c80937621b89604001518a606001518b6080015187604051611a7b9493929190614ef1565b60405180910390a45050600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905550505050565b600a546001600160a01b03610100909104163314611b135760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b8151611b269060009060208501906143d2565b508051610ccf9060019060208401906143d2565b600a546001600160a01b03610100909104163314611b9a5760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b600f80549115157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000818152600260205260408120546001600160a01b0316806109e65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a48565b600a546001600160a01b03610100909104163314611cd05760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b565b600f5474010000000000000000000000000000000000000000900460ff1615611d3d5760405162461bcd60e51b815260206004820152600960248201527f7265656e7472616e7400000000000000000000000000000000000000000000006044820152606401610a48565b600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055611d93611d863390565b8888348989898989612200565b50611d9e8787613a3a565b6000806001600160a01b03861615611e9c578491506000866001600160a01b03168360405160006040518083038185875af1925050503d8060008114611e00576040519150601f19603f3d011682016040523d82523d6000602084013e611e05565b606091505b5050905080611e565760405162461bcd60e51b815260206004820152600f60248201527f70617920636f6d6d206661696c656400000000000000000000000000000000006044820152606401610a48565b60408051848152602081018b90526001600160a01b038916917f4810454a46b3b55af7f8915a8b8b454e79d03a0e315d41d8f9d2c20f1d04c6be910160405180910390a2505b6001600160a01b03841615611f6257611eb58234615025565b90508015611f62576000846001600160a01b03168260405160006040518083038185875af1925050503d8060008114611f0a576040519150601f19603f3d011682016040523d82523d6000602084013e611f0f565b606091505b5050905080611f605760405162461bcd60e51b815260206004820152600e60248201527f70617920666565206661696c65640000000000000000000000000000000000006044820152606401610a48565b505b34611f6d8284614f97565b1115611f7b57611f7b615109565b5050600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905550505050505050565b60006001600160a01b03821661202c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a48565b506001600160a01b031660009081526003602052604090205490565b805133906001600160a01b03168114806120745750600a546001600160a01b0382811661010090920416145b6120e65760405162461bcd60e51b815260206004820152602260248201527f63616c6c6572206e6f74206d616b6572206f7220636f6e7472616374206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610a48565b60006120f3836000610f34565b600081815260116020526040808220805460ff191660011790555191925082917f3f9cb69d022b6ec319f86f2df848bcce01f2fc51c9f86396779a8081cf6ca2ea9190a2505050565b60008061214c88888787876136a7565b90506121588187613939565b506001979650505050505050565b600a546001600160a01b036101009091041633146121c65760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b601080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000806122138b8b8b8b8b8b8b8b6125c5565b905061221f81846114bb565b6012546001600160a01b0390811691161461227c5760405162461bcd60e51b815260206004820152600860248201527f62616420686173680000000000000000000000000000000000000000000000006044820152606401610a48565b5060019a9950505050505050505050565b606060018054610a7990615068565b600a546001600160a01b036101009091041633146122fc5760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b601280547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6001600160a01b03821633141561238f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a48565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0361010090910416331461245b5760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b6001600160a01b038116156124fd576040517fc4552791000000000000000000000000000000000000000000000000000000008152600060048201526001600160a01b0382169063c45527919060240160206040518083038186803b1580156124c357600080fd5b505afa1580156124d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124fb9190614a34565b505b600f80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b61254133836133cf565b6125b35760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a48565b6125bf848484846139b1565b50505050565b6000868152600260205260408120546001600160a01b03161561262a5760405162461bcd60e51b815260206004820152600e60248201527f616c7265616479206d696e7465640000000000000000000000000000000000006044820152606401610a48565b6012546001600160a01b03166126825760405162461bcd60e51b815260206004820152600b60248201527f6d696e74696e67206f66660000000000000000000000000000000000000000006044820152606401610a48565b8442106126d15760405162461bcd60e51b815260206004820152600760248201527f65787069726564000000000000000000000000000000000000000000000000006044820152606401610a48565b6001600160a01b038416156127aa576000861180156126f05750600083115b80156126fc5750858311155b6127485760405162461bcd60e51b815260206004820152600860248201527f62616420636f6d6d0000000000000000000000000000000000000000000000006044820152606401610a48565b886001600160a01b0316846001600160a01b031614156127aa5760405162461bcd60e51b815260206004820152600960248201527f636f6d6d2073656c6600000000000000000000000000000000000000000000006044820152606401610a48565b6001600160a01b0382161561280957600086116128095760405162461bcd60e51b815260206004820152600c60248201527f666565546f206e6f2066656500000000000000000000000000000000000000006044820152606401610a48565b50604080516001600160a01b03998a16602080830191909152988a16818301526060810197909752608087019590955260a086019390935290861660c085015260e0840152909316610100820152306101208083019190915283518083039091018152610140909101909252815191012090565b6000818152600260205260409020546060906001600160a01b031661290a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a48565b6000612914613a54565b90506000815111612934576040518060200160405280600081525061295f565b8061293e84613a63565b60405160200161294f929190614dac565b6040516020818303038152906040525b9392505050565b60606000600d805461297790615068565b905011612991575060408051602081019091526000815290565b600d6040516020016129a39190614ddb565b604051602081830303815290604052905090565b600f546000906001600160a01b031615612a8157600f546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03858116600483015291821691841690829063c45527919060240160206040518083038186803b158015612a2e57600080fd5b505afa158015612a42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a669190614a34565b6001600160a01b03161415612a7f5760019150506109e6565b505b6001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff1661295f565b600a5461010090046001600160a01b03166001600160a01b0316336001600160a01b03161480612af25750600b546001600160a01b0316336001600160a01b0316145b612b3e5760405162461bcd60e51b815260206004820152601960248201527f63616c6c6572206e6f74206f776e65722f7265636f76657279000000000000006044820152606401610a48565b6001600160a01b038116612b945760405162461bcd60e51b815260206004820152600f60248201527f63616e74207573652030206164647200000000000000000000000000000000006044820152606401610a48565b600b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600a546001600160a01b03610100909104163314612c2e5760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b6001600160a01b038116612c845760405162461bcd60e51b815260206004820152600960248201527f30206164647265737300000000000000000000000000000000000000000000006044820152606401610a48565b600c80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600a5461010090046001600160a01b03166001600160a01b0316336001600160a01b03161480612d015750600b546001600160a01b0316336001600160a01b0316145b612d4d5760405162461bcd60e51b815260206004820152601960248201527f63616c6c6572206e6f74206f776e65722f7265636f76657279000000000000006044820152606401610a48565b6001600160a01b038116612da35760405162461bcd60e51b815260206004820152600f60248201527f63616e74207573652030206164647200000000000000000000000000000000006044820152606401610a48565b600a80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff166101006001600160a01b0384160217905550565b600f5474010000000000000000000000000000000000000000900460ff1615612e485760405162461bcd60e51b815260206004820152600960248201527f7265656e7472616e7400000000000000000000000000000000000000000000006044820152606401610a48565b600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556000612e9283611be5565b90506000612eae600a546001600160a01b036101009091041690565b9050816001600160a01b0316836001600160a01b031614612f115760405162461bcd60e51b815260206004820152600b60248201527f77726f6e67206f776e65720000000000000000000000000000000000000000006044820152606401610a48565b3360009081526013602052604090205460ff16151560011480612f585750806001600160a01b0316826001600160a01b0316148015612f5857506001600160a01b03811633145b612fa45760405162461bcd60e51b815260206004820152600a60248201527f6e6f7420617574686564000000000000000000000000000000000000000000006044820152606401610a48565b612fad84613b95565b5050600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555050565b600a546001600160a01b0361010090910416331461303b5760405162461bcd60e51b815260206004820152601060248201527f63616c6c6572206e6f74206f776e6572000000000000000000000000000000006044820152606401610a48565b600f5474010000000000000000000000000000000000000000900460ff16156130a65760405162461bcd60e51b815260206004820152600960248201527f7265656e7472616e7400000000000000000000000000000000000000000000006044820152606401610a48565b600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055478115806130f257508082115b156130fb578091505b600c546040516000916001600160a01b03169084908381818185875af1925050503d8060008114613148576040519150601f19603f3d011682016040523d82523d6000602084013e61314d565b606091505b505090508061319e5760405162461bcd60e51b815260206004820152600960248201527f63616c6c206661696c00000000000000000000000000000000000000000000006044820152606401610a48565b5050600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905550565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806109e657506109e682613c54565b600a5460ff16156132745760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610a48565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586132a93390565b6040516001600160a01b03909116815260200160405180910390a1565b600a5460ff166133185760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610a48565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336132a9565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061339682611be5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166134595760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a48565b600061346483611be5565b9050806001600160a01b0316846001600160a01b0316148061349f5750836001600160a01b031661349484610afc565b6001600160a01b0316145b806134af57506134af81856129b7565b949350505050565b826001600160a01b03166134ca82611be5565b6001600160a01b0316146135465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a48565b6001600160a01b0382166135c15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a48565b6135cc838383613d37565b6135d7600082613349565b6001600160a01b0383166000908152600360205260408120805460019290613600908490615025565b90915550506001600160a01b038216600090815260036020526040812080546001929061362e908490614f97565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806136b48786610f34565b905060006136c282886114bb565b9050806001600160a01b031688600001516001600160a01b0316146137295760405162461bcd60e51b815260206004820152601060248201527f6d616b6572206e6f74207369676e6572000000000000000000000000000000006044820152606401610a48565b60008281526011602052604090205460ff1615156001141561378d5760405162461bcd60e51b815260206004820152601c60248201527f6f666665722063616e63656c6c6564206f7220636f6d706c65746564000000006044820152606401610a48565b841561392e57600f5433907501000000000000000000000000000000000000000000900460ff16156138015760405162461bcd60e51b815260206004820152601260248201527f6d61726b6574706c6163652070617573656400000000000000000000000000006044820152606401610a48565b88516001600160a01b038281169116141561385e5760405162461bcd60e51b815260206004820152601360248201527f63616c6c657220697320746865206d616b6572000000000000000000000000006044820152606401610a48565b88602001516001600160a01b0316816001600160a01b0316148061388d575060208901516001600160a01b0316155b6138d95760405162461bcd60e51b815260206004820152601460248201527f63616c6c6572206e6f74207468652074616b65720000000000000000000000006044820152606401610a48565b8860800151851461392c5760405162461bcd60e51b815260206004820152601260248201527f77726f6e67207061796d656e742073656e7400000000000000000000000000006044820152606401610a48565b505b509695505050505050565b6010546001600160a01b0316156117845761395482826114bb565b6010546001600160a01b039081169116146117845760405162461bcd60e51b815260206004820152600d60248201527f77726f6e67207769746e657373000000000000000000000000000000000000006044820152606401610a48565b6139bc8484846134b7565b6139c884848484613dee565b6125bf5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a48565b611784828260405180602001604052806000815250613f9b565b6060600d8054610a7990615068565b606081613aa357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613acd5780613ab7816150bc565b9150613ac69050600a83614fd4565b9150613aa7565b60008167ffffffffffffffff811115613ae857613ae86151f4565b6040519080825280601f01601f191660200182016040528015613b12576020820181803683370190505b5090505b84156134af57613b27600183615025565b9150613b34600a866150f5565b613b3f906030614f97565b60f81b818381518110613b5457613b546151c5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613b8e600a86614fd4565b9450613b16565b6000613ba082611be5565b9050613bae81600084613d37565b613bb9600083613349565b6001600160a01b0381166000908152600360205260408120805460019290613be2908490615025565b909155505060008281526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480613ce757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109e657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146109e6565b6001600160a01b038216301415613d905760405162461bcd60e51b815260206004820152600e60248201527f746f20697320636f6e74726163740000000000000000000000000000000000006044820152606401610a48565b613d9b838383614024565b600a5460ff1615610ccf5760405162461bcd60e51b815260206004820152600f60248201527f636f6e74726163742070617573656400000000000000000000000000000000006044820152606401610a48565b60006001600160a01b0384163b15613f90576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290613e4b903390899088908890600401614eb5565b602060405180830381600087803b158015613e6557600080fd5b505af1925050508015613e95575060408051601f3d908101601f19168201909252613e9291810190614a17565b60015b613f45573d808015613ec3576040519150601f19603f3d011682016040523d82523d6000602084013e613ec8565b606091505b508051613f3d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a48565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506134af565b506001949350505050565b613fa583836140dc565b613fb26000848484613dee565b610ccf5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a48565b6001600160a01b03831661407f5761407a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6140a2565b816001600160a01b0316836001600160a01b0316146140a2576140a28382614242565b6001600160a01b0382166140b957610ccf816142df565b826001600160a01b0316826001600160a01b031614610ccf57610ccf828261438e565b6001600160a01b0382166141325760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a48565b6000818152600260205260409020546001600160a01b0316156141975760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a48565b6141a360008383613d37565b6001600160a01b03821660009081526003602052604081208054600192906141cc908490614f97565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161424f84611fae565b6142599190615025565b6000838152600760205260409020549091508082146142ac576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906142f190600190615025565b60008381526009602052604081205460088054939450909284908110614319576143196151c5565b90600052602060002001549050806008838154811061433a5761433a6151c5565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061437257614372615196565b6001900381819060005260206000200160009055905550505050565b600061439983611fae565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546143de90615068565b90600052602060002090601f0160209004810192826144005760008555614446565b82601f1061441957805160ff1916838001178555614446565b82800160010185558215614446579182015b8281111561444657825182559160200191906001019061442b565b50614452929150614456565b5090565b5b808211156144525760008155600101614457565b803561447681615223565b919050565b600082601f83011261448c57600080fd5b8135602067ffffffffffffffff8211156144a8576144a86151f4565b8160051b6144b7828201614f66565b8381528281019086840183880185018910156144d257600080fd5b600093505b858410156144f55780358352600193909301929184019184016144d7565b50979650505050505050565b8035801515811461447657600080fd5b600082601f83011261452257600080fd5b813567ffffffffffffffff81111561453c5761453c6151f4565b61454f6020601f19601f84011601614f66565b81815284602083860101111561456457600080fd5b816020850160208301376000918101602001919091529392505050565b600060e0828403121561459357600080fd5b61459b614f3d565b90506145a68261446b565b81526145b46020830161446b565b6020820152604082013567ffffffffffffffff808211156145d457600080fd5b6145e08583860161447b565b604084015260608401359150808211156145f957600080fd5b506146068482850161447b565b6060830152506080820135608082015260a082013560a082015260c082013560c082015292915050565b803561ffff8116811461447657600080fd5b60006020828403121561465457600080fd5b813561295f81615223565b6000806040838503121561467257600080fd5b823561467d81615223565b9150602083013561468d81615223565b809150509250929050565b6000806000606084860312156146ad57600080fd5b83356146b881615223565b925060208401356146c881615223565b929592945050506040919091013590565b600080600080608085870312156146ef57600080fd5b84356146fa81615223565b9350602085013561470a81615223565b925060408501359150606085013567ffffffffffffffff81111561472d57600080fd5b61473987828801614511565b91505092959194509250565b600080600080600080600080610100898b03121561476257600080fd5b883561476d81615223565b9750602089013561477d81615223565b965060408901359550606089013594506080890135935060a08901356147a281615223565b925060c0890135915060e08901356147b981615223565b809150509295985092959890939650565b60008060008060008060008060006101208a8c0312156147e957600080fd5b89356147f481615223565b985060208a013561480481615223565b975060408a0135965060608a0135955060808a0135945060a08a013561482981615223565b935060c08a0135925060e08a013561484081615223565b91506101008a013567ffffffffffffffff81111561485d57600080fd5b6148698c828d01614511565b9150509295985092959850929598565b6000806040838503121561488c57600080fd5b823561489781615223565b91506148a560208401614501565b90509250929050565b600080604083850312156148c157600080fd5b82356148cc81615223565b91506148a560208401614630565b600080604083850312156148ed57600080fd5b82356148f881615223565b946020939093013593505050565b600080600080600080600060e0888a03121561492157600080fd5b873561492c81615223565b96506020880135955060408801359450606088013561494a81615223565b93506080880135925060a088013561496181615223565b915060c088013567ffffffffffffffff81111561497d57600080fd5b6149898a828b01614511565b91505092959891949750929550565b6000602082840312156149aa57600080fd5b61295f82614501565b600080604083850312156149c657600080fd5b82359150602083013567ffffffffffffffff8111156149e457600080fd5b6149f085828601614511565b9150509250929050565b600060208284031215614a0c57600080fd5b813561295f81615238565b600060208284031215614a2957600080fd5b815161295f81615238565b600060208284031215614a4657600080fd5b815161295f81615223565b600060208284031215614a6357600080fd5b813567ffffffffffffffff811115614a7a57600080fd5b6134af84828501614511565b60008060408385031215614a9957600080fd5b823567ffffffffffffffff80821115614ab157600080fd5b614abd86838701614511565b93506020850135915080821115614ad357600080fd5b506149f085828601614511565b600060208284031215614af257600080fd5b813567ffffffffffffffff811115614b0957600080fd5b6134af84828501614581565b60008060408385031215614b2857600080fd5b823567ffffffffffffffff811115614b3f57600080fd5b614b4b85828601614581565b9250506148a560208401614501565b600080600060608486031215614b6f57600080fd5b833567ffffffffffffffff80821115614b8757600080fd5b614b9387838801614581565b94506020860135915080821115614ba957600080fd5b614bb587838801614511565b93506040860135915080821115614bcb57600080fd5b50614bd886828701614511565b9150509250925092565b60008060008060008060c08789031215614bfb57600080fd5b863567ffffffffffffffff80821115614c1357600080fd5b614c1f8a838b01614581565b97506020890135915080821115614c3557600080fd5b614c418a838b01614511565b96506040890135915080821115614c5757600080fd5b50614c6489828a01614511565b945050614c7360608801614501565b9250614c8160808801614501565b915060a087013590509295509295509295565b600060208284031215614ca657600080fd5b61295f82614630565b600060208284031215614cc157600080fd5b5035919050565b60008060408385031215614cdb57600080fd5b82359150602083013561468d81615223565b60008060408385031215614d0057600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b83811015614d3f57815187529582019590820190600101614d23565b509495945050505050565b60008151808452614d6281602086016020860161503c565b601f01601f19169290920160200192915050565b815160009082906020808601845b83811015614da057815185529382019390820190600101614d84565b50929695505050505050565b60008351614dbe81846020880161503c565b835190830190614dd281836020880161503c565b01949350505050565b600080835481600182811c915080831680614df757607f831692505b6020808410821415614e30577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b818015614e445760018114614e5557614e82565b60ff19861689528489019650614e82565b60008a81526020902060005b86811015614e7a5781548b820152908501908301614e61565b505084890196505b5050505050506134af817f636f6e7472616374000000000000000000000000000000000000000000000000815260080190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152614ee76080830184614d4a565b9695505050505050565b608081526000614f046080830187614d0f565b8281036020840152614f168187614d0f565b604084019590955250506060015292915050565b60208152600061295f6020830184614d4a565b60405160e0810167ffffffffffffffff81118282101715614f6057614f606151f4565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715614f8f57614f8f6151f4565b604052919050565b60008219821115614faa57614faa615138565b500190565b600060ff821660ff84168060ff03821115614fcc57614fcc615138565b019392505050565b600082614fe357614fe3615167565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561502057615020615138565b500290565b60008282101561503757615037615138565b500390565b60005b8381101561505757818101518382015260200161503f565b838111156125bf5750506000910152565b600181811c9082168061507c57607f821691505b602082108114156150b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150ee576150ee615138565b5060010190565b60008261510457615104615167565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6001600160a01b0381168114610a5f57600080fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610a5f57600080fdfea264697066735822122055dcb978cc422b216037be37043e23edca5e4164c81374c52006a79d7c22cf3f64736f6c63430008070033

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

000000000000000000000000b8e1b6e0e776d80a4f9ae2f7bf38f6c4ec6718390000000000000000000000005dd897c829b7f885f59f48115fa784e31eec9ed1000000000000000000000000b067079fe999ecec5c9af10de6554ec6efe7ffc6000000000000000000000000beef050f8156e2a31a8cde8c8e13fa38c5a5f726000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : _owner (address): 0xB8E1B6e0E776D80A4F9aE2f7Bf38F6C4EC671839
Arg [1] : _recovery (address): 0x5dd897C829B7F885f59f48115Fa784e31eEC9Ed1
Arg [2] : _treasury (address): 0xB067079FE999ECEC5c9af10de6554Ec6efE7FFC6
Arg [3] : _mmarshal (address): 0xBEEF050F8156e2A31A8CDe8C8e13fa38C5A5f726
Arg [4] : _proxyRegistry (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000b8e1b6e0e776d80a4f9ae2f7bf38f6c4ec671839
Arg [1] : 0000000000000000000000005dd897c829b7f885f59f48115fa784e31eec9ed1
Arg [2] : 000000000000000000000000b067079fe999ecec5c9af10de6554ec6efe7ffc6
Arg [3] : 000000000000000000000000beef050f8156e2a31a8cde8c8e13fa38c5a5f726
Arg [4] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1


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.