ETH Price: $3,491.75 (+2.13%)
Gas: 13 Gwei

Token

Jill By Molly (Jill)
 

Overview

Max Total Supply

889 Jill

Holders

235

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mdrfkr.eth
Balance
2 Jill
0x60314c86b99a2a108e5097fc2688aa1e3c30be30
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:
JillByMolly

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract JillByMolly is ERC721, Ownable {
    using Strings for uint256;
    using ECDSA for bytes32;

    uint256 public maxSupply = 888;
    uint256 public currentSupply = 0;

    uint256 public salePrice = 0.05 ether;
    uint256 public presalePrice = 0.04 ether;

    uint256 public presaleCount;
    uint256 public freeMinted;

    //Placeholders
    address private presaleAddress = address(0xB09356a4c137bB462120B362A4837C9F7C9FBb90);
    address private freeAddress = address(0x5b051517516fC9B3E647678aD346a1a122a52ed4);
    address private wallet = address(0x17Ed15ea125055E0234a0022F05a1d942D489877);

    string private baseURI;
    string private notRevealedUri = "ipfs://QmUfq7oXsjHEYeSgTa7jkvqoKVazyZNDe4DR7pYtNTbkQ6";

    bool public revealed = false;
    bool public baseLocked = false;
    bool public marketOpened = false;
    bool public freeMintOpened = false;

    enum WorkflowStatus {
        Before,
        Presale,
        Sale,
        Paused,
        Reveal
    }

    WorkflowStatus public workflow;

    mapping(address => uint256) public freeMintAccess;
    mapping(address => uint256) public presaleMintLog;
    mapping(address => uint256) public freeMintLog;

    constructor()
        ERC721("Jill By Molly", "Jill")
    {
        transferOwnership(msg.sender);
        workflow = WorkflowStatus.Before;

        initFree();
    }

    function withdraw() public onlyOwner {
        uint256 _balance = address( this ).balance;
        
        payable( wallet ).transfer( _balance );
    }

    //GETTERS
    function getSaleStatus() public view returns (WorkflowStatus) {
        return workflow;
    }

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

    function getFreeMintAmount( address _acc ) public view returns (uint256) {
        return freeMintAccess[ _acc ];
    }

    function getFreeMintLog( address _acc ) public view returns (uint256) {
        return freeMintLog[ _acc ];
    }

    function validateSignature( address _addr, bytes memory _s ) internal view returns (bool){
        bytes32 messageHash = keccak256(
            abi.encodePacked( address(this), msg.sender)
        );

        address signer = messageHash.toEthSignedMessageHash().recover(_s);

        if( _addr == signer ) {
            return true;
        } else {
            return false;
        }
    }

    //Batch minting
    function mintBatch(
        address to,
        uint256 baseId,
        uint256 number
    ) internal {

        for (uint256 i = 0; i < number; i++) {
            _safeMint(to, baseId + i);
        }

    }

    /**
        Claims tokens for free paying only gas fees
     */
    function freeMint(uint256 _amount, bytes calldata signature) external {
        //Free mint check
        require( 
            freeMintOpened, 
            "Free mint is not opened yet." 
        );

        //Check free mint signature
        require(
            validateSignature(
                freeAddress,
                signature
            ),
            "SIGNATURE_VALIDATION_FAILED"
        );

        uint256 supply = currentSupply;
        uint256 allowedAmount = 1;

        if( freeMintAccess[ msg.sender ] > 0 ) {
            allowedAmount = freeMintAccess[ msg.sender ];
        } 

        require( 
            freeMintLog[ msg.sender ] + _amount <= allowedAmount, 
            "You dont have permision to free mint that amount." 
        );

        require(
            supply + _amount <= maxSupply,
            "Jill By Molly: Mint too large, exceeding the maxSupply"
        );

        freeMintLog[ msg.sender ] += _amount;
        freeMinted += _amount;
        currentSupply += _amount;

        mintBatch(msg.sender, supply, _amount);
    }


    function presaleMint(
        uint256 amount,
        bytes calldata signature
    ) external payable {
        
        require(
            workflow == WorkflowStatus.Presale,
            "Jill By Molly: Presale is not currently active."
        );

        require(
            validateSignature(
                presaleAddress,
                signature
            ),
            "SIGNATURE_VALIDATION_FAILED"
        );

        require(amount > 0, "You must mint at least one token");

        //Price check
        require(
            msg.value >= presalePrice * amount,
            "Jill By Molly: Insuficient ETH amount sent."
        );

        presaleCount += amount;
        currentSupply += amount;
        presaleMintLog[ msg.sender ] += amount;

        mintBatch(msg.sender, currentSupply - amount, amount);
    }

    function publicSaleMint(uint256 amount) external payable {
        require( amount > 0, "You must mint at least one NFT.");
        
        uint256 supply = currentSupply;

        require( supply < maxSupply, "Jill By Molly: Sold out!" );
        require( supply + amount <= maxSupply, "Jill By Molly: Selected amount exceeds the max supply.");

        require(
            workflow == WorkflowStatus.Sale,
            "Jill By Molly: Public sale has not active."
        );

        require(
            msg.value >= salePrice * amount,
            "Jill By Molly: Insuficient ETH amount sent."
        );

        currentSupply += amount;

        mintBatch(msg.sender, supply, amount);
    }

    function forceMint(uint256 number, address receiver) external onlyOwner {
        uint256 supply = currentSupply;

        require(
            supply + number <= maxSupply,
            "Jill By Molly: You can't mint more than max supply"
        );

        currentSupply += number;

        mintBatch( receiver, supply, number);
    }

    function ownerMint(uint256 number) external onlyOwner {
        uint256 supply = currentSupply;

        require(
            supply + number <= maxSupply,
            "Jill By Molly: You can't mint more than max supply"
        );

        currentSupply += number;

        mintBatch(msg.sender, supply, number);
    }

    function airdrop(address[] calldata addresses) external onlyOwner {
        uint256 supply = currentSupply;
        require(
            supply + addresses.length <= maxSupply,
            "Jill By Molly: You can't mint more than max supply"
        );

        currentSupply += addresses.length;

        for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], supply + i);
        }
    }

    function setUpBefore() external onlyOwner {
        workflow = WorkflowStatus.Before;
    }

    function setUpPresale() external onlyOwner {
        workflow = WorkflowStatus.Presale;
    }

    function setUpSale() external onlyOwner {
        workflow = WorkflowStatus.Sale;
    }

    function pauseSale() external onlyOwner {
        workflow = WorkflowStatus.Paused;
    }

    function openFreeMint() public onlyOwner {
        freeMintOpened = true;
    }
    
    function stopFreeMint() public onlyOwner {
        freeMintOpened = false;
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        require( baseLocked == false, "Base URI change has been disabled permanently");

        baseURI = _newBaseURI;
    }

    function setPresaleAddress(address _newAddress) public onlyOwner {
        require(_newAddress != address(0), "CAN'T PUT 0 ADDRESS");
        presaleAddress = _newAddress;
    }

    function setWallet(address _newWallet) public onlyOwner {
        wallet = _newWallet;
    }

    function setSalePrice(uint256 _newPrice) public onlyOwner {
        salePrice = _newPrice;
    }
    
    function setPresalePrice(uint256 _newPrice) public onlyOwner {
        presalePrice = _newPrice;
    }
    
    function setFreeMintAccess(address _acc, uint256 _am ) public onlyOwner {
        freeMintAccess[ _acc ] = _am;
    }

    //Lock base security - your nfts can never be changed.
    function lockBase() public onlyOwner {
        baseLocked = true;
    }

    //Once opened, it can not be closed again
    function openMarket() public onlyOwner {
        marketOpened = true;
    }

    // FACTORY
    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        if (revealed == false) {
            return notRevealedUri;
        }

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

    function initFree() internal {
        freeMintAccess[ address(0x2b79a93D04A1655BAE5E7ba927B87Fa01b059f0c) ] = 61;
        freeMintAccess[ address(0xC475915010B03Bb3399D869ce27e79A76cAd7A01) ] = 25;
        freeMintAccess[ address(0x59F2052a3ff8cDfe4cBAae027364bdFE52715e33) ] = 10;
        freeMintAccess[ address(0xbD519E4fcf0cE7d3C7fd8f5aD2BdF4E9B869B445) ] = 9;
        freeMintAccess[ address(0xD58D449Af4832d76eD247e0b2DD80327CfE377c0) ] = 9;
        freeMintAccess[ address(0xf2ECcCCcDB5a56fD2E37a4e79BdD70F48Ec48a07) ] = 9;
        freeMintAccess[ address(0x7E6ddE8aE44dC50C24fD344dc5e4d3B07db1c23F) ] = 7;
        freeMintAccess[ address(0x258E0eF6F63077c0Ab26837597541312Db1EB06e) ] = 6;
        freeMintAccess[ address(0x771448e7eb02906e42AaEFb39da32603D011b8a9) ] = 6;
        freeMintAccess[ address(0xC06bf0e39507aCB0D46b66a4aC8fb71db9D0337b) ] = 6;
        freeMintAccess[ address(0xe033D76E565D855101fB788881abEA51066BDCb0) ] = 6;
        freeMintAccess[ address(0x88C9484c3107A309Cd30A1671d7B7Fa42995559E) ] = 5;
        freeMintAccess[ address(0xB18150275285BeCfcBb717f65B10Df2d211D5a02) ] = 5;
        freeMintAccess[ address(0xc6abc8CD657b44254c24ED304Fc953D5F58824d3) ] = 5;
        freeMintAccess[ address(0x85dc799427210ACD1E1347A080618145Dd1E42C3) ] = 4;
        freeMintAccess[ address(0x049c08f98A751F64DF8e0867457db2Fb21F573B6) ] = 3;
        freeMintAccess[ address(0x0dA1E9705F3393D55a1645c30aC26869D5553AbD) ] = 3;
        freeMintAccess[ address(0x11450A28c4A687A134AaD319ADc0d53900eaD50F) ] = 3;
        freeMintAccess[ address(0x15491db59C7C9B98B290935dc0465Cac5576B12B) ] = 3;
        freeMintAccess[ address(0x23db0c948329A33383945B5C3497ebc0819ACdfb) ] = 3;
        freeMintAccess[ address(0x265677Fc8754D5C2A3EEF2c5E0a85eEf35Bd205f) ] = 3;
        freeMintAccess[ address(0x26e1C4be5915F51946190033F89c9Ea3d2C470dB) ] = 3;
        freeMintAccess[ address(0x2Ae45Cc80909746E9dAE8D561BB7E83466273961) ] = 3;
        freeMintAccess[ address(0x2e16ee698B05BDFc0125DD0de5C8913004F5E5c3) ] = 3;
        freeMintAccess[ address(0x37735C72b0b1936EA79d6183849Fe5aF008B53fE) ] = 3;
        freeMintAccess[ address(0x3d3b44e1b9372Ff786aF1f160793AC580B2b22ae) ] = 3;
        freeMintAccess[ address(0x4261DB973C27f7e4CDC2090990c2ebB52935B8E2) ] = 3;
        freeMintAccess[ address(0x434f1A372D0A873E59882998194559A46bD651e9) ] = 3;
        freeMintAccess[ address(0x488aE9C7439e68d82280E23C02c1767bccD2B3eD) ] = 3;
        freeMintAccess[ address(0x4aD09330ACF67d2E9b8FeEf4420BEDB8b6b2605c) ] = 3;
        freeMintAccess[ address(0x533BE8603F70070f418c7d53CC68d72D345C33f8) ] = 3;
        freeMintAccess[ address(0x69e69571d0d07EdBEde6c43849e8d877573eE6bf) ] = 3;
        freeMintAccess[ address(0x6D147067c67bEF245875d968dfbc4715c23a8Bb6) ] = 3;
        freeMintAccess[ address(0x6D35fa416e615bB28feA3c970575c33fa155Ef9f) ] = 3;
        freeMintAccess[ address(0x7dF943591d4b71e5E5E3be9a4B1963b0476bB432) ] = 3;
        freeMintAccess[ address(0x870Bf9b18227aa0d28C0f21689A21931aA4FE3DE) ] = 3;
        freeMintAccess[ address(0x8D98139512ac57459A468BC10ccf30Fd9dd6149A) ] = 3;
        freeMintAccess[ address(0x9D47C98EB709603Aa82514F96b6EfA7939F2eDc1) ] = 3;
        freeMintAccess[ address(0xA0C155D1FdeA5393Cd6175c4620a3dfBDE330b72) ] = 3;
        freeMintAccess[ address(0xA7cd7Fe9e0300eC83117914b944AeA93b5F3E22B) ] = 3;
        freeMintAccess[ address(0xaCff0c9930700e8aF89b4DA0360753941180C601) ] = 3;
        freeMintAccess[ address(0xAd3Daf78B01DF5bE01AF74CD10837b9436F57520) ] = 3;
        freeMintAccess[ address(0xAfC458296efcE0f2838Ef8367666B2ab3554dC41) ] = 3;
        freeMintAccess[ address(0xD4BCE9c082e315b8E3D0A79bFB5c6daA36e9531B) ] = 3;
        freeMintAccess[ address(0xe3CfcA77ABD43195E0838DBe692D4E6313CAfCcb) ] = 3;
        freeMintAccess[ address(0xE5d08078CA78C9B14101f16fcACbEE8818D06Bfa) ] = 3;
        freeMintAccess[ address(0xE92DD81DD13F053cb5dcF0A7f5731db6937E992B) ] = 3;
        freeMintAccess[ address(0xe9bB334033e377E50038132556f285408B0478e0) ] = 3;
        freeMintAccess[ address(0xEd76E6b7E643A4476033c75Cb1f1fAeAe4cA12D9) ] = 3;
        freeMintAccess[ address(0xf4aD9E72311a38F7D3Eeec61d161fd525Ecd2f93) ] = 3;
        freeMintAccess[ address(0x00D4da27deDce60F859471D8f595fDB4aE861557) ] = 2;
        freeMintAccess[ address(0x1306Ad73b6B3561906E2703244b302b31e849f2D) ] = 2;
        freeMintAccess[ address(0x14eca571cdA7a721171fa2b575a1DAbE1f8369Fc) ] = 2;
        freeMintAccess[ address(0x1BCAb05F4eE1f5dBCa5ed52D8ad204bdC39C58F6) ] = 2;
        freeMintAccess[ address(0x1Cf5B683643D382284c6b3fCCf425c612b8C69e3) ] = 2;
        freeMintAccess[ address(0x1D2aD10a77CCCF343f8D5c7d78eaa6B5f7a0547B) ] = 2;
        freeMintAccess[ address(0x23f3c4dD6297A36A2140d5478188D9e773D3Ac9E) ] = 2;
        freeMintAccess[ address(0x2f161c1ceBBcDc1A0C843Bd09a202E4BFc2C717D) ] = 2;
        freeMintAccess[ address(0x2fF79f7B42FE97A72c54cFc985589B4f55A7423d) ] = 2;
        freeMintAccess[ address(0x3220E8846D1D3b1a82D2342f4351d7E0e834fC49) ] = 2;
        freeMintAccess[ address(0x351E0db8bDE58C73CB2F168Fed7fA5B65Bde7f2f) ] = 2;
        freeMintAccess[ address(0x36d2a0E77EA4Ada81B0c6b183aCFe12c430C1074) ] = 2;
        freeMintAccess[ address(0x400665C0eb68da4564bbbD6A24bBfac65Bd17305) ] = 2;
        freeMintAccess[ address(0x447119994c803260BA30e989bb633Fe8B650652c) ] = 2;
        freeMintAccess[ address(0x4cEA643706ACc07dDC9b58570A55c6e86d281e73) ] = 2;
        freeMintAccess[ address(0x508acec8601AfEf3A1285f7C8c913077452A891c) ] = 2;
        freeMintAccess[ address(0x564F8293d69c8D3f8b840A26a2cff63112b78061) ] = 2;
        freeMintAccess[ address(0x57b979011859cf161793A1E8cCf623CCDAbbEea3) ] = 2;
        freeMintAccess[ address(0x59626e6237bA2C9DDD4fC2C05d38A63B895ab8bf) ] = 2;
        freeMintAccess[ address(0x6cf995436E97beD7c1611f18B3b73d60Ca50A1Dd) ] = 2;
        freeMintAccess[ address(0x6EDf6b0229C9A205d0D0E4f81e6a956e064ECFAa) ] = 2;
        freeMintAccess[ address(0x7254a934DAd6aB3559efDBc7c2e8FD3D3825146D) ] = 2;
        freeMintAccess[ address(0x7Ec94fD63f07ab5B35323A393DEF89aC6Ab652CA) ] = 2;
        freeMintAccess[ address(0x828ED67AD51733F51c2067BFE1bF478405177C98) ] = 2;
        freeMintAccess[ address(0x888c636fc34aADA02942262c78B7be8Ded0C93A9) ] = 2;
        freeMintAccess[ address(0xA04294Ca075F369c900D6399c3D809Ee4417C5B5) ] = 2;
        freeMintAccess[ address(0xA4d9E8beB4Cd00Da4E14a073935fb2f4A9ea0FD0) ] = 2;
        freeMintAccess[ address(0xacCB1e0eAa4d6bB3AB8268cFa8fB08d77F082655) ] = 2;
        freeMintAccess[ address(0xB1Dfd9b8E9cE5E0886A29f3878A72cf843e28d0B) ] = 2;
        freeMintAccess[ address(0xBCAacC0497e8A0e808243C0b492c3AE97fb9b4A8) ] = 2;
        freeMintAccess[ address(0xC375AF9666078099A4CA193B3252Cc19F2af464B) ] = 2;
        freeMintAccess[ address(0xc4727E16A08097c9f0f79385559908d576D0e9e3) ] = 2;
        freeMintAccess[ address(0xC69Cf303fFBbAcf328667744dfA7940F6f031914) ] = 2;
        freeMintAccess[ address(0xCBc6C9CeF4f3C7cbBb8Eb82A2aD60c00e631A8C1) ] = 2;
        freeMintAccess[ address(0xCbd548A8D5c52A6116dF65A08B73C0dCDE9412ff) ] = 2;
        freeMintAccess[ address(0xD1a733172DBf8B2b9e1815b37749CBAcc56F0F9e) ] = 2;
        freeMintAccess[ address(0xD53406AAec8D9650e118eC385c71c00adf6a06F3) ] = 2;
        freeMintAccess[ address(0xdB0201713165d8056cFC308EA5B4aAc78f362EE7) ] = 2;
        freeMintAccess[ address(0xe8F2EEB6CC1eF517C5DDE6a3E4dfE0a83D5dB207) ] = 2;
        freeMintAccess[ address(0xFaB96a307b54564d227866Ed9106368079415196) ] = 2;
        freeMintAccess[ address(0xff43bcCA6A913c0af7cFCE7fA5Ccc0D61B4Fa801) ] = 2;
    }

}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 13 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 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 5 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"forceMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintAccess","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintLog","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_acc","type":"address"}],"name":"getFreeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_acc","type":"address"}],"name":"getFreeMintLog","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleStatus","outputs":[{"internalType":"enum JillByMolly.WorkflowStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presaleCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleMintLog","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","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":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_acc","type":"address"},{"internalType":"uint256","name":"_am","type":"uint256"}],"name":"setFreeMintAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setPresaleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpBefore","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"}],"name":"setWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"workflow","outputs":[{"internalType":"enum JillByMolly.WorkflowStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"}]

610378600755600060085566b1a2bc2ec50000600955668e1bc9bf040000600a55600d80546001600160a01b031990811673b09356a4c137bb462120b362a4837c9f7c9fbb9017909155600e80548216735b051517516fc9b3e647678ad346a1a122a52ed4179055600f80549091167317ed15ea125055e0234a0022f05a1d942d48987717905560e060405260356080818152906200472260a0398051620000b09160119160209091019062000f4e565b506012805463ffffffff19169055348015620000cb57600080fd5b50604080518082018252600d81526c4a696c6c204279204d6f6c6c7960981b602080830191825283518085019094526004845263129a5b1b60e21b9084015281519192916200011d9160009162000f4e565b5080516200013390600190602084019062000f4e565b505050620001506200014a6200017860201b60201c565b6200017c565b6200015b33620001ce565b6012805460ff60201b191690556200017262000254565b620010ac565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001d862000178565b6001600160a01b0316620001eb62000f3f565b6001600160a01b0316146200021d5760405162461bcd60e51b815260040162000214906200103a565b60405180910390fd5b6001600160a01b038116620002465760405162461bcd60e51b8152600401620002149062000ff4565b62000251816200017c565b50565b6013602052603d7fe10af889b52875959dbf5b27d9c694768d94c70bbd606e14430345cbdf5e06265560197ff7ad835d8c38e6adb03ac676a0ff2791ce4dd481a34c3758048770caf8b5c51e55600a7fb0c506b803a4ae51873de99e28aa1db45ea570a58176b64796aec96afeaf104d5560097f23d40d7e6b09646e97321a7dd9fc367358d5a72fd6520fc13a6626d93054f2af8190557f10bac37df8ed22248a47e52cea46903a92d7105a3e7f03fd525c698c47e8c5068190557fcad70a037b50ff437ace1c62bcde10fc6287e1bfad86b922ad58d08ab61c3ac35560077fc754b930ebcc45cf4e7895a69e2b48efd88d824a1eecd0e7e4ff00e35809158c5560067f6897ac094613eb874df97ebe2f93dc5675cbb2dde2c070a75f535befed1ab6078190557fea52649b659ba3a51d1c8180f85f496c0b5bed1ceb9e543791766afed60e96298190557fde91b04ddb2efccddba8d8b9f24f02e6d7d87492fe730b1630eba17f7b589f9f8190557f5cc77dc247c819cae324f63b1d094c34a09763b9fb0c21f44518717d6618b47b5560057fd6bf840beee4211a96708297190487831c35ccc14605587508f3d5efb62369c78190557f684f60c6daa764c24890880555a8b47e3fd9cb9473d9cdd4484f65ba70daf1a98190557faf0d2b3f7014ccfcad906d3a096aaa0e328700ef256a142556d412f85bc784505560047fcfbc9b9df294cf32125511b841e5502b768550b700f2b08165d20ce27ad8ea2d5560037ffc915052af8457a5ac6bd48fb622660dccf33a0c5040257c9060d89cc90d759b8190557f3c5911fb3508327d68043370833949a38ad30cc16a73fcc2725406fa8210bb388190557f70d309dfb082b855af2ece3f44caf8e9e37f267dafdb8bafe80eb63b2d65282a8190557f9a837128586eab3a38f3cc6221b6d526c8a9fec3d011dbe304091ea5e9899fcb8190557fb6adc3d495222ff03afa50b57739d2d1346382ec329667c1262dbab2d82879a28190557f874cdaa42db7c96ca3d2e1544905d647cb34931c0616ede4169368a1584039478190557f0edbd0d84df92cbc5285fa8fe04300bc9f42dad4d16392cd3411103c115bc7228190557f52de26ee1b1494b1d01085795c9075d1c9333d20e0cdda61953e70bd744a411f8190557f66470aea7da09dbbc13e4d200930e3b4b9e7f767e653a4f24263c5c9152c9b398190557f2ee3e11be2026ab1c8a6b560f12b9c78d01dba139cd7cf01c116a7143ae076608190557f0b4540791e893545aa039d516a0e14870c5fdb36cd7b8cc5e012aa0fb5b8db2e8190557f116a21ca07c07ac4b9b32852fc08f1a3cc67c678ae6b7967173f3894a160a1a98190557fa176d61bfb00833eb03e7adae5e90f448b72bc251362d3cac080b11ec2b459328190557fa72daacd000c4eeb9c73a1c144c911523920c1eebbd8c892901f913abdc2b6438190557f8a1062459b7d53527973b6306fbd5ed8d75ef767360dbc1471b23b1175b56c858190557f10a6068fc78fb555916595142eabf8e96f00372b87fbd64a6643b5878249d0688190557f1ecccfb1efacc72778428bb9d8bf1466417522ded0698cf328961c700b6f576e8190557f737d4e801ab2ad774fda3a2d565c294031e520a1e56875c3f6b6f929ee2da8a58190557fe8414129a26f85cb5c7dff0ca8375a37ce623fed33620fde2eb4c3a70d4a0e788190557f61a726106b60d2657cafbb6b108167aeb008e5fbc6dd08b344ab42c66efa5f8c8190557fe4def7d585fe659b71c5641000a6ffe6bafc3b05bf5c8c05f9d24a3893beed2a8190557f8b8a960c6075f082df74c8824ee5105893aebdf7e2a80deccd65b3645aed1a9f8190557fed180f723a6aa43c67caf42f20dcec1343931fd92640180e1614815bd005d8d48190557f54aaa55ac36fe136716d5fa7a75a3b09af598714598b5bffdf5a7ba7c6c7c5478190557f3d875c8c510914c40c87fa803ab233afd3b05fe5a5541af8cad49777fba3ec9e8190557ff3a24b779e3efc9862610c55dca4323a3a90fd609bdd2e6aa09a0075ccce02bc8190557f1e88612df7ebcfe297064a9999be26a3f10db1a15b3b436ea48e366b452314b28190557f884c5f574db7345ded195a653165b7216a2ef8629b462bee4a032d6bbd7079f88190557fe405fcae452509642ea103f3dd78f47df7bc0a9a7eb22e395c4272ad4214998b8190557f2b6c3e1149fec07bc9c90198752c19bd7e4858b3586bf1cccb758d88615a91838190557f9427c90dd857f1e8a70cd5917a1f09bedd2fed67399c78c054242e146d30dec88190557feb48e372b9dcaeb239f80af264c48389213c23b2b719db99a441548a29491c308190557f20d5ca74119a85282b2fd9bad5b6d37a897faecbfca07c2741075e7f8b3a20bf8190557f6d441cef582dccdecf6502ddf4e310d4148948b7e8cff9ea1918579c8377cc138190557f7e1fad1a88db6e43f01c6ef0e9690637c334e659002b272d974e97e03b54664b5560027f7590766bd272860dfc1296ae199e9cfc25fedac9e02bf021eefaea6a0aac70208190557f309cba4ace674cd0db9e54d96694c3c582cd1127487d83e728a0756f039b671e8190557f1cd7e76794754ce442dfb834ab9c7c5ad8ba7106bfe632063cdb251aa2da7ff18190557f26048f2e318a847f6009efd985429ed9c38748b7d48fc929d8d7f10b98b0a38d8190557faf4268134918626290df2a9c554ba538f0d051539615acfa1e1e06ad9b0f3aeb8190557fd0f3c460d33997c8196d6793da0a0dea082b87d2e4d5e27457c789e5fcfc114e8190557fca1e1eed00a44b8ee0e4227dc9c92525629ec6b75d404324c47ebedfc4f51dcb8190557ffd49d4c9d774d9a05ec5f2134bf6d9d4aa569b867c13ac30045a3bc4910cffab8190557f30582f99b38c0ca7b265799862d5e74a71fac5f3e2072ea0e53a7a9e260341ed8190557fba7aef8a264c78f640663771667e894433072ec2ce75ee433afa4f8621b590de8190557f7d887a17cd238afeff1ba258a995025282ec04a4a0c88a47431799bb4fd2f9928190557fe0a6c2e774eb403ca90c1a4f2fda847349c577ca6c2c55e27198f2270f9e895d8190557f04e6043666d97b5e586009b30db21abde10e2d70fb8f5d5172bcb4392121cbcf8190557fe722d3905fbcf5d7e2fd7466abe43d8c54b0160d1e201a2ea6944cb98daebbb88190557fe96ba3bf93dbfcf24e40c70886d9020e610093c77f4a0a3bdba432c48df992458190557fdf49cb5cbc7343fc56c798fcd7bdb4b663624132dd3cf5ef919544dc74b5f01b8190557f980236e23ee5db3a7739c4e9822ad571f51742bcb9b8ca8c470d1cd2190dff228190557ff1eb204149e519ab8c445e5cd09247db27f996087580d2d591b54c2bc218f1b88190557fee0c9db08032c1f15eb67041816c65a78841915fc758cc2633a3172c0453b16f8190557f8304582e441891aa1b30bdd3d5d18c066c43d10b9c0d5d7d152535961c185a168190557f338f5699e008e00f2bd813e9905b7e2546594a2d9c0d9170dab03c9ff33109898190557f23754cc6af1c6b8b540af232def2ada5768ed03e77a5050d1b32402235e55c388190557ffa9e5681ab0a440ba8acc5b8c4eed4d32033c428c52494cd600e2e72a7a689a38190557f57906edc4778e96b6339af35444c0bcc5f585616d6894c8b22ea532052510d8b8190557f262ac6e95abaeac45295d02ae791ea09607c2b8ccad635294d5fa6377fcb21cf8190557f5e74ca323fdbee7cad19919cdf9fb90956c6fdc9e63febcc8285fef3ea27763d8190557fa042840e6d6ffddd72be8ff4bb2b2855226e40b21b67e730ab14d806d8e473b48190557f10806a1ba59454d7ee09bcca773b661e33ab07414e744c4a3e0527da309ca70e8190557f52946017414ffc0f4dba7461b5dcef4a9ce8de52807a497a210ac90cf819baa68190557f2e64cb8727fe967fb5be08b9406b53773b0d01870d03f97228b9fd3a409fbd348190557fd2532fa95d234747f902ae1892b1c5005e8d99f1a27f653af8b34e2798fe752e8190557fdad4e10890d287e4a4c4736d77dd39a4875752285ad298095515062272a7dee78190557ff7e1f2050563176bebeb58b59048b85774eeffa96b064d7bb45b95968d19b9828190557f8ab3bec66a7ff98da3a91c8c17fa3ef8e4d5ccac76289654f175eab568712bb38190557f27cf66b1cfdd93e2bd544ba46f6be5f4219c78175deabd85991b80ca12e417c28190557f459a9bea262a5a6ba461ab0342abfb356081a1ab36be2452408cfc782e362abc8190557f6ffb0702f9b7a795765dd05b45c3099910121494d810f0242a71de21e3e5994c8190557fca593da3f833c62bb65336c6a18ba5ce9ca4c28816d7ccad2742b930ebeba3b98190557f64ce6eba9bcdcde13b01e39f23bf7ed1493c8bda1fe4019b0fff58b4286c9d168190557fc959506fc0ab6dad88e3f55edf6ea05b1cfab83b7de629a2bc8e192f52036a6e81905573ff43bcca6a913c0af7cfce7fa5ccc0d61b4fa8016000527fa3017d9304dbdb8e48278c080f972fd42bf54735be8a724318afd6b6e6fa66b455565b6006546001600160a01b031690565b82805462000f5c906200106f565b90600052602060002090601f01602090048101928262000f80576000855562000fcb565b82601f1062000f9b57805160ff191683800117855562000fcb565b8280016001018555821562000fcb579182015b8281111562000fcb57825182559160200191906001019062000fae565b5062000fd992915062000fdd565b5090565b5b8082111562000fd9576000815560010162000fde565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200108457607f821691505b60208210811415620010a657634e487b7160e01b600052602260045260246000fd5b50919050565b61366680620010bc6000396000f3fe6080604052600436106103755760003560e01c8063817415c4116101d1578063bdb9f28d11610102578063deaa59df116100a0578063f2fde38b1161006f578063f2fde38b1461093b578063f51f96dd1461095b578063fb7ddd0414610970578063fd24a8541461099057610375565b8063deaa59df146108bb578063e985e9c5146108db578063f19e75d4146108fb578063f2c4ce1e1461091b57610375565b8063cde27a35116100dc578063cde27a3514610867578063d10a1a2b1461087c578063d5abeb0114610891578063d8a4169e146108a657610375565b8063bdb9f28d14610807578063c87b56dd14610827578063cb04aa1f1461084757610375565b806397b9bd081161016f578063a334412511610149578063a3344125146107aa578063a475b5dd146107bf578063b3ab66b0146107d4578063b88d4fde146107e757610375565b806397b9bd08146107555780639cbb5b4a14610775578063a22cb4651461078a57610375565b80638c3c4b34116101ab5780638c3c4b34146106e95780638da5cb5b1461070b578063916d31ff1461072057806395d89b411461074057610375565b8063817415c41461069f578063847e2101146106bf578063882567ca146106d457610375565b80633606f5b9116102ab5780636352211e11610249578063729ad39e11610223578063729ad39e14610635578063771282f6146106555780637b0826101461066a5780638074be981461067f57610375565b80636352211e146105e057806370a0823114610600578063715018a61461062057610375565b80634c709163116102855780634c70916314610576578063518302271461059657806355367ba9146105ab57806355f804b3146105c057610375565b80633606f5b91461052c5780633ccfd60b1461054157806342842e0e1461055657610375565b806318160ddd116103185780631f2898c3116102f25780631f2898c3146104c2578063215a4163146104d757806323b872dd146104ec5780633549345e1461050c57610375565b806318160ddd146104785780631919fed71461048d5780631c03ceb5146104ad57610375565b8063081812fc11610354578063081812fc146103f4578063095ea7b3146104215780630b2af42e1461044357806315c316fc1461046357610375565b80620e7fa81461037a57806301ffc9a7146103a557806306fdde03146103d2575b600080fd5b34801561038657600080fd5b5061038f6109a3565b60405161039c91906134d7565b60405180910390f35b3480156103b157600080fd5b506103c56103c0366004612969565b6109a9565b60405161039c9190612bac565b3480156103de57600080fd5b506103e76109f1565b60405161039c9190612bfd565b34801561040057600080fd5b5061041461040f3660046129e7565b610a83565b60405161039c9190612b5b565b34801561042d57600080fd5b5061044161043c3660046128d1565b610acf565b005b34801561044f57600080fd5b5061044161045e3660046128d1565b610b67565b34801561046f57600080fd5b50610441610bc2565b34801561048457600080fd5b5061038f610c1f565b34801561049957600080fd5b506104416104a83660046129e7565b610c25565b3480156104b957600080fd5b50610441610c69565b3480156104ce57600080fd5b50610441610cb9565b3480156104e357600080fd5b50610441610d13565b3480156104f857600080fd5b506104416105073660046127e3565b610d67565b34801561051857600080fd5b506104416105273660046129e7565b610d9f565b34801561053857600080fd5b50610441610de3565b34801561054d57600080fd5b50610441610e35565b34801561056257600080fd5b506104416105713660046127e3565b610eb2565b34801561058257600080fd5b5061038f610591366004612797565b610ecd565b3480156105a257600080fd5b506103c5610edf565b3480156105b757600080fd5b50610441610ee8565b3480156105cc57600080fd5b506104416105db3660046129a1565b610f42565b3480156105ec57600080fd5b506104146105fb3660046129e7565b610fbc565b34801561060c57600080fd5b5061038f61061b366004612797565b610ff1565b34801561062c57600080fd5b50610441611035565b34801561064157600080fd5b506104416106503660046128fa565b611080565b34801561066157600080fd5b5061038f611172565b34801561067657600080fd5b506103c5611178565b34801561068b57600080fd5b5061044161069a3660046129ff565b611186565b3480156106ab57600080fd5b506104416106ba366004612a21565b611216565b3480156106cb57600080fd5b506104416113a1565b3480156106e057600080fd5b506103c56113fb565b3480156106f557600080fd5b506106fe61140a565b60405161039c9190612bd5565b34801561071757600080fd5b5061041461141a565b34801561072c57600080fd5b5061038f61073b366004612797565b611429565b34801561074c57600080fd5b506103e761143b565b34801561076157600080fd5b5061038f610770366004612797565b61144a565b34801561078157600080fd5b506103c5611465565b34801561079657600080fd5b506104416107a5366004612897565b611475565b3480156107b657600080fd5b506106fe611487565b3480156107cb57600080fd5b50610441611497565b6104416107e23660046129e7565b6114e5565b3480156107f357600080fd5b5061044161080236600461281e565b6115ef565b34801561081357600080fd5b50610441610822366004612797565b611628565b34801561083357600080fd5b506103e76108423660046129e7565b6116af565b34801561085357600080fd5b5061038f610862366004612797565b61182d565b34801561087357600080fd5b5061038f61183f565b34801561088857600080fd5b5061038f611845565b34801561089d57600080fd5b5061038f61184b565b3480156108b257600080fd5b50610441611851565b3480156108c757600080fd5b506104416108d6366004612797565b61189f565b3480156108e757600080fd5b506103c56108f63660046127b1565b611900565b34801561090757600080fd5b506104416109163660046129e7565b611930565b34801561092757600080fd5b506104416109363660046129a1565b61199d565b34801561094757600080fd5b50610441610956366004612797565b6119ef565b34801561096757600080fd5b5061038f611a60565b34801561097c57600080fd5b5061038f61098b366004612797565b611a66565b61044161099e366004612a21565b611a81565b600a5481565b60006001600160e01b031982166380ac58cd60e01b14806109da57506001600160e01b03198216635b5e139f60e01b145b806109e957506109e982611bed565b90505b919050565b606060008054610a009061356e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2c9061356e565b8015610a795780601f10610a4e57610100808354040283529160200191610a79565b820191906000526020600020905b815481529060010190602001808311610a5c57829003601f168201915b5050505050905090565b6000610a8e82611c06565b610ab35760405162461bcd60e51b8152600401610aaa90613192565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610ada82610fbc565b9050806001600160a01b0316836001600160a01b03161415610b0e5760405162461bcd60e51b8152600401610aaa906132de565b806001600160a01b0316610b20611c23565b6001600160a01b03161480610b3c5750610b3c816108f6611c23565b610b585760405162461bcd60e51b8152600401610aaa90612f75565b610b628383611c27565b505050565b610b6f611c23565b6001600160a01b0316610b8061141a565b6001600160a01b031614610ba65760405162461bcd60e51b8152600401610aaa906131de565b6001600160a01b03909116600090815260136020526040902055565b610bca611c23565b6001600160a01b0316610bdb61141a565b6001600160a01b031614610c015760405162461bcd60e51b8152600401610aaa906131de565b601280546001919064ff000000001916600160201b835b0217905550565b60085490565b610c2d611c23565b6001600160a01b0316610c3e61141a565b6001600160a01b031614610c645760405162461bcd60e51b8152600401610aaa906131de565b600955565b610c71611c23565b6001600160a01b0316610c8261141a565b6001600160a01b031614610ca85760405162461bcd60e51b8152600401610aaa906131de565b6012805461ff001916610100179055565b610cc1611c23565b6001600160a01b0316610cd261141a565b6001600160a01b031614610cf85760405162461bcd60e51b8152600401610aaa906131de565b601280546002919064ff000000001916600160201b83610c18565b610d1b611c23565b6001600160a01b0316610d2c61141a565b6001600160a01b031614610d525760405162461bcd60e51b8152600401610aaa906131de565b6012805463ff00000019166301000000179055565b610d78610d72611c23565b82611c95565b610d945760405162461bcd60e51b8152600401610aaa90613354565b610b62838383611d1a565b610da7611c23565b6001600160a01b0316610db861141a565b6001600160a01b031614610dde5760405162461bcd60e51b8152600401610aaa906131de565b600a55565b610deb611c23565b6001600160a01b0316610dfc61141a565b6001600160a01b031614610e225760405162461bcd60e51b8152600401610aaa906131de565b6012805462ff0000191662010000179055565b610e3d611c23565b6001600160a01b0316610e4e61141a565b6001600160a01b031614610e745760405162461bcd60e51b8152600401610aaa906131de565b600f5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610eae573d6000803e3d6000fd5b5050565b610b62838383604051806020016040528060008152506115ef565b60156020526000908152604090205481565b60125460ff1681565b610ef0611c23565b6001600160a01b0316610f0161141a565b6001600160a01b031614610f275760405162461bcd60e51b8152600401610aaa906131de565b601280546003919064ff000000001916600160201b83610c18565b610f4a611c23565b6001600160a01b0316610f5b61141a565b6001600160a01b031614610f815760405162461bcd60e51b8152600401610aaa906131de565b601254610100900460ff1615610fa95760405162461bcd60e51b8152600401610aaa90612c47565b8051610eae906010906020840190612677565b6000818152600260205260408120546001600160a01b0316806109e95760405162461bcd60e51b8152600401610aaa9061301c565b60006001600160a01b0382166110195760405162461bcd60e51b8152600401610aaa90612fd2565b506001600160a01b031660009081526003602052604090205490565b61103d611c23565b6001600160a01b031661104e61141a565b6001600160a01b0316146110745760405162461bcd60e51b8152600401610aaa906131de565b61107e6000611e47565b565b611088611c23565b6001600160a01b031661109961141a565b6001600160a01b0316146110bf5760405162461bcd60e51b8152600401610aaa906131de565b6008546007546110cf83836134e0565b11156110ed5760405162461bcd60e51b8152600401610aaa90613092565b828290506008600082825461110291906134e0565b90915550600090505b8281101561116c5761115a84848381811061113657634e487b7160e01b600052603260045260246000fd5b905060200201602081019061114b9190612797565b61115583856134e0565b611e99565b80611164816135a9565b91505061110b565b50505050565b60085481565b601254610100900460ff1681565b61118e611c23565b6001600160a01b031661119f61141a565b6001600160a01b0316146111c55760405162461bcd60e51b8152600401610aaa906131de565b6008546007546111d584836134e0565b11156111f35760405162461bcd60e51b8152600401610aaa90613092565b826008600082825461120591906134e0565b90915550610b629050828285611eb3565b6012546301000000900460ff1661123f5760405162461bcd60e51b8152600401610aaa90613126565b600e54604080516020601f8501819004810282018101909252838152611289926001600160a01b0316918590859081908401838280828437600092019190915250611ede92505050565b6112a55760405162461bcd60e51b8152600401610aaa90612ef4565b60085433600090815260136020526040902054600190156112d25750336000908152601360205260409020545b3360009081526015602052604090205481906112ef9087906134e0565b111561130d5760405162461bcd60e51b8152600401610aaa90612d63565b60075461131a86846134e0565b11156113385760405162461bcd60e51b8152600401610aaa90613432565b33600090815260156020526040812080548792906113579084906134e0565b9250508190555084600c600082825461137091906134e0565b92505081905550846008600082825461138991906134e0565b9091555061139a9050338387611eb3565b5050505050565b6113a9611c23565b6001600160a01b03166113ba61141a565b6001600160a01b0316146113e05760405162461bcd60e51b8152600401610aaa906131de565b601280546000919064ff000000001916600160201b83610c18565b60125462010000900460ff1681565b601254600160201b900460ff1690565b6006546001600160a01b031690565b60136020526000908152604090205481565b606060018054610a009061356e565b6001600160a01b031660009081526015602052604090205490565b6012546301000000900460ff1681565b610eae611480611c23565b8383611f53565b601254600160201b900460ff1681565b61149f611c23565b6001600160a01b03166114b061141a565b6001600160a01b0316146114d65760405162461bcd60e51b8152600401610aaa906131de565b6012805460ff19166001179055565b600081116115055760405162461bcd60e51b8152600401610aaa906133a5565b60085460075481106115295760405162461bcd60e51b8152600401610aaa9061325c565b60075461153683836134e0565b11156115545760405162461bcd60e51b8152600401610aaa906133dc565b6002601254600160201b900460ff16600481111561158257634e487b7160e01b600052602160045260246000fd5b1461159f5760405162461bcd60e51b8152600401610aaa90612f2b565b816009546115ad919061350c565b3410156115cc5760405162461bcd60e51b8152600401610aaa90613293565b81600860008282546115de91906134e0565b90915550610eae9050338284611eb3565b6116006115fa611c23565b83611c95565b61161c5760405162461bcd60e51b8152600401610aaa90613354565b61116c84848484611ff6565b611630611c23565b6001600160a01b031661164161141a565b6001600160a01b0316146116675760405162461bcd60e51b8152600401610aaa906131de565b6001600160a01b03811661168d5760405162461bcd60e51b8152600401610aaa90613065565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60125460609060ff1661174e57601180546116c99061356e565b80601f01602080910402602001604051908101604052809291908181526020018280546116f59061356e565b80156117425780601f1061171757610100808354040283529160200191611742565b820191906000526020600020905b81548152906001019060200180831161172557829003601f168201915b505050505090506109ec565b60006010805461175d9061356e565b80601f01602080910402602001604051908101604052809291908181526020018280546117899061356e565b80156117d65780601f106117ab576101008083540402835291602001916117d6565b820191906000526020600020905b8154815290600101906020018083116117b957829003601f168201915b5050505050905060008151116117fb5760405180602001604052806000815250611826565b8061180584612029565b604051602001611816929190612aeb565b6040516020818303038152906040525b9392505050565b60146020526000908152604090205481565b600b5481565b600c5481565b60075481565b611859611c23565b6001600160a01b031661186a61141a565b6001600160a01b0316146118905760405162461bcd60e51b8152600401610aaa906131de565b6012805463ff00000019169055565b6118a7611c23565b6001600160a01b03166118b861141a565b6001600160a01b0316146118de5760405162461bcd60e51b8152600401610aaa906131de565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0380831660009081526005602090815260408083209385168352929052205460ff165b92915050565b611938611c23565b6001600160a01b031661194961141a565b6001600160a01b03161461196f5760405162461bcd60e51b8152600401610aaa906131de565b60085460075461197f83836134e0565b11156115cc5760405162461bcd60e51b8152600401610aaa90613092565b6119a5611c23565b6001600160a01b03166119b661141a565b6001600160a01b0316146119dc5760405162461bcd60e51b8152600401610aaa906131de565b8051610eae906011906020840190612677565b6119f7611c23565b6001600160a01b0316611a0861141a565b6001600160a01b031614611a2e5760405162461bcd60e51b8152600401610aaa906131de565b6001600160a01b038116611a545760405162461bcd60e51b8152600401610aaa90612d1d565b611a5d81611e47565b50565b60095481565b6001600160a01b031660009081526013602052604090205490565b6001601254600160201b900460ff166004811115611aaf57634e487b7160e01b600052602160045260246000fd5b14611acc5760405162461bcd60e51b8152600401610aaa90613488565b600d54604080516020601f8501819004810282018101909252838152611b16926001600160a01b0316918590859081908401838280828437600092019190915250611ede92505050565b611b325760405162461bcd60e51b8152600401610aaa90612ef4565b60008311611b525760405162461bcd60e51b8152600401610aaa9061331f565b82600a54611b60919061350c565b341015611b7f5760405162461bcd60e51b8152600401610aaa90613293565b82600b6000828254611b9191906134e0565b925050819055508260086000828254611baa91906134e0565b90915550503360009081526014602052604081208054859290611bce9084906134e0565b92505081905550610b623384600854611be7919061352b565b85611eb3565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c5c82610fbc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ca082611c06565b611cbc5760405162461bcd60e51b8152600401610aaa90612ea8565b6000611cc783610fbc565b9050806001600160a01b0316846001600160a01b03161480611d025750836001600160a01b0316611cf784610a83565b6001600160a01b0316145b80611d125750611d128185611900565b949350505050565b826001600160a01b0316611d2d82610fbc565b6001600160a01b031614611d535760405162461bcd60e51b8152600401610aaa90613213565b6001600160a01b038216611d795760405162461bcd60e51b8152600401610aaa90612deb565b611d84838383610b62565b611d8f600082611c27565b6001600160a01b0383166000908152600360205260408120805460019290611db890849061352b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611de69084906134e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610eae828260405180602001604052806000815250612144565b60005b8181101561116c57611ecc8461115583866134e0565b80611ed6816135a9565b915050611eb6565b6000803033604051602001611ef4929190612ac4565b6040516020818303038152906040528051906020012090506000611f2184611f1b84612177565b906121a7565b9050806001600160a01b0316856001600160a01b03161415611f485760019250505061192a565b60009250505061192a565b816001600160a01b0316836001600160a01b03161415611f855760405162461bcd60e51b8152600401610aaa90612e2f565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611fe9908590612bac565b60405180910390a3505050565b612001848484611d1a565b61200d848484846121cb565b61116c5760405162461bcd60e51b8152600401610aaa90612ccb565b60608161204e57506040805180820190915260018152600360fc1b60208201526109ec565b8160005b81156120785780612062816135a9565b91506120719050600a836134f8565b9150612052565b60008167ffffffffffffffff8111156120a157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120cb576020820181803683370190505b5090505b8415611d12576120e060018361352b565b91506120ed600a866135c4565b6120f89060306134e0565b60f81b81838151811061211b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061213d600a866134f8565b94506120cf565b61214e83836122e6565b61215b60008484846121cb565b610b625760405162461bcd60e51b8152600401610aaa90612ccb565b60008160405160200161218a9190612b2a565b604051602081830303815290604052805190602001209050919050565b60008060006121b685856123c5565b915091506121c381612435565b509392505050565b60006121df846001600160a01b0316612562565b156122db57836001600160a01b031663150b7a026121fb611c23565b8786866040518563ffffffff1660e01b815260040161221d9493929190612b6f565b602060405180830381600087803b15801561223757600080fd5b505af1925050508015612267575060408051601f3d908101601f1916820190925261226491810190612985565b60015b6122c1573d808015612295576040519150601f19603f3d011682016040523d82523d6000602084013e61229a565b606091505b5080516122b95760405162461bcd60e51b8152600401610aaa90612ccb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d12565b506001949350505050565b6001600160a01b03821661230c5760405162461bcd60e51b8152600401610aaa9061315d565b61231581611c06565b156123325760405162461bcd60e51b8152600401610aaa90612db4565b61233e60008383610b62565b6001600160a01b03821660009081526003602052604081208054600192906123679084906134e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000808251604114156123fc5760208301516040840151606085015160001a6123f087828585612568565b9450945050505061242e565b825160401415612426576020830151604084015161241b868383612648565b93509350505061242e565b506000905060025b9250929050565b600081600481111561245757634e487b7160e01b600052602160045260246000fd5b141561246257611a5d565b600181600481111561248457634e487b7160e01b600052602160045260246000fd5b14156124a25760405162461bcd60e51b8152600401610aaa90612c10565b60028160048111156124c457634e487b7160e01b600052602160045260246000fd5b14156124e25760405162461bcd60e51b8152600401610aaa90612c94565b600381600481111561250457634e487b7160e01b600052602160045260246000fd5b14156125225760405162461bcd60e51b8152600401610aaa90612e66565b600481600481111561254457634e487b7160e01b600052602160045260246000fd5b1415611a5d5760405162461bcd60e51b8152600401610aaa906130e4565b3b151590565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561259f575060009050600361263f565b8460ff16601b141580156125b757508460ff16601c14155b156125c8575060009050600461263f565b6000600187878787604051600081526020016040526040516125ed9493929190612bb7565b6020604051602081039080840390855afa15801561260f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166126385760006001925092505061263f565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161266987828885612568565b935093505050935093915050565b8280546126839061356e565b90600052602060002090601f0160209004810192826126a557600085556126eb565b82601f106126be57805160ff19168380011785556126eb565b828001600101855582156126eb579182015b828111156126eb5782518255916020019190600101906126d0565b506126f79291506126fb565b5090565b5b808211156126f757600081556001016126fc565b600067ffffffffffffffff8084111561272b5761272b613604565b604051601f8501601f19168101602001828111828210171561274f5761274f613604565b60405284815291508183850186101561276757600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146109ec57600080fd5b6000602082840312156127a8578081fd5b61182682612780565b600080604083850312156127c3578081fd5b6127cc83612780565b91506127da60208401612780565b90509250929050565b6000806000606084860312156127f7578081fd5b61280084612780565b925061280e60208501612780565b9150604084013590509250925092565b60008060008060808587031215612833578081fd5b61283c85612780565b935061284a60208601612780565b925060408501359150606085013567ffffffffffffffff81111561286c578182fd5b8501601f8101871361287c578182fd5b61288b87823560208401612710565b91505092959194509250565b600080604083850312156128a9578182fd5b6128b283612780565b9150602083013580151581146128c6578182fd5b809150509250929050565b600080604083850312156128e3578182fd5b6128ec83612780565b946020939093013593505050565b6000806020838503121561290c578182fd5b823567ffffffffffffffff80821115612923578384fd5b818501915085601f830112612936578384fd5b813581811115612944578485fd5b8660208083028501011115612957578485fd5b60209290920196919550909350505050565b60006020828403121561297a578081fd5b81356118268161361a565b600060208284031215612996578081fd5b81516118268161361a565b6000602082840312156129b2578081fd5b813567ffffffffffffffff8111156129c8578182fd5b8201601f810184136129d8578182fd5b611d1284823560208401612710565b6000602082840312156129f8578081fd5b5035919050565b60008060408385031215612a11578182fd5b823591506127da60208401612780565b600080600060408486031215612a35578283fd5b83359250602084013567ffffffffffffffff80821115612a53578384fd5b818601915086601f830112612a66578384fd5b813581811115612a74578485fd5b876020828501011115612a85578485fd5b6020830194508093505050509250925092565b60008151808452612ab0816020860160208601613542565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff19606093841b811682529190921b16601482015260280190565b60008351612afd818460208801613542565b835190830190612b11818360208801613542565b64173539b7b760d91b9101908152600501949350505050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ba290830184612a98565b9695505050505050565b901515815260200190565b93845260ff9290921660208401526040830152606082015260800190565b6020810160058310612bf757634e487b7160e01b600052602160045260246000fd5b91905290565b6000602082526118266020830184612a98565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b6020808252602d908201527f4261736520555249206368616e676520686173206265656e2064697361626c6560408201526c64207065726d616e656e746c7960981b606082015260800190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526031908201527f596f7520646f6e742068617665207065726d6973696f6e20746f20667265652060408201527036b4b73a103a3430ba1030b6b7bab73a1760791b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601b908201527f5349474e41545552455f56414c49444154494f4e5f4641494c45440000000000604082015260600190565b6020808252602a908201527f4a696c6c204279204d6f6c6c793a205075626c69632073616c6520686173206e60408201526937ba1030b1ba34bb329760b11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526013908201527243414e2754205055542030204144445245535360681b604082015260600190565b60208082526032908201527f4a696c6c204279204d6f6c6c793a20596f752063616e2774206d696e74206d6f6040820152717265207468616e206d617820737570706c7960701b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b6020808252601c908201527f46726565206d696e74206973206e6f74206f70656e6564207965742e00000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526018908201527f4a696c6c204279204d6f6c6c793a20536f6c64206f7574210000000000000000604082015260600190565b6020808252602b908201527f4a696c6c204279204d6f6c6c793a20496e737566696369656e7420455448206160408201526a36b7bab73a1039b2b73a1760a91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f596f75206d757374206d696e74206174206c65617374206f6e65204e46542e00604082015260600190565b60208082526036908201527f4a696c6c204279204d6f6c6c793a2053656c656374656420616d6f756e7420656040820152753c31b2b2b239903a34329036b0bc1039bab838363c9760511b606082015260800190565b60208082526036908201527f4a696c6c204279204d6f6c6c793a204d696e7420746f6f206c617267652c20656040820152757863656564696e6720746865206d6178537570706c7960501b606082015260800190565b6020808252602f908201527f4a696c6c204279204d6f6c6c793a2050726573616c65206973206e6f7420637560408201526e393932b73a363c9030b1ba34bb329760891b606082015260800190565b90815260200190565b600082198211156134f3576134f36135d8565b500190565b600082613507576135076135ee565b500490565b6000816000190483118215151615613526576135266135d8565b500290565b60008282101561353d5761353d6135d8565b500390565b60005b8381101561355d578181015183820152602001613545565b8381111561116c5750506000910152565b60028104600182168061358257607f821691505b602082108114156135a357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156135bd576135bd6135d8565b5060010190565b6000826135d3576135d36135ee565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a5d57600080fdfea264697066735822122013d8ceed2b8d5e083fd45a0f68dc99867c5b25d3f1c17e71a7aa18d2d0b03c4864736f6c63430008000033697066733a2f2f516d556671376f58736a4845596553675461376a6b76716f4b56617a795a4e4465344452377059744e54626b5136

Deployed Bytecode

0x6080604052600436106103755760003560e01c8063817415c4116101d1578063bdb9f28d11610102578063deaa59df116100a0578063f2fde38b1161006f578063f2fde38b1461093b578063f51f96dd1461095b578063fb7ddd0414610970578063fd24a8541461099057610375565b8063deaa59df146108bb578063e985e9c5146108db578063f19e75d4146108fb578063f2c4ce1e1461091b57610375565b8063cde27a35116100dc578063cde27a3514610867578063d10a1a2b1461087c578063d5abeb0114610891578063d8a4169e146108a657610375565b8063bdb9f28d14610807578063c87b56dd14610827578063cb04aa1f1461084757610375565b806397b9bd081161016f578063a334412511610149578063a3344125146107aa578063a475b5dd146107bf578063b3ab66b0146107d4578063b88d4fde146107e757610375565b806397b9bd08146107555780639cbb5b4a14610775578063a22cb4651461078a57610375565b80638c3c4b34116101ab5780638c3c4b34146106e95780638da5cb5b1461070b578063916d31ff1461072057806395d89b411461074057610375565b8063817415c41461069f578063847e2101146106bf578063882567ca146106d457610375565b80633606f5b9116102ab5780636352211e11610249578063729ad39e11610223578063729ad39e14610635578063771282f6146106555780637b0826101461066a5780638074be981461067f57610375565b80636352211e146105e057806370a0823114610600578063715018a61461062057610375565b80634c709163116102855780634c70916314610576578063518302271461059657806355367ba9146105ab57806355f804b3146105c057610375565b80633606f5b91461052c5780633ccfd60b1461054157806342842e0e1461055657610375565b806318160ddd116103185780631f2898c3116102f25780631f2898c3146104c2578063215a4163146104d757806323b872dd146104ec5780633549345e1461050c57610375565b806318160ddd146104785780631919fed71461048d5780631c03ceb5146104ad57610375565b8063081812fc11610354578063081812fc146103f4578063095ea7b3146104215780630b2af42e1461044357806315c316fc1461046357610375565b80620e7fa81461037a57806301ffc9a7146103a557806306fdde03146103d2575b600080fd5b34801561038657600080fd5b5061038f6109a3565b60405161039c91906134d7565b60405180910390f35b3480156103b157600080fd5b506103c56103c0366004612969565b6109a9565b60405161039c9190612bac565b3480156103de57600080fd5b506103e76109f1565b60405161039c9190612bfd565b34801561040057600080fd5b5061041461040f3660046129e7565b610a83565b60405161039c9190612b5b565b34801561042d57600080fd5b5061044161043c3660046128d1565b610acf565b005b34801561044f57600080fd5b5061044161045e3660046128d1565b610b67565b34801561046f57600080fd5b50610441610bc2565b34801561048457600080fd5b5061038f610c1f565b34801561049957600080fd5b506104416104a83660046129e7565b610c25565b3480156104b957600080fd5b50610441610c69565b3480156104ce57600080fd5b50610441610cb9565b3480156104e357600080fd5b50610441610d13565b3480156104f857600080fd5b506104416105073660046127e3565b610d67565b34801561051857600080fd5b506104416105273660046129e7565b610d9f565b34801561053857600080fd5b50610441610de3565b34801561054d57600080fd5b50610441610e35565b34801561056257600080fd5b506104416105713660046127e3565b610eb2565b34801561058257600080fd5b5061038f610591366004612797565b610ecd565b3480156105a257600080fd5b506103c5610edf565b3480156105b757600080fd5b50610441610ee8565b3480156105cc57600080fd5b506104416105db3660046129a1565b610f42565b3480156105ec57600080fd5b506104146105fb3660046129e7565b610fbc565b34801561060c57600080fd5b5061038f61061b366004612797565b610ff1565b34801561062c57600080fd5b50610441611035565b34801561064157600080fd5b506104416106503660046128fa565b611080565b34801561066157600080fd5b5061038f611172565b34801561067657600080fd5b506103c5611178565b34801561068b57600080fd5b5061044161069a3660046129ff565b611186565b3480156106ab57600080fd5b506104416106ba366004612a21565b611216565b3480156106cb57600080fd5b506104416113a1565b3480156106e057600080fd5b506103c56113fb565b3480156106f557600080fd5b506106fe61140a565b60405161039c9190612bd5565b34801561071757600080fd5b5061041461141a565b34801561072c57600080fd5b5061038f61073b366004612797565b611429565b34801561074c57600080fd5b506103e761143b565b34801561076157600080fd5b5061038f610770366004612797565b61144a565b34801561078157600080fd5b506103c5611465565b34801561079657600080fd5b506104416107a5366004612897565b611475565b3480156107b657600080fd5b506106fe611487565b3480156107cb57600080fd5b50610441611497565b6104416107e23660046129e7565b6114e5565b3480156107f357600080fd5b5061044161080236600461281e565b6115ef565b34801561081357600080fd5b50610441610822366004612797565b611628565b34801561083357600080fd5b506103e76108423660046129e7565b6116af565b34801561085357600080fd5b5061038f610862366004612797565b61182d565b34801561087357600080fd5b5061038f61183f565b34801561088857600080fd5b5061038f611845565b34801561089d57600080fd5b5061038f61184b565b3480156108b257600080fd5b50610441611851565b3480156108c757600080fd5b506104416108d6366004612797565b61189f565b3480156108e757600080fd5b506103c56108f63660046127b1565b611900565b34801561090757600080fd5b506104416109163660046129e7565b611930565b34801561092757600080fd5b506104416109363660046129a1565b61199d565b34801561094757600080fd5b50610441610956366004612797565b6119ef565b34801561096757600080fd5b5061038f611a60565b34801561097c57600080fd5b5061038f61098b366004612797565b611a66565b61044161099e366004612a21565b611a81565b600a5481565b60006001600160e01b031982166380ac58cd60e01b14806109da57506001600160e01b03198216635b5e139f60e01b145b806109e957506109e982611bed565b90505b919050565b606060008054610a009061356e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2c9061356e565b8015610a795780601f10610a4e57610100808354040283529160200191610a79565b820191906000526020600020905b815481529060010190602001808311610a5c57829003601f168201915b5050505050905090565b6000610a8e82611c06565b610ab35760405162461bcd60e51b8152600401610aaa90613192565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610ada82610fbc565b9050806001600160a01b0316836001600160a01b03161415610b0e5760405162461bcd60e51b8152600401610aaa906132de565b806001600160a01b0316610b20611c23565b6001600160a01b03161480610b3c5750610b3c816108f6611c23565b610b585760405162461bcd60e51b8152600401610aaa90612f75565b610b628383611c27565b505050565b610b6f611c23565b6001600160a01b0316610b8061141a565b6001600160a01b031614610ba65760405162461bcd60e51b8152600401610aaa906131de565b6001600160a01b03909116600090815260136020526040902055565b610bca611c23565b6001600160a01b0316610bdb61141a565b6001600160a01b031614610c015760405162461bcd60e51b8152600401610aaa906131de565b601280546001919064ff000000001916600160201b835b0217905550565b60085490565b610c2d611c23565b6001600160a01b0316610c3e61141a565b6001600160a01b031614610c645760405162461bcd60e51b8152600401610aaa906131de565b600955565b610c71611c23565b6001600160a01b0316610c8261141a565b6001600160a01b031614610ca85760405162461bcd60e51b8152600401610aaa906131de565b6012805461ff001916610100179055565b610cc1611c23565b6001600160a01b0316610cd261141a565b6001600160a01b031614610cf85760405162461bcd60e51b8152600401610aaa906131de565b601280546002919064ff000000001916600160201b83610c18565b610d1b611c23565b6001600160a01b0316610d2c61141a565b6001600160a01b031614610d525760405162461bcd60e51b8152600401610aaa906131de565b6012805463ff00000019166301000000179055565b610d78610d72611c23565b82611c95565b610d945760405162461bcd60e51b8152600401610aaa90613354565b610b62838383611d1a565b610da7611c23565b6001600160a01b0316610db861141a565b6001600160a01b031614610dde5760405162461bcd60e51b8152600401610aaa906131de565b600a55565b610deb611c23565b6001600160a01b0316610dfc61141a565b6001600160a01b031614610e225760405162461bcd60e51b8152600401610aaa906131de565b6012805462ff0000191662010000179055565b610e3d611c23565b6001600160a01b0316610e4e61141a565b6001600160a01b031614610e745760405162461bcd60e51b8152600401610aaa906131de565b600f5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610eae573d6000803e3d6000fd5b5050565b610b62838383604051806020016040528060008152506115ef565b60156020526000908152604090205481565b60125460ff1681565b610ef0611c23565b6001600160a01b0316610f0161141a565b6001600160a01b031614610f275760405162461bcd60e51b8152600401610aaa906131de565b601280546003919064ff000000001916600160201b83610c18565b610f4a611c23565b6001600160a01b0316610f5b61141a565b6001600160a01b031614610f815760405162461bcd60e51b8152600401610aaa906131de565b601254610100900460ff1615610fa95760405162461bcd60e51b8152600401610aaa90612c47565b8051610eae906010906020840190612677565b6000818152600260205260408120546001600160a01b0316806109e95760405162461bcd60e51b8152600401610aaa9061301c565b60006001600160a01b0382166110195760405162461bcd60e51b8152600401610aaa90612fd2565b506001600160a01b031660009081526003602052604090205490565b61103d611c23565b6001600160a01b031661104e61141a565b6001600160a01b0316146110745760405162461bcd60e51b8152600401610aaa906131de565b61107e6000611e47565b565b611088611c23565b6001600160a01b031661109961141a565b6001600160a01b0316146110bf5760405162461bcd60e51b8152600401610aaa906131de565b6008546007546110cf83836134e0565b11156110ed5760405162461bcd60e51b8152600401610aaa90613092565b828290506008600082825461110291906134e0565b90915550600090505b8281101561116c5761115a84848381811061113657634e487b7160e01b600052603260045260246000fd5b905060200201602081019061114b9190612797565b61115583856134e0565b611e99565b80611164816135a9565b91505061110b565b50505050565b60085481565b601254610100900460ff1681565b61118e611c23565b6001600160a01b031661119f61141a565b6001600160a01b0316146111c55760405162461bcd60e51b8152600401610aaa906131de565b6008546007546111d584836134e0565b11156111f35760405162461bcd60e51b8152600401610aaa90613092565b826008600082825461120591906134e0565b90915550610b629050828285611eb3565b6012546301000000900460ff1661123f5760405162461bcd60e51b8152600401610aaa90613126565b600e54604080516020601f8501819004810282018101909252838152611289926001600160a01b0316918590859081908401838280828437600092019190915250611ede92505050565b6112a55760405162461bcd60e51b8152600401610aaa90612ef4565b60085433600090815260136020526040902054600190156112d25750336000908152601360205260409020545b3360009081526015602052604090205481906112ef9087906134e0565b111561130d5760405162461bcd60e51b8152600401610aaa90612d63565b60075461131a86846134e0565b11156113385760405162461bcd60e51b8152600401610aaa90613432565b33600090815260156020526040812080548792906113579084906134e0565b9250508190555084600c600082825461137091906134e0565b92505081905550846008600082825461138991906134e0565b9091555061139a9050338387611eb3565b5050505050565b6113a9611c23565b6001600160a01b03166113ba61141a565b6001600160a01b0316146113e05760405162461bcd60e51b8152600401610aaa906131de565b601280546000919064ff000000001916600160201b83610c18565b60125462010000900460ff1681565b601254600160201b900460ff1690565b6006546001600160a01b031690565b60136020526000908152604090205481565b606060018054610a009061356e565b6001600160a01b031660009081526015602052604090205490565b6012546301000000900460ff1681565b610eae611480611c23565b8383611f53565b601254600160201b900460ff1681565b61149f611c23565b6001600160a01b03166114b061141a565b6001600160a01b0316146114d65760405162461bcd60e51b8152600401610aaa906131de565b6012805460ff19166001179055565b600081116115055760405162461bcd60e51b8152600401610aaa906133a5565b60085460075481106115295760405162461bcd60e51b8152600401610aaa9061325c565b60075461153683836134e0565b11156115545760405162461bcd60e51b8152600401610aaa906133dc565b6002601254600160201b900460ff16600481111561158257634e487b7160e01b600052602160045260246000fd5b1461159f5760405162461bcd60e51b8152600401610aaa90612f2b565b816009546115ad919061350c565b3410156115cc5760405162461bcd60e51b8152600401610aaa90613293565b81600860008282546115de91906134e0565b90915550610eae9050338284611eb3565b6116006115fa611c23565b83611c95565b61161c5760405162461bcd60e51b8152600401610aaa90613354565b61116c84848484611ff6565b611630611c23565b6001600160a01b031661164161141a565b6001600160a01b0316146116675760405162461bcd60e51b8152600401610aaa906131de565b6001600160a01b03811661168d5760405162461bcd60e51b8152600401610aaa90613065565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60125460609060ff1661174e57601180546116c99061356e565b80601f01602080910402602001604051908101604052809291908181526020018280546116f59061356e565b80156117425780601f1061171757610100808354040283529160200191611742565b820191906000526020600020905b81548152906001019060200180831161172557829003601f168201915b505050505090506109ec565b60006010805461175d9061356e565b80601f01602080910402602001604051908101604052809291908181526020018280546117899061356e565b80156117d65780601f106117ab576101008083540402835291602001916117d6565b820191906000526020600020905b8154815290600101906020018083116117b957829003601f168201915b5050505050905060008151116117fb5760405180602001604052806000815250611826565b8061180584612029565b604051602001611816929190612aeb565b6040516020818303038152906040525b9392505050565b60146020526000908152604090205481565b600b5481565b600c5481565b60075481565b611859611c23565b6001600160a01b031661186a61141a565b6001600160a01b0316146118905760405162461bcd60e51b8152600401610aaa906131de565b6012805463ff00000019169055565b6118a7611c23565b6001600160a01b03166118b861141a565b6001600160a01b0316146118de5760405162461bcd60e51b8152600401610aaa906131de565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0380831660009081526005602090815260408083209385168352929052205460ff165b92915050565b611938611c23565b6001600160a01b031661194961141a565b6001600160a01b03161461196f5760405162461bcd60e51b8152600401610aaa906131de565b60085460075461197f83836134e0565b11156115cc5760405162461bcd60e51b8152600401610aaa90613092565b6119a5611c23565b6001600160a01b03166119b661141a565b6001600160a01b0316146119dc5760405162461bcd60e51b8152600401610aaa906131de565b8051610eae906011906020840190612677565b6119f7611c23565b6001600160a01b0316611a0861141a565b6001600160a01b031614611a2e5760405162461bcd60e51b8152600401610aaa906131de565b6001600160a01b038116611a545760405162461bcd60e51b8152600401610aaa90612d1d565b611a5d81611e47565b50565b60095481565b6001600160a01b031660009081526013602052604090205490565b6001601254600160201b900460ff166004811115611aaf57634e487b7160e01b600052602160045260246000fd5b14611acc5760405162461bcd60e51b8152600401610aaa90613488565b600d54604080516020601f8501819004810282018101909252838152611b16926001600160a01b0316918590859081908401838280828437600092019190915250611ede92505050565b611b325760405162461bcd60e51b8152600401610aaa90612ef4565b60008311611b525760405162461bcd60e51b8152600401610aaa9061331f565b82600a54611b60919061350c565b341015611b7f5760405162461bcd60e51b8152600401610aaa90613293565b82600b6000828254611b9191906134e0565b925050819055508260086000828254611baa91906134e0565b90915550503360009081526014602052604081208054859290611bce9084906134e0565b92505081905550610b623384600854611be7919061352b565b85611eb3565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c5c82610fbc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ca082611c06565b611cbc5760405162461bcd60e51b8152600401610aaa90612ea8565b6000611cc783610fbc565b9050806001600160a01b0316846001600160a01b03161480611d025750836001600160a01b0316611cf784610a83565b6001600160a01b0316145b80611d125750611d128185611900565b949350505050565b826001600160a01b0316611d2d82610fbc565b6001600160a01b031614611d535760405162461bcd60e51b8152600401610aaa90613213565b6001600160a01b038216611d795760405162461bcd60e51b8152600401610aaa90612deb565b611d84838383610b62565b611d8f600082611c27565b6001600160a01b0383166000908152600360205260408120805460019290611db890849061352b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611de69084906134e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610eae828260405180602001604052806000815250612144565b60005b8181101561116c57611ecc8461115583866134e0565b80611ed6816135a9565b915050611eb6565b6000803033604051602001611ef4929190612ac4565b6040516020818303038152906040528051906020012090506000611f2184611f1b84612177565b906121a7565b9050806001600160a01b0316856001600160a01b03161415611f485760019250505061192a565b60009250505061192a565b816001600160a01b0316836001600160a01b03161415611f855760405162461bcd60e51b8152600401610aaa90612e2f565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611fe9908590612bac565b60405180910390a3505050565b612001848484611d1a565b61200d848484846121cb565b61116c5760405162461bcd60e51b8152600401610aaa90612ccb565b60608161204e57506040805180820190915260018152600360fc1b60208201526109ec565b8160005b81156120785780612062816135a9565b91506120719050600a836134f8565b9150612052565b60008167ffffffffffffffff8111156120a157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120cb576020820181803683370190505b5090505b8415611d12576120e060018361352b565b91506120ed600a866135c4565b6120f89060306134e0565b60f81b81838151811061211b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061213d600a866134f8565b94506120cf565b61214e83836122e6565b61215b60008484846121cb565b610b625760405162461bcd60e51b8152600401610aaa90612ccb565b60008160405160200161218a9190612b2a565b604051602081830303815290604052805190602001209050919050565b60008060006121b685856123c5565b915091506121c381612435565b509392505050565b60006121df846001600160a01b0316612562565b156122db57836001600160a01b031663150b7a026121fb611c23565b8786866040518563ffffffff1660e01b815260040161221d9493929190612b6f565b602060405180830381600087803b15801561223757600080fd5b505af1925050508015612267575060408051601f3d908101601f1916820190925261226491810190612985565b60015b6122c1573d808015612295576040519150601f19603f3d011682016040523d82523d6000602084013e61229a565b606091505b5080516122b95760405162461bcd60e51b8152600401610aaa90612ccb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d12565b506001949350505050565b6001600160a01b03821661230c5760405162461bcd60e51b8152600401610aaa9061315d565b61231581611c06565b156123325760405162461bcd60e51b8152600401610aaa90612db4565b61233e60008383610b62565b6001600160a01b03821660009081526003602052604081208054600192906123679084906134e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000808251604114156123fc5760208301516040840151606085015160001a6123f087828585612568565b9450945050505061242e565b825160401415612426576020830151604084015161241b868383612648565b93509350505061242e565b506000905060025b9250929050565b600081600481111561245757634e487b7160e01b600052602160045260246000fd5b141561246257611a5d565b600181600481111561248457634e487b7160e01b600052602160045260246000fd5b14156124a25760405162461bcd60e51b8152600401610aaa90612c10565b60028160048111156124c457634e487b7160e01b600052602160045260246000fd5b14156124e25760405162461bcd60e51b8152600401610aaa90612c94565b600381600481111561250457634e487b7160e01b600052602160045260246000fd5b14156125225760405162461bcd60e51b8152600401610aaa90612e66565b600481600481111561254457634e487b7160e01b600052602160045260246000fd5b1415611a5d5760405162461bcd60e51b8152600401610aaa906130e4565b3b151590565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561259f575060009050600361263f565b8460ff16601b141580156125b757508460ff16601c14155b156125c8575060009050600461263f565b6000600187878787604051600081526020016040526040516125ed9493929190612bb7565b6020604051602081039080840390855afa15801561260f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166126385760006001925092505061263f565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161266987828885612568565b935093505050935093915050565b8280546126839061356e565b90600052602060002090601f0160209004810192826126a557600085556126eb565b82601f106126be57805160ff19168380011785556126eb565b828001600101855582156126eb579182015b828111156126eb5782518255916020019190600101906126d0565b506126f79291506126fb565b5090565b5b808211156126f757600081556001016126fc565b600067ffffffffffffffff8084111561272b5761272b613604565b604051601f8501601f19168101602001828111828210171561274f5761274f613604565b60405284815291508183850186101561276757600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146109ec57600080fd5b6000602082840312156127a8578081fd5b61182682612780565b600080604083850312156127c3578081fd5b6127cc83612780565b91506127da60208401612780565b90509250929050565b6000806000606084860312156127f7578081fd5b61280084612780565b925061280e60208501612780565b9150604084013590509250925092565b60008060008060808587031215612833578081fd5b61283c85612780565b935061284a60208601612780565b925060408501359150606085013567ffffffffffffffff81111561286c578182fd5b8501601f8101871361287c578182fd5b61288b87823560208401612710565b91505092959194509250565b600080604083850312156128a9578182fd5b6128b283612780565b9150602083013580151581146128c6578182fd5b809150509250929050565b600080604083850312156128e3578182fd5b6128ec83612780565b946020939093013593505050565b6000806020838503121561290c578182fd5b823567ffffffffffffffff80821115612923578384fd5b818501915085601f830112612936578384fd5b813581811115612944578485fd5b8660208083028501011115612957578485fd5b60209290920196919550909350505050565b60006020828403121561297a578081fd5b81356118268161361a565b600060208284031215612996578081fd5b81516118268161361a565b6000602082840312156129b2578081fd5b813567ffffffffffffffff8111156129c8578182fd5b8201601f810184136129d8578182fd5b611d1284823560208401612710565b6000602082840312156129f8578081fd5b5035919050565b60008060408385031215612a11578182fd5b823591506127da60208401612780565b600080600060408486031215612a35578283fd5b83359250602084013567ffffffffffffffff80821115612a53578384fd5b818601915086601f830112612a66578384fd5b813581811115612a74578485fd5b876020828501011115612a85578485fd5b6020830194508093505050509250925092565b60008151808452612ab0816020860160208601613542565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff19606093841b811682529190921b16601482015260280190565b60008351612afd818460208801613542565b835190830190612b11818360208801613542565b64173539b7b760d91b9101908152600501949350505050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ba290830184612a98565b9695505050505050565b901515815260200190565b93845260ff9290921660208401526040830152606082015260800190565b6020810160058310612bf757634e487b7160e01b600052602160045260246000fd5b91905290565b6000602082526118266020830184612a98565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b6020808252602d908201527f4261736520555249206368616e676520686173206265656e2064697361626c6560408201526c64207065726d616e656e746c7960981b606082015260800190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526031908201527f596f7520646f6e742068617665207065726d6973696f6e20746f20667265652060408201527036b4b73a103a3430ba1030b6b7bab73a1760791b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601b908201527f5349474e41545552455f56414c49444154494f4e5f4641494c45440000000000604082015260600190565b6020808252602a908201527f4a696c6c204279204d6f6c6c793a205075626c69632073616c6520686173206e60408201526937ba1030b1ba34bb329760b11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526013908201527243414e2754205055542030204144445245535360681b604082015260600190565b60208082526032908201527f4a696c6c204279204d6f6c6c793a20596f752063616e2774206d696e74206d6f6040820152717265207468616e206d617820737570706c7960701b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b6020808252601c908201527f46726565206d696e74206973206e6f74206f70656e6564207965742e00000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526018908201527f4a696c6c204279204d6f6c6c793a20536f6c64206f7574210000000000000000604082015260600190565b6020808252602b908201527f4a696c6c204279204d6f6c6c793a20496e737566696369656e7420455448206160408201526a36b7bab73a1039b2b73a1760a91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f596f75206d757374206d696e74206174206c65617374206f6e65204e46542e00604082015260600190565b60208082526036908201527f4a696c6c204279204d6f6c6c793a2053656c656374656420616d6f756e7420656040820152753c31b2b2b239903a34329036b0bc1039bab838363c9760511b606082015260800190565b60208082526036908201527f4a696c6c204279204d6f6c6c793a204d696e7420746f6f206c617267652c20656040820152757863656564696e6720746865206d6178537570706c7960501b606082015260800190565b6020808252602f908201527f4a696c6c204279204d6f6c6c793a2050726573616c65206973206e6f7420637560408201526e393932b73a363c9030b1ba34bb329760891b606082015260800190565b90815260200190565b600082198211156134f3576134f36135d8565b500190565b600082613507576135076135ee565b500490565b6000816000190483118215151615613526576135266135d8565b500290565b60008282101561353d5761353d6135d8565b500390565b60005b8381101561355d578181015183820152602001613545565b8381111561116c5750506000910152565b60028104600182168061358257607f821691505b602082108114156135a357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156135bd576135bd6135d8565b5060010190565b6000826135d3576135d36135ee565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a5d57600080fdfea264697066735822122013d8ceed2b8d5e083fd45a0f68dc99867c5b25d3f1c17e71a7aa18d2d0b03c4864736f6c63430008000033

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.