ETH Price: $3,486.47 (+2.30%)
Gas: 10 Gwei

Token

420 (WEEDS)
 

Overview

Max Total Supply

420 WEEDS

Holders

184

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mdrfkr.eth
Balance
1 WEEDS
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:
FourTwenty

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : 420.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 FourTwenty is ERC721, Ownable {
    using Strings for uint256;
    using ECDSA for bytes32;

    uint256 public MAX_PRESALE = 200;
    uint256 public maxSupply = 420;

    uint256 public currentSupply = 0;

    uint256 public salePrice = 0.1 ether;
    uint256 public presalePrice = 0.08 ether;

    uint256 public presaleCount;

    //Placeholders
    address private presaleAddress = address(0xdB57294776753479405a6a8aee1f929bdB1F138e);
    address private wallet = address(0x17Ed15ea125055E0234a0022F05a1d942D489877);

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

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

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

    WorkflowStatus public workflow;

    mapping(address => uint256) public presaleMintLog;

    constructor()
        ERC721("420", "WEEDS")
    {
        transferOwnership(msg.sender);
        workflow = WorkflowStatus.Before;
    }

    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(marketOpened, 'The sale of NFTs on the marketplaces has not been opened yet.');
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    function approve(address to, uint256 tokenId) public virtual override {
        require(marketOpened, 'The sale of NFTs on the marketplaces has not been opened yet.');
        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);
    }

    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 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);
        }

    }

    function presaleMint(
        uint256 amount,
        bytes calldata signature
    ) external payable {
        
        require(
            workflow == WorkflowStatus.Presale,
            "420: 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,
            "420: Insuficient ETH amount sent."
        );
        
        require(
            presaleCount + amount <= MAX_PRESALE,
            "420: Selected amount exceeds the max presale supply"
        );

        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, "420: Sold out!" );
        require( supply + amount <= maxSupply, "420: Selected amount exceeds the max supply.");

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

        require(
            msg.value >= salePrice * amount,
            "420: 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,
            "420: 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,
            "420: 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,
            "420: 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 setMaxPresale( uint256 _amount ) external onlyOwner {
        MAX_PRESALE = _amount;
    }

    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;
    }

    //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'))
                : "";
    }

}

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": false,
    "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":[],"name":"MAX_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleStatus","outputs":[{"internalType":"enum FourTwenty.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":"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":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPresale","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":[{"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 FourTwenty.WorkflowStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"}]

608060405260c86007556101a4600855600060095567016345785d8a0000600a5567011c37937e080000600b5573db57294776753479405a6a8aee1f929bdb1f138e600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507317ed15ea125055e0234a0022f05a1d942d489877600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806060016040528060358152602001620060816035913960109080519060200190620001079291906200049e565b506000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055503480156200016657600080fd5b506040518060400160405280600381526020017f34323000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f57454544530000000000000000000000000000000000000000000000000000008152508160009080519060200190620001eb9291906200049e565b508060019080519060200190620002049291906200049e565b505050620002276200021b6200029060201b60201c565b6200029860201b60201c565b62000238336200035e60201b60201c565b6000601160036101000a81548160ff0219169083600481111562000285577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550620006b2565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200036e6200029060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003946200047460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e4906200061a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000460576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200045790620005f8565b60405180910390fd5b62000471816200029860201b60201c565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004ac906200064d565b90600052602060002090601f016020900481019282620004d057600085556200051c565b82601f10620004eb57805160ff19168380011785556200051c565b828001600101855582156200051c579182015b828111156200051b578251825591602001919060010190620004fe565b5b5090506200052b91906200052f565b5090565b5b808211156200054a57600081600090555060010162000530565b5090565b60006200055d6026836200063c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000620005c56020836200063c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000602082019050818103600083015262000613816200054e565b9050919050565b600060208201905081810360008301526200063581620005b6565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200066657607f821691505b602082108114156200067d576200067c62000683565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6159bf80620006c26000396000f3fe6080604052600436106102ad5760003560e01c8063771282f611610175578063b88d4fde116100dc578063deaa59df11610095578063f2c4ce1e1161006f578063f2c4ce1e146109e0578063f2fde38b14610a09578063f51f96dd14610a32578063fd24a85414610a5d576102ad565b8063deaa59df14610951578063e985e9c51461097a578063f19e75d4146109b7576102ad565b8063b88d4fde1461082f578063bdb9f28d14610858578063c87b56dd14610881578063cb04aa1f146108be578063cde27a35146108fb578063d5abeb0114610926576102ad565b80638da5cb5b1161012e5780638da5cb5b1461075257806395d89b411461077d578063a22cb465146107a8578063a3344125146107d1578063a475b5dd146107fc578063b3ab66b014610813576102ad565b8063771282f6146106665780637b082610146106915780638074be98146106bc578063847e2101146106e5578063882567ca146106fc5780638c3c4b3414610727576102ad565b80633549345e1161021957806355367ba9116101d257806355367ba91461056c57806355f804b3146105835780636352211e146105ac57806370a08231146105e9578063715018a614610626578063729ad39e1461063d576102ad565b80633549345e146104965780633606f5b9146104bf5780633ccfd60b146104d657806342842e0e146104ed5780634d4c4e99146105165780635183022714610541576102ad565b806318160ddd1161026b57806318160ddd146103c25780631919fed7146103ed5780631bbc1afa146104165780631c03ceb51461043f5780631f2898c31461045657806323b872dd1461046d576102ad565b80620e7fa8146102b257806301ffc9a7146102dd57806306fdde031461031a578063081812fc14610345578063095ea7b31461038257806315c316fc146103ab575b600080fd5b3480156102be57600080fd5b506102c7610a79565b6040516102d49190615440565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff91906140c8565b610a7f565b6040516103119190614fa3565b60405180910390f35b34801561032657600080fd5b5061032f610b61565b60405161033c919061501e565b60405180910390f35b34801561035157600080fd5b5061036c6004803603810190610367919061415b565b610bf3565b6040516103799190614f3c565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a49190614047565b610c78565b005b3480156103b757600080fd5b506103c0610ddf565b005b3480156103ce57600080fd5b506103d7610eae565b6040516103e49190615440565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f919061415b565b610eb8565b005b34801561042257600080fd5b5061043d6004803603810190610438919061415b565b610f3e565b005b34801561044b57600080fd5b50610454610fc4565b005b34801561046257600080fd5b5061046b61105d565b005b34801561047957600080fd5b50610494600480360381019061048f9190613f41565b61112c565b005b3480156104a257600080fd5b506104bd60048036038101906104b8919061415b565b61118c565b005b3480156104cb57600080fd5b506104d4611212565b005b3480156104e257600080fd5b506104eb6112ab565b005b3480156104f957600080fd5b50610514600480360381019061050f9190613f41565b611398565b005b34801561052257600080fd5b5061052b6113b8565b6040516105389190615440565b60405180910390f35b34801561054d57600080fd5b506105566113be565b6040516105639190614fa3565b60405180910390f35b34801561057857600080fd5b506105816113d1565b005b34801561058f57600080fd5b506105aa60048036038101906105a5919061411a565b6114a0565b005b3480156105b857600080fd5b506105d360048036038101906105ce919061415b565b61158c565b6040516105e09190614f3c565b60405180910390f35b3480156105f557600080fd5b50610610600480360381019061060b9190613edc565b61163e565b60405161061d9190615440565b60405180910390f35b34801561063257600080fd5b5061063b6116f6565b005b34801561064957600080fd5b50610664600480360381019061065f9190614083565b61177e565b005b34801561067257600080fd5b5061067b6118f9565b6040516106889190615440565b60405180910390f35b34801561069d57600080fd5b506106a66118ff565b6040516106b39190614fa3565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de9190614184565b611912565b005b3480156106f157600080fd5b506106fa611a0e565b005b34801561070857600080fd5b50610711611add565b60405161071e9190614fa3565b60405180910390f35b34801561073357600080fd5b5061073c611af0565b6040516107499190615003565b60405180910390f35b34801561075e57600080fd5b50610767611b07565b6040516107749190614f3c565b60405180910390f35b34801561078957600080fd5b50610792611b31565b60405161079f919061501e565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca919061400b565b611bc3565b005b3480156107dd57600080fd5b506107e6611c28565b6040516107f39190615003565b60405180910390f35b34801561080857600080fd5b50610811611c3b565b005b61082d6004803603810190610828919061415b565b611cd4565b005b34801561083b57600080fd5b5061085660048036038101906108519190613f90565b611eec565b005b34801561086457600080fd5b5061087f600480360381019061087a9190613edc565b611f4e565b005b34801561088d57600080fd5b506108a860048036038101906108a3919061415b565b61207e565b6040516108b5919061501e565b60405180910390f35b3480156108ca57600080fd5b506108e560048036038101906108e09190613edc565b61220f565b6040516108f29190615440565b60405180910390f35b34801561090757600080fd5b50610910612227565b60405161091d9190615440565b60405180910390f35b34801561093257600080fd5b5061093b61222d565b6040516109489190615440565b60405180910390f35b34801561095d57600080fd5b5061097860048036038101906109739190613edc565b612233565b005b34801561098657600080fd5b506109a1600480360381019061099c9190613f05565b6122f3565b6040516109ae9190614fa3565b60405180910390f35b3480156109c357600080fd5b506109de60048036038101906109d9919061415b565b612387565b005b3480156109ec57600080fd5b50610a076004803603810190610a02919061411a565b612482565b005b348015610a1557600080fd5b50610a306004803603810190610a2b9190613edc565b612518565b005b348015610a3e57600080fd5b50610a47612610565b604051610a549190615440565b60405180910390f35b610a776004803603810190610a7291906141c0565b612616565b005b600b5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5a5750610b5982612911565b5b9050919050565b606060008054610b7090615736565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9c90615736565b8015610be95780601f10610bbe57610100808354040283529160200191610be9565b820191906000526020600020905b815481529060010190602001808311610bcc57829003601f168201915b5050505050905090565b6000610bfe8261297b565b610c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3490615300565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601160029054906101000a900460ff16610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe906151e0565b60405180910390fd5b6000610cd28261158c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90615380565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d626129e7565b73ffffffffffffffffffffffffffffffffffffffff161480610d915750610d9081610d8b6129e7565b6122f3565b5b610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790615200565b60405180910390fd5b610dda83836129ef565b505050565b610de76129e7565b73ffffffffffffffffffffffffffffffffffffffff16610e05611b07565b73ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290615320565b60405180910390fd5b6001601160036101000a81548160ff02191690836004811115610ea7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b6000600954905090565b610ec06129e7565b73ffffffffffffffffffffffffffffffffffffffff16610ede611b07565b73ffffffffffffffffffffffffffffffffffffffff1614610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b90615320565b60405180910390fd5b80600a8190555050565b610f466129e7565b73ffffffffffffffffffffffffffffffffffffffff16610f64611b07565b73ffffffffffffffffffffffffffffffffffffffff1614610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190615320565b60405180910390fd5b8060078190555050565b610fcc6129e7565b73ffffffffffffffffffffffffffffffffffffffff16610fea611b07565b73ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790615320565b60405180910390fd5b6001601160016101000a81548160ff021916908315150217905550565b6110656129e7565b73ffffffffffffffffffffffffffffffffffffffff16611083611b07565b73ffffffffffffffffffffffffffffffffffffffff16146110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d090615320565b60405180910390fd5b6002601160036101000a81548160ff02191690836004811115611125577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b61113d6111376129e7565b82612aa8565b61117c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611173906153e0565b60405180910390fd5b611187838383612b86565b505050565b6111946129e7565b73ffffffffffffffffffffffffffffffffffffffff166111b2611b07565b73ffffffffffffffffffffffffffffffffffffffff1614611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ff90615320565b60405180910390fd5b80600b8190555050565b61121a6129e7565b73ffffffffffffffffffffffffffffffffffffffff16611238611b07565b73ffffffffffffffffffffffffffffffffffffffff161461128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590615320565b60405180910390fd5b6001601160026101000a81548160ff021916908315150217905550565b6112b36129e7565b73ffffffffffffffffffffffffffffffffffffffff166112d1611b07565b73ffffffffffffffffffffffffffffffffffffffff1614611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131e90615320565b60405180910390fd5b6000479050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611394573d6000803e3d6000fd5b5050565b6113b383838360405180602001604052806000815250611eec565b505050565b60075481565b601160009054906101000a900460ff1681565b6113d96129e7565b73ffffffffffffffffffffffffffffffffffffffff166113f7611b07565b73ffffffffffffffffffffffffffffffffffffffff161461144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490615320565b60405180910390fd5b6003601160036101000a81548160ff02191690836004811115611499577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b6114a86129e7565b73ffffffffffffffffffffffffffffffffffffffff166114c6611b07565b73ffffffffffffffffffffffffffffffffffffffff161461151c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151390615320565b60405180910390fd5b60001515601160019054906101000a900460ff16151514611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156990615060565b60405180910390fd5b80600f9080519060200190611588929190613c6c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90615260565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a690615240565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116fe6129e7565b73ffffffffffffffffffffffffffffffffffffffff1661171c611b07565b73ffffffffffffffffffffffffffffffffffffffff1614611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990615320565b60405180910390fd5b61177c6000612de2565b565b6117866129e7565b73ffffffffffffffffffffffffffffffffffffffff166117a4611b07565b73ffffffffffffffffffffffffffffffffffffffff16146117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190615320565b60405180910390fd5b600060095490506008548383905082611813919061552f565b1115611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b90615420565b60405180910390fd5b8282905060096000828254611869919061552f565b9250508190555060005b838390508110156118f3576118e08484838181106118ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906118cf9190613edc565b82846118db919061552f565b612ea8565b80806118eb90615768565b915050611873565b50505050565b60095481565b601160019054906101000a900460ff1681565b61191a6129e7565b73ffffffffffffffffffffffffffffffffffffffff16611938611b07565b73ffffffffffffffffffffffffffffffffffffffff161461198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590615320565b60405180910390fd5b6000600954905060085483826119a4919061552f565b11156119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc90615420565b60405180910390fd5b82600960008282546119f7919061552f565b92505081905550611a09828285612ec6565b505050565b611a166129e7565b73ffffffffffffffffffffffffffffffffffffffff16611a34611b07565b73ffffffffffffffffffffffffffffffffffffffff1614611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8190615320565b60405180910390fd5b6000601160036101000a81548160ff02191690836004811115611ad6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b601160029054906101000a900460ff1681565b6000601160039054906101000a900460ff16905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611b4090615736565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6c90615736565b8015611bb95780601f10611b8e57610100808354040283529160200191611bb9565b820191906000526020600020905b815481529060010190602001808311611b9c57829003601f168201915b5050505050905090565b601160029054906101000a900460ff16611c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c09906151e0565b60405180910390fd5b611c24611c1d6129e7565b8383612eff565b5050565b601160039054906101000a900460ff1681565b611c436129e7565b73ffffffffffffffffffffffffffffffffffffffff16611c61611b07565b73ffffffffffffffffffffffffffffffffffffffff1614611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae90615320565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b60008111611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0e90615400565b60405180910390fd5b600060095490506008548110611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5990615160565b60405180910390fd5b6008548282611d71919061552f565b1115611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da990615220565b60405180910390fd5b60026004811115611dec577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601160039054906101000a900460ff166004811115611e34577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b906153c0565b60405180910390fd5b81600a54611e8291906155b6565b341015611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb906150a0565b60405180910390fd5b8160096000828254611ed6919061552f565b92505081905550611ee8338284612ec6565b5050565b611efd611ef76129e7565b83612aa8565b611f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f33906153e0565b60405180910390fd5b611f488484848461306c565b50505050565b611f566129e7565b73ffffffffffffffffffffffffffffffffffffffff16611f74611b07565b73ffffffffffffffffffffffffffffffffffffffff1614611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc190615320565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561203a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203190615280565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060001515601160009054906101000a900460ff161515141561212e57601080546120a990615736565b80601f01602080910402602001604051908101604052809291908181526020018280546120d590615736565b80156121225780601f106120f757610100808354040283529160200191612122565b820191906000526020600020905b81548152906001019060200180831161210557829003601f168201915b5050505050905061220a565b6000600f805461213d90615736565b80601f016020809104026020016040519081016040528092919081815260200182805461216990615736565b80156121b65780601f1061218b576101008083540402835291602001916121b6565b820191906000526020600020905b81548152906001019060200180831161219957829003601f168201915b5050505050905060008151116121db5760405180602001604052806000815250612206565b806121e5846130c8565b6040516020016121f6929190614ee7565b6040516020818303038152906040525b9150505b919050565b60126020528060005260406000206000915090505481565b600c5481565b60085481565b61223b6129e7565b73ffffffffffffffffffffffffffffffffffffffff16612259611b07565b73ffffffffffffffffffffffffffffffffffffffff16146122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a690615320565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61238f6129e7565b73ffffffffffffffffffffffffffffffffffffffff166123ad611b07565b73ffffffffffffffffffffffffffffffffffffffff1614612403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fa90615320565b60405180910390fd5b600060095490506008548282612419919061552f565b111561245a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245190615420565b60405180910390fd5b816009600082825461246c919061552f565b9250508190555061247e338284612ec6565b5050565b61248a6129e7565b73ffffffffffffffffffffffffffffffffffffffff166124a8611b07565b73ffffffffffffffffffffffffffffffffffffffff16146124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f590615320565b60405180910390fd5b8060109080519060200190612514929190613c6c565b5050565b6125206129e7565b73ffffffffffffffffffffffffffffffffffffffff1661253e611b07565b73ffffffffffffffffffffffffffffffffffffffff1614612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b90615320565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fb906150e0565b60405180910390fd5b61260d81612de2565b50565b600a5481565b60016004811115612650577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601160039054906101000a900460ff166004811115612698577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146126d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cf906152a0565b60405180910390fd5b612748600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050613275565b612787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277e906151c0565b60405180910390fd5b600083116127ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c1906153a0565b60405180910390fd5b82600b546127d891906155b6565b34101561281a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612811906150a0565b60405180910390fd5b60075483600c5461282b919061552f565b111561286c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286390615360565b60405180910390fd5b82600c600082825461287e919061552f565b925050819055508260096000828254612897919061552f565b9250508190555082601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128ed919061552f565b9250508190555061290c33846009546129069190615610565b85612ec6565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a628361158c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ab38261297b565b612af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae9906151a0565b60405180910390fd5b6000612afd8361158c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b6c57508373ffffffffffffffffffffffffffffffffffffffff16612b5484610bf3565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b7d5750612b7c81856122f3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612ba68261158c565b73ffffffffffffffffffffffffffffffffffffffff1614612bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf390615340565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6390615120565b60405180910390fd5b612c7783838361330e565b612c826000826129ef565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cd29190615610565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d29919061552f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ec2828260405180602001604052806000815250613313565b5050565b60005b81811015612ef957612ee6848285612ee1919061552f565b612ea8565b8080612ef190615768565b915050612ec9565b50505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6590615140565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161305f9190614fa3565b60405180910390a3505050565b613077848484612b86565b6130838484848461336e565b6130c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b9906150c0565b60405180910390fd5b50505050565b60606000821415613110576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613270565b600082905060005b6000821461314257808061312b90615768565b915050600a8261313b9190615585565b9150613118565b60008167ffffffffffffffff811115613184577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131b65781602001600182028036833780820191505090505b5090505b60008514613269576001826131cf9190615610565b9150600a856131de91906157df565b60306131ea919061552f565b60f81b818381518110613226577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132629190615585565b94506131ba565b8093505050505b919050565b600080303360405160200161328b929190614ebb565b60405160208183030381529060405280519060200120905060006132c0846132b284613505565b61353590919063ffffffff16565b90508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561330157600192505050613308565b6000925050505b92915050565b505050565b61331d838361355c565b61332a600084848461336e565b613369576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613360906150c0565b60405180910390fd5b505050565b600061338f8473ffffffffffffffffffffffffffffffffffffffff1661372a565b156134f8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133b86129e7565b8786866040518563ffffffff1660e01b81526004016133da9493929190614f57565b602060405180830381600087803b1580156133f457600080fd5b505af192505050801561342557506040513d601f19601f8201168201806040525081019061342291906140f1565b60015b6134a8573d8060008114613455576040519150601f19603f3d011682016040523d82523d6000602084013e61345a565b606091505b506000815114156134a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613497906150c0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506134fd565b600190505b949350505050565b6000816040516020016135189190614f16565b604051602081830303815290604052805190602001209050919050565b6000806000613544858561373d565b91509150613551816137c0565b819250505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135c3906152e0565b60405180910390fd5b6135d58161297b565b15613615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360c90615100565b60405180910390fd5b6136216000838361330e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613671919061552f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60008060418351141561377f5760008060006020860151925060408601519150606086015160001a905061377387828585613b11565b945094505050506137b9565b6040835114156137b05760008060208501519150604085015190506137a5868383613c1e565b9350935050506137b9565b60006002915091505b9250929050565b600060048111156137fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613833577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561383e57613b0e565b60016004811115613878577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156138b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156138f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138e990615040565b60405180910390fd5b6002600481111561392c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613965577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156139a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399d90615080565b60405180910390fd5b600360048111156139e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613a19577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5190615180565b60405180910390fd5b600480811115613a93577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613acc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b04906152c0565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613b4c576000600391509150613c15565b601b8560ff1614158015613b645750601c8560ff1614155b15613b76576000600491509150613c15565b600060018787878760405160008152602001604052604051613b9b9493929190614fbe565b6020604051602081039080840390855afa158015613bbd573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613c0c57600060019250925050613c15565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613c5e87828885613b11565b935093505050935093915050565b828054613c7890615736565b90600052602060002090601f016020900481019282613c9a5760008555613ce1565b82601f10613cb357805160ff1916838001178555613ce1565b82800160010185558215613ce1579182015b82811115613ce0578251825591602001919060010190613cc5565b5b509050613cee9190613cf2565b5090565b5b80821115613d0b576000816000905550600101613cf3565b5090565b6000613d22613d1d8461548c565b61545b565b905082815260208101848484011115613d3a57600080fd5b613d458482856156f4565b509392505050565b6000613d60613d5b846154bc565b61545b565b905082815260208101848484011115613d7857600080fd5b613d838482856156f4565b509392505050565b600081359050613d9a8161592d565b92915050565b60008083601f840112613db257600080fd5b8235905067ffffffffffffffff811115613dcb57600080fd5b602083019150836020820283011115613de357600080fd5b9250929050565b600081359050613df981615944565b92915050565b600081359050613e0e8161595b565b92915050565b600081519050613e238161595b565b92915050565b60008083601f840112613e3b57600080fd5b8235905067ffffffffffffffff811115613e5457600080fd5b602083019150836001820283011115613e6c57600080fd5b9250929050565b600082601f830112613e8457600080fd5b8135613e94848260208601613d0f565b91505092915050565b600082601f830112613eae57600080fd5b8135613ebe848260208601613d4d565b91505092915050565b600081359050613ed681615972565b92915050565b600060208284031215613eee57600080fd5b6000613efc84828501613d8b565b91505092915050565b60008060408385031215613f1857600080fd5b6000613f2685828601613d8b565b9250506020613f3785828601613d8b565b9150509250929050565b600080600060608486031215613f5657600080fd5b6000613f6486828701613d8b565b9350506020613f7586828701613d8b565b9250506040613f8686828701613ec7565b9150509250925092565b60008060008060808587031215613fa657600080fd5b6000613fb487828801613d8b565b9450506020613fc587828801613d8b565b9350506040613fd687828801613ec7565b925050606085013567ffffffffffffffff811115613ff357600080fd5b613fff87828801613e73565b91505092959194509250565b6000806040838503121561401e57600080fd5b600061402c85828601613d8b565b925050602061403d85828601613dea565b9150509250929050565b6000806040838503121561405a57600080fd5b600061406885828601613d8b565b925050602061407985828601613ec7565b9150509250929050565b6000806020838503121561409657600080fd5b600083013567ffffffffffffffff8111156140b057600080fd5b6140bc85828601613da0565b92509250509250929050565b6000602082840312156140da57600080fd5b60006140e884828501613dff565b91505092915050565b60006020828403121561410357600080fd5b600061411184828501613e14565b91505092915050565b60006020828403121561412c57600080fd5b600082013567ffffffffffffffff81111561414657600080fd5b61415284828501613e9d565b91505092915050565b60006020828403121561416d57600080fd5b600061417b84828501613ec7565b91505092915050565b6000806040838503121561419757600080fd5b60006141a585828601613ec7565b92505060206141b685828601613d8b565b9150509250929050565b6000806000604084860312156141d557600080fd5b60006141e386828701613ec7565b935050602084013567ffffffffffffffff81111561420057600080fd5b61420c86828701613e29565b92509250509250925092565b61422181615644565b82525050565b61423861423382615644565b6157b1565b82525050565b61424781615656565b82525050565b61425681615662565b82525050565b61426d61426882615662565b6157c3565b82525050565b600061427e826154ec565b6142888185615502565b9350614298818560208601615703565b6142a1816158fb565b840191505092915050565b6142b5816156e2565b82525050565b60006142c6826154f7565b6142d08185615513565b93506142e0818560208601615703565b6142e9816158fb565b840191505092915050565b60006142ff826154f7565b6143098185615524565b9350614319818560208601615703565b80840191505092915050565b6000614332601883615513565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b6000614372602d83615513565b91507f4261736520555249206368616e676520686173206265656e2064697361626c6560008301527f64207065726d616e656e746c79000000000000000000000000000000000000006020830152604082019050919050565b60006143d8601f83615513565b91507f45434453413a20696e76616c6964207369676e6174757265206c656e677468006000830152602082019050919050565b6000614418601c83615524565b91507f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000830152601c82019050919050565b6000614458602183615513565b91507f3432303a20496e737566696369656e742045544820616d6f756e742073656e7460008301527f2e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144be603283615513565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614524602683615513565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061458a601c83615513565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006145ca602483615513565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614630601983615513565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614670600e83615513565b91507f3432303a20536f6c64206f7574210000000000000000000000000000000000006000830152602082019050919050565b60006146b0602283615513565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614716602c83615513565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061477c601b83615513565b91507f5349474e41545552455f56414c49444154494f4e5f4641494c454400000000006000830152602082019050919050565b60006147bc603d83615513565b91507f5468652073616c65206f66204e465473206f6e20746865206d61726b6574706c60008301527f6163657320686173206e6f74206265656e206f70656e6564207965742e0000006020830152604082019050919050565b6000614822603883615513565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614888602c83615513565b91507f3432303a2053656c656374656420616d6f756e7420657863656564732074686560008301527f206d617820737570706c792e00000000000000000000000000000000000000006020830152604082019050919050565b60006148ee602a83615513565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614954602983615513565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006149ba601383615513565b91507f43414e27542050555420302041444452455353000000000000000000000000006000830152602082019050919050565b60006149fa602583615513565b91507f3432303a2050726573616c65206973206e6f742063757272656e746c7920616360008301527f746976652e0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a60602283615513565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ac6602083615513565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614b06602c83615513565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614b6c600583615524565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000614bac602083615513565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614bec602983615513565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c52603383615513565b91507f3432303a2053656c656374656420616d6f756e7420657863656564732074686560008301527f206d61782070726573616c6520737570706c79000000000000000000000000006020830152604082019050919050565b6000614cb8602183615513565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d1e602083615513565b91507f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e6000830152602082019050919050565b6000614d5e602083615513565b91507f3432303a205075626c69632073616c6520686173206e6f74206163746976652e6000830152602082019050919050565b6000614d9e603183615513565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614e04601f83615513565b91507f596f75206d757374206d696e74206174206c65617374206f6e65204e46542e006000830152602082019050919050565b6000614e44602883615513565b91507f3432303a20596f752063616e2774206d696e74206d6f7265207468616e206d6160008301527f7820737570706c790000000000000000000000000000000000000000000000006020830152604082019050919050565b614ea6816156cb565b82525050565b614eb5816156d5565b82525050565b6000614ec78285614227565b601482019150614ed78284614227565b6014820191508190509392505050565b6000614ef382856142f4565b9150614eff82846142f4565b9150614f0a82614b5f565b91508190509392505050565b6000614f218261440b565b9150614f2d828461425c565b60208201915081905092915050565b6000602082019050614f516000830184614218565b92915050565b6000608082019050614f6c6000830187614218565b614f796020830186614218565b614f866040830185614e9d565b8181036060830152614f988184614273565b905095945050505050565b6000602082019050614fb8600083018461423e565b92915050565b6000608082019050614fd3600083018761424d565b614fe06020830186614eac565b614fed604083018561424d565b614ffa606083018461424d565b95945050505050565b600060208201905061501860008301846142ac565b92915050565b6000602082019050818103600083015261503881846142bb565b905092915050565b6000602082019050818103600083015261505981614325565b9050919050565b6000602082019050818103600083015261507981614365565b9050919050565b60006020820190508181036000830152615099816143cb565b9050919050565b600060208201905081810360008301526150b98161444b565b9050919050565b600060208201905081810360008301526150d9816144b1565b9050919050565b600060208201905081810360008301526150f981614517565b9050919050565b600060208201905081810360008301526151198161457d565b9050919050565b60006020820190508181036000830152615139816145bd565b9050919050565b6000602082019050818103600083015261515981614623565b9050919050565b6000602082019050818103600083015261517981614663565b9050919050565b60006020820190508181036000830152615199816146a3565b9050919050565b600060208201905081810360008301526151b981614709565b9050919050565b600060208201905081810360008301526151d98161476f565b9050919050565b600060208201905081810360008301526151f9816147af565b9050919050565b6000602082019050818103600083015261521981614815565b9050919050565b600060208201905081810360008301526152398161487b565b9050919050565b60006020820190508181036000830152615259816148e1565b9050919050565b6000602082019050818103600083015261527981614947565b9050919050565b60006020820190508181036000830152615299816149ad565b9050919050565b600060208201905081810360008301526152b9816149ed565b9050919050565b600060208201905081810360008301526152d981614a53565b9050919050565b600060208201905081810360008301526152f981614ab9565b9050919050565b6000602082019050818103600083015261531981614af9565b9050919050565b6000602082019050818103600083015261533981614b9f565b9050919050565b6000602082019050818103600083015261535981614bdf565b9050919050565b6000602082019050818103600083015261537981614c45565b9050919050565b6000602082019050818103600083015261539981614cab565b9050919050565b600060208201905081810360008301526153b981614d11565b9050919050565b600060208201905081810360008301526153d981614d51565b9050919050565b600060208201905081810360008301526153f981614d91565b9050919050565b6000602082019050818103600083015261541981614df7565b9050919050565b6000602082019050818103600083015261543981614e37565b9050919050565b60006020820190506154556000830184614e9d565b92915050565b6000604051905081810181811067ffffffffffffffff82111715615482576154816158cc565b5b8060405250919050565b600067ffffffffffffffff8211156154a7576154a66158cc565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156154d7576154d66158cc565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061553a826156cb565b9150615545836156cb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561557a57615579615810565b5b828201905092915050565b6000615590826156cb565b915061559b836156cb565b9250826155ab576155aa61583f565b5b828204905092915050565b60006155c1826156cb565b91506155cc836156cb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561560557615604615810565b5b828202905092915050565b600061561b826156cb565b9150615626836156cb565b92508282101561563957615638615810565b5b828203905092915050565b600061564f826156ab565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008190506156a682615919565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006156ed82615698565b9050919050565b82818337600083830152505050565b60005b83811015615721578082015181840152602081019050615706565b83811115615730576000848401525b50505050565b6000600282049050600182168061574e57607f821691505b602082108114156157625761576161589d565b5b50919050565b6000615773826156cb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156157a6576157a5615810565b5b600182019050919050565b60006157bc826157cd565b9050919050565b6000819050919050565b60006157d88261590c565b9050919050565b60006157ea826156cb565b91506157f5836156cb565b9250826158055761580461583f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b6005811061592a5761592961586e565b5b50565b61593681615644565b811461594157600080fd5b50565b61594d81615656565b811461595857600080fd5b50565b6159648161566c565b811461596f57600080fd5b50565b61597b816156cb565b811461598657600080fd5b5056fea26469706673582212208a9c6291d22fbe8fe76f4bf604fd73f0e1d46e3f5c6bfdd60b143b081e5e1c2364736f6c63430008000033697066733a2f2f516d567059336570556f737178705567677a7656505a3374576e4c39374d4847463354584d693548596f36396378

Deployed Bytecode

0x6080604052600436106102ad5760003560e01c8063771282f611610175578063b88d4fde116100dc578063deaa59df11610095578063f2c4ce1e1161006f578063f2c4ce1e146109e0578063f2fde38b14610a09578063f51f96dd14610a32578063fd24a85414610a5d576102ad565b8063deaa59df14610951578063e985e9c51461097a578063f19e75d4146109b7576102ad565b8063b88d4fde1461082f578063bdb9f28d14610858578063c87b56dd14610881578063cb04aa1f146108be578063cde27a35146108fb578063d5abeb0114610926576102ad565b80638da5cb5b1161012e5780638da5cb5b1461075257806395d89b411461077d578063a22cb465146107a8578063a3344125146107d1578063a475b5dd146107fc578063b3ab66b014610813576102ad565b8063771282f6146106665780637b082610146106915780638074be98146106bc578063847e2101146106e5578063882567ca146106fc5780638c3c4b3414610727576102ad565b80633549345e1161021957806355367ba9116101d257806355367ba91461056c57806355f804b3146105835780636352211e146105ac57806370a08231146105e9578063715018a614610626578063729ad39e1461063d576102ad565b80633549345e146104965780633606f5b9146104bf5780633ccfd60b146104d657806342842e0e146104ed5780634d4c4e99146105165780635183022714610541576102ad565b806318160ddd1161026b57806318160ddd146103c25780631919fed7146103ed5780631bbc1afa146104165780631c03ceb51461043f5780631f2898c31461045657806323b872dd1461046d576102ad565b80620e7fa8146102b257806301ffc9a7146102dd57806306fdde031461031a578063081812fc14610345578063095ea7b31461038257806315c316fc146103ab575b600080fd5b3480156102be57600080fd5b506102c7610a79565b6040516102d49190615440565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff91906140c8565b610a7f565b6040516103119190614fa3565b60405180910390f35b34801561032657600080fd5b5061032f610b61565b60405161033c919061501e565b60405180910390f35b34801561035157600080fd5b5061036c6004803603810190610367919061415b565b610bf3565b6040516103799190614f3c565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a49190614047565b610c78565b005b3480156103b757600080fd5b506103c0610ddf565b005b3480156103ce57600080fd5b506103d7610eae565b6040516103e49190615440565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f919061415b565b610eb8565b005b34801561042257600080fd5b5061043d6004803603810190610438919061415b565b610f3e565b005b34801561044b57600080fd5b50610454610fc4565b005b34801561046257600080fd5b5061046b61105d565b005b34801561047957600080fd5b50610494600480360381019061048f9190613f41565b61112c565b005b3480156104a257600080fd5b506104bd60048036038101906104b8919061415b565b61118c565b005b3480156104cb57600080fd5b506104d4611212565b005b3480156104e257600080fd5b506104eb6112ab565b005b3480156104f957600080fd5b50610514600480360381019061050f9190613f41565b611398565b005b34801561052257600080fd5b5061052b6113b8565b6040516105389190615440565b60405180910390f35b34801561054d57600080fd5b506105566113be565b6040516105639190614fa3565b60405180910390f35b34801561057857600080fd5b506105816113d1565b005b34801561058f57600080fd5b506105aa60048036038101906105a5919061411a565b6114a0565b005b3480156105b857600080fd5b506105d360048036038101906105ce919061415b565b61158c565b6040516105e09190614f3c565b60405180910390f35b3480156105f557600080fd5b50610610600480360381019061060b9190613edc565b61163e565b60405161061d9190615440565b60405180910390f35b34801561063257600080fd5b5061063b6116f6565b005b34801561064957600080fd5b50610664600480360381019061065f9190614083565b61177e565b005b34801561067257600080fd5b5061067b6118f9565b6040516106889190615440565b60405180910390f35b34801561069d57600080fd5b506106a66118ff565b6040516106b39190614fa3565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de9190614184565b611912565b005b3480156106f157600080fd5b506106fa611a0e565b005b34801561070857600080fd5b50610711611add565b60405161071e9190614fa3565b60405180910390f35b34801561073357600080fd5b5061073c611af0565b6040516107499190615003565b60405180910390f35b34801561075e57600080fd5b50610767611b07565b6040516107749190614f3c565b60405180910390f35b34801561078957600080fd5b50610792611b31565b60405161079f919061501e565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca919061400b565b611bc3565b005b3480156107dd57600080fd5b506107e6611c28565b6040516107f39190615003565b60405180910390f35b34801561080857600080fd5b50610811611c3b565b005b61082d6004803603810190610828919061415b565b611cd4565b005b34801561083b57600080fd5b5061085660048036038101906108519190613f90565b611eec565b005b34801561086457600080fd5b5061087f600480360381019061087a9190613edc565b611f4e565b005b34801561088d57600080fd5b506108a860048036038101906108a3919061415b565b61207e565b6040516108b5919061501e565b60405180910390f35b3480156108ca57600080fd5b506108e560048036038101906108e09190613edc565b61220f565b6040516108f29190615440565b60405180910390f35b34801561090757600080fd5b50610910612227565b60405161091d9190615440565b60405180910390f35b34801561093257600080fd5b5061093b61222d565b6040516109489190615440565b60405180910390f35b34801561095d57600080fd5b5061097860048036038101906109739190613edc565b612233565b005b34801561098657600080fd5b506109a1600480360381019061099c9190613f05565b6122f3565b6040516109ae9190614fa3565b60405180910390f35b3480156109c357600080fd5b506109de60048036038101906109d9919061415b565b612387565b005b3480156109ec57600080fd5b50610a076004803603810190610a02919061411a565b612482565b005b348015610a1557600080fd5b50610a306004803603810190610a2b9190613edc565b612518565b005b348015610a3e57600080fd5b50610a47612610565b604051610a549190615440565b60405180910390f35b610a776004803603810190610a7291906141c0565b612616565b005b600b5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5a5750610b5982612911565b5b9050919050565b606060008054610b7090615736565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9c90615736565b8015610be95780601f10610bbe57610100808354040283529160200191610be9565b820191906000526020600020905b815481529060010190602001808311610bcc57829003601f168201915b5050505050905090565b6000610bfe8261297b565b610c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3490615300565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601160029054906101000a900460ff16610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe906151e0565b60405180910390fd5b6000610cd28261158c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90615380565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d626129e7565b73ffffffffffffffffffffffffffffffffffffffff161480610d915750610d9081610d8b6129e7565b6122f3565b5b610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790615200565b60405180910390fd5b610dda83836129ef565b505050565b610de76129e7565b73ffffffffffffffffffffffffffffffffffffffff16610e05611b07565b73ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290615320565b60405180910390fd5b6001601160036101000a81548160ff02191690836004811115610ea7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b6000600954905090565b610ec06129e7565b73ffffffffffffffffffffffffffffffffffffffff16610ede611b07565b73ffffffffffffffffffffffffffffffffffffffff1614610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b90615320565b60405180910390fd5b80600a8190555050565b610f466129e7565b73ffffffffffffffffffffffffffffffffffffffff16610f64611b07565b73ffffffffffffffffffffffffffffffffffffffff1614610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190615320565b60405180910390fd5b8060078190555050565b610fcc6129e7565b73ffffffffffffffffffffffffffffffffffffffff16610fea611b07565b73ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790615320565b60405180910390fd5b6001601160016101000a81548160ff021916908315150217905550565b6110656129e7565b73ffffffffffffffffffffffffffffffffffffffff16611083611b07565b73ffffffffffffffffffffffffffffffffffffffff16146110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d090615320565b60405180910390fd5b6002601160036101000a81548160ff02191690836004811115611125577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b61113d6111376129e7565b82612aa8565b61117c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611173906153e0565b60405180910390fd5b611187838383612b86565b505050565b6111946129e7565b73ffffffffffffffffffffffffffffffffffffffff166111b2611b07565b73ffffffffffffffffffffffffffffffffffffffff1614611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ff90615320565b60405180910390fd5b80600b8190555050565b61121a6129e7565b73ffffffffffffffffffffffffffffffffffffffff16611238611b07565b73ffffffffffffffffffffffffffffffffffffffff161461128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590615320565b60405180910390fd5b6001601160026101000a81548160ff021916908315150217905550565b6112b36129e7565b73ffffffffffffffffffffffffffffffffffffffff166112d1611b07565b73ffffffffffffffffffffffffffffffffffffffff1614611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131e90615320565b60405180910390fd5b6000479050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611394573d6000803e3d6000fd5b5050565b6113b383838360405180602001604052806000815250611eec565b505050565b60075481565b601160009054906101000a900460ff1681565b6113d96129e7565b73ffffffffffffffffffffffffffffffffffffffff166113f7611b07565b73ffffffffffffffffffffffffffffffffffffffff161461144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490615320565b60405180910390fd5b6003601160036101000a81548160ff02191690836004811115611499577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b6114a86129e7565b73ffffffffffffffffffffffffffffffffffffffff166114c6611b07565b73ffffffffffffffffffffffffffffffffffffffff161461151c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151390615320565b60405180910390fd5b60001515601160019054906101000a900460ff16151514611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156990615060565b60405180910390fd5b80600f9080519060200190611588929190613c6c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90615260565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a690615240565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116fe6129e7565b73ffffffffffffffffffffffffffffffffffffffff1661171c611b07565b73ffffffffffffffffffffffffffffffffffffffff1614611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990615320565b60405180910390fd5b61177c6000612de2565b565b6117866129e7565b73ffffffffffffffffffffffffffffffffffffffff166117a4611b07565b73ffffffffffffffffffffffffffffffffffffffff16146117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190615320565b60405180910390fd5b600060095490506008548383905082611813919061552f565b1115611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b90615420565b60405180910390fd5b8282905060096000828254611869919061552f565b9250508190555060005b838390508110156118f3576118e08484838181106118ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906118cf9190613edc565b82846118db919061552f565b612ea8565b80806118eb90615768565b915050611873565b50505050565b60095481565b601160019054906101000a900460ff1681565b61191a6129e7565b73ffffffffffffffffffffffffffffffffffffffff16611938611b07565b73ffffffffffffffffffffffffffffffffffffffff161461198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590615320565b60405180910390fd5b6000600954905060085483826119a4919061552f565b11156119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc90615420565b60405180910390fd5b82600960008282546119f7919061552f565b92505081905550611a09828285612ec6565b505050565b611a166129e7565b73ffffffffffffffffffffffffffffffffffffffff16611a34611b07565b73ffffffffffffffffffffffffffffffffffffffff1614611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8190615320565b60405180910390fd5b6000601160036101000a81548160ff02191690836004811115611ad6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b601160029054906101000a900460ff1681565b6000601160039054906101000a900460ff16905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611b4090615736565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6c90615736565b8015611bb95780601f10611b8e57610100808354040283529160200191611bb9565b820191906000526020600020905b815481529060010190602001808311611b9c57829003601f168201915b5050505050905090565b601160029054906101000a900460ff16611c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c09906151e0565b60405180910390fd5b611c24611c1d6129e7565b8383612eff565b5050565b601160039054906101000a900460ff1681565b611c436129e7565b73ffffffffffffffffffffffffffffffffffffffff16611c61611b07565b73ffffffffffffffffffffffffffffffffffffffff1614611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae90615320565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b60008111611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0e90615400565b60405180910390fd5b600060095490506008548110611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5990615160565b60405180910390fd5b6008548282611d71919061552f565b1115611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da990615220565b60405180910390fd5b60026004811115611dec577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601160039054906101000a900460ff166004811115611e34577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b906153c0565b60405180910390fd5b81600a54611e8291906155b6565b341015611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb906150a0565b60405180910390fd5b8160096000828254611ed6919061552f565b92505081905550611ee8338284612ec6565b5050565b611efd611ef76129e7565b83612aa8565b611f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f33906153e0565b60405180910390fd5b611f488484848461306c565b50505050565b611f566129e7565b73ffffffffffffffffffffffffffffffffffffffff16611f74611b07565b73ffffffffffffffffffffffffffffffffffffffff1614611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc190615320565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561203a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203190615280565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060001515601160009054906101000a900460ff161515141561212e57601080546120a990615736565b80601f01602080910402602001604051908101604052809291908181526020018280546120d590615736565b80156121225780601f106120f757610100808354040283529160200191612122565b820191906000526020600020905b81548152906001019060200180831161210557829003601f168201915b5050505050905061220a565b6000600f805461213d90615736565b80601f016020809104026020016040519081016040528092919081815260200182805461216990615736565b80156121b65780601f1061218b576101008083540402835291602001916121b6565b820191906000526020600020905b81548152906001019060200180831161219957829003601f168201915b5050505050905060008151116121db5760405180602001604052806000815250612206565b806121e5846130c8565b6040516020016121f6929190614ee7565b6040516020818303038152906040525b9150505b919050565b60126020528060005260406000206000915090505481565b600c5481565b60085481565b61223b6129e7565b73ffffffffffffffffffffffffffffffffffffffff16612259611b07565b73ffffffffffffffffffffffffffffffffffffffff16146122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a690615320565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61238f6129e7565b73ffffffffffffffffffffffffffffffffffffffff166123ad611b07565b73ffffffffffffffffffffffffffffffffffffffff1614612403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fa90615320565b60405180910390fd5b600060095490506008548282612419919061552f565b111561245a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245190615420565b60405180910390fd5b816009600082825461246c919061552f565b9250508190555061247e338284612ec6565b5050565b61248a6129e7565b73ffffffffffffffffffffffffffffffffffffffff166124a8611b07565b73ffffffffffffffffffffffffffffffffffffffff16146124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f590615320565b60405180910390fd5b8060109080519060200190612514929190613c6c565b5050565b6125206129e7565b73ffffffffffffffffffffffffffffffffffffffff1661253e611b07565b73ffffffffffffffffffffffffffffffffffffffff1614612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b90615320565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fb906150e0565b60405180910390fd5b61260d81612de2565b50565b600a5481565b60016004811115612650577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601160039054906101000a900460ff166004811115612698577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146126d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cf906152a0565b60405180910390fd5b612748600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050613275565b612787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277e906151c0565b60405180910390fd5b600083116127ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c1906153a0565b60405180910390fd5b82600b546127d891906155b6565b34101561281a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612811906150a0565b60405180910390fd5b60075483600c5461282b919061552f565b111561286c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286390615360565b60405180910390fd5b82600c600082825461287e919061552f565b925050819055508260096000828254612897919061552f565b9250508190555082601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128ed919061552f565b9250508190555061290c33846009546129069190615610565b85612ec6565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a628361158c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ab38261297b565b612af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae9906151a0565b60405180910390fd5b6000612afd8361158c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b6c57508373ffffffffffffffffffffffffffffffffffffffff16612b5484610bf3565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b7d5750612b7c81856122f3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612ba68261158c565b73ffffffffffffffffffffffffffffffffffffffff1614612bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf390615340565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6390615120565b60405180910390fd5b612c7783838361330e565b612c826000826129ef565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cd29190615610565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d29919061552f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ec2828260405180602001604052806000815250613313565b5050565b60005b81811015612ef957612ee6848285612ee1919061552f565b612ea8565b8080612ef190615768565b915050612ec9565b50505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6590615140565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161305f9190614fa3565b60405180910390a3505050565b613077848484612b86565b6130838484848461336e565b6130c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b9906150c0565b60405180910390fd5b50505050565b60606000821415613110576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613270565b600082905060005b6000821461314257808061312b90615768565b915050600a8261313b9190615585565b9150613118565b60008167ffffffffffffffff811115613184577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131b65781602001600182028036833780820191505090505b5090505b60008514613269576001826131cf9190615610565b9150600a856131de91906157df565b60306131ea919061552f565b60f81b818381518110613226577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132629190615585565b94506131ba565b8093505050505b919050565b600080303360405160200161328b929190614ebb565b60405160208183030381529060405280519060200120905060006132c0846132b284613505565b61353590919063ffffffff16565b90508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561330157600192505050613308565b6000925050505b92915050565b505050565b61331d838361355c565b61332a600084848461336e565b613369576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613360906150c0565b60405180910390fd5b505050565b600061338f8473ffffffffffffffffffffffffffffffffffffffff1661372a565b156134f8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133b86129e7565b8786866040518563ffffffff1660e01b81526004016133da9493929190614f57565b602060405180830381600087803b1580156133f457600080fd5b505af192505050801561342557506040513d601f19601f8201168201806040525081019061342291906140f1565b60015b6134a8573d8060008114613455576040519150601f19603f3d011682016040523d82523d6000602084013e61345a565b606091505b506000815114156134a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613497906150c0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506134fd565b600190505b949350505050565b6000816040516020016135189190614f16565b604051602081830303815290604052805190602001209050919050565b6000806000613544858561373d565b91509150613551816137c0565b819250505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135c3906152e0565b60405180910390fd5b6135d58161297b565b15613615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360c90615100565b60405180910390fd5b6136216000838361330e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613671919061552f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60008060418351141561377f5760008060006020860151925060408601519150606086015160001a905061377387828585613b11565b945094505050506137b9565b6040835114156137b05760008060208501519150604085015190506137a5868383613c1e565b9350935050506137b9565b60006002915091505b9250929050565b600060048111156137fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613833577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561383e57613b0e565b60016004811115613878577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156138b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156138f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138e990615040565b60405180910390fd5b6002600481111561392c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613965577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156139a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399d90615080565b60405180910390fd5b600360048111156139e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613a19577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5190615180565b60405180910390fd5b600480811115613a93577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613acc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b04906152c0565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613b4c576000600391509150613c15565b601b8560ff1614158015613b645750601c8560ff1614155b15613b76576000600491509150613c15565b600060018787878760405160008152602001604052604051613b9b9493929190614fbe565b6020604051602081039080840390855afa158015613bbd573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613c0c57600060019250925050613c15565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613c5e87828885613b11565b935093505050935093915050565b828054613c7890615736565b90600052602060002090601f016020900481019282613c9a5760008555613ce1565b82601f10613cb357805160ff1916838001178555613ce1565b82800160010185558215613ce1579182015b82811115613ce0578251825591602001919060010190613cc5565b5b509050613cee9190613cf2565b5090565b5b80821115613d0b576000816000905550600101613cf3565b5090565b6000613d22613d1d8461548c565b61545b565b905082815260208101848484011115613d3a57600080fd5b613d458482856156f4565b509392505050565b6000613d60613d5b846154bc565b61545b565b905082815260208101848484011115613d7857600080fd5b613d838482856156f4565b509392505050565b600081359050613d9a8161592d565b92915050565b60008083601f840112613db257600080fd5b8235905067ffffffffffffffff811115613dcb57600080fd5b602083019150836020820283011115613de357600080fd5b9250929050565b600081359050613df981615944565b92915050565b600081359050613e0e8161595b565b92915050565b600081519050613e238161595b565b92915050565b60008083601f840112613e3b57600080fd5b8235905067ffffffffffffffff811115613e5457600080fd5b602083019150836001820283011115613e6c57600080fd5b9250929050565b600082601f830112613e8457600080fd5b8135613e94848260208601613d0f565b91505092915050565b600082601f830112613eae57600080fd5b8135613ebe848260208601613d4d565b91505092915050565b600081359050613ed681615972565b92915050565b600060208284031215613eee57600080fd5b6000613efc84828501613d8b565b91505092915050565b60008060408385031215613f1857600080fd5b6000613f2685828601613d8b565b9250506020613f3785828601613d8b565b9150509250929050565b600080600060608486031215613f5657600080fd5b6000613f6486828701613d8b565b9350506020613f7586828701613d8b565b9250506040613f8686828701613ec7565b9150509250925092565b60008060008060808587031215613fa657600080fd5b6000613fb487828801613d8b565b9450506020613fc587828801613d8b565b9350506040613fd687828801613ec7565b925050606085013567ffffffffffffffff811115613ff357600080fd5b613fff87828801613e73565b91505092959194509250565b6000806040838503121561401e57600080fd5b600061402c85828601613d8b565b925050602061403d85828601613dea565b9150509250929050565b6000806040838503121561405a57600080fd5b600061406885828601613d8b565b925050602061407985828601613ec7565b9150509250929050565b6000806020838503121561409657600080fd5b600083013567ffffffffffffffff8111156140b057600080fd5b6140bc85828601613da0565b92509250509250929050565b6000602082840312156140da57600080fd5b60006140e884828501613dff565b91505092915050565b60006020828403121561410357600080fd5b600061411184828501613e14565b91505092915050565b60006020828403121561412c57600080fd5b600082013567ffffffffffffffff81111561414657600080fd5b61415284828501613e9d565b91505092915050565b60006020828403121561416d57600080fd5b600061417b84828501613ec7565b91505092915050565b6000806040838503121561419757600080fd5b60006141a585828601613ec7565b92505060206141b685828601613d8b565b9150509250929050565b6000806000604084860312156141d557600080fd5b60006141e386828701613ec7565b935050602084013567ffffffffffffffff81111561420057600080fd5b61420c86828701613e29565b92509250509250925092565b61422181615644565b82525050565b61423861423382615644565b6157b1565b82525050565b61424781615656565b82525050565b61425681615662565b82525050565b61426d61426882615662565b6157c3565b82525050565b600061427e826154ec565b6142888185615502565b9350614298818560208601615703565b6142a1816158fb565b840191505092915050565b6142b5816156e2565b82525050565b60006142c6826154f7565b6142d08185615513565b93506142e0818560208601615703565b6142e9816158fb565b840191505092915050565b60006142ff826154f7565b6143098185615524565b9350614319818560208601615703565b80840191505092915050565b6000614332601883615513565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b6000614372602d83615513565b91507f4261736520555249206368616e676520686173206265656e2064697361626c6560008301527f64207065726d616e656e746c79000000000000000000000000000000000000006020830152604082019050919050565b60006143d8601f83615513565b91507f45434453413a20696e76616c6964207369676e6174757265206c656e677468006000830152602082019050919050565b6000614418601c83615524565b91507f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000830152601c82019050919050565b6000614458602183615513565b91507f3432303a20496e737566696369656e742045544820616d6f756e742073656e7460008301527f2e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144be603283615513565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614524602683615513565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061458a601c83615513565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006145ca602483615513565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614630601983615513565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614670600e83615513565b91507f3432303a20536f6c64206f7574210000000000000000000000000000000000006000830152602082019050919050565b60006146b0602283615513565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614716602c83615513565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061477c601b83615513565b91507f5349474e41545552455f56414c49444154494f4e5f4641494c454400000000006000830152602082019050919050565b60006147bc603d83615513565b91507f5468652073616c65206f66204e465473206f6e20746865206d61726b6574706c60008301527f6163657320686173206e6f74206265656e206f70656e6564207965742e0000006020830152604082019050919050565b6000614822603883615513565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614888602c83615513565b91507f3432303a2053656c656374656420616d6f756e7420657863656564732074686560008301527f206d617820737570706c792e00000000000000000000000000000000000000006020830152604082019050919050565b60006148ee602a83615513565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614954602983615513565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006149ba601383615513565b91507f43414e27542050555420302041444452455353000000000000000000000000006000830152602082019050919050565b60006149fa602583615513565b91507f3432303a2050726573616c65206973206e6f742063757272656e746c7920616360008301527f746976652e0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a60602283615513565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ac6602083615513565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614b06602c83615513565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614b6c600583615524565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000614bac602083615513565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614bec602983615513565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c52603383615513565b91507f3432303a2053656c656374656420616d6f756e7420657863656564732074686560008301527f206d61782070726573616c6520737570706c79000000000000000000000000006020830152604082019050919050565b6000614cb8602183615513565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d1e602083615513565b91507f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e6000830152602082019050919050565b6000614d5e602083615513565b91507f3432303a205075626c69632073616c6520686173206e6f74206163746976652e6000830152602082019050919050565b6000614d9e603183615513565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614e04601f83615513565b91507f596f75206d757374206d696e74206174206c65617374206f6e65204e46542e006000830152602082019050919050565b6000614e44602883615513565b91507f3432303a20596f752063616e2774206d696e74206d6f7265207468616e206d6160008301527f7820737570706c790000000000000000000000000000000000000000000000006020830152604082019050919050565b614ea6816156cb565b82525050565b614eb5816156d5565b82525050565b6000614ec78285614227565b601482019150614ed78284614227565b6014820191508190509392505050565b6000614ef382856142f4565b9150614eff82846142f4565b9150614f0a82614b5f565b91508190509392505050565b6000614f218261440b565b9150614f2d828461425c565b60208201915081905092915050565b6000602082019050614f516000830184614218565b92915050565b6000608082019050614f6c6000830187614218565b614f796020830186614218565b614f866040830185614e9d565b8181036060830152614f988184614273565b905095945050505050565b6000602082019050614fb8600083018461423e565b92915050565b6000608082019050614fd3600083018761424d565b614fe06020830186614eac565b614fed604083018561424d565b614ffa606083018461424d565b95945050505050565b600060208201905061501860008301846142ac565b92915050565b6000602082019050818103600083015261503881846142bb565b905092915050565b6000602082019050818103600083015261505981614325565b9050919050565b6000602082019050818103600083015261507981614365565b9050919050565b60006020820190508181036000830152615099816143cb565b9050919050565b600060208201905081810360008301526150b98161444b565b9050919050565b600060208201905081810360008301526150d9816144b1565b9050919050565b600060208201905081810360008301526150f981614517565b9050919050565b600060208201905081810360008301526151198161457d565b9050919050565b60006020820190508181036000830152615139816145bd565b9050919050565b6000602082019050818103600083015261515981614623565b9050919050565b6000602082019050818103600083015261517981614663565b9050919050565b60006020820190508181036000830152615199816146a3565b9050919050565b600060208201905081810360008301526151b981614709565b9050919050565b600060208201905081810360008301526151d98161476f565b9050919050565b600060208201905081810360008301526151f9816147af565b9050919050565b6000602082019050818103600083015261521981614815565b9050919050565b600060208201905081810360008301526152398161487b565b9050919050565b60006020820190508181036000830152615259816148e1565b9050919050565b6000602082019050818103600083015261527981614947565b9050919050565b60006020820190508181036000830152615299816149ad565b9050919050565b600060208201905081810360008301526152b9816149ed565b9050919050565b600060208201905081810360008301526152d981614a53565b9050919050565b600060208201905081810360008301526152f981614ab9565b9050919050565b6000602082019050818103600083015261531981614af9565b9050919050565b6000602082019050818103600083015261533981614b9f565b9050919050565b6000602082019050818103600083015261535981614bdf565b9050919050565b6000602082019050818103600083015261537981614c45565b9050919050565b6000602082019050818103600083015261539981614cab565b9050919050565b600060208201905081810360008301526153b981614d11565b9050919050565b600060208201905081810360008301526153d981614d51565b9050919050565b600060208201905081810360008301526153f981614d91565b9050919050565b6000602082019050818103600083015261541981614df7565b9050919050565b6000602082019050818103600083015261543981614e37565b9050919050565b60006020820190506154556000830184614e9d565b92915050565b6000604051905081810181811067ffffffffffffffff82111715615482576154816158cc565b5b8060405250919050565b600067ffffffffffffffff8211156154a7576154a66158cc565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156154d7576154d66158cc565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061553a826156cb565b9150615545836156cb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561557a57615579615810565b5b828201905092915050565b6000615590826156cb565b915061559b836156cb565b9250826155ab576155aa61583f565b5b828204905092915050565b60006155c1826156cb565b91506155cc836156cb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561560557615604615810565b5b828202905092915050565b600061561b826156cb565b9150615626836156cb565b92508282101561563957615638615810565b5b828203905092915050565b600061564f826156ab565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008190506156a682615919565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006156ed82615698565b9050919050565b82818337600083830152505050565b60005b83811015615721578082015181840152602081019050615706565b83811115615730576000848401525b50505050565b6000600282049050600182168061574e57607f821691505b602082108114156157625761576161589d565b5b50919050565b6000615773826156cb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156157a6576157a5615810565b5b600182019050919050565b60006157bc826157cd565b9050919050565b6000819050919050565b60006157d88261590c565b9050919050565b60006157ea826156cb565b91506157f5836156cb565b9250826158055761580461583f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b6005811061592a5761592961586e565b5b50565b61593681615644565b811461594157600080fd5b50565b61594d81615656565b811461595857600080fd5b50565b6159648161566c565b811461596f57600080fd5b50565b61597b816156cb565b811461598657600080fd5b5056fea26469706673582212208a9c6291d22fbe8fe76f4bf604fd73f0e1d46e3f5c6bfdd60b143b081e5e1c2364736f6c63430008000033

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.