ETH Price: $2,536.11 (-0.11%)

Token

ANGRYDOLPHGEN0 (AD0)
 

Overview

Max Total Supply

300 AD0

Holders

184

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 AD0
0xD827745B4Cc5D206A3116049AC4FbC3616939d79
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:
ADSG

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : AngryDolphinsGen0.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol";
import "./ERC721s.sol";
import "./SignedAllowance.sol";

/// @title Angry Dolphins Sea Genesis
/// @author of the contract filio.eth (twitter.com/filmakarov)

contract ADSG is ERC721s, Ownable, SignedAllowance {  

using Strings for uint256;

    /*///////////////////////////////////////////////////////////////
                            GENERAL STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 private constant MAX_ITEMS = 300;

    string public baseURI;
    string private unrevealedURI;

    bool public revealState;
    bool public mintState;

    /*///////////////////////////////////////////////////////////////
                            EIP-2612-LIKE STORAGE
    //////////////////////////////////////////////////////////////*/
    
    bytes32 public constant PERMIT_TYPEHASH =
        keccak256("Permit(address spender,uint256 tokenId,uint256 nonce,uint256 deadline)");

    bytes32 public constant PERMIT_ALL_TYPEHASH = 
        keccak256("Permit(address operator,uint256 nonce,uint256 deadline)");

    uint256 internal immutable INITIAL_CHAIN_ID;

    bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR;

    mapping(uint256 => uint256) public nonces;
    mapping(address => mapping(address => uint256)) public noncesForAll;

    /*///////////////////////////////////////////////////////////////
                              CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(string memory _myBase, string memory _unrevBase) ERC721s("ANGRYDOLPHGEN0", "AD0") {
        baseURI = _myBase; 
        unrevealedURI = _unrevBase;
        INITIAL_CHAIN_ID = block.chainid;
        INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator();      
    }

    function _startTokenIndex() internal pure override returns (uint256) {
        return 1;
    }

    /*///////////////////////////////////////////////////////////////
                        MINTING LOGIC
    //////////////////////////////////////////////////////////////*/

    
    function mint(address to, uint256 nonce, bytes memory signature) public {
        require (mintState, "Mint not active");

        //_mintQty is stored in the right-most 128 bits of the nonce
        uint256 qty = uint256(uint128(nonce));
 
        require(totalMinted() + qty <= MAX_ITEMS, ">MaxSupply");
        
        // this will throw if the allowance has already been used or is not valid
        _useAllowance(to, nonce, signature);

        _safeMint(to, qty); 
    }

    function adminMint(address to, uint256 qty) public onlyOwner {
        require(totalMinted() + qty <= MAX_ITEMS, ">MaxSupply");
        _safeMint(to, qty);
    }

     /*///////////////////////////////////////////////////////////////
                       LOCKING LOGIC (ERC721S)
    //////////////////////////////////////////////////////////////*/
        
    function lock(address unlocker, uint256 id) public {
        address tokenOwner = ownerOf(id);
        require(msg.sender == tokenOwner || msg.sender == getApproved[id] || isApprovedForAll[tokenOwner][msg.sender]
        , "NOT_AUTHORIZED");
        require(getLocked[id] == address(0), "ALREADY_LOCKED"); 
        _lock(unlocker, id);
    }

    function unlock(uint256 id) public {
        require(msg.sender == getLocked[id], "NOT_UNLOCKER");
        _unlock(id);
    }

    /*///////////////////////////////////////////////////////////////
                            EIP-2612-LIKE LOGIC
    //////////////////////////////////////////////////////////////*/
    
    function permit(
        address signer,
        address spender,
        uint256 tokenId,
        uint256 deadline,
        bytes memory sig
    ) public virtual {
        require(block.timestamp <= deadline, "PERMIT_DEADLINE_EXPIRED");
        
        address ownerOfToken = ownerOf(tokenId);
        
        // Unchecked because the only math done is incrementing
        // the nonce which cannot realistically overflow.
        unchecked {
            bytes32 digest = keccak256(
                abi.encodePacked(
                    "\x19\x01",
                    DOMAIN_SEPARATOR(),
                    keccak256(abi.encode(PERMIT_TYPEHASH, spender, tokenId, nonces[tokenId]++, deadline))
                )
            );

            require(SignatureChecker.isValidSignatureNow(signer, digest, sig), "INVALID_SIGNATURE");

            //signature is good, now should check if signer had rights to approve this token
            require(signer == ownerOfToken || isApprovedForAll[ownerOfToken][signer], "INVALID_SIGNER"); 
        }
        
        getApproved[tokenId] = spender;

        emit Approval(ownerOfToken, spender, tokenId);
    }

    // having permit for all can make purchases cheaper for buyers in future, when marketplace can consume only one 
    // permitAll from buyer to all the tokens from given collection, and all next orders won't need to call permit() 
    // for every new token purchase, so buyers won't pay gas for that call
    // this can be more dangerous for seller btw, to approve All of his tokens to the marketplace instead of per token approvals
    function permitAll(
        address signer,
        address operator,
        uint256 deadline,
        bytes memory sig
    ) public virtual {
        require(block.timestamp <= deadline, "PERMIT_DEADLINE_EXPIRED");
        
        // Unchecked because the only math done is incrementing
        // the owner's nonce which cannot realistically overflow.
        unchecked {
            bytes32 digest = keccak256(
                abi.encodePacked(
                    "\x19\x01",
                    DOMAIN_SEPARATOR(),
                    keccak256(abi.encode(PERMIT_ALL_TYPEHASH, operator, noncesForAll[signer][operator]++, deadline))
                )
            );

            require(SignatureChecker.isValidSignatureNow(signer, digest, sig), "INVALID_SIGNATURE");
        }
        
        // no need to check any kind of ownerships because we always approve operator on behalf of signer,
        // not on behalf of any other owner
        // that does not allow current operators to make isApprovedForAll[owner][one_more_operator] = true
        // but current operator can still aprove explicit tokens with permit(), that is enough I guess
        // and better for security
        isApprovedForAll[signer][operator] = true;

        emit ApprovalForAll(signer, operator, true);
    }

    function DOMAIN_SEPARATOR() public view virtual returns (bytes32 domainSeparator) {
        domainSeparator = block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator();
    }

    function computeDomainSeparator() internal view virtual returns (bytes32 domainSeparator) {
        domainSeparator = keccak256(
            abi.encode(
                keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
                keccak256(bytes(name)),
                keccak256(bytes("1")),
                block.chainid,
                address(this)
            )
        );
    }

    /*///////////////////////////////////////////////////////////////
                       PUBLIC METADATA VIEWS
    //////////////////////////////////////////////////////////////*/

    /// @notice Returns the link to the metadata for the token
    /// @param tokenId token ID
    /// @return string with the link
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "NOT_EXISTS");
        if (revealState) {
            return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
        } else {
            return unrevealedURI;
        }
    }

    /// @notice Iterates over all the exisitng tokens and checks if they belong to the user
    /// This function uses very much resources.
    /// !!! NEVER USE this function with write transactions DIRECTLY. 
    /// Only read from it and then pass data to the write tx
    /// @param tokenOwner user to get tokens of
    /// @return the array of token IDs 
    function tokensOfOwner(address tokenOwner) external view returns(uint256[] memory) {
        uint256 tokenCount = _balanceOf[tokenOwner];
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 resultIndex = 0;
            uint256 NFTId;
            for (NFTId = _startTokenIndex(); NFTId < nextTokenIndex; NFTId++) { 
                if (_exists(NFTId)&&(ownerOf(NFTId) == tokenOwner)) {  
                    result[resultIndex] = NFTId;
                    resultIndex++;
                } 
            }     
            return result;
        }
    }

    function unclaimedSupply() public view returns (uint256) {
        return MAX_ITEMS - totalMinted();
    }

    /*///////////////////////////////////////////////////////////////
                       ADMIN FUNCTIONS
    //////////////////////////////////////////////////////////////*/

    function switchMintState() public onlyOwner {
        mintState = !mintState;
    }

    function setRevealState(bool _revealState) public onlyOwner {
        revealState = _revealState;
    }
    
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setUnrevURI(string memory _newUnrevURI) public onlyOwner {
        unrevealedURI = _newUnrevURI;
    }

    /// @notice sets allowance signer, this can be used to revoke all unused allowances already out there
    /// @param newSigner the new signer
    function setAllowancesSigner(address newSigner) external onlyOwner {
        _setAllowancesSigner(newSigner);
    }

    /*///////////////////////////////////////////////////////////////
                       ERC721Receiver interface compatibility
    //////////////////////////////////////////////////////////////*/

    function onERC721Received(
    address, 
    address, 
    uint256, 
    bytes calldata
    ) external pure returns(bytes4) {
        return bytes4(keccak256("I do not receive ERC721"));
    } 

}

//   That's all, folks!

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 10 : SignatureChecker.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/SignatureChecker.sol)

pragma solidity ^0.8.0;

import "./ECDSA.sol";
import "../Address.sol";
import "../../interfaces/IERC1271.sol";

/**
 * @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA
 * signatures from externally owned accounts (EOAs) as well as ERC1271 signatures from smart contract wallets like
 * Argent and Gnosis Safe.
 *
 * _Available since v4.1._
 */
library SignatureChecker {
    /**
     * @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the
     * signature is validated against that smart contract using ERC1271, otherwise it's validated using `ECDSA.recover`.
     *
     * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus
     * change through time. It could return true at block N and false at block N+1 (or the opposite).
     */
    function isValidSignatureNow(
        address signer,
        bytes32 hash,
        bytes memory signature
    ) internal view returns (bool) {
        (address recovered, ECDSA.RecoverError error) = ECDSA.tryRecover(hash, signature);
        if (error == ECDSA.RecoverError.NoError && recovered == signer) {
            return true;
        }

        (bool success, bytes memory result) = signer.staticcall(
            abi.encodeWithSelector(IERC1271.isValidSignature.selector, hash, signature)
        );
        return (success && result.length == 32 && abi.decode(result, (bytes4)) == IERC1271.isValidSignature.selector);
    }
}

File 5 of 10 : ERC721s.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;

/// @title ERC721s
/// @notice Improvement to ERC721 standard, that introduces lockable NFTs. 
/// @notice Based on Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC721.sol)
/// @notice The concept of recording only the first owner for the batch taken from ERC721A standard by Chiru Labs
/// @author filio.eth (https://twitter.com/filmakarov)

