ETH Price: $3,097.35 (+2.12%)
Gas: 3 Gwei

Token

Senior Ape Golf Club (SAGC)
 

Overview

Max Total Supply

3,333 SAGC

Holders

1,141

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SAGC
0xf408Bee3443D0397e2c1cdE588Fb060AC657006F
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

SAGC is a private collection of 8.888 Senior Ape NFTs. Each Senior Ape is unique and comes with a membership to an exclusive club of successful investors and crypto moguls. Join us to have access to The Retirement Home, with an ever-growing community full of perks.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SAGC

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : SAGC.sol
//
//       /$$$$$$   /$$$$$$   /$$$$$$   /$$$$$$ 
//      /$$__  $$ /$$__  $$ /$$__  $$ /$$__  $$
//     | $$  \__/| $$  \ $$| $$  \__/| $$  \__/
//     |  $$$$$$ | $$$$$$$$| $$ /$$$$| $$      
//     \____  $$| $$__  $$| $$|_  $$| $$      
//     /$$  \ $$| $$  | $$| $$  \ $$| $$    $$
//     |  $$$$$$/| $$  | $$|  $$$$$$/|  $$$$$$/
//     \______/ |__/  |__/ \______/  \______/ 
//                                        
//                                                           
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721A.sol";

contract SAGC is ERC721A, Ownable {

    using Strings for uint256;

    mapping (address => uint256) private mintedWL;

    uint256 public maxSupply = 8888;
    uint256 private pricePublic = 0.06 ether;
    uint256 private priceWL = 0.06 ether;
    uint256 public maxPerTxPublic = 10;
    uint256 public maxPerWL = 10;
    uint256 public qtyFree = 3;
    uint256 public maxPerWallet = 10;

    bytes32 public merkleRoot = "";
    string private baseURI = "";
    string public provenance = "";
    string public uriNotRevealed = "";
    
    bool public paused = true;
    bool public isRevealed;
    bool private useWhitelist = true;
    
    event Minted(address caller);
    
    constructor() ERC721A("Senior Ape Golf Club", "SAGC", maxPerTxPublic) {

    }

    // mints a free token to the caller
    function mintFREE() public {
        uint256 supply = totalSupply();
        require(!paused, "Minting is paused");
        require(supply < qtyFree, "Sorry, we ran out of free ones!");
        require(balanceOf(msg.sender) == 0, "You already own a free one!");
        
        _safeMint(msg.sender, 1);
        
        emit Minted(msg.sender);
    }
    
    function mintPublic(uint256 qty) external payable{
        uint256 supply = totalSupply();
        require(!paused, "Minting is paused");
        require(useWhitelist == false, "Sorry, we are still on whitelist mode!");
        require(balanceOf(msg.sender) < maxPerWallet, "Sorry, you already own the max allowed!");

        require(supply + qty <= maxSupply, "Sorry, not enough left!");
        require(qty <= maxPerTxPublic, "Sorry, too many per transaction");
        require(msg.value >= pricePublic * qty, "Sorry, not enough amount sent!"); 
        require(supply >= qtyFree, "Hurry up and grab a free one!");

        _safeMint(msg.sender, qty);
    
        emit Minted(msg.sender);
    }

    
    function mintGiveaway(address _to, uint256 qty) external onlyOwner{
        uint256 supply = totalSupply();
        require(supply + qty <= maxSupply, "Sorry, not enough left!");
        _safeMint(_to, qty);
    }

    // whitelist mint, allows wallets on the whitelist to mint
    function mintWL(uint256 qty, bytes32[] memory proof) external payable {
        uint256 supply = totalSupply();
        require(!paused, "Minting is paused");
        require(useWhitelist, "Whitelist sale must be active to mint.");
        require(balanceOf(msg.sender) < maxPerWallet, "Sorry, you already own the max allowed!");
        require(supply >= qtyFree, "Hurry up and grab a free one!");

        
        // check if the user was whitelisted
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(_verify(leaf, proof), "You are not whitelisted.");
        
        require(msg.value >= priceWL * qty, "Sorry, not enough amount sent!"); 
        require(mintedWL[msg.sender] + qty <= maxPerWL, "Sorry, you have reached the WL limit.");
        require(supply + qty <= maxSupply, "Sorry, not enough left!");
         
        mintedWL[msg.sender] += qty;
        _safeMint(msg.sender, qty);
        
        emit Minted(msg.sender);
    }
    
    
    function remaining() public view returns(uint256){
        uint256 left = maxSupply - totalSupply();
        return left;
    }

    function usingWhitelist() public view returns(bool) {
        return useWhitelist;
    }

    function getPriceWL() public view returns (uint256){
        return priceWL;
    }

    function getPricePublic() public view returns (uint256){
        return pricePublic;
    }
    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        if (isRevealed == false) {
            return uriNotRevealed;
        }
        string memory base = baseURI;
        return bytes(base).length > 0 ? string(abi.encodePacked(base, tokenId.toString(), ".json")) : "";
    }

    // verify merkle tree leaf
    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool){
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }


    // ADMIN FUNCTIONS
    

    function flipUseWhitelist() public onlyOwner {
        useWhitelist = !useWhitelist;
    }

    function flipPaused() public onlyOwner {
        paused = !paused;
    }

    // close minting forever!
    function closeMinting() public onlyOwner {
        uint256 supply = totalSupply();
        maxSupply = supply;
    }
    
    function flipRevealed(string memory _URI) public onlyOwner {
        baseURI = _URI;
        isRevealed = !isRevealed;
    }

    function setMaxPerWL(uint256 _max) public onlyOwner {
        maxPerWL = _max;
    }

    function setBaseURI(string memory _URI) public onlyOwner {
        baseURI = _URI;
    }

    function setUriNotRevealed(string memory _URI) public onlyOwner {
        uriNotRevealed = _URI;
    }

    function setPriceWL(uint256 _newPrice) public onlyOwner {
        priceWL = _newPrice;
    }

    function setPricePublic(uint256 _newPrice) public onlyOwner {
        pricePublic = _newPrice;
    }

    function setMaxPerTx(uint256 _newMax) public onlyOwner {
        maxPerTxPublic = _newMax;
    }

    function changeFree(uint256 _free) public onlyOwner {
        qtyFree = _free;
    }

    function setProvenanceHash(string memory _provenance) public onlyOwner {
        provenance = _provenance;
    }

    // Set merkle tree root
    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function withdraw(uint256 _amount) onlyOwner public {
        uint256 balance = address(this).balance;
        require(_amount <= balance);
        payable(msg.sender).transfer(_amount);
    }



    // helpers


    // list all the tokens ids of a wallet
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
    
    
    
    receive() external payable {}
    
}

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 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 4 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) private _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > currentIndex - 1) {
            endIndex = currentIndex - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(ownership.addr, ownership.startTimestamp);
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

    /**
     * @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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721A: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 5 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 6 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 7 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 8 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 9 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 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 11 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 12 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 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"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"caller","type":"address"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_free","type":"uint256"}],"name":"changeFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"closeMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"flipRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipUseWhitelist","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":"getPricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPriceWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintFREE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"qtyFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPerWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPricePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPriceWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenance","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setUriNotRevealed","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"uriNotRevealed","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usingWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526000805560006007556122b8600a5566d529ae9e860000600b5566d529ae9e860000600c55600a600d55600a600e556003600f55600a6010556000601155604051806020016040528060008152506012908051906020019062000069929190620002e4565b50604051806020016040528060008152506013908051906020019062000091929190620002e4565b506040518060200160405280600081525060149080519060200190620000b9929190620002e4565b506001601560006101000a81548160ff0219169083151502179055506001601560026101000a81548160ff021916908315150217905550348015620000fd57600080fd5b506040518060400160405280601481526020017f53656e696f722041706520476f6c6620436c75620000000000000000000000008152506040518060400160405280600481526020017f5341474300000000000000000000000000000000000000000000000000000000815250600d5460008111620001b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001aa906200041b565b60405180910390fd5b8260019080519060200190620001cb929190620002e4565b508160029080519060200190620001e4929190620002e4565b50806080818152505050505062000210620002046200021660201b60201c565b6200021e60201b60201c565b620004a2565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002f2906200046c565b90600052602060002090601f01602090048101928262000316576000855562000362565b82601f106200033157805160ff191683800117855562000362565b8280016001018555821562000362579182015b828111156200036157825182559160200191906001019062000344565b5b50905062000371919062000375565b5090565b5b808211156200039057600081600090555060010162000376565b5090565b600082825260208201905092915050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b60006200040360278362000394565b91506200041082620003a5565b604082019050919050565b600060208201905081810360008301526200043681620003f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200048557607f821691505b602082108114156200049c576200049b6200043d565b5b50919050565b608051615fd7620004cc600039600081816134150152818161343e0152613a5a0152615fd76000f3fe60806040526004361061031e5760003560e01c80636352211e116101ab578063a22cb465116100f7578063d5abeb0111610095578063eb24830d1161006f578063eb24830d14610b86578063ee64aefb14610b9d578063efd0cbf914610bc8578063f2fde38b14610be457610325565b8063d5abeb0114610af3578063d7224ba014610b1e578063e985e9c514610b4957610325565b8063c3bb0cc2116100d1578063c3bb0cc214610a48578063c6f6f21614610a71578063c87b56dd14610a9a578063d0bfb81014610ad757610325565b8063a22cb465146109cd578063b88d4fde146109f6578063babf5e3714610a1f57610325565b80637f8448a91161016457806387491c601161013e57806387491c60146109355780638da5cb5b1461094c57806395d89b41146109775780639943770d146109a257610325565b80637f8448a9146108a657806381d8488f146108cf5780638462151c146108f857610325565b80636352211e146107aa57806370a08231146107e7578063715018a6146108245780637a3151041461083b5780637b7a7ca7146108525780637cb647591461087d57610325565b80632f745c591161026a5780634f6ccce71161022357806355234ec0116101fd57806355234ec01461070057806355f804b31461072b5780635c975abb146107545780635daaf45d1461077f57610325565b80634f6ccce71461066d57806354214f69146106aa57806354ea6585146106d557610325565b80632f745c5914610573578063333171bb146105b05780633fab1006146105c757806342842e0e146105f05780634530a83214610619578063453c23101461064257610325565b8063162d2261116102d75780631e760e88116102b15780631e760e88146104cb57806323b872dd146104f65780632e1a7d4d1461051f5780632eb4a7ab1461054857610325565b8063162d22611461044c57806318160ddd146104775780631b60efb0146104a257610325565b806301ffc9a71461032a57806306fdde0314610367578063081812fc14610392578063095ea7b3146103cf5780630f7309e8146103f8578063109695231461042357610325565b3661032557005b600080fd5b34801561033657600080fd5b50610351600480360381019061034c91906140aa565b610c0d565b60405161035e91906140f2565b60405180910390f35b34801561037357600080fd5b5061037c610d57565b60405161038991906141a6565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b491906141fe565b610de9565b6040516103c6919061426c565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f191906142b3565b610e6e565b005b34801561040457600080fd5b5061040d610f87565b60405161041a91906141a6565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190614428565b611015565b005b34801561045857600080fd5b506104616110ab565b60405161046e91906141a6565b60405180910390f35b34801561048357600080fd5b5061048c611139565b6040516104999190614480565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906142b3565b611142565b005b3480156104d757600080fd5b506104e0611229565b6040516104ed9190614480565b60405180910390f35b34801561050257600080fd5b5061051d6004803603810190610518919061449b565b61122f565b005b34801561052b57600080fd5b50610546600480360381019061054191906141fe565b61123f565b005b34801561055457600080fd5b5061055d611318565b60405161056a9190614507565b60405180910390f35b34801561057f57600080fd5b5061059a600480360381019061059591906142b3565b61131e565b6040516105a79190614480565b60405180910390f35b3480156105bc57600080fd5b506105c561151c565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190614428565b6115c4565b005b3480156105fc57600080fd5b506106176004803603810190610612919061449b565b611684565b005b34801561062557600080fd5b50610640600480360381019061063b91906141fe565b6116a4565b005b34801561064e57600080fd5b5061065761172a565b6040516106649190614480565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f91906141fe565b611730565b6040516106a19190614480565b60405180910390f35b3480156106b657600080fd5b506106bf611783565b6040516106cc91906140f2565b60405180910390f35b3480156106e157600080fd5b506106ea611796565b6040516106f79190614480565b60405180910390f35b34801561070c57600080fd5b506107156117a0565b6040516107229190614480565b60405180910390f35b34801561073757600080fd5b50610752600480360381019061074d9190614428565b6117c1565b005b34801561076057600080fd5b50610769611857565b60405161077691906140f2565b60405180910390f35b34801561078b57600080fd5b5061079461186a565b6040516107a19190614480565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc91906141fe565b611874565b6040516107de919061426c565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190614522565b61188a565b60405161081b9190614480565b60405180910390f35b34801561083057600080fd5b50610839611973565b005b34801561084757600080fd5b506108506119fb565b005b34801561085e57600080fd5b50610867611b2b565b60405161087491906140f2565b60405180910390f35b34801561088957600080fd5b506108a4600480360381019061089f919061457b565b611b42565b005b3480156108b257600080fd5b506108cd60048036038101906108c891906141fe565b611bc8565b005b3480156108db57600080fd5b506108f660048036038101906108f191906141fe565b611c4e565b005b34801561090457600080fd5b5061091f600480360381019061091a9190614522565b611cd4565b60405161092c9190614666565b60405180910390f35b34801561094157600080fd5b5061094a611dde565b005b34801561095857600080fd5b50610961611e70565b60405161096e919061426c565b60405180910390f35b34801561098357600080fd5b5061098c611e9a565b60405161099991906141a6565b60405180910390f35b3480156109ae57600080fd5b506109b7611f2c565b6040516109c49190614480565b60405180910390f35b3480156109d957600080fd5b506109f460048036038101906109ef91906146b4565b611f32565b005b348015610a0257600080fd5b50610a1d6004803603810190610a189190614795565b6120b3565b005b348015610a2b57600080fd5b50610a466004803603810190610a4191906141fe565b61210f565b005b348015610a5457600080fd5b50610a6f6004803603810190610a6a9190614428565b612195565b005b348015610a7d57600080fd5b50610a986004803603810190610a9391906141fe565b61222b565b005b348015610aa657600080fd5b50610ac16004803603810190610abc91906141fe565b6122b1565b604051610ace91906141a6565b60405180910390f35b610af16004803603810190610aec91906148e0565b61248a565b005b348015610aff57600080fd5b50610b08612806565b604051610b159190614480565b60405180910390f35b348015610b2a57600080fd5b50610b3361280c565b604051610b409190614480565b60405180910390f35b348015610b5557600080fd5b50610b706004803603810190610b6b919061493c565b612812565b604051610b7d91906140f2565b60405180910390f35b348015610b9257600080fd5b50610b9b6128a6565b005b348015610ba957600080fd5b50610bb261294e565b604051610bbf9190614480565b60405180910390f35b610be26004803603810190610bdd91906141fe565b612954565b005b348015610bf057600080fd5b50610c0b6004803603810190610c069190614522565b612bc1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cd857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d4057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d505750610d4f82612cb9565b5b9050919050565b606060018054610d66906149ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610d92906149ab565b8015610ddf5780601f10610db457610100808354040283529160200191610ddf565b820191906000526020600020905b815481529060010190602001808311610dc257829003601f168201915b5050505050905090565b6000610df482612d23565b610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90614a4f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e7982611874565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee190614ae1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f09612d30565b73ffffffffffffffffffffffffffffffffffffffff161480610f385750610f3781610f32612d30565b612812565b5b610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90614b73565b60405180910390fd5b610f82838383612d38565b505050565b60138054610f94906149ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc0906149ab565b801561100d5780601f10610fe25761010080835404028352916020019161100d565b820191906000526020600020905b815481529060010190602001808311610ff057829003601f168201915b505050505081565b61101d612d30565b73ffffffffffffffffffffffffffffffffffffffff1661103b611e70565b73ffffffffffffffffffffffffffffffffffffffff1614611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890614bdf565b60405180910390fd5b80601390805190602001906110a7929190613f61565b5050565b601480546110b8906149ab565b80601f01602080910402602001604051908101604052809291908181526020018280546110e4906149ab565b80156111315780601f1061110657610100808354040283529160200191611131565b820191906000526020600020905b81548152906001019060200180831161111457829003601f168201915b505050505081565b60008054905090565b61114a612d30565b73ffffffffffffffffffffffffffffffffffffffff16611168611e70565b73ffffffffffffffffffffffffffffffffffffffff16146111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590614bdf565b60405180910390fd5b60006111c8611139565b9050600a5482826111d99190614c2e565b111561121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190614cd0565b60405180910390fd5b6112248383612dea565b505050565b600f5481565b61123a838383612e08565b505050565b611247612d30565b73ffffffffffffffffffffffffffffffffffffffff16611265611e70565b73ffffffffffffffffffffffffffffffffffffffff16146112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b290614bdf565b60405180910390fd5b6000479050808211156112cd57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611313573d6000803e3d6000fd5b505050565b60115481565b60006113298361188a565b821061136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190614d62565b60405180910390fd5b6000611374611139565b905060008060005b838110156114da576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461146e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114c657868414156114b7578195505050505050611516565b83806114c290614d82565b9450505b5080806114d290614d82565b91505061137c565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90614e3d565b60405180910390fd5b92915050565b611524612d30565b73ffffffffffffffffffffffffffffffffffffffff16611542611e70565b73ffffffffffffffffffffffffffffffffffffffff1614611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f90614bdf565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b6115cc612d30565b73ffffffffffffffffffffffffffffffffffffffff166115ea611e70565b73ffffffffffffffffffffffffffffffffffffffff1614611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790614bdf565b60405180910390fd5b8060129080519060200190611656929190613f61565b50601560019054906101000a900460ff1615601560016101000a81548160ff02191690831515021790555050565b61169f838383604051806020016040528060008152506120b3565b505050565b6116ac612d30565b73ffffffffffffffffffffffffffffffffffffffff166116ca611e70565b73ffffffffffffffffffffffffffffffffffffffff1614611720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171790614bdf565b60405180910390fd5b80600b8190555050565b60105481565b600061173a611139565b821061177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290614ecf565b60405180910390fd5b819050919050565b601560019054906101000a900460ff1681565b6000600b54905090565b6000806117ab611139565b600a546117b89190614eef565b90508091505090565b6117c9612d30565b73ffffffffffffffffffffffffffffffffffffffff166117e7611e70565b73ffffffffffffffffffffffffffffffffffffffff161461183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183490614bdf565b60405180910390fd5b8060129080519060200190611853929190613f61565b5050565b601560009054906101000a900460ff1681565b6000600c54905090565b600061187f826133c1565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290614f95565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61197b612d30565b73ffffffffffffffffffffffffffffffffffffffff16611999611e70565b73ffffffffffffffffffffffffffffffffffffffff16146119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690614bdf565b60405180910390fd5b6119f960006135c4565b565b6000611a05611139565b9050601560009054906101000a900460ff1615611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e90615001565b60405180910390fd5b600f548110611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a929061506d565b60405180910390fd5b6000611aa63361188a565b14611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add906150d9565b60405180910390fd5b611af1336001612dea565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d833604051611b20919061426c565b60405180910390a150565b6000601560029054906101000a900460ff16905090565b611b4a612d30565b73ffffffffffffffffffffffffffffffffffffffff16611b68611e70565b73ffffffffffffffffffffffffffffffffffffffff1614611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb590614bdf565b60405180910390fd5b8060118190555050565b611bd0612d30565b73ffffffffffffffffffffffffffffffffffffffff16611bee611e70565b73ffffffffffffffffffffffffffffffffffffffff1614611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90614bdf565b60405180910390fd5b80600e8190555050565b611c56612d30565b73ffffffffffffffffffffffffffffffffffffffff16611c74611e70565b73ffffffffffffffffffffffffffffffffffffffff1614611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc190614bdf565b60405180910390fd5b80600c8190555050565b60606000611ce18361188a565b90506000811415611d3e57600067ffffffffffffffff811115611d0757611d066142fd565b5b604051908082528060200260200182016040528015611d355781602001602082028036833780820191505090505b50915050611dd9565b60008167ffffffffffffffff811115611d5a57611d596142fd565b5b604051908082528060200260200182016040528015611d885781602001602082028036833780820191505090505b50905060005b82811015611dd257611da0858261131e565b828281518110611db357611db26150f9565b5b6020026020010181815250508080611dca90614d82565b915050611d8e565b8193505050505b919050565b611de6612d30565b73ffffffffffffffffffffffffffffffffffffffff16611e04611e70565b73ffffffffffffffffffffffffffffffffffffffff1614611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5190614bdf565b60405180910390fd5b6000611e64611139565b905080600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611ea9906149ab565b80601f0160208091040260200160405190810160405280929190818152602001828054611ed5906149ab565b8015611f225780601f10611ef757610100808354040283529160200191611f22565b820191906000526020600020905b815481529060010190602001808311611f0557829003601f168201915b5050505050905090565b600d5481565b611f3a612d30565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f90615174565b60405180910390fd5b8060066000611fb5612d30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612062612d30565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120a791906140f2565b60405180910390a35050565b6120be848484612e08565b6120ca8484848461368a565b612109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210090615206565b60405180910390fd5b50505050565b612117612d30565b73ffffffffffffffffffffffffffffffffffffffff16612135611e70565b73ffffffffffffffffffffffffffffffffffffffff161461218b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218290614bdf565b60405180910390fd5b80600f8190555050565b61219d612d30565b73ffffffffffffffffffffffffffffffffffffffff166121bb611e70565b73ffffffffffffffffffffffffffffffffffffffff1614612211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220890614bdf565b60405180910390fd5b8060149080519060200190612227929190613f61565b5050565b612233612d30565b73ffffffffffffffffffffffffffffffffffffffff16612251611e70565b73ffffffffffffffffffffffffffffffffffffffff16146122a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229e90614bdf565b60405180910390fd5b80600d8190555050565b60606122bc82612d23565b6122fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f290615298565b60405180910390fd5b60001515601560019054906101000a900460ff16151514156123a95760148054612324906149ab565b80601f0160208091040260200160405190810160405280929190818152602001828054612350906149ab565b801561239d5780601f106123725761010080835404028352916020019161239d565b820191906000526020600020905b81548152906001019060200180831161238057829003601f168201915b50505050509050612485565b6000601280546123b8906149ab565b80601f01602080910402602001604051908101604052809291908181526020018280546123e4906149ab565b80156124315780601f1061240657610100808354040283529160200191612431565b820191906000526020600020905b81548152906001019060200180831161241457829003601f168201915b5050505050905060008151116124565760405180602001604052806000815250612481565b8061246084613821565b604051602001612471929190615340565b6040516020818303038152906040525b9150505b919050565b6000612494611139565b9050601560009054906101000a900460ff16156124e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dd90615001565b60405180910390fd5b601560029054906101000a900460ff16612535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252c906153e1565b60405180910390fd5b6010546125413361188a565b10612581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257890615473565b60405180910390fd5b600f548110156125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd906154df565b60405180910390fd5b6000336040516020016125d99190615547565b6040516020818303038152906040528051906020012090506125fb8184613982565b61263a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612631906155ae565b60405180910390fd5b83600c5461264891906155ce565b34101561268a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268190615674565b60405180910390fd5b600e5484600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126d89190614c2e565b1115612719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271090615706565b60405180910390fd5b600a5484836127289190614c2e565b1115612769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276090614cd0565b60405180910390fd5b83600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127b89190614c2e565b925050819055506127c93385612dea565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d8336040516127f8919061426c565b60405180910390a150505050565b600a5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6128ae612d30565b73ffffffffffffffffffffffffffffffffffffffff166128cc611e70565b73ffffffffffffffffffffffffffffffffffffffff1614612922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291990614bdf565b60405180910390fd5b601560029054906101000a900460ff1615601560026101000a81548160ff021916908315150217905550565b600e5481565b600061295e611139565b9050601560009054906101000a900460ff16156129b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a790615001565b60405180910390fd5b60001515601560029054906101000a900460ff16151514612a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fd90615798565b60405180910390fd5b601054612a123361188a565b10612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4990615473565b60405180910390fd5b600a548282612a619190614c2e565b1115612aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9990614cd0565b60405180910390fd5b600d54821115612ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ade90615804565b60405180910390fd5b81600b54612af591906155ce565b341015612b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2e90615674565b60405180910390fd5b600f54811015612b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b73906154df565b60405180910390fd5b612b863383612dea565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d833604051612bb5919061426c565b60405180910390a15050565b612bc9612d30565b73ffffffffffffffffffffffffffffffffffffffff16612be7611e70565b73ffffffffffffffffffffffffffffffffffffffff1614612c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3490614bdf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca490615896565b60405180910390fd5b612cb6816135c4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612e04828260405180602001604052806000815250613999565b5050565b6000612e13826133c1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612e3a612d30565b73ffffffffffffffffffffffffffffffffffffffff161480612e965750612e5f612d30565b73ffffffffffffffffffffffffffffffffffffffff16612e7e84610de9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612eb25750612eb18260000151612eac612d30565b612812565b5b905080612ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eeb90615928565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5d906159ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fcd90615a4c565b60405180910390fd5b612fe38585856001613e78565b612ff36000848460000151612d38565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166130619190615a88565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166131059190615abc565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461320b9190614c2e565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156133515761328181612d23565b15613350576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133b98686866001613e7e565b505050505050565b6133c9613fe7565b6133d282612d23565b613411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340890615b74565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106134755760017f0000000000000000000000000000000000000000000000000000000000000000846134689190614eef565b6134729190614c2e565b90505b60008390505b818110613583576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461356f578093505050506135bf565b50808061357b90615b94565b91505061347b565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135b690615c30565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006136ab8473ffffffffffffffffffffffffffffffffffffffff16613e84565b15613814578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136d4612d30565b8786866040518563ffffffff1660e01b81526004016136f69493929190615ca5565b602060405180830381600087803b15801561371057600080fd5b505af192505050801561374157506040513d601f19601f8201168201806040525081019061373e9190615d06565b60015b6137c4573d8060008114613771576040519150601f19603f3d011682016040523d82523d6000602084013e613776565b606091505b506000815114156137bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b390615206565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613819565b600190505b949350505050565b60606000821415613869576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061397d565b600082905060005b6000821461389b57808061388490614d82565b915050600a826138949190615d62565b9150613871565b60008167ffffffffffffffff8111156138b7576138b66142fd565b5b6040519080825280601f01601f1916602001820160405280156138e95781602001600182028036833780820191505090505b5090505b60008514613976576001826139029190614eef565b9150600a856139119190615d93565b603061391d9190614c2e565b60f81b818381518110613933576139326150f9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561396f9190615d62565b94506138ed565b8093505050505b919050565b60006139918260115485613e97565b905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a0690615e36565b60405180910390fd5b613a1881612d23565b15613a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4f90615ea2565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab290615f34565b60405180910390fd5b613ac86000858386613e78565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613bc59190615abc565b6fffffffffffffffffffffffffffffffff168152602001858360200151613bec9190615abc565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613e5b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613dfb600088848861368a565b613e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e3190615206565b60405180910390fd5b8180613e4590614d82565b9250508080613e5390614d82565b915050613d8a565b5080600081905550613e706000878588613e7e565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b600082613ea48584613eae565b1490509392505050565b60008082905060005b8451811015613f56576000858281518110613ed557613ed46150f9565b5b60200260200101519050808311613f16578281604051602001613ef9929190615f75565b604051602081830303815290604052805190602001209250613f42565b8083604051602001613f29929190615f75565b6040516020818303038152906040528051906020012092505b508080613f4e90614d82565b915050613eb7565b508091505092915050565b828054613f6d906149ab565b90600052602060002090601f016020900481019282613f8f5760008555613fd6565b82601f10613fa857805160ff1916838001178555613fd6565b82800160010185558215613fd6579182015b82811115613fd5578251825591602001919060010190613fba565b5b509050613fe39190614021565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561403a576000816000905550600101614022565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61408781614052565b811461409257600080fd5b50565b6000813590506140a48161407e565b92915050565b6000602082840312156140c0576140bf614048565b5b60006140ce84828501614095565b91505092915050565b60008115159050919050565b6140ec816140d7565b82525050565b600060208201905061410760008301846140e3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561414757808201518184015260208101905061412c565b83811115614156576000848401525b50505050565b6000601f19601f8301169050919050565b60006141788261410d565b6141828185614118565b9350614192818560208601614129565b61419b8161415c565b840191505092915050565b600060208201905081810360008301526141c0818461416d565b905092915050565b6000819050919050565b6141db816141c8565b81146141e657600080fd5b50565b6000813590506141f8816141d2565b92915050565b60006020828403121561421457614213614048565b5b6000614222848285016141e9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142568261422b565b9050919050565b6142668161424b565b82525050565b6000602082019050614281600083018461425d565b92915050565b6142908161424b565b811461429b57600080fd5b50565b6000813590506142ad81614287565b92915050565b600080604083850312156142ca576142c9614048565b5b60006142d88582860161429e565b92505060206142e9858286016141e9565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6143358261415c565b810181811067ffffffffffffffff82111715614354576143536142fd565b5b80604052505050565b600061436761403e565b9050614373828261432c565b919050565b600067ffffffffffffffff821115614393576143926142fd565b5b61439c8261415c565b9050602081019050919050565b82818337600083830152505050565b60006143cb6143c684614378565b61435d565b9050828152602081018484840111156143e7576143e66142f8565b5b6143f28482856143a9565b509392505050565b600082601f83011261440f5761440e6142f3565b5b813561441f8482602086016143b8565b91505092915050565b60006020828403121561443e5761443d614048565b5b600082013567ffffffffffffffff81111561445c5761445b61404d565b5b614468848285016143fa565b91505092915050565b61447a816141c8565b82525050565b60006020820190506144956000830184614471565b92915050565b6000806000606084860312156144b4576144b3614048565b5b60006144c28682870161429e565b93505060206144d38682870161429e565b92505060406144e4868287016141e9565b9150509250925092565b6000819050919050565b614501816144ee565b82525050565b600060208201905061451c60008301846144f8565b92915050565b60006020828403121561453857614537614048565b5b60006145468482850161429e565b91505092915050565b614558816144ee565b811461456357600080fd5b50565b6000813590506145758161454f565b92915050565b60006020828403121561459157614590614048565b5b600061459f84828501614566565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6145dd816141c8565b82525050565b60006145ef83836145d4565b60208301905092915050565b6000602082019050919050565b6000614613826145a8565b61461d81856145b3565b9350614628836145c4565b8060005b8381101561465957815161464088826145e3565b975061464b836145fb565b92505060018101905061462c565b5085935050505092915050565b600060208201905081810360008301526146808184614608565b905092915050565b614691816140d7565b811461469c57600080fd5b50565b6000813590506146ae81614688565b92915050565b600080604083850312156146cb576146ca614048565b5b60006146d98582860161429e565b92505060206146ea8582860161469f565b9150509250929050565b600067ffffffffffffffff82111561470f5761470e6142fd565b5b6147188261415c565b9050602081019050919050565b6000614738614733846146f4565b61435d565b905082815260208101848484011115614754576147536142f8565b5b61475f8482856143a9565b509392505050565b600082601f83011261477c5761477b6142f3565b5b813561478c848260208601614725565b91505092915050565b600080600080608085870312156147af576147ae614048565b5b60006147bd8782880161429e565b94505060206147ce8782880161429e565b93505060406147df878288016141e9565b925050606085013567ffffffffffffffff811115614800576147ff61404d565b5b61480c87828801614767565b91505092959194509250565b600067ffffffffffffffff821115614833576148326142fd565b5b602082029050602081019050919050565b600080fd5b600061485c61485784614818565b61435d565b9050808382526020820190506020840283018581111561487f5761487e614844565b5b835b818110156148a857806148948882614566565b845260208401935050602081019050614881565b5050509392505050565b600082601f8301126148c7576148c66142f3565b5b81356148d7848260208601614849565b91505092915050565b600080604083850312156148f7576148f6614048565b5b6000614905858286016141e9565b925050602083013567ffffffffffffffff8111156149265761492561404d565b5b614932858286016148b2565b9150509250929050565b6000806040838503121561495357614952614048565b5b60006149618582860161429e565b92505060206149728582860161429e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806149c357607f821691505b602082108114156149d7576149d661497c565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614a39602d83614118565b9150614a44826149dd565b604082019050919050565b60006020820190508181036000830152614a6881614a2c565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614acb602283614118565b9150614ad682614a6f565b604082019050919050565b60006020820190508181036000830152614afa81614abe565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614b5d603983614118565b9150614b6882614b01565b604082019050919050565b60006020820190508181036000830152614b8c81614b50565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614bc9602083614118565b9150614bd482614b93565b602082019050919050565b60006020820190508181036000830152614bf881614bbc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c39826141c8565b9150614c44836141c8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c7957614c78614bff565b5b828201905092915050565b7f536f7272792c206e6f7420656e6f756768206c65667421000000000000000000600082015250565b6000614cba601783614118565b9150614cc582614c84565b602082019050919050565b60006020820190508181036000830152614ce981614cad565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d4c602283614118565b9150614d5782614cf0565b604082019050919050565b60006020820190508181036000830152614d7b81614d3f565b9050919050565b6000614d8d826141c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614dc057614dbf614bff565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614e27602e83614118565b9150614e3282614dcb565b604082019050919050565b60006020820190508181036000830152614e5681614e1a565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614eb9602383614118565b9150614ec482614e5d565b604082019050919050565b60006020820190508181036000830152614ee881614eac565b9050919050565b6000614efa826141c8565b9150614f05836141c8565b925082821015614f1857614f17614bff565b5b828203905092915050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614f7f602b83614118565b9150614f8a82614f23565b604082019050919050565b60006020820190508181036000830152614fae81614f72565b9050919050565b7f4d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b6000614feb601183614118565b9150614ff682614fb5565b602082019050919050565b6000602082019050818103600083015261501a81614fde565b9050919050565b7f536f7272792c2077652072616e206f7574206f662066726565206f6e65732100600082015250565b6000615057601f83614118565b915061506282615021565b602082019050919050565b600060208201905081810360008301526150868161504a565b9050919050565b7f596f7520616c7265616479206f776e20612066726565206f6e65210000000000600082015250565b60006150c3601b83614118565b91506150ce8261508d565b602082019050919050565b600060208201905081810360008301526150f2816150b6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061515e601a83614118565b915061516982615128565b602082019050919050565b6000602082019050818103600083015261518d81615151565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006151f0603383614118565b91506151fb82615194565b604082019050919050565b6000602082019050818103600083015261521f816151e3565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615282602f83614118565b915061528d82615226565b604082019050919050565b600060208201905081810360008301526152b181615275565b9050919050565b600081905092915050565b60006152ce8261410d565b6152d881856152b8565b93506152e8818560208601614129565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061532a6005836152b8565b9150615335826152f4565b600582019050919050565b600061534c82856152c3565b915061535882846152c3565b91506153638261531d565b91508190509392505050565b7f57686974656c6973742073616c65206d7573742062652061637469766520746f60008201527f206d696e742e0000000000000000000000000000000000000000000000000000602082015250565b60006153cb602683614118565b91506153d68261536f565b604082019050919050565b600060208201905081810360008301526153fa816153be565b9050919050565b7f536f7272792c20796f7520616c7265616479206f776e20746865206d6178206160008201527f6c6c6f7765642100000000000000000000000000000000000000000000000000602082015250565b600061545d602783614118565b915061546882615401565b604082019050919050565b6000602082019050818103600083015261548c81615450565b9050919050565b7f487572727920757020616e64206772616220612066726565206f6e6521000000600082015250565b60006154c9601d83614118565b91506154d482615493565b602082019050919050565b600060208201905081810360008301526154f8816154bc565b9050919050565b60008160601b9050919050565b6000615517826154ff565b9050919050565b60006155298261550c565b9050919050565b61554161553c8261424b565b61551e565b82525050565b60006155538284615530565b60148201915081905092915050565b7f596f7520617265206e6f742077686974656c69737465642e0000000000000000600082015250565b6000615598601883614118565b91506155a382615562565b602082019050919050565b600060208201905081810360008301526155c78161558b565b9050919050565b60006155d9826141c8565b91506155e4836141c8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561561d5761561c614bff565b5b828202905092915050565b7f536f7272792c206e6f7420656e6f75676820616d6f756e742073656e74210000600082015250565b600061565e601e83614118565b915061566982615628565b602082019050919050565b6000602082019050818103600083015261568d81615651565b9050919050565b7f536f7272792c20796f75206861766520726561636865642074686520574c206c60008201527f696d69742e000000000000000000000000000000000000000000000000000000602082015250565b60006156f0602583614118565b91506156fb82615694565b604082019050919050565b6000602082019050818103600083015261571f816156e3565b9050919050565b7f536f7272792c20776520617265207374696c6c206f6e2077686974656c69737460008201527f206d6f6465210000000000000000000000000000000000000000000000000000602082015250565b6000615782602683614118565b915061578d82615726565b604082019050919050565b600060208201905081810360008301526157b181615775565b9050919050565b7f536f7272792c20746f6f206d616e7920706572207472616e73616374696f6e00600082015250565b60006157ee601f83614118565b91506157f9826157b8565b602082019050919050565b6000602082019050818103600083015261581d816157e1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615880602683614118565b915061588b82615824565b604082019050919050565b600060208201905081810360008301526158af81615873565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000615912603283614118565b915061591d826158b6565b604082019050919050565b6000602082019050818103600083015261594181615905565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006159a4602683614118565b91506159af82615948565b604082019050919050565b600060208201905081810360008301526159d381615997565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615a36602583614118565b9150615a41826159da565b604082019050919050565b60006020820190508181036000830152615a6581615a29565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000615a9382615a6c565b9150615a9e83615a6c565b925082821015615ab157615ab0614bff565b5b828203905092915050565b6000615ac782615a6c565b9150615ad283615a6c565b9250826fffffffffffffffffffffffffffffffff03821115615af757615af6614bff565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000615b5e602a83614118565b9150615b6982615b02565b604082019050919050565b60006020820190508181036000830152615b8d81615b51565b9050919050565b6000615b9f826141c8565b91506000821415615bb357615bb2614bff565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000615c1a602f83614118565b9150615c2582615bbe565b604082019050919050565b60006020820190508181036000830152615c4981615c0d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615c7782615c50565b615c818185615c5b565b9350615c91818560208601614129565b615c9a8161415c565b840191505092915050565b6000608082019050615cba600083018761425d565b615cc7602083018661425d565b615cd46040830185614471565b8181036060830152615ce68184615c6c565b905095945050505050565b600081519050615d008161407e565b92915050565b600060208284031215615d1c57615d1b614048565b5b6000615d2a84828501615cf1565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615d6d826141c8565b9150615d78836141c8565b925082615d8857615d87615d33565b5b828204905092915050565b6000615d9e826141c8565b9150615da9836141c8565b925082615db957615db8615d33565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615e20602183614118565b9150615e2b82615dc4565b604082019050919050565b60006020820190508181036000830152615e4f81615e13565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000615e8c601d83614118565b9150615e9782615e56565b602082019050919050565b60006020820190508181036000830152615ebb81615e7f565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000615f1e602283614118565b9150615f2982615ec2565b604082019050919050565b60006020820190508181036000830152615f4d81615f11565b9050919050565b6000819050919050565b615f6f615f6a826144ee565b615f54565b82525050565b6000615f818285615f5e565b602082019150615f918284615f5e565b602082019150819050939250505056fea26469706673582212205c0678ef3fd9bd771e5b224cffd3f4e9cd2adc18132d946a417429a320a59d3764736f6c63430008090033

Deployed Bytecode

0x60806040526004361061031e5760003560e01c80636352211e116101ab578063a22cb465116100f7578063d5abeb0111610095578063eb24830d1161006f578063eb24830d14610b86578063ee64aefb14610b9d578063efd0cbf914610bc8578063f2fde38b14610be457610325565b8063d5abeb0114610af3578063d7224ba014610b1e578063e985e9c514610b4957610325565b8063c3bb0cc2116100d1578063c3bb0cc214610a48578063c6f6f21614610a71578063c87b56dd14610a9a578063d0bfb81014610ad757610325565b8063a22cb465146109cd578063b88d4fde146109f6578063babf5e3714610a1f57610325565b80637f8448a91161016457806387491c601161013e57806387491c60146109355780638da5cb5b1461094c57806395d89b41146109775780639943770d146109a257610325565b80637f8448a9146108a657806381d8488f146108cf5780638462151c146108f857610325565b80636352211e146107aa57806370a08231146107e7578063715018a6146108245780637a3151041461083b5780637b7a7ca7146108525780637cb647591461087d57610325565b80632f745c591161026a5780634f6ccce71161022357806355234ec0116101fd57806355234ec01461070057806355f804b31461072b5780635c975abb146107545780635daaf45d1461077f57610325565b80634f6ccce71461066d57806354214f69146106aa57806354ea6585146106d557610325565b80632f745c5914610573578063333171bb146105b05780633fab1006146105c757806342842e0e146105f05780634530a83214610619578063453c23101461064257610325565b8063162d2261116102d75780631e760e88116102b15780631e760e88146104cb57806323b872dd146104f65780632e1a7d4d1461051f5780632eb4a7ab1461054857610325565b8063162d22611461044c57806318160ddd146104775780631b60efb0146104a257610325565b806301ffc9a71461032a57806306fdde0314610367578063081812fc14610392578063095ea7b3146103cf5780630f7309e8146103f8578063109695231461042357610325565b3661032557005b600080fd5b34801561033657600080fd5b50610351600480360381019061034c91906140aa565b610c0d565b60405161035e91906140f2565b60405180910390f35b34801561037357600080fd5b5061037c610d57565b60405161038991906141a6565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b491906141fe565b610de9565b6040516103c6919061426c565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f191906142b3565b610e6e565b005b34801561040457600080fd5b5061040d610f87565b60405161041a91906141a6565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190614428565b611015565b005b34801561045857600080fd5b506104616110ab565b60405161046e91906141a6565b60405180910390f35b34801561048357600080fd5b5061048c611139565b6040516104999190614480565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906142b3565b611142565b005b3480156104d757600080fd5b506104e0611229565b6040516104ed9190614480565b60405180910390f35b34801561050257600080fd5b5061051d6004803603810190610518919061449b565b61122f565b005b34801561052b57600080fd5b50610546600480360381019061054191906141fe565b61123f565b005b34801561055457600080fd5b5061055d611318565b60405161056a9190614507565b60405180910390f35b34801561057f57600080fd5b5061059a600480360381019061059591906142b3565b61131e565b6040516105a79190614480565b60405180910390f35b3480156105bc57600080fd5b506105c561151c565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190614428565b6115c4565b005b3480156105fc57600080fd5b506106176004803603810190610612919061449b565b611684565b005b34801561062557600080fd5b50610640600480360381019061063b91906141fe565b6116a4565b005b34801561064e57600080fd5b5061065761172a565b6040516106649190614480565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f91906141fe565b611730565b6040516106a19190614480565b60405180910390f35b3480156106b657600080fd5b506106bf611783565b6040516106cc91906140f2565b60405180910390f35b3480156106e157600080fd5b506106ea611796565b6040516106f79190614480565b60405180910390f35b34801561070c57600080fd5b506107156117a0565b6040516107229190614480565b60405180910390f35b34801561073757600080fd5b50610752600480360381019061074d9190614428565b6117c1565b005b34801561076057600080fd5b50610769611857565b60405161077691906140f2565b60405180910390f35b34801561078b57600080fd5b5061079461186a565b6040516107a19190614480565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc91906141fe565b611874565b6040516107de919061426c565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190614522565b61188a565b60405161081b9190614480565b60405180910390f35b34801561083057600080fd5b50610839611973565b005b34801561084757600080fd5b506108506119fb565b005b34801561085e57600080fd5b50610867611b2b565b60405161087491906140f2565b60405180910390f35b34801561088957600080fd5b506108a4600480360381019061089f919061457b565b611b42565b005b3480156108b257600080fd5b506108cd60048036038101906108c891906141fe565b611bc8565b005b3480156108db57600080fd5b506108f660048036038101906108f191906141fe565b611c4e565b005b34801561090457600080fd5b5061091f600480360381019061091a9190614522565b611cd4565b60405161092c9190614666565b60405180910390f35b34801561094157600080fd5b5061094a611dde565b005b34801561095857600080fd5b50610961611e70565b60405161096e919061426c565b60405180910390f35b34801561098357600080fd5b5061098c611e9a565b60405161099991906141a6565b60405180910390f35b3480156109ae57600080fd5b506109b7611f2c565b6040516109c49190614480565b60405180910390f35b3480156109d957600080fd5b506109f460048036038101906109ef91906146b4565b611f32565b005b348015610a0257600080fd5b50610a1d6004803603810190610a189190614795565b6120b3565b005b348015610a2b57600080fd5b50610a466004803603810190610a4191906141fe565b61210f565b005b348015610a5457600080fd5b50610a6f6004803603810190610a6a9190614428565b612195565b005b348015610a7d57600080fd5b50610a986004803603810190610a9391906141fe565b61222b565b005b348015610aa657600080fd5b50610ac16004803603810190610abc91906141fe565b6122b1565b604051610ace91906141a6565b60405180910390f35b610af16004803603810190610aec91906148e0565b61248a565b005b348015610aff57600080fd5b50610b08612806565b604051610b159190614480565b60405180910390f35b348015610b2a57600080fd5b50610b3361280c565b604051610b409190614480565b60405180910390f35b348015610b5557600080fd5b50610b706004803603810190610b6b919061493c565b612812565b604051610b7d91906140f2565b60405180910390f35b348015610b9257600080fd5b50610b9b6128a6565b005b348015610ba957600080fd5b50610bb261294e565b604051610bbf9190614480565b60405180910390f35b610be26004803603810190610bdd91906141fe565b612954565b005b348015610bf057600080fd5b50610c0b6004803603810190610c069190614522565b612bc1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cd857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d4057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d505750610d4f82612cb9565b5b9050919050565b606060018054610d66906149ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610d92906149ab565b8015610ddf5780601f10610db457610100808354040283529160200191610ddf565b820191906000526020600020905b815481529060010190602001808311610dc257829003601f168201915b5050505050905090565b6000610df482612d23565b610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90614a4f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e7982611874565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee190614ae1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f09612d30565b73ffffffffffffffffffffffffffffffffffffffff161480610f385750610f3781610f32612d30565b612812565b5b610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90614b73565b60405180910390fd5b610f82838383612d38565b505050565b60138054610f94906149ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc0906149ab565b801561100d5780601f10610fe25761010080835404028352916020019161100d565b820191906000526020600020905b815481529060010190602001808311610ff057829003601f168201915b505050505081565b61101d612d30565b73ffffffffffffffffffffffffffffffffffffffff1661103b611e70565b73ffffffffffffffffffffffffffffffffffffffff1614611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890614bdf565b60405180910390fd5b80601390805190602001906110a7929190613f61565b5050565b601480546110b8906149ab565b80601f01602080910402602001604051908101604052809291908181526020018280546110e4906149ab565b80156111315780601f1061110657610100808354040283529160200191611131565b820191906000526020600020905b81548152906001019060200180831161111457829003601f168201915b505050505081565b60008054905090565b61114a612d30565b73ffffffffffffffffffffffffffffffffffffffff16611168611e70565b73ffffffffffffffffffffffffffffffffffffffff16146111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590614bdf565b60405180910390fd5b60006111c8611139565b9050600a5482826111d99190614c2e565b111561121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190614cd0565b60405180910390fd5b6112248383612dea565b505050565b600f5481565b61123a838383612e08565b505050565b611247612d30565b73ffffffffffffffffffffffffffffffffffffffff16611265611e70565b73ffffffffffffffffffffffffffffffffffffffff16146112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b290614bdf565b60405180910390fd5b6000479050808211156112cd57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611313573d6000803e3d6000fd5b505050565b60115481565b60006113298361188a565b821061136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190614d62565b60405180910390fd5b6000611374611139565b905060008060005b838110156114da576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461146e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114c657868414156114b7578195505050505050611516565b83806114c290614d82565b9450505b5080806114d290614d82565b91505061137c565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90614e3d565b60405180910390fd5b92915050565b611524612d30565b73ffffffffffffffffffffffffffffffffffffffff16611542611e70565b73ffffffffffffffffffffffffffffffffffffffff1614611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f90614bdf565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b6115cc612d30565b73ffffffffffffffffffffffffffffffffffffffff166115ea611e70565b73ffffffffffffffffffffffffffffffffffffffff1614611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790614bdf565b60405180910390fd5b8060129080519060200190611656929190613f61565b50601560019054906101000a900460ff1615601560016101000a81548160ff02191690831515021790555050565b61169f838383604051806020016040528060008152506120b3565b505050565b6116ac612d30565b73ffffffffffffffffffffffffffffffffffffffff166116ca611e70565b73ffffffffffffffffffffffffffffffffffffffff1614611720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171790614bdf565b60405180910390fd5b80600b8190555050565b60105481565b600061173a611139565b821061177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290614ecf565b60405180910390fd5b819050919050565b601560019054906101000a900460ff1681565b6000600b54905090565b6000806117ab611139565b600a546117b89190614eef565b90508091505090565b6117c9612d30565b73ffffffffffffffffffffffffffffffffffffffff166117e7611e70565b73ffffffffffffffffffffffffffffffffffffffff161461183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183490614bdf565b60405180910390fd5b8060129080519060200190611853929190613f61565b5050565b601560009054906101000a900460ff1681565b6000600c54905090565b600061187f826133c1565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290614f95565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61197b612d30565b73ffffffffffffffffffffffffffffffffffffffff16611999611e70565b73ffffffffffffffffffffffffffffffffffffffff16146119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690614bdf565b60405180910390fd5b6119f960006135c4565b565b6000611a05611139565b9050601560009054906101000a900460ff1615611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e90615001565b60405180910390fd5b600f548110611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a929061506d565b60405180910390fd5b6000611aa63361188a565b14611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add906150d9565b60405180910390fd5b611af1336001612dea565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d833604051611b20919061426c565b60405180910390a150565b6000601560029054906101000a900460ff16905090565b611b4a612d30565b73ffffffffffffffffffffffffffffffffffffffff16611b68611e70565b73ffffffffffffffffffffffffffffffffffffffff1614611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb590614bdf565b60405180910390fd5b8060118190555050565b611bd0612d30565b73ffffffffffffffffffffffffffffffffffffffff16611bee611e70565b73ffffffffffffffffffffffffffffffffffffffff1614611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90614bdf565b60405180910390fd5b80600e8190555050565b611c56612d30565b73ffffffffffffffffffffffffffffffffffffffff16611c74611e70565b73ffffffffffffffffffffffffffffffffffffffff1614611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc190614bdf565b60405180910390fd5b80600c8190555050565b60606000611ce18361188a565b90506000811415611d3e57600067ffffffffffffffff811115611d0757611d066142fd565b5b604051908082528060200260200182016040528015611d355781602001602082028036833780820191505090505b50915050611dd9565b60008167ffffffffffffffff811115611d5a57611d596142fd565b5b604051908082528060200260200182016040528015611d885781602001602082028036833780820191505090505b50905060005b82811015611dd257611da0858261131e565b828281518110611db357611db26150f9565b5b6020026020010181815250508080611dca90614d82565b915050611d8e565b8193505050505b919050565b611de6612d30565b73ffffffffffffffffffffffffffffffffffffffff16611e04611e70565b73ffffffffffffffffffffffffffffffffffffffff1614611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5190614bdf565b60405180910390fd5b6000611e64611139565b905080600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611ea9906149ab565b80601f0160208091040260200160405190810160405280929190818152602001828054611ed5906149ab565b8015611f225780601f10611ef757610100808354040283529160200191611f22565b820191906000526020600020905b815481529060010190602001808311611f0557829003601f168201915b5050505050905090565b600d5481565b611f3a612d30565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f90615174565b60405180910390fd5b8060066000611fb5612d30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612062612d30565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120a791906140f2565b60405180910390a35050565b6120be848484612e08565b6120ca8484848461368a565b612109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210090615206565b60405180910390fd5b50505050565b612117612d30565b73ffffffffffffffffffffffffffffffffffffffff16612135611e70565b73ffffffffffffffffffffffffffffffffffffffff161461218b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218290614bdf565b60405180910390fd5b80600f8190555050565b61219d612d30565b73ffffffffffffffffffffffffffffffffffffffff166121bb611e70565b73ffffffffffffffffffffffffffffffffffffffff1614612211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220890614bdf565b60405180910390fd5b8060149080519060200190612227929190613f61565b5050565b612233612d30565b73ffffffffffffffffffffffffffffffffffffffff16612251611e70565b73ffffffffffffffffffffffffffffffffffffffff16146122a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229e90614bdf565b60405180910390fd5b80600d8190555050565b60606122bc82612d23565b6122fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f290615298565b60405180910390fd5b60001515601560019054906101000a900460ff16151514156123a95760148054612324906149ab565b80601f0160208091040260200160405190810160405280929190818152602001828054612350906149ab565b801561239d5780601f106123725761010080835404028352916020019161239d565b820191906000526020600020905b81548152906001019060200180831161238057829003601f168201915b50505050509050612485565b6000601280546123b8906149ab565b80601f01602080910402602001604051908101604052809291908181526020018280546123e4906149ab565b80156124315780601f1061240657610100808354040283529160200191612431565b820191906000526020600020905b81548152906001019060200180831161241457829003601f168201915b5050505050905060008151116124565760405180602001604052806000815250612481565b8061246084613821565b604051602001612471929190615340565b6040516020818303038152906040525b9150505b919050565b6000612494611139565b9050601560009054906101000a900460ff16156124e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dd90615001565b60405180910390fd5b601560029054906101000a900460ff16612535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252c906153e1565b60405180910390fd5b6010546125413361188a565b10612581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257890615473565b60405180910390fd5b600f548110156125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd906154df565b60405180910390fd5b6000336040516020016125d99190615547565b6040516020818303038152906040528051906020012090506125fb8184613982565b61263a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612631906155ae565b60405180910390fd5b83600c5461264891906155ce565b34101561268a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268190615674565b60405180910390fd5b600e5484600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126d89190614c2e565b1115612719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271090615706565b60405180910390fd5b600a5484836127289190614c2e565b1115612769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276090614cd0565b60405180910390fd5b83600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127b89190614c2e565b925050819055506127c93385612dea565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d8336040516127f8919061426c565b60405180910390a150505050565b600a5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6128ae612d30565b73ffffffffffffffffffffffffffffffffffffffff166128cc611e70565b73ffffffffffffffffffffffffffffffffffffffff1614612922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291990614bdf565b60405180910390fd5b601560029054906101000a900460ff1615601560026101000a81548160ff021916908315150217905550565b600e5481565b600061295e611139565b9050601560009054906101000a900460ff16156129b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a790615001565b60405180910390fd5b60001515601560029054906101000a900460ff16151514612a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fd90615798565b60405180910390fd5b601054612a123361188a565b10612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4990615473565b60405180910390fd5b600a548282612a619190614c2e565b1115612aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9990614cd0565b60405180910390fd5b600d54821115612ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ade90615804565b60405180910390fd5b81600b54612af591906155ce565b341015612b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2e90615674565b60405180910390fd5b600f54811015612b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b73906154df565b60405180910390fd5b612b863383612dea565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d833604051612bb5919061426c565b60405180910390a15050565b612bc9612d30565b73ffffffffffffffffffffffffffffffffffffffff16612be7611e70565b73ffffffffffffffffffffffffffffffffffffffff1614612c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3490614bdf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca490615896565b60405180910390fd5b612cb6816135c4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612e04828260405180602001604052806000815250613999565b5050565b6000612e13826133c1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612e3a612d30565b73ffffffffffffffffffffffffffffffffffffffff161480612e965750612e5f612d30565b73ffffffffffffffffffffffffffffffffffffffff16612e7e84610de9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612eb25750612eb18260000151612eac612d30565b612812565b5b905080612ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eeb90615928565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5d906159ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fcd90615a4c565b60405180910390fd5b612fe38585856001613e78565b612ff36000848460000151612d38565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166130619190615a88565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166131059190615abc565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461320b9190614c2e565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156133515761328181612d23565b15613350576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133b98686866001613e7e565b505050505050565b6133c9613fe7565b6133d282612d23565b613411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340890615b74565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106134755760017f000000000000000000000000000000000000000000000000000000000000000a846134689190614eef565b6134729190614c2e565b90505b60008390505b818110613583576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461356f578093505050506135bf565b50808061357b90615b94565b91505061347b565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135b690615c30565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006136ab8473ffffffffffffffffffffffffffffffffffffffff16613e84565b15613814578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136d4612d30565b8786866040518563ffffffff1660e01b81526004016136f69493929190615ca5565b602060405180830381600087803b15801561371057600080fd5b505af192505050801561374157506040513d601f19601f8201168201806040525081019061373e9190615d06565b60015b6137c4573d8060008114613771576040519150601f19603f3d011682016040523d82523d6000602084013e613776565b606091505b506000815114156137bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b390615206565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613819565b600190505b949350505050565b60606000821415613869576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061397d565b600082905060005b6000821461389b57808061388490614d82565b915050600a826138949190615d62565b9150613871565b60008167ffffffffffffffff8111156138b7576138b66142fd565b5b6040519080825280601f01601f1916602001820160405280156138e95781602001600182028036833780820191505090505b5090505b60008514613976576001826139029190614eef565b9150600a856139119190615d93565b603061391d9190614c2e565b60f81b818381518110613933576139326150f9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561396f9190615d62565b94506138ed565b8093505050505b919050565b60006139918260115485613e97565b905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a0690615e36565b60405180910390fd5b613a1881612d23565b15613a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4f90615ea2565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115613abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab290615f34565b60405180910390fd5b613ac86000858386613e78565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613bc59190615abc565b6fffffffffffffffffffffffffffffffff168152602001858360200151613bec9190615abc565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613e5b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613dfb600088848861368a565b613e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e3190615206565b60405180910390fd5b8180613e4590614d82565b9250508080613e5390614d82565b915050613d8a565b5080600081905550613e706000878588613e7e565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b600082613ea48584613eae565b1490509392505050565b60008082905060005b8451811015613f56576000858281518110613ed557613ed46150f9565b5b60200260200101519050808311613f16578281604051602001613ef9929190615f75565b604051602081830303815290604052805190602001209250613f42565b8083604051602001613f29929190615f75565b6040516020818303038152906040528051906020012092505b508080613f4e90614d82565b915050613eb7565b508091505092915050565b828054613f6d906149ab565b90600052602060002090601f016020900481019282613f8f5760008555613fd6565b82601f10613fa857805160ff1916838001178555613fd6565b82800160010185558215613fd6579182015b82811115613fd5578251825591602001919060010190613fba565b5b509050613fe39190614021565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561403a576000816000905550600101614022565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61408781614052565b811461409257600080fd5b50565b6000813590506140a48161407e565b92915050565b6000602082840312156140c0576140bf614048565b5b60006140ce84828501614095565b91505092915050565b60008115159050919050565b6140ec816140d7565b82525050565b600060208201905061410760008301846140e3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561414757808201518184015260208101905061412c565b83811115614156576000848401525b50505050565b6000601f19601f8301169050919050565b60006141788261410d565b6141828185614118565b9350614192818560208601614129565b61419b8161415c565b840191505092915050565b600060208201905081810360008301526141c0818461416d565b905092915050565b6000819050919050565b6141db816141c8565b81146141e657600080fd5b50565b6000813590506141f8816141d2565b92915050565b60006020828403121561421457614213614048565b5b6000614222848285016141e9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142568261422b565b9050919050565b6142668161424b565b82525050565b6000602082019050614281600083018461425d565b92915050565b6142908161424b565b811461429b57600080fd5b50565b6000813590506142ad81614287565b92915050565b600080604083850312156142ca576142c9614048565b5b60006142d88582860161429e565b92505060206142e9858286016141e9565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6143358261415c565b810181811067ffffffffffffffff82111715614354576143536142fd565b5b80604052505050565b600061436761403e565b9050614373828261432c565b919050565b600067ffffffffffffffff821115614393576143926142fd565b5b61439c8261415c565b9050602081019050919050565b82818337600083830152505050565b60006143cb6143c684614378565b61435d565b9050828152602081018484840111156143e7576143e66142f8565b5b6143f28482856143a9565b509392505050565b600082601f83011261440f5761440e6142f3565b5b813561441f8482602086016143b8565b91505092915050565b60006020828403121561443e5761443d614048565b5b600082013567ffffffffffffffff81111561445c5761445b61404d565b5b614468848285016143fa565b91505092915050565b61447a816141c8565b82525050565b60006020820190506144956000830184614471565b92915050565b6000806000606084860312156144b4576144b3614048565b5b60006144c28682870161429e565b93505060206144d38682870161429e565b92505060406144e4868287016141e9565b9150509250925092565b6000819050919050565b614501816144ee565b82525050565b600060208201905061451c60008301846144f8565b92915050565b60006020828403121561453857614537614048565b5b60006145468482850161429e565b91505092915050565b614558816144ee565b811461456357600080fd5b50565b6000813590506145758161454f565b92915050565b60006020828403121561459157614590614048565b5b600061459f84828501614566565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6145dd816141c8565b82525050565b60006145ef83836145d4565b60208301905092915050565b6000602082019050919050565b6000614613826145a8565b61461d81856145b3565b9350614628836145c4565b8060005b8381101561465957815161464088826145e3565b975061464b836145fb565b92505060018101905061462c565b5085935050505092915050565b600060208201905081810360008301526146808184614608565b905092915050565b614691816140d7565b811461469c57600080fd5b50565b6000813590506146ae81614688565b92915050565b600080604083850312156146cb576146ca614048565b5b60006146d98582860161429e565b92505060206146ea8582860161469f565b9150509250929050565b600067ffffffffffffffff82111561470f5761470e6142fd565b5b6147188261415c565b9050602081019050919050565b6000614738614733846146f4565b61435d565b905082815260208101848484011115614754576147536142f8565b5b61475f8482856143a9565b509392505050565b600082601f83011261477c5761477b6142f3565b5b813561478c848260208601614725565b91505092915050565b600080600080608085870312156147af576147ae614048565b5b60006147bd8782880161429e565b94505060206147ce8782880161429e565b93505060406147df878288016141e9565b925050606085013567ffffffffffffffff811115614800576147ff61404d565b5b61480c87828801614767565b91505092959194509250565b600067ffffffffffffffff821115614833576148326142fd565b5b602082029050602081019050919050565b600080fd5b600061485c61485784614818565b61435d565b9050808382526020820190506020840283018581111561487f5761487e614844565b5b835b818110156148a857806148948882614566565b845260208401935050602081019050614881565b5050509392505050565b600082601f8301126148c7576148c66142f3565b5b81356148d7848260208601614849565b91505092915050565b600080604083850312156148f7576148f6614048565b5b6000614905858286016141e9565b925050602083013567ffffffffffffffff8111156149265761492561404d565b5b614932858286016148b2565b9150509250929050565b6000806040838503121561495357614952614048565b5b60006149618582860161429e565b92505060206149728582860161429e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806149c357607f821691505b602082108114156149d7576149d661497c565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614a39602d83614118565b9150614a44826149dd565b604082019050919050565b60006020820190508181036000830152614a6881614a2c565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614acb602283614118565b9150614ad682614a6f565b604082019050919050565b60006020820190508181036000830152614afa81614abe565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614b5d603983614118565b9150614b6882614b01565b604082019050919050565b60006020820190508181036000830152614b8c81614b50565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614bc9602083614118565b9150614bd482614b93565b602082019050919050565b60006020820190508181036000830152614bf881614bbc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c39826141c8565b9150614c44836141c8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c7957614c78614bff565b5b828201905092915050565b7f536f7272792c206e6f7420656e6f756768206c65667421000000000000000000600082015250565b6000614cba601783614118565b9150614cc582614c84565b602082019050919050565b60006020820190508181036000830152614ce981614cad565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d4c602283614118565b9150614d5782614cf0565b604082019050919050565b60006020820190508181036000830152614d7b81614d3f565b9050919050565b6000614d8d826141c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614dc057614dbf614bff565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614e27602e83614118565b9150614e3282614dcb565b604082019050919050565b60006020820190508181036000830152614e5681614e1a565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614eb9602383614118565b9150614ec482614e5d565b604082019050919050565b60006020820190508181036000830152614ee881614eac565b9050919050565b6000614efa826141c8565b9150614f05836141c8565b925082821015614f1857614f17614bff565b5b828203905092915050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614f7f602b83614118565b9150614f8a82614f23565b604082019050919050565b60006020820190508181036000830152614fae81614f72565b9050919050565b7f4d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b6000614feb601183614118565b9150614ff682614fb5565b602082019050919050565b6000602082019050818103600083015261501a81614fde565b9050919050565b7f536f7272792c2077652072616e206f7574206f662066726565206f6e65732100600082015250565b6000615057601f83614118565b915061506282615021565b602082019050919050565b600060208201905081810360008301526150868161504a565b9050919050565b7f596f7520616c7265616479206f776e20612066726565206f6e65210000000000600082015250565b60006150c3601b83614118565b91506150ce8261508d565b602082019050919050565b600060208201905081810360008301526150f2816150b6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061515e601a83614118565b915061516982615128565b602082019050919050565b6000602082019050818103600083015261518d81615151565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006151f0603383614118565b91506151fb82615194565b604082019050919050565b6000602082019050818103600083015261521f816151e3565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615282602f83614118565b915061528d82615226565b604082019050919050565b600060208201905081810360008301526152b181615275565b9050919050565b600081905092915050565b60006152ce8261410d565b6152d881856152b8565b93506152e8818560208601614129565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061532a6005836152b8565b9150615335826152f4565b600582019050919050565b600061534c82856152c3565b915061535882846152c3565b91506153638261531d565b91508190509392505050565b7f57686974656c6973742073616c65206d7573742062652061637469766520746f60008201527f206d696e742e0000000000000000000000000000000000000000000000000000602082015250565b60006153cb602683614118565b91506153d68261536f565b604082019050919050565b600060208201905081810360008301526153fa816153be565b9050919050565b7f536f7272792c20796f7520616c7265616479206f776e20746865206d6178206160008201527f6c6c6f7765642100000000000000000000000000000000000000000000000000602082015250565b600061545d602783614118565b915061546882615401565b604082019050919050565b6000602082019050818103600083015261548c81615450565b9050919050565b7f487572727920757020616e64206772616220612066726565206f6e6521000000600082015250565b60006154c9601d83614118565b91506154d482615493565b602082019050919050565b600060208201905081810360008301526154f8816154bc565b9050919050565b60008160601b9050919050565b6000615517826154ff565b9050919050565b60006155298261550c565b9050919050565b61554161553c8261424b565b61551e565b82525050565b60006155538284615530565b60148201915081905092915050565b7f596f7520617265206e6f742077686974656c69737465642e0000000000000000600082015250565b6000615598601883614118565b91506155a382615562565b602082019050919050565b600060208201905081810360008301526155c78161558b565b9050919050565b60006155d9826141c8565b91506155e4836141c8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561561d5761561c614bff565b5b828202905092915050565b7f536f7272792c206e6f7420656e6f75676820616d6f756e742073656e74210000600082015250565b600061565e601e83614118565b915061566982615628565b602082019050919050565b6000602082019050818103600083015261568d81615651565b9050919050565b7f536f7272792c20796f75206861766520726561636865642074686520574c206c60008201527f696d69742e000000000000000000000000000000000000000000000000000000602082015250565b60006156f0602583614118565b91506156fb82615694565b604082019050919050565b6000602082019050818103600083015261571f816156e3565b9050919050565b7f536f7272792c20776520617265207374696c6c206f6e2077686974656c69737460008201527f206d6f6465210000000000000000000000000000000000000000000000000000602082015250565b6000615782602683614118565b915061578d82615726565b604082019050919050565b600060208201905081810360008301526157b181615775565b9050919050565b7f536f7272792c20746f6f206d616e7920706572207472616e73616374696f6e00600082015250565b60006157ee601f83614118565b91506157f9826157b8565b602082019050919050565b6000602082019050818103600083015261581d816157e1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615880602683614118565b915061588b82615824565b604082019050919050565b600060208201905081810360008301526158af81615873565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000615912603283614118565b915061591d826158b6565b604082019050919050565b6000602082019050818103600083015261594181615905565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006159a4602683614118565b91506159af82615948565b604082019050919050565b600060208201905081810360008301526159d381615997565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615a36602583614118565b9150615a41826159da565b604082019050919050565b60006020820190508181036000830152615a6581615a29565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000615a9382615a6c565b9150615a9e83615a6c565b925082821015615ab157615ab0614bff565b5b828203905092915050565b6000615ac782615a6c565b9150615ad283615a6c565b9250826fffffffffffffffffffffffffffffffff03821115615af757615af6614bff565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000615b5e602a83614118565b9150615b6982615b02565b604082019050919050565b60006020820190508181036000830152615b8d81615b51565b9050919050565b6000615b9f826141c8565b91506000821415615bb357615bb2614bff565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000615c1a602f83614118565b9150615c2582615bbe565b604082019050919050565b60006020820190508181036000830152615c4981615c0d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615c7782615c50565b615c818185615c5b565b9350615c91818560208601614129565b615c9a8161415c565b840191505092915050565b6000608082019050615cba600083018761425d565b615cc7602083018661425d565b615cd46040830185614471565b8181036060830152615ce68184615c6c565b905095945050505050565b600081519050615d008161407e565b92915050565b600060208284031215615d1c57615d1b614048565b5b6000615d2a84828501615cf1565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615d6d826141c8565b9150615d78836141c8565b925082615d8857615d87615d33565b5b828204905092915050565b6000615d9e826141c8565b9150615da9836141c8565b925082615db957615db8615d33565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615e20602183614118565b9150615e2b82615dc4565b604082019050919050565b60006020820190508181036000830152615e4f81615e13565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000615e8c601d83614118565b9150615e9782615e56565b602082019050919050565b60006020820190508181036000830152615ebb81615e7f565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000615f1e602283614118565b9150615f2982615ec2565b604082019050919050565b60006020820190508181036000830152615f4d81615f11565b9050919050565b6000819050919050565b615f6f615f6a826144ee565b615f54565b82525050565b6000615f818285615f5e565b602082019150615f918284615f5e565b602082019150819050939250505056fea26469706673582212205c0678ef3fd9bd771e5b224cffd3f4e9cd2adc18132d946a417429a320a59d3764736f6c63430008090033

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.