abstract contract ERC721s {
    /*///////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    event Transfer(address indexed _from, address indexed _to, uint256 indexed _id);

    event Approval(address indexed owner, address indexed spender, uint256 indexed id);

    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /*///////////////////////////////////////////////////////////////
                          METADATA STORAGE/LOGIC
    //////////////////////////////////////////////////////////////*/

    string public name;

    string public symbol;

    function tokenURI(uint256 id) public view virtual returns (string memory);

    /*///////////////////////////////////////////////////////////////
                            ERC721 STORAGE                        
    //////////////////////////////////////////////////////////////*/

    uint256 public nextTokenIndex;
    mapping(uint256 => address) public owners;
    mapping(uint256 => address) public getApproved;
    mapping(address => mapping(address => bool)) public isApprovedForAll;
    mapping(uint256 => bool) public isBurned;
    uint256 public burnedCounter;

    mapping(address => uint256) internal _balanceOf;

    function balanceOf(address owner) public view virtual returns (uint256) {
        require(owner != address(0), "ZERO_ADDRESS");

        return _balanceOf[owner];
    }

    /*///////////////////////////////////////////////////////////////
                            ERC721s STORAGE                        
    //////////////////////////////////////////////////////////////*/

    mapping(uint256 => address) public getLocked;

    /*///////////////////////////////////////////////////////////////
                              CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(string memory _name, string memory _symbol) {
        name = _name;
        symbol = _symbol;
        nextTokenIndex = _startTokenIndex();
    }

    /*///////////////////////////////////////////////////////////////
                              ERC721s LOGIC
    //////////////////////////////////////////////////////////////*/
    
    function _lock(address unlocker, uint256 id) internal virtual {
        getLocked[id] = unlocker;
    }

    function _unlock(uint256 id) internal virtual {
        getLocked[id] = address(0);
    }

    /*///////////////////////////////////////////////////////////////
                              ERC721 LOGIC
    //////////////////////////////////////////////////////////////*/

    function approve(address spender, uint256 id) public virtual {
        address owner = ownerOf(id);

        require(msg.sender == owner || isApprovedForAll[owner][msg.sender], "NOT_AUTHORIZED");
        getApproved[id] = spender;
        emit Approval(owner, spender, id);
    }

    function setApprovalForAll(address operator, bool approved) public virtual {
        isApprovedForAll[msg.sender][operator] = approved;
        emit ApprovalForAll(msg.sender, operator, approved);
    }

    function transferFrom(
        address from,
        address to,
        uint256 id
    ) public virtual {
        
        require(from == ownerOf(id), "WRONG_FROM");
        require(to != address(0), "INVALID_RECIPIENT");

        // token should not be locked or msg sender should be unlocker
        require(getLocked[id] == address(0) || msg.sender == getLocked[id], "LOCKED");

        // msg.sender should be authorized to transfer
        // i.e. msg.sender should be owner, approved or unlocker
        require(
            msg.sender == getLocked[id] || msg.sender == from || 
            msg.sender == getApproved[id] || isApprovedForAll[from][msg.sender], 
            "NOT_AUTHORIZED"
        );

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _balanceOf[from]--;
            _balanceOf[to]++;
        }

        owners[id] = to;
        uint256 nextId = id+1;

        //to prevent new owner to become the owner of next tokens in the batch 
        if (owners[nextId] == address(0)) {  //if that was not the last token of batch
            if (_exists(nextId)) { //and the next token exists (was minted) and has not been burned
                owners[nextId] = from; //explicitly set the owner for that token
            }
        }

        delete getApproved[id];
        delete getLocked[id];

        emit Transfer(from, to, id);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 id
    ) public virtual {
        transferFrom(from, to, id);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, from, id, "") ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        bytes calldata data
    ) public virtual {
        transferFrom(from, to, id);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, from, id, data) ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    function _exists(uint256 id) internal view returns (bool) {
        return (id < nextTokenIndex && !isBurned[id] && id >= _startTokenIndex());
    }

    function totalSupply() public view returns (uint256) {
        return totalMinted() - burnedCounter;
    }

    function totalMinted() public view returns (uint256) {
        return nextTokenIndex - _startTokenIndex();
    }

    /*///////////////////////////////////////////////////////////////
                              CUSTOM OwnerOf FOR BATCH MINTING
    //////////////////////////////////////////////////////////////*/

    function ownerOf(uint256 id) public view returns (address) {
        require(_exists(id), "NOT_MINTED_YET_OR_BURNED");

        unchecked {
            for (uint256 curr = id; curr >=0; curr--) {
                if (owners[curr] != address(0)) {
                    return owners[curr];
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /*///////////////////////////////////////////////////////////////
                              ERC165 LOGIC
    //////////////////////////////////////////////////////////////*/

    function supportsInterface(bytes4 interfaceId) public pure virtual returns (bool) {
        return
            interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165
            interfaceId == 0x80ac58cd || // ERC165 Interface ID for ERC721
            interfaceId == 0x5b5e139f; // ERC165 Interface ID for ERC721Metadata
    }

    /*///////////////////////////////////////////////////////////////
                       INTERNAL MINT/BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     * Inspired by ERC721A
     */
    function _startTokenIndex() internal view virtual returns (uint256) {
        return 0;
    }

    function _mint(address to, uint256 qty) internal virtual {
        require(to != address(0), "INVALID_RECIPIENT");
        require(qty != 0, "CAN_NOT_MINT_0");

        uint256 startTokenIndex = nextTokenIndex;

        // put just the first owner in the batch
        owners[nextTokenIndex]=to;

        // Counter overflow is incredibly unrealistic here.
        unchecked {
                nextTokenIndex += qty;
            }
          
        //balanceOf change thru assembly
        assembly {
            mstore(0, to)
            mstore(32, _balanceOf.slot)
            let hash := keccak256(0, 64)
            sstore(hash, add(sload(hash), qty))
        } 

        for (uint256 i=startTokenIndex; i<nextTokenIndex; i++) {
            emit Transfer(address(0), to, i);
        }
    }

    function _burn(uint256 id) internal virtual {
        address owner = ownerOf(id);
        require(owner != address(0), "NOT_MINTED");

        // Ownership check above ensures no underflow.
        unchecked {
            _balanceOf[owner]--;
        }
        delete owners[id];
        isBurned[id] = true;
        burnedCounter++;

        uint256 nextId = id+1;
        if (owners[nextId] == address(0)) {  //if that was not the last token of batch
            if (_exists(nextId)) { //and the next token exists (was minted) and has not been burned
                owners[nextId] = owner; //explicitly set the owner for that token
            }
        }

        delete getApproved[id];
        delete getLocked[id];

        emit Transfer(owner, address(0), id);
    }
    

    /*///////////////////////////////////////////////////////////////
                       INTERNAL SAFE MINT LOGIC
    //////////////////////////////////////////////////////////////*/

    function _safeMint(address to, uint256 qty) internal virtual {
        _mint(to, qty);
        
        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, address(0), nextTokenIndex-qty, "") ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    function _safeMint(
        address to,
        uint256 qty,
        bytes memory data
    ) internal virtual {
        _mint(to, qty);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, address(0), nextTokenIndex-qty, data) ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

}

/// @notice A generic interface for a contract which properly accepts ERC721 tokens.
/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC721.sol)
abstract contract ERC721TokenReceiver {
    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external virtual returns (bytes4) {
        return ERC721TokenReceiver.onERC721Received.selector;
    }
}

File 6 of 10 : SignedAllowance.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

import '@openzeppelin/contracts/utils/cryptography/ECDSA.sol';

/// @title SignedAllowance
/// @author Simon Fremaux (@dievardump)
contract SignedAllowance {
    using ECDSA for bytes32;

    // list of already used allowances
    mapping(bytes32 => bool) public usedAllowances;

    // address used to sign the allowances
    address private _allowancesSigner;

    /// @notice Helper to know allowancesSigner address
    /// @return the allowance signer address
    function allowancesSigner() public view virtual returns (address) {
        return _allowancesSigner;
    }

    /// @notice Helper that creates the message that signer needs to sign to allow a mint
    ///         this is usually also used when creating the allowances, to ensure "message"
    ///         is the same
    /// @param account the account to allow
    /// @param nonce the nonce
    /// @return the message to sign
    function createMessage(address account, uint256 nonce)
        public
        view
        returns (bytes32)
    {
        return keccak256(abi.encode(account, nonce, address(this)));
    }

    /// @notice Helper that creates a list of messages that signer needs to sign to allow mintings
    /// @param accounts the accounts to allow
    /// @param nonces the corresponding nonces
    /// @return messages the messages to sign
  /*  
    // function is commented out to save space in the contract
    // to batch create message will need to use for loop with the createMessage function

    function createMessages(address[] memory accounts, uint256[] memory nonces)
        external
        view
        returns (bytes32[] memory messages)
    {
        require(accounts.length == nonces.length, '!LENGTH_MISMATCH!');
        messages = new bytes32[](accounts.length);
        for (uint256 i; i < accounts.length; i++) {
            messages[i] = createMessage(accounts[i], nonces[i]);
        }
    } */

    /// @notice This function verifies that the current request is valid
    /// @dev It ensures that _allowancesSigner signed a message containing (account, nonce, address(this))
    ///      and that this message was not already used
    /// @param account the account the allowance is associated to
    /// @param nonce the nonce associated to this allowance
    /// @param signature the signature by the allowance signer wallet
    /// @return the message to mark as used
    function validateSignature(
        address account,
        uint256 nonce,
        bytes memory signature
    ) public view returns (bytes32) {
        return
            _validateSignature(account, nonce, signature, allowancesSigner());
    }

    /// @dev It ensures that signer signed a message containing (account, nonce, address(this))
    ///      and that this message was not already used
    /// @param account the account the allowance is associated to
    /// @param nonce the nonce associated to this allowance
    /// @param signature the signature by the allowance signer wallet
    /// @param signer the signer
    /// @return the message to mark as used
    function _validateSignature(
        address account,
        uint256 nonce,
        bytes memory signature,
        address signer
    ) internal view returns (bytes32) {
        bytes32 message = createMessage(account, nonce)
            .toEthSignedMessageHash();

        // verifies that the sha3(account, nonce, address(this)) has been signed by signer
        require(message.recover(signature) == signer, '!INVALID_SIGNATURE!');

        // verifies that the allowances was not already used
        require(usedAllowances[message] == false, '!ALREADY_USED!');

        return message;
    }

    /// @notice internal function that verifies an allowance and marks it as used
    ///         this function throws if signature is wrong or this nonce for this user has already been used
    /// @param account the account the allowance is associated to
    /// @param nonce the nonce
    /// @param signature the signature by the allowance wallet
    function _useAllowance(
        address account,
        uint256 nonce,
        bytes memory signature
    ) internal {
        bytes32 message = validateSignature(account, nonce, signature);
        usedAllowances[message] = true;
    }

    /// @notice Allows to change the allowance signer. This can be used to revoke any signed allowance not already used
    /// @param newSigner the new signer address
    function _setAllowancesSigner(address newSigner) internal {
        _allowancesSigner = newSigner;
    }
}

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

pragma solidity ^0.8.0;

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

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

File 8 of 10 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC1271 standard signature validation method for
 * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271].
 *
 * _Available since v4.1._
 */
interface IERC1271 {
    /**
     * @dev Should return whether the signature provided is valid for the provided data
     * @param hash      Hash of the data to be signed
     * @param signature Signature byte array associated with _data
     */
    function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_myBase","type":"string"},{"internalType":"string","name":"_unrevBase","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"domainSeparator","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_ALL_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowancesSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnedCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"createMessage","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getLocked","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isBurned","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"unlocker","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"noncesForAll","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"owners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"permitAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","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":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"setAllowancesSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealState","type":"bool"}],"name":"setRevealState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUnrevURI","type":"string"}],"name":"setUnrevURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"switchMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","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":"unclaimedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"usedAllowances","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"validateSignature","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}]

60c06040523480156200001157600080fd5b506040516200633e3803806200633e833981810160405281019062000037919062000536565b6040518060400160405280600e81526020017f414e475259444f4c504847454e300000000000000000000000000000000000008152506040518060400160405280600381526020017f41443000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb929190620002e9565b508060019080519060200190620000d4929190620002e9565b50620000e56200016660201b60201c565b60028190555050506200010d620001016200016f60201b60201c565b6200017760201b60201c565b81600d908051906020019062000125929190620002e9565b5080600e90805190602001906200013e929190620002e9565b504660808181525050620001576200023d60201b60201c565b60a081815250505050620007bc565b60006001905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6000604051620002719190620006cb565b60405180910390206040518060400160405280600181526020017f3100000000000000000000000000000000000000000000000000000000000000815250805190602001204630604051602001620002ce9594939291906200075f565b60405160208183030381529060405280519060200120905090565b828054620002f790620005ea565b90600052602060002090601f0160209004810192826200031b576000855562000367565b82601f106200033657805160ff191683800117855562000367565b8280016001018555821562000367579182015b828111156200036657825182559160200191906001019062000349565b5b5090506200037691906200037a565b5090565b5b80821115620003955760008160009055506001016200037b565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200040282620003b7565b810181811067ffffffffffffffff82111715620004245762000423620003c8565b5b80604052505050565b60006200043962000399565b9050620004478282620003f7565b919050565b600067ffffffffffffffff8211156200046a5762000469620003c8565b5b6200047582620003b7565b9050602081019050919050565b60005b83811015620004a257808201518184015260208101905062000485565b83811115620004b2576000848401525b50505050565b6000620004cf620004c9846200044c565b6200042d565b905082815260208101848484011115620004ee57620004ed620003b2565b5b620004fb84828562000482565b509392505050565b600082601f8301126200051b576200051a620003ad565b5b81516200052d848260208601620004b8565b91505092915050565b6000806040838503121562000550576200054f620003a3565b5b600083015167ffffffffffffffff811115620005715762000570620003a8565b5b6200057f8582860162000503565b925050602083015167ffffffffffffffff811115620005a357620005a2620003a8565b5b620005b18582860162000503565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200060357607f821691505b602082108114156200061a5762000619620005bb565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546200064f81620005ea565b6200065b818662000620565b945060018216600081146200067957600181146200068b57620006c2565b60ff19831686528186019350620006c2565b62000696856200062b565b60005b83811015620006ba5781548189015260018201915060208101905062000699565b838801955050505b50505092915050565b6000620006d9828462000640565b915081905092915050565b6000819050919050565b620006f981620006e4565b82525050565b6000819050919050565b6200071481620006ff565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000747826200071a565b9050919050565b62000759816200073a565b82525050565b600060a082019050620007766000830188620006ee565b620007856020830187620006ee565b620007946040830186620006ee565b620007a3606083018562000709565b620007b260808301846200074e565b9695505050505050565b60805160a051615b5c620007e26000396000611694015260006116600152615b5c6000f3fe608060405234801561001057600080fd5b50600436106102bb5760003560e01c806370a0823111610182578063a2309ff8116100e9578063cdb712d8116100a2578063e58306f91161007c578063e58306f9146108be578063e985e9c5146108da578063f2fde38b1461090a578063feff199914610926576102bb565b8063cdb712d814610854578063d6056e9b14610872578063db44fe071461088e576102bb565b8063a2309ff81461077e578063b4e13c8d1461079c578063b88d4fde146107ba578063c051e38a146107d6578063c194afca146107f4578063c87b56dd14610824576102bb565b80638b2e98091161013b5780638b2e9809146106d25780638da5cb5b146106ee57806394d008ef1461070c57806395d89b41146107285780639fd5a6cf14610746578063a22cb46514610762576102bb565b806370a08231146105fe578063715018a61461062e578063841bfb27146106385780638462151c146106545780638838b5c314610684578063890621da146106a2576102bb565b8063282d3fdf11610226578063522439ef116101df578063522439ef1461053c57806355f804b31461055a5780635afefc09146105765780636198e339146105945780636352211e146105b05780636c0360eb146105e0576102bb565b8063282d3fdf1461048e57806330adf81f146104aa5780633644e515146104c857806336bf9e30146104e65780633b035df6146104f057806342842e0e14610520576102bb565b8063141a468c11610278578063141a468c146103a8578063150b7a02146103d857806318160ddd14610408578063195e8708146104265780632073447d1461045657806323b872dd14610472576102bb565b806301ffc9a7146102c0578063025e7c27146102f057806306fdde0314610320578063081812fc1461033e578063095ea7b31461036e578063131f5d051461038a575b600080fd5b6102da60048036038101906102d59190613d29565b610956565b6040516102e79190613d71565b60405180910390f35b61030a60048036038101906103059190613dc2565b6109e8565b6040516103179190613e30565b60405180910390f35b610328610a1b565b6040516103359190613ee4565b60405180910390f35b61035860048036038101906103539190613dc2565b610aa9565b6040516103659190613e30565b60405180910390f35b61038860048036038101906103839190613f32565b610adc565b005b610392610c9a565b60405161039f9190613d71565b60405180910390f35b6103c260048036038101906103bd9190613dc2565b610cad565b6040516103cf9190613f81565b60405180910390f35b6103f260048036038101906103ed9190614001565b610cc5565b6040516103ff9190614098565b60405180910390f35b610410610cf3565b60405161041d9190613f81565b60405180910390f35b610440600480360381019061043b91906140e9565b610d0f565b60405161044d9190613d71565b60405180910390f35b610470600480360381019061046b9190614116565b610d2f565b005b61048c60048036038101906104879190614143565b610db7565b005b6104a860048036038101906104a39190613f32565b611412565b005b6104b2611638565b6040516104bf91906141a5565b60405180910390f35b6104d061165c565b6040516104dd91906141a5565b60405180910390f35b6104ee6116b9565b005b61050a60048036038101906105059190613dc2565b611761565b6040516105179190613e30565b60405180910390f35b61053a60048036038101906105359190614143565b611794565b005b6105446118cc565b6040516105519190613f81565b60405180910390f35b610574600480360381019061056f91906142f0565b6118d2565b005b61057e611968565b60405161058b9190613f81565b60405180910390f35b6105ae60048036038101906105a99190613dc2565b611984565b005b6105ca60048036038101906105c59190613dc2565b611a31565b6040516105d79190613e30565b60405180910390f35b6105e8611b7b565b6040516105f59190613ee4565b60405180910390f35b61061860048036038101906106139190614116565b611c09565b6040516106259190613f81565b60405180910390f35b610636611cc1565b005b610652600480360381019061064d91906142f0565b611d49565b005b61066e60048036038101906106699190614116565b611ddf565b60405161067b91906143f7565b60405180910390f35b61068c611f81565b6040516106999190613e30565b60405180910390f35b6106bc60048036038101906106b791906144ba565b611fab565b6040516106c991906141a5565b60405180910390f35b6106ec60048036038101906106e79190614555565b611fc9565b005b6106f6612062565b6040516107039190613e30565b60405180910390f35b610726600480360381019061072191906144ba565b61208c565b005b610730612164565b60405161073d9190613ee4565b60405180910390f35b610760600480360381019061075b9190614582565b6121f2565b005b61077c60048036038101906107779190614619565b6124e4565b005b6107866125e1565b6040516107939190613f81565b60405180910390f35b6107a46125fd565b6040516107b191906141a5565b60405180910390f35b6107d460048036038101906107cf9190614001565b612621565b005b6107de61275f565b6040516107eb9190613d71565b60405180910390f35b61080e60048036038101906108099190614659565b612772565b60405161081b9190613f81565b60405180910390f35b61083e60048036038101906108399190613dc2565b612797565b60405161084b9190613ee4565b60405180910390f35b61085c6128bb565b6040516108699190613f81565b60405180910390f35b61088c60048036038101906108879190614699565b6128c1565b005b6108a860048036038101906108a39190613dc2565b612b5a565b6040516108b59190613d71565b60405180910390f35b6108d860048036038101906108d39190613f32565b612b7a565b005b6108f460048036038101906108ef9190614659565b612c5b565b6040516109019190613d71565b60405180910390f35b610924600480360381019061091f9190614116565b612c8a565b005b610940600480360381019061093b9190613f32565b612d82565b60405161094d91906141a5565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109b157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60036020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054610a289061474b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a549061474b565b8015610aa15780601f10610a7657610100808354040283529160200191610aa1565b820191906000526020600020905b815481529060010190602001808311610a8457829003601f168201915b505050505081565b60046020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610ae782611a31565b90508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ba95750600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf906147c9565b60405180910390fd5b826004600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f60009054906101000a900460ff1681565b60106020528060005260406000206000915090505481565b60007f076da4d9c24844193769905d464af7887f9d147706fec0e494242596fc6c898f905095945050505050565b6000600754610d006125e1565b610d0a9190614818565b905090565b600b6020528060005260406000206000915054906101000a900460ff1681565b610d37612db7565b73ffffffffffffffffffffffffffffffffffffffff16610d55612062565b73ffffffffffffffffffffffffffffffffffffffff1614610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290614898565b60405180910390fd5b610db481612dbf565b50565b610dc081611a31565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2490614904565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490614970565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480610f6957506009600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f906149dc565b60405180910390fd5b6009600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061104057508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806110a957506004600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b8061113a5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611179576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611170906147c9565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600190039190505550600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001019190505550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600060018261127991906149fc565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611345576112ec81612e03565b1561134457836003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b6004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556009600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b600061141d82611a31565b90508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806114b757506004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806115485750600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e906147c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166009600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162090614a9e565b60405180910390fd5b6116338383612e4e565b505050565b7f49ecf333e5b8c95c40fdafc95c1ad136e8914a8fb55e9dc8bb01eaa83a2df9ad81565b60007f000000000000000000000000000000000000000000000000000000000000000046146116925761168d612ea4565b6116b4565b7f00000000000000000000000000000000000000000000000000000000000000005b905090565b6116c1612db7565b73ffffffffffffffffffffffffffffffffffffffff166116df612062565b73ffffffffffffffffffffffffffffffffffffffff1614611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c90614898565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b60096020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61179f838383610db7565b60008273ffffffffffffffffffffffffffffffffffffffff163b1480611888575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b815260040161182493929190614af5565b6020604051808303816000875af1158015611843573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118679190614b54565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b6118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90614bcd565b60405180910390fd5b505050565b60025481565b6118da612db7565b73ffffffffffffffffffffffffffffffffffffffff166118f8612062565b73ffffffffffffffffffffffffffffffffffffffff161461194e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194590614898565b60405180910390fd5b80600d9080519060200190611964929190613c1a565b5050565b60006119726125e1565b61012c61197f9190614818565b905090565b6009600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c90614c39565b60405180910390fd5b611a2e81612f4c565b50565b6000611a3c82612e03565b611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290614ca5565b60405180910390fd5b60008290505b60008110611b3a57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b2c576003600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915050611b76565b808060019003915050611a81565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90614d37565b60405180910390fd5b919050565b600d8054611b889061474b565b80601f0160208091040260200160405190810160405280929190818152602001828054611bb49061474b565b8015611c015780601f10611bd657610100808354040283529160200191611c01565b820191906000526020600020905b815481529060010190602001808311611be457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7190614da3565b60405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611cc9612db7565b73ffffffffffffffffffffffffffffffffffffffff16611ce7612062565b73ffffffffffffffffffffffffffffffffffffffff1614611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3490614898565b60405180910390fd5b611d476000612fa2565b565b611d51612db7565b73ffffffffffffffffffffffffffffffffffffffff16611d6f612062565b73ffffffffffffffffffffffffffffffffffffffff1614611dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbc90614898565b60405180910390fd5b80600e9080519060200190611ddb929190613c1a565b5050565b60606000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811415611e8057600067ffffffffffffffff811115611e4957611e486141c5565b5b604051908082528060200260200182016040528015611e775781602001602082028036833780820191505090505b50915050611f7c565b60008167ffffffffffffffff811115611e9c57611e9b6141c5565b5b604051908082528060200260200182016040528015611eca5781602001602082028036833780820191505090505b509050600080611ed8613068565b90505b600254811015611f7457611eee81612e03565b8015611f2d57508573ffffffffffffffffffffffffffffffffffffffff16611f1582611a31565b73ffffffffffffffffffffffffffffffffffffffff16145b15611f615780838381518110611f4657611f45614dc3565b5b6020026020010181815250508180611f5d90614df2565b9250505b8080611f6c90614df2565b915050611edb565b829450505050505b919050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611fc0848484611fbb611f81565b613071565b90509392505050565b611fd1612db7565b73ffffffffffffffffffffffffffffffffffffffff16611fef612062565b73ffffffffffffffffffffffffffffffffffffffff1614612045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203c90614898565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60019054906101000a900460ff166120db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d290614e87565b60405180910390fd5b6000826fffffffffffffffffffffffffffffffff16905061012c816120fe6125e1565b61210891906149fc565b1115612149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214090614ef3565b60405180910390fd5b61215484848461317b565b61215e84826131bc565b50505050565b600180546121719061474b565b80601f016020809104026020016040519081016040528092919081815260200182805461219d9061474b565b80156121ea5780601f106121bf576101008083540402835291602001916121ea565b820191906000526020600020905b8154815290600101906020018083116121cd57829003601f168201915b505050505081565b81421115612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222c90614f5f565b60405180910390fd5b600061224084611a31565b9050600061224c61165c565b7f49ecf333e5b8c95c40fdafc95c1ad136e8914a8fb55e9dc8bb01eaa83a2df9ad8787601060008a8152602001908152602001600020600081548092919060010191905055886040516020016122a6959493929190614f7f565b604051602081830303815290604052805190602001206040516020016122cd92919061504a565b6040516020818303038152906040528051906020012090506122f0878285613300565b61232f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612326906150cd565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614806123ef5750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61242e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242590615139565b60405180910390fd5b50846004600086815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050505050565b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125d59190613d71565b60405180910390a35050565b60006125eb613068565b6002546125f89190614818565b905090565b7fafbfe754c960cea8bb403409f4a498246c360a58a15b26e69ab98c9374b1085481565b61262c858585610db7565b60008473ffffffffffffffffffffffffffffffffffffffff163b1480612719575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016126b5959493929190615186565b6020604051808303816000875af11580156126d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126f89190614b54565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b612758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274f90614bcd565b60405180910390fd5b5050505050565b600f60019054906101000a900460ff1681565b6011602052816000526040600020602052806000526040600020600091509150505481565b60606127a282612e03565b6127e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d890615220565b60405180910390fd5b600f60009054906101000a900460ff161561282857600d612801836134e5565b604051602001612812929190615351565b60405160208183030381529060405290506128b6565b600e80546128359061474b565b80601f01602080910402602001604051908101604052809291908181526020018280546128619061474b565b80156128ae5780601f10612883576101008083540402835291602001916128ae565b820191906000526020600020905b81548152906001019060200180831161289157829003601f168201915b505050505090505b919050565b60075481565b81421115612904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fb90614f5f565b60405180910390fd5b600061290e61165c565b7fafbfe754c960cea8bb403409f4a498246c360a58a15b26e69ab98c9374b1085485601160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919060010191905055866040516020016129cf9493929190615380565b604051602081830303815290604052805190602001206040516020016129f692919061504a565b604051602081830303815290604052805190602001209050612a19858284613300565b612a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4f906150cd565b60405180910390fd5b506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c316001604051612b4c9190613d71565b60405180910390a350505050565b60066020528060005260406000206000915054906101000a900460ff1681565b612b82612db7565b73ffffffffffffffffffffffffffffffffffffffff16612ba0612062565b73ffffffffffffffffffffffffffffffffffffffff1614612bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bed90614898565b60405180910390fd5b61012c81612c026125e1565b612c0c91906149fc565b1115612c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4490614ef3565b60405180910390fd5b612c5782826131bc565b5050565b60056020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b612c92612db7565b73ffffffffffffffffffffffffffffffffffffffff16612cb0612062565b73ffffffffffffffffffffffffffffffffffffffff1614612d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfd90614898565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6d90615437565b60405180910390fd5b612d7f81612fa2565b50565b6000828230604051602001612d9993929190615457565b60405160208183030381529060405280519060200120905092915050565b600033905090565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600060025482108015612e3457506006600083815260200190815260200160002060009054906101000a900460ff16155b8015612e475750612e43613068565b8210155b9050919050565b816009600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6000604051612ed6919061552d565b60405180910390206040518060400160405280600181526020017f3100000000000000000000000000000000000000000000000000000000000000815250805190602001204630604051602001612f31959493929190615544565b60405160208183030381529060405280519060200120905090565b60006009600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b6000806130866130818787612d82565b613646565b90508273ffffffffffffffffffffffffffffffffffffffff166130b2858361367690919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614613108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ff906155e3565b60405180910390fd5b60001515600b600083815260200190815260200160002060009054906101000a900460ff1615151461316f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131669061564f565b60405180910390fd5b80915050949350505050565b6000613188848484611fab565b90506001600b600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6131c6828261369d565b60008273ffffffffffffffffffffffffffffffffffffffff163b14806132bd575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023360008560025461323b9190614818565b6040518463ffffffff1660e01b815260040161325993929190614af5565b6020604051808303816000875af1158015613278573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061329c9190614b54565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b6132fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f390614bcd565b60405180910390fd5b5050565b600080600061330f8585613856565b91509150600060048111156133275761332661566f565b5b81600481111561333a5761333961566f565b5b14801561337257508573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15613382576001925050506134de565b6000808773ffffffffffffffffffffffffffffffffffffffff16631626ba7e60e01b88886040516024016133b79291906156e2565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516134219190615743565b600060405180830381855afa9150503d806000811461345c576040519150601f19603f3d011682016040523d82523d6000602084013e613461565b606091505b5091509150818015613474575060208151145b80156134d75750631626ba7e60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916818060200190518101906134b69190614b54565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9450505050505b9392505050565b6060600082141561352d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613641565b600082905060005b6000821461355f57808061354890614df2565b915050600a826135589190615789565b9150613535565b60008167ffffffffffffffff81111561357b5761357a6141c5565b5b6040519080825280601f01601f1916602001820160405280156135ad5781602001600182028036833780820191505090505b5090505b6000851461363a576001826135c69190614818565b9150600a856135d591906157ba565b60306135e191906149fc565b60f81b8183815181106135f7576135f6614dc3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136339190615789565b94506135b1565b8093505050505b919050565b6000816040516020016136599190615837565b604051602081830303815290604052805190602001209050919050565b60008060006136858585613856565b91509150613692816138d9565b819250505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561370d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370490614970565b60405180910390fd5b6000811415613751576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613748906158a9565b60405180910390fd5b600060025490508260036000600254815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160026000828254019250508190555082600052600860205260406000208281540181555060008190505b60025481101561385057808473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808061384890614df2565b9150506137d7565b50505050565b6000806041835114156138985760008060006020860151925060408601519150606086015160001a905061388c87828585613aae565b945094505050506138d2565b6040835114156138c95760008060208501519150604085015190506138be868383613bbb565b9350935050506138d2565b60006002915091505b9250929050565b600060048111156138ed576138ec61566f565b5b816004811115613900576138ff61566f565b5b141561390b57613aab565b6001600481111561391f5761391e61566f565b5b8160048111156139325761393161566f565b5b1415613973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396a90615915565b60405180910390fd5b600260048111156139875761398661566f565b5b81600481111561399a5761399961566f565b5b14156139db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d290615981565b60405180910390fd5b600360048111156139ef576139ee61566f565b5b816004811115613a0257613a0161566f565b5b1415613a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a3a90615a13565b60405180910390fd5b600480811115613a5657613a5561566f565b5b816004811115613a6957613a6861566f565b5b1415613aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aa190615aa5565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613ae9576000600391509150613bb2565b601b8560ff1614158015613b015750601c8560ff1614155b15613b13576000600491509150613bb2565b600060018787878760405160008152602001604052604051613b389493929190615ae1565b6020604051602081039080840390855afa158015613b5a573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613ba957600060019250925050613bb2565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c613bfe91906149fc565b9050613c0c87828885613aae565b935093505050935093915050565b828054613c269061474b565b90600052602060002090601f016020900481019282613c485760008555613c8f565b82601f10613c6157805160ff1916838001178555613c8f565b82800160010185558215613c8f579182015b82811115613c8e578251825591602001919060010190613c73565b5b509050613c9c9190613ca0565b5090565b5b80821115613cb9576000816000905550600101613ca1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613d0681613cd1565b8114613d1157600080fd5b50565b600081359050613d2381613cfd565b92915050565b600060208284031215613d3f57613d3e613cc7565b5b6000613d4d84828501613d14565b91505092915050565b60008115159050919050565b613d6b81613d56565b82525050565b6000602082019050613d866000830184613d62565b92915050565b6000819050919050565b613d9f81613d8c565b8114613daa57600080fd5b50565b600081359050613dbc81613d96565b92915050565b600060208284031215613dd857613dd7613cc7565b5b6000613de684828501613dad565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e1a82613def565b9050919050565b613e2a81613e0f565b82525050565b6000602082019050613e456000830184613e21565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e85578082015181840152602081019050613e6a565b83811115613e94576000848401525b50505050565b6000601f19601f8301169050919050565b6000613eb682613e4b565b613ec08185613e56565b9350613ed0818560208601613e67565b613ed981613e9a565b840191505092915050565b60006020820190508181036000830152613efe8184613eab565b905092915050565b613f0f81613e0f565b8114613f1a57600080fd5b50565b600081359050613f2c81613f06565b92915050565b60008060408385031215613f4957613f48613cc7565b5b6000613f5785828601613f1d565b9250506020613f6885828601613dad565b9150509250929050565b613f7b81613d8c565b82525050565b6000602082019050613f966000830184613f72565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613fc157613fc0613f9c565b5b8235905067ffffffffffffffff811115613fde57613fdd613fa1565b5b602083019150836001820283011115613ffa57613ff9613fa6565b5b9250929050565b60008060008060006080868803121561401d5761401c613cc7565b5b600061402b88828901613f1d565b955050602061403c88828901613f1d565b945050604061404d88828901613dad565b935050606086013567ffffffffffffffff81111561406e5761406d613ccc565b5b61407a88828901613fab565b92509250509295509295909350565b61409281613cd1565b82525050565b60006020820190506140ad6000830184614089565b92915050565b6000819050919050565b6140c6816140b3565b81146140d157600080fd5b50565b6000813590506140e3816140bd565b92915050565b6000602082840312156140ff576140fe613cc7565b5b600061410d848285016140d4565b91505092915050565b60006020828403121561412c5761412b613cc7565b5b600061413a84828501613f1d565b91505092915050565b60008060006060848603121561415c5761415b613cc7565b5b600061416a86828701613f1d565b935050602061417b86828701613f1d565b925050604061418c86828701613dad565b9150509250925092565b61419f816140b3565b82525050565b60006020820190506141ba6000830184614196565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6141fd82613e9a565b810181811067ffffffffffffffff8211171561421c5761421b6141c5565b5b80604052505050565b600061422f613cbd565b905061423b82826141f4565b919050565b600067ffffffffffffffff82111561425b5761425a6141c5565b5b61426482613e9a565b9050602081019050919050565b82818337600083830152505050565b600061429361428e84614240565b614225565b9050828152602081018484840111156142af576142ae6141c0565b5b6142ba848285614271565b509392505050565b600082601f8301126142d7576142d6613f9c565b5b81356142e7848260208601614280565b91505092915050565b60006020828403121561430657614305613cc7565b5b600082013567ffffffffffffffff81111561432457614323613ccc565b5b614330848285016142c2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61436e81613d8c565b82525050565b60006143808383614365565b60208301905092915050565b6000602082019050919050565b60006143a482614339565b6143ae8185614344565b93506143b983614355565b8060005b838110156143ea5781516143d18882614374565b97506143dc8361438c565b9250506001810190506143bd565b5085935050505092915050565b600060208201905081810360008301526144118184614399565b905092915050565b600067ffffffffffffffff821115614434576144336141c5565b5b61443d82613e9a565b9050602081019050919050565b600061445d61445884614419565b614225565b905082815260208101848484011115614479576144786141c0565b5b614484848285614271565b509392505050565b600082601f8301126144a1576144a0613f9c565b5b81356144b184826020860161444a565b91505092915050565b6000806000606084860312156144d3576144d2613cc7565b5b60006144e186828701613f1d565b93505060206144f286828701613dad565b925050604084013567ffffffffffffffff81111561451357614512613ccc565b5b61451f8682870161448c565b9150509250925092565b61453281613d56565b811461453d57600080fd5b50565b60008135905061454f81614529565b92915050565b60006020828403121561456b5761456a613cc7565b5b600061457984828501614540565b91505092915050565b600080600080600060a0868803121561459e5761459d613cc7565b5b60006145ac88828901613f1d565b95505060206145bd88828901613f1d565b94505060406145ce88828901613dad565b93505060606145df88828901613dad565b925050608086013567ffffffffffffffff811115614600576145ff613ccc565b5b61460c8882890161448c565b9150509295509295909350565b600080604083850312156146305761462f613cc7565b5b600061463e85828601613f1d565b925050602061464f85828601614540565b9150509250929050565b600080604083850312156146705761466f613cc7565b5b600061467e85828601613f1d565b925050602061468f85828601613f1d565b9150509250929050565b600080600080608085870312156146b3576146b2613cc7565b5b60006146c187828801613f1d565b94505060206146d287828801613f1d565b93505060406146e387828801613dad565b925050606085013567ffffffffffffffff81111561470457614703613ccc565b5b6147108782880161448c565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061476357607f821691505b602082108114156147775761477661471c565b5b50919050565b7f4e4f545f415554484f52495a4544000000000000000000000000000000000000600082015250565b60006147b3600e83613e56565b91506147be8261477d565b602082019050919050565b600060208201905081810360008301526147e2816147a6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061482382613d8c565b915061482e83613d8c565b925082821015614841576148406147e9565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614882602083613e56565b915061488d8261484c565b602082019050919050565b600060208201905081810360008301526148b181614875565b9050919050565b7f57524f4e475f46524f4d00000000000000000000000000000000000000000000600082015250565b60006148ee600a83613e56565b91506148f9826148b8565b602082019050919050565b6000602082019050818103600083015261491d816148e1565b9050919050565b7f494e56414c49445f524543495049454e54000000000000000000000000000000600082015250565b600061495a601183613e56565b915061496582614924565b602082019050919050565b600060208201905081810360008301526149898161494d565b9050919050565b7f4c4f434b45440000000000000000000000000000000000000000000000000000600082015250565b60006149c6600683613e56565b91506149d182614990565b602082019050919050565b600060208201905081810360008301526149f5816149b9565b9050919050565b6000614a0782613d8c565b9150614a1283613d8c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a4757614a466147e9565b5b828201905092915050565b7f414c52454144595f4c4f434b4544000000000000000000000000000000000000600082015250565b6000614a88600e83613e56565b9150614a9382614a52565b602082019050919050565b60006020820190508181036000830152614ab781614a7b565b9050919050565b600082825260208201905092915050565b50565b6000614adf600083614abe565b9150614aea82614acf565b600082019050919050565b6000608082019050614b0a6000830186613e21565b614b176020830185613e21565b614b246040830184613f72565b8181036060830152614b3581614ad2565b9050949350505050565b600081519050614b4e81613cfd565b92915050565b600060208284031215614b6a57614b69613cc7565b5b6000614b7884828501614b3f565b91505092915050565b7f554e534146455f524543495049454e5400000000000000000000000000000000600082015250565b6000614bb7601083613e56565b9150614bc282614b81565b602082019050919050565b60006020820190508181036000830152614be681614baa565b9050919050565b7f4e4f545f554e4c4f434b45520000000000000000000000000000000000000000600082015250565b6000614c23600c83613e56565b9150614c2e82614bed565b602082019050919050565b60006020820190508181036000830152614c5281614c16565b9050919050565b7f4e4f545f4d494e5445445f5945545f4f525f4255524e45440000000000000000600082015250565b6000614c8f601883613e56565b9150614c9a82614c59565b602082019050919050565b60006020820190508181036000830152614cbe81614c82565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614d21602f83613e56565b9150614d2c82614cc5565b604082019050919050565b60006020820190508181036000830152614d5081614d14565b9050919050565b7f5a45524f5f414444524553530000000000000000000000000000000000000000600082015250565b6000614d8d600c83613e56565b9150614d9882614d57565b602082019050919050565b60006020820190508181036000830152614dbc81614d80565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614dfd82613d8c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e3057614e2f6147e9565b5b600182019050919050565b7f4d696e74206e6f74206163746976650000000000000000000000000000000000600082015250565b6000614e71600f83613e56565b9150614e7c82614e3b565b602082019050919050565b60006020820190508181036000830152614ea081614e64565b9050919050565b7f3e4d6178537570706c7900000000000000000000000000000000000000000000600082015250565b6000614edd600a83613e56565b9150614ee882614ea7565b602082019050919050565b60006020820190508181036000830152614f0c81614ed0565b9050919050565b7f5045524d49545f444541444c494e455f45585049524544000000000000000000600082015250565b6000614f49601783613e56565b9150614f5482614f13565b602082019050919050565b60006020820190508181036000830152614f7881614f3c565b9050919050565b600060a082019050614f946000830188614196565b614fa16020830187613e21565b614fae6040830186613f72565b614fbb6060830185613f72565b614fc86080830184613f72565b9695505050505050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b6000615013600283614fd2565b915061501e82614fdd565b600282019050919050565b6000819050919050565b61504461503f826140b3565b615029565b82525050565b600061505582615006565b91506150618285615033565b6020820191506150718284615033565b6020820191508190509392505050565b7f494e56414c49445f5349474e4154555245000000000000000000000000000000600082015250565b60006150b7601183613e56565b91506150c282615081565b602082019050919050565b600060208201905081810360008301526150e6816150aa565b9050919050565b7f494e56414c49445f5349474e4552000000000000000000000000000000000000600082015250565b6000615123600e83613e56565b915061512e826150ed565b602082019050919050565b6000602082019050818103600083015261515281615116565b9050919050565b60006151658385614abe565b9350615172838584614271565b61517b83613e9a565b840190509392505050565b600060808201905061519b6000830188613e21565b6151a86020830187613e21565b6151b56040830186613f72565b81810360608301526151c8818486615159565b90509695505050505050565b7f4e4f545f45584953545300000000000000000000000000000000000000000000600082015250565b600061520a600a83613e56565b9150615215826151d4565b602082019050919050565b60006020820190508181036000830152615239816151fd565b9050919050565b60008190508160005260206000209050919050565b600081546152628161474b565b61526c8186614fd2565b945060018216600081146152875760018114615298576152cb565b60ff198316865281860193506152cb565b6152a185615240565b60005b838110156152c3578154818901526001820191506020810190506152a4565b838801955050505b50505092915050565b60006152df82613e4b565b6152e98185614fd2565b93506152f9818560208601613e67565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061533b600583614fd2565b915061534682615305565b600582019050919050565b600061535d8285615255565b915061536982846152d4565b91506153748261532e565b91508190509392505050565b60006080820190506153956000830187614196565b6153a26020830186613e21565b6153af6040830185613f72565b6153bc6060830184613f72565b95945050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615421602683613e56565b915061542c826153c5565b604082019050919050565b6000602082019050818103600083015261545081615414565b9050919050565b600060608201905061546c6000830186613e21565b6154796020830185613f72565b6154866040830184613e21565b949350505050565b600081905092915050565b60008190508160005260206000209050919050565b600081546154bb8161474b565b6154c5818661548e565b945060018216600081146154e057600181146154f157615524565b60ff19831686528186019350615524565b6154fa85615499565b60005b8381101561551c578154818901526001820191506020810190506154fd565b838801955050505b50505092915050565b600061553982846154ae565b915081905092915050565b600060a0820190506155596000830188614196565b6155666020830187614196565b6155736040830186614196565b6155806060830185613f72565b61558d6080830184613e21565b9695505050505050565b7f21494e56414c49445f5349474e41545552452100000000000000000000000000600082015250565b60006155cd601383613e56565b91506155d882615597565b602082019050919050565b600060208201905081810360008301526155fc816155c0565b9050919050565b7f21414c52454144595f5553454421000000000000000000000000000000000000600082015250565b6000615639600e83613e56565b915061564482615603565b602082019050919050565b600060208201905081810360008301526156688161562c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600081519050919050565b60006156b48261569e565b6156be8185614abe565b93506156ce818560208601613e67565b6156d781613e9a565b840191505092915050565b60006040820190506156f76000830185614196565b818103602083015261570981846156a9565b90509392505050565b600061571d8261569e565b615727818561548e565b9350615737818560208601613e67565b80840191505092915050565b600061574f8284615712565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061579482613d8c565b915061579f83613d8c565b9250826157af576157ae61575a565b5b828204905092915050565b60006157c582613d8c565b91506157d083613d8c565b9250826157e0576157df61575a565b5b828206905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000615821601c83614fd2565b915061582c826157eb565b601c82019050919050565b600061584282615814565b915061584e8284615033565b60208201915081905092915050565b7f43414e5f4e4f545f4d494e545f30000000000000000000000000000000000000600082015250565b6000615893600e83613e56565b915061589e8261585d565b602082019050919050565b600060208201905081810360008301526158c281615886565b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006158ff601883613e56565b915061590a826158c9565b602082019050919050565b6000602082019050818103600083015261592e816158f2565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b600061596b601f83613e56565b915061597682615935565b602082019050919050565b6000602082019050818103600083015261599a8161595e565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006159fd602283613e56565b9150615a08826159a1565b604082019050919050565b60006020820190508181036000830152615a2c816159f0565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615a8f602283613e56565b9150615a9a82615a33565b604082019050919050565b60006020820190508181036000830152615abe81615a82565b9050919050565b600060ff82169050919050565b615adb81615ac5565b82525050565b6000608082019050615af66000830187614196565b615b036020830186615ad2565b615b106040830185614196565b615b1d6060830184614196565b9594505050505056fea2646970667358221220ace82e4df03cca440a85b9c0312c0e38205a8cb1e59bcdfee2866763f88572a664736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f616e677279646f6c7068696e732e6d7970696e6174612e636c6f75642f697066732f516d556651724d6374796d633276686b357456646d644a666664354579666d4b665047796769446b4658777146512f00000000000000000000000000000000000000000000000000000000000000000000000000006168747470733a2f2f616e677279646f6c7068696e732e6d7970696e6174612e636c6f75642f697066732f516d645358477757514e4e63466a4c776a33724641646d67324b594c4d36386b6b616b706a7937356e6f694e37722f5553472e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102bb5760003560e01c806370a0823111610182578063a2309ff8116100e9578063cdb712d8116100a2578063e58306f91161007c578063e58306f9146108be578063e985e9c5146108da578063f2fde38b1461090a578063feff199914610926576102bb565b8063cdb712d814610854578063d6056e9b14610872578063db44fe071461088e576102bb565b8063a2309ff81461077e578063b4e13c8d1461079c578063b88d4fde146107ba578063c051e38a146107d6578063c194afca146107f4578063c87b56dd14610824576102bb565b80638b2e98091161013b5780638b2e9809146106d25780638da5cb5b146106ee57806394d008ef1461070c57806395d89b41146107285780639fd5a6cf14610746578063a22cb46514610762576102bb565b806370a08231146105fe578063715018a61461062e578063841bfb27146106385780638462151c146106545780638838b5c314610684578063890621da146106a2576102bb565b8063282d3fdf11610226578063522439ef116101df578063522439ef1461053c57806355f804b31461055a5780635afefc09146105765780636198e339146105945780636352211e146105b05780636c0360eb146105e0576102bb565b8063282d3fdf1461048e57806330adf81f146104aa5780633644e515146104c857806336bf9e30146104e65780633b035df6146104f057806342842e0e14610520576102bb565b8063141a468c11610278578063141a468c146103a8578063150b7a02146103d857806318160ddd14610408578063195e8708146104265780632073447d1461045657806323b872dd14610472576102bb565b806301ffc9a7146102c0578063025e7c27146102f057806306fdde0314610320578063081812fc1461033e578063095ea7b31461036e578063131f5d051461038a575b600080fd5b6102da60048036038101906102d59190613d29565b610956565b6040516102e79190613d71565b60405180910390f35b61030a60048036038101906103059190613dc2565b6109e8565b6040516103179190613e30565b60405180910390f35b610328610a1b565b6040516103359190613ee4565b60405180910390f35b61035860048036038101906103539190613dc2565b610aa9565b6040516103659190613e30565b60405180910390f35b61038860048036038101906103839190613f32565b610adc565b005b610392610c9a565b60405161039f9190613d71565b60405180910390f35b6103c260048036038101906103bd9190613dc2565b610cad565b6040516103cf9190613f81565b60405180910390f35b6103f260048036038101906103ed9190614001565b610cc5565b6040516103ff9190614098565b60405180910390f35b610410610cf3565b60405161041d9190613f81565b60405180910390f35b610440600480360381019061043b91906140e9565b610d0f565b60405161044d9190613d71565b60405180910390f35b610470600480360381019061046b9190614116565b610d2f565b005b61048c60048036038101906104879190614143565b610db7565b005b6104a860048036038101906104a39190613f32565b611412565b005b6104b2611638565b6040516104bf91906141a5565b60405180910390f35b6104d061165c565b6040516104dd91906141a5565b60405180910390f35b6104ee6116b9565b005b61050a60048036038101906105059190613dc2565b611761565b6040516105179190613e30565b60405180910390f35b61053a60048036038101906105359190614143565b611794565b005b6105446118cc565b6040516105519190613f81565b60405180910390f35b610574600480360381019061056f91906142f0565b6118d2565b005b61057e611968565b60405161058b9190613f81565b60405180910390f35b6105ae60048036038101906105a99190613dc2565b611984565b005b6105ca60048036038101906105c59190613dc2565b611a31565b6040516105d79190613e30565b60405180910390f35b6105e8611b7b565b6040516105f59190613ee4565b60405180910390f35b61061860048036038101906106139190614116565b611c09565b6040516106259190613f81565b60405180910390f35b610636611cc1565b005b610652600480360381019061064d91906142f0565b611d49565b005b61066e60048036038101906106699190614116565b611ddf565b60405161067b91906143f7565b60405180910390f35b61068c611f81565b6040516106999190613e30565b60405180910390f35b6106bc60048036038101906106b791906144ba565b611fab565b6040516106c991906141a5565b60405180910390f35b6106ec60048036038101906106e79190614555565b611fc9565b005b6106f6612062565b6040516107039190613e30565b60405180910390f35b610726600480360381019061072191906144ba565b61208c565b005b610730612164565b60405161073d9190613ee4565b60405180910390f35b610760600480360381019061075b9190614582565b6121f2565b005b61077c60048036038101906107779190614619565b6124e4565b005b6107866125e1565b6040516107939190613f81565b60405180910390f35b6107a46125fd565b6040516107b191906141a5565b60405180910390f35b6107d460048036038101906107cf9190614001565b612621565b005b6107de61275f565b6040516107eb9190613d71565b60405180910390f35b61080e60048036038101906108099190614659565b612772565b60405161081b9190613f81565b60405180910390f35b61083e60048036038101906108399190613dc2565b612797565b60405161084b9190613ee4565b60405180910390f35b61085c6128bb565b6040516108699190613f81565b60405180910390f35b61088c60048036038101906108879190614699565b6128c1565b005b6108a860048036038101906108a39190613dc2565b612b5a565b6040516108b59190613d71565b60405180910390f35b6108d860048036038101906108d39190613f32565b612b7a565b005b6108f460048036038101906108ef9190614659565b612c5b565b6040516109019190613d71565b60405180910390f35b610924600480360381019061091f9190614116565b612c8a565b005b610940600480360381019061093b9190613f32565b612d82565b60405161094d91906141a5565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109b157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60036020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054610a289061474b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a549061474b565b8015610aa15780601f10610a7657610100808354040283529160200191610aa1565b820191906000526020600020905b815481529060010190602001808311610a8457829003601f168201915b505050505081565b60046020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610ae782611a31565b90508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ba95750600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf906147c9565b60405180910390fd5b826004600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f60009054906101000a900460ff1681565b60106020528060005260406000206000915090505481565b60007f076da4d9c24844193769905d464af7887f9d147706fec0e494242596fc6c898f905095945050505050565b6000600754610d006125e1565b610d0a9190614818565b905090565b600b6020528060005260406000206000915054906101000a900460ff1681565b610d37612db7565b73ffffffffffffffffffffffffffffffffffffffff16610d55612062565b73ffffffffffffffffffffffffffffffffffffffff1614610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290614898565b60405180910390fd5b610db481612dbf565b50565b610dc081611a31565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2490614904565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490614970565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480610f6957506009600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f906149dc565b60405180910390fd5b6009600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061104057508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806110a957506004600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b8061113a5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611179576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611170906147c9565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600190039190505550600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001019190505550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600060018261127991906149fc565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611345576112ec81612e03565b1561134457836003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b6004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556009600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b600061141d82611a31565b90508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806114b757506004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806115485750600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e906147c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166009600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162090614a9e565b60405180910390fd5b6116338383612e4e565b505050565b7f49ecf333e5b8c95c40fdafc95c1ad136e8914a8fb55e9dc8bb01eaa83a2df9ad81565b60007f000000000000000000000000000000000000000000000000000000000000000146146116925761168d612ea4565b6116b4565b7f5ab294f04a8af3799d93b9937622792a3ff17ac59f0c0d9f91efe2a941dec7005b905090565b6116c1612db7565b73ffffffffffffffffffffffffffffffffffffffff166116df612062565b73ffffffffffffffffffffffffffffffffffffffff1614611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c90614898565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b60096020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61179f838383610db7565b60008273ffffffffffffffffffffffffffffffffffffffff163b1480611888575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b815260040161182493929190614af5565b6020604051808303816000875af1158015611843573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118679190614b54565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b6118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90614bcd565b60405180910390fd5b505050565b60025481565b6118da612db7565b73ffffffffffffffffffffffffffffffffffffffff166118f8612062565b73ffffffffffffffffffffffffffffffffffffffff161461194e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194590614898565b60405180910390fd5b80600d9080519060200190611964929190613c1a565b5050565b60006119726125e1565b61012c61197f9190614818565b905090565b6009600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c90614c39565b60405180910390fd5b611a2e81612f4c565b50565b6000611a3c82612e03565b611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290614ca5565b60405180910390fd5b60008290505b60008110611b3a57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b2c576003600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915050611b76565b808060019003915050611a81565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90614d37565b60405180910390fd5b919050565b600d8054611b889061474b565b80601f0160208091040260200160405190810160405280929190818152602001828054611bb49061474b565b8015611c015780601f10611bd657610100808354040283529160200191611c01565b820191906000526020600020905b815481529060010190602001808311611be457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7190614da3565b60405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611cc9612db7565b73ffffffffffffffffffffffffffffffffffffffff16611ce7612062565b73ffffffffffffffffffffffffffffffffffffffff1614611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3490614898565b60405180910390fd5b611d476000612fa2565b565b611d51612db7565b73ffffffffffffffffffffffffffffffffffffffff16611d6f612062565b73ffffffffffffffffffffffffffffffffffffffff1614611dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbc90614898565b60405180910390fd5b80600e9080519060200190611ddb929190613c1a565b5050565b60606000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811415611e8057600067ffffffffffffffff811115611e4957611e486141c5565b5b604051908082528060200260200182016040528015611e775781602001602082028036833780820191505090505b50915050611f7c565b60008167ffffffffffffffff811115611e9c57611e9b6141c5565b5b604051908082528060200260200182016040528015611eca5781602001602082028036833780820191505090505b509050600080611ed8613068565b90505b600254811015611f7457611eee81612e03565b8015611f2d57508573ffffffffffffffffffffffffffffffffffffffff16611f1582611a31565b73ffffffffffffffffffffffffffffffffffffffff16145b15611f615780838381518110611f4657611f45614dc3565b5b6020026020010181815250508180611f5d90614df2565b9250505b8080611f6c90614df2565b915050611edb565b829450505050505b919050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611fc0848484611fbb611f81565b613071565b90509392505050565b611fd1612db7565b73ffffffffffffffffffffffffffffffffffffffff16611fef612062565b73ffffffffffffffffffffffffffffffffffffffff1614612045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203c90614898565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60019054906101000a900460ff166120db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d290614e87565b60405180910390fd5b6000826fffffffffffffffffffffffffffffffff16905061012c816120fe6125e1565b61210891906149fc565b1115612149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214090614ef3565b60405180910390fd5b61215484848461317b565b61215e84826131bc565b50505050565b600180546121719061474b565b80601f016020809104026020016040519081016040528092919081815260200182805461219d9061474b565b80156121ea5780601f106121bf576101008083540402835291602001916121ea565b820191906000526020600020905b8154815290600101906020018083116121cd57829003601f168201915b505050505081565b81421115612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222c90614f5f565b60405180910390fd5b600061224084611a31565b9050600061224c61165c565b7f49ecf333e5b8c95c40fdafc95c1ad136e8914a8fb55e9dc8bb01eaa83a2df9ad8787601060008a8152602001908152602001600020600081548092919060010191905055886040516020016122a6959493929190614f7f565b604051602081830303815290604052805190602001206040516020016122cd92919061504a565b6040516020818303038152906040528051906020012090506122f0878285613300565b61232f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612326906150cd565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614806123ef5750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61242e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242590615139565b60405180910390fd5b50846004600086815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050505050565b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125d59190613d71565b60405180910390a35050565b60006125eb613068565b6002546125f89190614818565b905090565b7fafbfe754c960cea8bb403409f4a498246c360a58a15b26e69ab98c9374b1085481565b61262c858585610db7565b60008473ffffffffffffffffffffffffffffffffffffffff163b1480612719575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016126b5959493929190615186565b6020604051808303816000875af11580156126d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126f89190614b54565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b612758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274f90614bcd565b60405180910390fd5b5050505050565b600f60019054906101000a900460ff1681565b6011602052816000526040600020602052806000526040600020600091509150505481565b60606127a282612e03565b6127e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d890615220565b60405180910390fd5b600f60009054906101000a900460ff161561282857600d612801836134e5565b604051602001612812929190615351565b60405160208183030381529060405290506128b6565b600e80546128359061474b565b80601f01602080910402602001604051908101604052809291908181526020018280546128619061474b565b80156128ae5780601f10612883576101008083540402835291602001916128ae565b820191906000526020600020905b81548152906001019060200180831161289157829003601f168201915b505050505090505b919050565b60075481565b81421115612904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fb90614f5f565b60405180910390fd5b600061290e61165c565b7fafbfe754c960cea8bb403409f4a498246c360a58a15b26e69ab98c9374b1085485601160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919060010191905055866040516020016129cf9493929190615380565b604051602081830303815290604052805190602001206040516020016129f692919061504a565b604051602081830303815290604052805190602001209050612a19858284613300565b612a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4f906150cd565b60405180910390fd5b506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c316001604051612b4c9190613d71565b60405180910390a350505050565b60066020528060005260406000206000915054906101000a900460ff1681565b612b82612db7565b73ffffffffffffffffffffffffffffffffffffffff16612ba0612062565b73ffffffffffffffffffffffffffffffffffffffff1614612bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bed90614898565b60405180910390fd5b61012c81612c026125e1565b612c0c91906149fc565b1115612c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4490614ef3565b60405180910390fd5b612c5782826131bc565b5050565b60056020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b612c92612db7565b73ffffffffffffffffffffffffffffffffffffffff16612cb0612062565b73ffffffffffffffffffffffffffffffffffffffff1614612d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfd90614898565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6d90615437565b60405180910390fd5b612d7f81612fa2565b50565b6000828230604051602001612d9993929190615457565b60405160208183030381529060405280519060200120905092915050565b600033905090565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600060025482108015612e3457506006600083815260200190815260200160002060009054906101000a900460ff16155b8015612e475750612e43613068565b8210155b9050919050565b816009600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6000604051612ed6919061552d565b60405180910390206040518060400160405280600181526020017f3100000000000000000000000000000000000000000000000000000000000000815250805190602001204630604051602001612f31959493929190615544565b60405160208183030381529060405280519060200120905090565b60006009600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b6000806130866130818787612d82565b613646565b90508273ffffffffffffffffffffffffffffffffffffffff166130b2858361367690919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614613108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ff906155e3565b60405180910390fd5b60001515600b600083815260200190815260200160002060009054906101000a900460ff1615151461316f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131669061564f565b60405180910390fd5b80915050949350505050565b6000613188848484611fab565b90506001600b600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6131c6828261369d565b60008273ffffffffffffffffffffffffffffffffffffffff163b14806132bd575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023360008560025461323b9190614818565b6040518463ffffffff1660e01b815260040161325993929190614af5565b6020604051808303816000875af1158015613278573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061329c9190614b54565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b6132fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f390614bcd565b60405180910390fd5b5050565b600080600061330f8585613856565b91509150600060048111156133275761332661566f565b5b81600481111561333a5761333961566f565b5b14801561337257508573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15613382576001925050506134de565b6000808773ffffffffffffffffffffffffffffffffffffffff16631626ba7e60e01b88886040516024016133b79291906156e2565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516134219190615743565b600060405180830381855afa9150503d806000811461345c576040519150601f19603f3d011682016040523d82523d6000602084013e613461565b606091505b5091509150818015613474575060208151145b80156134d75750631626ba7e60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916818060200190518101906134b69190614b54565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9450505050505b9392505050565b6060600082141561352d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613641565b600082905060005b6000821461355f57808061354890614df2565b915050600a826135589190615789565b9150613535565b60008167ffffffffffffffff81111561357b5761357a6141c5565b5b6040519080825280601f01601f1916602001820160405280156135ad5781602001600182028036833780820191505090505b5090505b6000851461363a576001826135c69190614818565b9150600a856135d591906157ba565b60306135e191906149fc565b60f81b8183815181106135f7576135f6614dc3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136339190615789565b94506135b1565b8093505050505b919050565b6000816040516020016136599190615837565b604051602081830303815290604052805190602001209050919050565b60008060006136858585613856565b91509150613692816138d9565b819250505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561370d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370490614970565b60405180910390fd5b6000811415613751576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613748906158a9565b60405180910390fd5b600060025490508260036000600254815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160026000828254019250508190555082600052600860205260406000208281540181555060008190505b60025481101561385057808473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808061384890614df2565b9150506137d7565b50505050565b6000806041835114156138985760008060006020860151925060408601519150606086015160001a905061388c87828585613aae565b945094505050506138d2565b6040835114156138c95760008060208501519150604085015190506138be868383613bbb565b9350935050506138d2565b60006002915091505b9250929050565b600060048111156138ed576138ec61566f565b5b816004811115613900576138ff61566f565b5b141561390b57613aab565b6001600481111561391f5761391e61566f565b5b8160048111156139325761393161566f565b5b1415613973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396a90615915565b60405180910390fd5b600260048111156139875761398661566f565b5b81600481111561399a5761399961566f565b5b14156139db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d290615981565b60405180910390fd5b600360048111156139ef576139ee61566f565b5b816004811115613a0257613a0161566f565b5b1415613a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a3a90615a13565b60405180910390fd5b600480811115613a5657613a5561566f565b5b816004811115613a6957613a6861566f565b5b1415613aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aa190615aa5565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613ae9576000600391509150613bb2565b601b8560ff1614158015613b015750601c8560ff1614155b15613b13576000600491509150613bb2565b600060018787878760405160008152602001604052604051613b389493929190615ae1565b6020604051602081039080840390855afa158015613b5a573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613ba957600060019250925050613bb2565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c613bfe91906149fc565b9050613c0c87828885613aae565b935093505050935093915050565b828054613c269061474b565b90600052602060002090601f016020900481019282613c485760008555613c8f565b82601f10613c6157805160ff1916838001178555613c8f565b82800160010185558215613c8f579182015b82811115613c8e578251825591602001919060010190613c73565b5b509050613c9c9190613ca0565b5090565b5b80821115613cb9576000816000905550600101613ca1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613d0681613cd1565b8114613d1157600080fd5b50565b600081359050613d2381613cfd565b92915050565b600060208284031215613d3f57613d3e613cc7565b5b6000613d4d84828501613d14565b91505092915050565b60008115159050919050565b613d6b81613d56565b82525050565b6000602082019050613d866000830184613d62565b92915050565b6000819050919050565b613d9f81613d8c565b8114613daa57600080fd5b50565b600081359050613dbc81613d96565b92915050565b600060208284031215613dd857613dd7613cc7565b5b6000613de684828501613dad565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e1a82613def565b9050919050565b613e2a81613e0f565b82525050565b6000602082019050613e456000830184613e21565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e85578082015181840152602081019050613e6a565b83811115613e94576000848401525b50505050565b6000601f19601f8301169050919050565b6000613eb682613e4b565b613ec08185613e56565b9350613ed0818560208601613e67565b613ed981613e9a565b840191505092915050565b60006020820190508181036000830152613efe8184613eab565b905092915050565b613f0f81613e0f565b8114613f1a57600080fd5b50565b600081359050613f2c81613f06565b92915050565b60008060408385031215613f4957613f48613cc7565b5b6000613f5785828601613f1d565b9250506020613f6885828601613dad565b9150509250929050565b613f7b81613d8c565b82525050565b6000602082019050613f966000830184613f72565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613fc157613fc0613f9c565b5b8235905067ffffffffffffffff811115613fde57613fdd613fa1565b5b602083019150836001820283011115613ffa57613ff9613fa6565b5b9250929050565b60008060008060006080868803121561401d5761401c613cc7565b5b600061402b88828901613f1d565b955050602061403c88828901613f1d565b945050604061404d88828901613dad565b935050606086013567ffffffffffffffff81111561406e5761406d613ccc565b5b61407a88828901613fab565b92509250509295509295909350565b61409281613cd1565b82525050565b60006020820190506140ad6000830184614089565b92915050565b6000819050919050565b6140c6816140b3565b81146140d157600080fd5b50565b6000813590506140e3816140bd565b92915050565b6000602082840312156140ff576140fe613cc7565b5b600061410d848285016140d4565b91505092915050565b60006020828403121561412c5761412b613cc7565b5b600061413a84828501613f1d565b91505092915050565b60008060006060848603121561415c5761415b613cc7565b5b600061416a86828701613f1d565b935050602061417b86828701613f1d565b925050604061418c86828701613dad565b9150509250925092565b61419f816140b3565b82525050565b60006020820190506141ba6000830184614196565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6141fd82613e9a565b810181811067ffffffffffffffff8211171561421c5761421b6141c5565b5b80604052505050565b600061422f613cbd565b905061423b82826141f4565b919050565b600067ffffffffffffffff82111561425b5761425a6141c5565b5b61426482613e9a565b9050602081019050919050565b82818337600083830152505050565b600061429361428e84614240565b614225565b9050828152602081018484840111156142af576142ae6141c0565b5b6142ba848285614271565b509392505050565b600082601f8301126142d7576142d6613f9c565b5b81356142e7848260208601614280565b91505092915050565b60006020828403121561430657614305613cc7565b5b600082013567ffffffffffffffff81111561432457614323613ccc565b5b614330848285016142c2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61436e81613d8c565b82525050565b60006143808383614365565b60208301905092915050565b6000602082019050919050565b60006143a482614339565b6143ae8185614344565b93506143b983614355565b8060005b838110156143ea5781516143d18882614374565b97506143dc8361438c565b9250506001810190506143bd565b5085935050505092915050565b600060208201905081810360008301526144118184614399565b905092915050565b600067ffffffffffffffff821115614434576144336141c5565b5b61443d82613e9a565b9050602081019050919050565b600061445d61445884614419565b614225565b905082815260208101848484011115614479576144786141c0565b5b614484848285614271565b509392505050565b600082601f8301126144a1576144a0613f9c565b5b81356144b184826020860161444a565b91505092915050565b6000806000606084860312156144d3576144d2613cc7565b5b60006144e186828701613f1d565b93505060206144f286828701613dad565b925050604084013567ffffffffffffffff81111561451357614512613ccc565b5b61451f8682870161448c565b9150509250925092565b61453281613d56565b811461453d57600080fd5b50565b60008135905061454f81614529565b92915050565b60006020828403121561456b5761456a613cc7565b5b600061457984828501614540565b91505092915050565b600080600080600060a0868803121561459e5761459d613cc7565b5b60006145ac88828901613f1d565b95505060206145bd88828901613f1d565b94505060406145ce88828901613dad565b93505060606145df88828901613dad565b925050608086013567ffffffffffffffff811115614600576145ff613ccc565b5b61460c8882890161448c565b9150509295509295909350565b600080604083850312156146305761462f613cc7565b5b600061463e85828601613f1d565b925050602061464f85828601614540565b9150509250929050565b600080604083850312156146705761466f613cc7565b5b600061467e85828601613f1d565b925050602061468f85828601613f1d565b9150509250929050565b600080600080608085870312156146b3576146b2613cc7565b5b60006146c187828801613f1d565b94505060206146d287828801613f1d565b93505060406146e387828801613dad565b925050606085013567ffffffffffffffff81111561470457614703613ccc565b5b6147108782880161448c565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061476357607f821691505b602082108114156147775761477661471c565b5b50919050565b7f4e4f545f415554484f52495a4544000000000000000000000000000000000000600082015250565b60006147b3600e83613e56565b91506147be8261477d565b602082019050919050565b600060208201905081810360008301526147e2816147a6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061482382613d8c565b915061482e83613d8c565b925082821015614841576148406147e9565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614882602083613e56565b915061488d8261484c565b602082019050919050565b600060208201905081810360008301526148b181614875565b9050919050565b7f57524f4e475f46524f4d00000000000000000000000000000000000000000000600082015250565b60006148ee600a83613e56565b91506148f9826148b8565b602082019050919050565b6000602082019050818103600083015261491d816148e1565b9050919050565b7f494e56414c49445f524543495049454e54000000000000000000000000000000600082015250565b600061495a601183613e56565b915061496582614924565b602082019050919050565b600060208201905081810360008301526149898161494d565b9050919050565b7f4c4f434b45440000000000000000000000000000000000000000000000000000600082015250565b60006149c6600683613e56565b91506149d182614990565b602082019050919050565b600060208201905081810360008301526149f5816149b9565b9050919050565b6000614a0782613d8c565b9150614a1283613d8c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a4757614a466147e9565b5b828201905092915050565b7f414c52454144595f4c4f434b4544000000000000000000000000000000000000600082015250565b6000614a88600e83613e56565b9150614a9382614a52565b602082019050919050565b60006020820190508181036000830152614ab781614a7b565b9050919050565b600082825260208201905092915050565b50565b6000614adf600083614abe565b9150614aea82614acf565b600082019050919050565b6000608082019050614b0a6000830186613e21565b614b176020830185613e21565b614b246040830184613f72565b8181036060830152614b3581614ad2565b9050949350505050565b600081519050614b4e81613cfd565b92915050565b600060208284031215614b6a57614b69613cc7565b5b6000614b7884828501614b3f565b91505092915050565b7f554e534146455f524543495049454e5400000000000000000000000000000000600082015250565b6000614bb7601083613e56565b9150614bc282614b81565b602082019050919050565b60006020820190508181036000830152614be681614baa565b9050919050565b7f4e4f545f554e4c4f434b45520000000000000000000000000000000000000000600082015250565b6000614c23600c83613e56565b9150614c2e82614bed565b602082019050919050565b60006020820190508181036000830152614c5281614c16565b9050919050565b7f4e4f545f4d494e5445445f5945545f4f525f4255524e45440000000000000000600082015250565b6000614c8f601883613e56565b9150614c9a82614c59565b602082019050919050565b60006020820190508181036000830152614cbe81614c82565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614d21602f83613e56565b9150614d2c82614cc5565b604082019050919050565b60006020820190508181036000830152614d5081614d14565b9050919050565b7f5a45524f5f414444524553530000000000000000000000000000000000000000600082015250565b6000614d8d600c83613e56565b9150614d9882614d57565b602082019050919050565b60006020820190508181036000830152614dbc81614d80565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614dfd82613d8c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e3057614e2f6147e9565b5b600182019050919050565b7f4d696e74206e6f74206163746976650000000000000000000000000000000000600082015250565b6000614e71600f83613e56565b9150614e7c82614e3b565b602082019050919050565b60006020820190508181036000830152614ea081614e64565b9050919050565b7f3e4d6178537570706c7900000000000000000000000000000000000000000000600082015250565b6000614edd600a83613e56565b9150614ee882614ea7565b602082019050919050565b60006020820190508181036000830152614f0c81614ed0565b9050919050565b7f5045524d49545f444541444c494e455f45585049524544000000000000000000600082015250565b6000614f49601783613e56565b9150614f5482614f13565b602082019050919050565b60006020820190508181036000830152614f7881614f3c565b9050919050565b600060a082019050614f946000830188614196565b614fa16020830187613e21565b614fae6040830186613f72565b614fbb6060830185613f72565b614fc86080830184613f72565b9695505050505050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b6000615013600283614fd2565b915061501e82614fdd565b600282019050919050565b6000819050919050565b61504461503f826140b3565b615029565b82525050565b600061505582615006565b91506150618285615033565b6020820191506150718284615033565b6020820191508190509392505050565b7f494e56414c49445f5349474e4154555245000000000000000000000000000000600082015250565b60006150b7601183613e56565b91506150c282615081565b602082019050919050565b600060208201905081810360008301526150e6816150aa565b9050919050565b7f494e56414c49445f5349474e4552000000000000000000000000000000000000600082015250565b6000615123600e83613e56565b915061512e826150ed565b602082019050919050565b6000602082019050818103600083015261515281615116565b9050919050565b60006151658385614abe565b9350615172838584614271565b61517b83613e9a565b840190509392505050565b600060808201905061519b6000830188613e21565b6151a86020830187613e21565b6151b56040830186613f72565b81810360608301526151c8818486615159565b90509695505050505050565b7f4e4f545f45584953545300000000000000000000000000000000000000000000600082015250565b600061520a600a83613e56565b9150615215826151d4565b602082019050919050565b60006020820190508181036000830152615239816151fd565b9050919050565b60008190508160005260206000209050919050565b600081546152628161474b565b61526c8186614fd2565b945060018216600081146152875760018114615298576152cb565b60ff198316865281860193506152cb565b6152a185615240565b60005b838110156152c3578154818901526001820191506020810190506152a4565b838801955050505b50505092915050565b60006152df82613e4b565b6152e98185614fd2565b93506152f9818560208601613e67565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061533b600583614fd2565b915061534682615305565b600582019050919050565b600061535d8285615255565b915061536982846152d4565b91506153748261532e565b91508190509392505050565b60006080820190506153956000830187614196565b6153a26020830186613e21565b6153af6040830185613f72565b6153bc6060830184613f72565b95945050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615421602683613e56565b915061542c826153c5565b604082019050919050565b6000602082019050818103600083015261545081615414565b9050919050565b600060608201905061546c6000830186613e21565b6154796020830185613f72565b6154866040830184613e21565b949350505050565b600081905092915050565b60008190508160005260206000209050919050565b600081546154bb8161474b565b6154c5818661548e565b945060018216600081146154e057600181146154f157615524565b60ff19831686528186019350615524565b6154fa85615499565b60005b8381101561551c578154818901526001820191506020810190506154fd565b838801955050505b50505092915050565b600061553982846154ae565b915081905092915050565b600060a0820190506155596000830188614196565b6155666020830187614196565b6155736040830186614196565b6155806060830185613f72565b61558d6080830184613e21565b9695505050505050565b7f21494e56414c49445f5349474e41545552452100000000000000000000000000600082015250565b60006155cd601383613e56565b91506155d882615597565b602082019050919050565b600060208201905081810360008301526155fc816155c0565b9050919050565b7f21414c52454144595f5553454421000000000000000000000000000000000000600082015250565b6000615639600e83613e56565b915061564482615603565b602082019050919050565b600060208201905081810360008301526156688161562c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600081519050919050565b60006156b48261569e565b6156be8185614abe565b93506156ce818560208601613e67565b6156d781613e9a565b840191505092915050565b60006040820190506156f76000830185614196565b818103602083015261570981846156a9565b90509392505050565b600061571d8261569e565b615727818561548e565b9350615737818560208601613e67565b80840191505092915050565b600061574f8284615712565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061579482613d8c565b915061579f83613d8c565b9250826157af576157ae61575a565b5b828204905092915050565b60006157c582613d8c565b91506157d083613d8c565b9250826157e0576157df61575a565b5b828206905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000615821601c83614fd2565b915061582c826157eb565b601c82019050919050565b600061584282615814565b915061584e8284615033565b60208201915081905092915050565b7f43414e5f4e4f545f4d494e545f30000000000000000000000000000000000000600082015250565b6000615893600e83613e56565b915061589e8261585d565b602082019050919050565b600060208201905081810360008301526158c281615886565b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006158ff601883613e56565b915061590a826158c9565b602082019050919050565b6000602082019050818103600083015261592e816158f2565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b600061596b601f83613e56565b915061597682615935565b602082019050919050565b6000602082019050818103600083015261599a8161595e565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006159fd602283613e56565b9150615a08826159a1565b604082019050919050565b60006020820190508181036000830152615a2c816159f0565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615a8f602283613e56565b9150615a9a82615a33565b604082019050919050565b60006020820190508181036000830152615abe81615a82565b9050919050565b600060ff82169050919050565b615adb81615ac5565b82525050565b6000608082019050615af66000830187614196565b615b036020830186615ad2565b615b106040830185614196565b615b1d6060830184614196565b9594505050505056fea2646970667358221220ace82e4df03cca440a85b9c0312c0e38205a8cb1e59bcdfee2866763f88572a664736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f616e677279646f6c7068696e732e6d7970696e6174612e636c6f75642f697066732f516d556651724d6374796d633276686b357456646d644a666664354579666d4b665047796769446b4658777146512f00000000000000000000000000000000000000000000000000000000000000000000000000006168747470733a2f2f616e677279646f6c7068696e732e6d7970696e6174612e636c6f75642f697066732f516d645358477757514e4e63466a4c776a33724641646d67324b594c4d36386b6b616b706a7937356e6f694e37722f5553472e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _myBase (string): https://angrydolphins.mypinata.cloud/ipfs/QmUfQrMctymc2vhk5tVdmdJffd5EyfmKfPGygiDkFXwqFQ/
Arg [1] : _unrevBase (string): https://angrydolphins.mypinata.cloud/ipfs/QmdSXGwWQNNcFjLwj3rFAdmg2KYLM68kkakpjy75noiN7r/USG.json

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [3] : 68747470733a2f2f616e677279646f6c7068696e732e6d7970696e6174612e63
Arg [4] : 6c6f75642f697066732f516d556651724d6374796d633276686b357456646d64
Arg [5] : 4a666664354579666d4b665047796769446b4658777146512f00000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000061
Arg [7] : 68747470733a2f2f616e677279646f6c7068696e732e6d7970696e6174612e63
Arg [8] : 6c6f75642f697066732f516d645358477757514e4e63466a4c776a3372464164
Arg [9] : 6d67324b594c4d36386b6b616b706a7937356e6f694e37722f5553472e6a736f
Arg [10] : 6e00000000000000000000000000000000000000000000000000000000000000


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.