ETH Price: $3,493.82 (+2.25%)
Gas: 14 Gwei

Token

Vuduz Pass (VDZP)
 

Overview

Max Total Supply

789 VDZP

Holders

622

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 VDZP
0x7fbcca2f917c523ac397ac2c92f39fe3b4d811c5
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
VuduzPass

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : VuduzPass.sol
// SPDX-License-Identifier: MIT

// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@  @  @    @@        @@@@@@  @  @    @           @@@@@@@@@@
// @@@@@@@@@ @@@@@@@@   @@  /@@    @@            @@@   @@    @@           @@@@@@@@@
// @@@@@@@@@    @@@@    @@  @@@@   @@    @@@ @    @@@ @@@@@   @@@@@@     @@@@@@@@@@
// @@@@@@@@@@    @@    @@    @@@    @    @@@@@@   @    @@@@   @@@@    @ @@@@@@@@@@@
// @@@@@@@@@@@        @@@    @@@   @@    @@@@     @    @@@    @@    @@@@@@@@@@@@@@@
// @@@@@@@@@@@@       @@@     @    @@           @@@     @@    @            @@@@@@@@
// @@@@@@@@@@@@@@    @@@@@@@     @@@@@@   @ @@@@@@@@@*     @@@@@@          @@@@@@@@
// @@@@@@@@@@@@@@@@ @@@@@@@@  @@@@@@@@@  @@@@@@@@@@@@@@ @@ @@@@@@ @@ @@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

//Arist: ZΞΞT - https://twitter.com/ZEET_ART
//Production Studio: VUDUZ, Inc. - https://twitter.com/theVUDUZ
//Coder: Orion Solidified, Inc. - https://twitter.com/DevOrionNFTs


pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/access/Ownable.sol';

contract VuduzPass is ERC721, Ownable {

    uint256 public totalSupply;
    uint256 public maxSupply;

    bool public claimingPaused;
    bool public mintingPaused;

    string internal baseTokenUri;
    string public hiddenMetadataUri;
    bool public isRevealed;

    uint256 public mintCost;
    address public withdrawWallet;

    mapping(address => uint256) public WalletMints;
    mapping(address => uint256) public DevList;

    constructor() payable ERC721('Vuduz Pass', 'VDZP') {
        totalSupply = 0;
        maxSupply = 690;

        mintingPaused = true;
        claimingPaused = true;

        setHiddenMetadataUri("https://orion.mypinata.cloud/ipfs/QmVR2sMFkv5r5VQewcjmbEepRoZxVFqroaNWSTVMQmTFVY/hidden.json");
        isRevealed = false;

        mintCost = 0 ether;
        withdrawWallet = 0x0F574D45D73F5c8F4189CCf4D98Cd22eaDFA9532;


    }

    modifier callerIsAWallet() {
        require(tx.origin ==msg.sender, "Another contract detected");
        _;
    }

    // Futureproofing Maximum Supply
    function setMaxSupply(uint256 maxSupply_) public onlyOwner() {
        maxSupply = maxSupply_;
    }

    // Futureproofing Minting Cost
    function setPrice(uint256 mintCost_) public onlyOwner() {
        mintCost = mintCost_;
    }

    //Change Wallets - Failsafe
    function changeWithdrawWallet(address withdrawWallet_) external onlyOwner {
        withdrawWallet = withdrawWallet_;
    }

    //Add Addresses for Dev Mint
    function addToDevList(address[] memory addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            DevList[addresses[i]] = 50;
        }
    }

    //Update Hidden Metadata URI
    function setHiddenMetadataUri(string memory hiddenMetadataUri_) public onlyOwner {
        hiddenMetadataUri = hiddenMetadataUri_;
    }

    //Token URI change - More utility is coming!
    function setBaseTokenUri(string calldata baseTokenUri_) external onlyOwner {
        baseTokenUri = baseTokenUri_;
    }

    function tokenURI(uint256 tokenId_) public view override returns (string memory) {

        if (isRevealed == false) {
            return hiddenMetadataUri;
            }

        require(_exists(tokenId_), 'Token does not exist!');
        return string(abi.encodePacked(baseTokenUri, Strings.toString(tokenId_), ".json"));
    }

    string private customContractURI = "https://orion.mypinata.cloud/ipfs/QmfY2t8fibUV1aGW16qzRFticc2u4rWor1pLYmCPHrNoNy/metadata.json";

    function setContractURI(string memory customContractURI_) external onlyOwner {
        customContractURI = customContractURI_;
    }

    function contractURI() public view returns (string memory) {
        return customContractURI;
    }    

    //Vuduz Pass Free Claim
    function claim() public callerIsAWallet {
        uint256 quantity = 1;
        uint256 newTokenId = totalSupply + quantity;

        require(!claimingPaused, 'claiming is paused');
        require(totalSupply + quantity <= maxSupply, 'sold out');
        require(WalletMints[msg.sender] < quantity, 'exceed max wallet');
        
        WalletMints[msg.sender]++;
        totalSupply++;

        _safeMint(msg.sender,newTokenId);
    }

    //Vuduz Pass Future
    function mint(uint256 quantity_) public payable callerIsAWallet {

        require(!mintingPaused, 'minting is paused');
        require(msg.value >= quantity_ * mintCost, 'wrong mint value');
        require(totalSupply + quantity_ <= maxSupply, 'sold out');
        
        for(uint256 i = 0; i < quantity_; i++) {
            uint256 newTokenId = totalSupply + 1;

            WalletMints[msg.sender]++;
            totalSupply++;
            
            _safeMint(msg.sender, newTokenId);
        }
    }


    function DevListMint(uint256 quantity_) public callerIsAWallet {

        require(totalSupply + quantity_ <= maxSupply, 'sold out');
        require(DevList[msg.sender] > 0, "not eligible for DevList mint");

        

        for(uint256 i = 0; i < quantity_; i++) {
            uint256 newTokenId = totalSupply + 1;

            WalletMints[msg.sender]++;
            DevList[msg.sender]--;
            totalSupply++;
            
            _safeMint(msg.sender, newTokenId);
        }
    }

    function pauseClaiming() public onlyOwner {
        claimingPaused = !claimingPaused;
    }

    function pauseMinting() public onlyOwner {
        mintingPaused = !mintingPaused;
    }


    function withdraw() external onlyOwner {
        (bool success, ) = withdrawWallet.call{ value: address(this).balance }('');
        require(success, 'withdraw failed');
    }
 
}

File 2 of 11 : 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 11 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 4 of 11 : 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 5 of 11 : 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 6 of 11 : 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 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 11 : 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 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"DevList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"DevListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WalletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToDevList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"withdrawWallet_","type":"address"}],"name":"changeWithdrawWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimingPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"pauseClaiming","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseMinting","outputs":[],"stateMutability":"nonpayable","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":"baseTokenUri_","type":"string"}],"name":"setBaseTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customContractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"hiddenMetadataUri_","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintCost_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526040518060800160405280605e815260200162004e9b605e9139601190805190602001906200003592919062000388565b506040518060400160405280600a81526020017f567564757a2050617373000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f56445a50000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ba92919062000388565b508060019080519060200190620000d392919062000388565b505050620000f6620000ea620001e560201b60201c565b620001ed60201b60201c565b60006007819055506102b26008819055506001600960016101000a81548160ff0219169083151502179055506001600960006101000a81548160ff021916908315150217905550620001676040518060800160405280605c815260200162004e3f605c9139620002b360201b60201c565b6000600c60006101000a81548160ff0219169083151502179055506000600d81905550730f574d45d73f5c8f4189ccf4d98cd22eadfa9532600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000520565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002c3620001e560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e96200035e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000339906200045f565b60405180910390fd5b80600b90805190602001906200035a92919062000388565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003969062000492565b90600052602060002090601f016020900481019282620003ba576000855562000406565b82601f10620003d557805160ff191683800117855562000406565b8280016001018555821562000406579182015b8281111562000405578251825591602001919060010190620003e8565b5b50905062000415919062000419565b5090565b5b80821115620004345760008160009055506001016200041a565b5090565b60006200044760208362000481565b91506200045482620004f7565b602082019050919050565b600060208201905081810360008301526200047a8162000438565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004ab57607f821691505b60208210811415620004c257620004c1620004c8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61490f80620005306000396000f3fe60806040526004361061023b5760003560e01c806385dd4ce11161012e578063aad2816e116100ab578063da8fbf2a1161006f578063da8fbf2a14610826578063e1a283d61461083d578063e8a3d48514610868578063e985e9c514610893578063f2fde38b146108d05761023b565b8063aad2816e14610753578063b88d4fde1461076a578063bdb4b84814610793578063c87b56dd146107be578063d5abeb01146107fb5761023b565b806395d89b41116100f257806395d89b411461068d57806397b84011146106b8578063a0712d68146106e3578063a22cb465146106ff578063a45ba8e7146107285761023b565b806385dd4ce1146105be5780638da5cb5b146105e757806391b7f5ed14610612578063938e3d7b1461063b57806395652cfa146106645761023b565b806346ea529c116101bc5780636352211e116101805780636352211e146104d95780636f8b44b01461051657806370a082311461053f578063715018a61461057c57806385d178f4146105935761023b565b806346ea529c146104085780634e71d92d146104455780634fdd43cb1461045c57806354214f69146104855780635ede942f146104b05761023b565b8063182500b711610203578063182500b7146103395780631b22020a1461036257806323b872dd1461039f5780633ccfd60b146103c857806342842e0e146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613441565b6108f9565b6040516102749190613aca565b60405180910390f35b34801561028957600080fd5b506102926109db565b60405161029f9190613ae5565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613519565b610a6d565b6040516102dc9190613a63565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906133c4565b610af2565b005b34801561031a57600080fd5b50610323610c0a565b6040516103309190613e07565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613519565b610c10565b005b34801561036e57600080fd5b5061038960048036038101906103849190613259565b610e54565b6040516103969190613e07565b60405180910390f35b3480156103ab57600080fd5b506103c660048036038101906103c191906132be565b610e6c565b005b3480156103d457600080fd5b506103dd610ecc565b005b3480156103eb57600080fd5b50610406600480360381019061040191906132be565b611019565b005b34801561041457600080fd5b5061042f600480360381019061042a9190613259565b611039565b60405161043c9190613e07565b60405180910390f35b34801561045157600080fd5b5061045a611051565b005b34801561046857600080fd5b50610483600480360381019061047e91906134d8565b611275565b005b34801561049157600080fd5b5061049a61130b565b6040516104a79190613aca565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190613259565b61131e565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190613519565b6113de565b60405161050d9190613a63565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190613519565b611490565b005b34801561054b57600080fd5b5061056660048036038101906105619190613259565b611516565b6040516105739190613e07565b60405180910390f35b34801561058857600080fd5b506105916115ce565b005b34801561059f57600080fd5b506105a8611656565b6040516105b59190613a63565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190613400565b61167c565b005b3480156105f357600080fd5b506105fc6117a0565b6040516106099190613a63565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190613519565b6117ca565b005b34801561064757600080fd5b50610662600480360381019061065d91906134d8565b611850565b005b34801561067057600080fd5b5061068b60048036038101906106869190613493565b6118e6565b005b34801561069957600080fd5b506106a2611978565b6040516106af9190613ae5565b60405180910390f35b3480156106c457600080fd5b506106cd611a0a565b6040516106da9190613aca565b60405180910390f35b6106fd60048036038101906106f89190613519565b611a1d565b005b34801561070b57600080fd5b5061072660048036038101906107219190613388565b611c2a565b005b34801561073457600080fd5b5061073d611c40565b60405161074a9190613ae5565b60405180910390f35b34801561075f57600080fd5b50610768611cce565b005b34801561077657600080fd5b50610791600480360381019061078c919061330d565b611d76565b005b34801561079f57600080fd5b506107a8611dd8565b6040516107b59190613e07565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e09190613519565b611dde565b6040516107f29190613ae5565b60405180910390f35b34801561080757600080fd5b50610810611f09565b60405161081d9190613e07565b60405180910390f35b34801561083257600080fd5b5061083b611f0f565b005b34801561084957600080fd5b50610852611fb7565b60405161085f9190613aca565b60405180910390f35b34801561087457600080fd5b5061087d611fca565b60405161088a9190613ae5565b60405180910390f35b34801561089f57600080fd5b506108ba60048036038101906108b59190613282565b61205c565b6040516108c79190613aca565b60405180910390f35b3480156108dc57600080fd5b506108f760048036038101906108f29190613259565b6120f0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d457506109d3826121e8565b5b9050919050565b6060600080546109ea9061412d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a169061412d565b8015610a635780601f10610a3857610100808354040283529160200191610a63565b820191906000526020600020905b815481529060010190602001808311610a4657829003601f168201915b5050505050905090565b6000610a7882612252565b610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae90613ce7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610afd826113de565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6590613d47565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8d6122be565b73ffffffffffffffffffffffffffffffffffffffff161480610bbc5750610bbb81610bb66122be565b61205c565b5b610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf290613c67565b60405180910390fd5b610c0583836122c6565b505050565b60075481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590613b27565b60405180910390fd5b60085481600754610c8f9190613f38565b1115610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc790613c47565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4990613d87565b60405180910390fd5b60005b81811015610e505760006001600754610d6e9190613f38565b9050600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610dc090614190565b9190505550601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610e1590614103565b919050555060076000815480929190610e2d90614190565b9190505550610e3c338261237f565b508080610e4890614190565b915050610d55565b5050565b600f6020528060005260406000206000915090505481565b610e7d610e776122be565b8261239d565b610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390613da7565b60405180910390fd5b610ec783838361247b565b505050565b610ed46122be565b73ffffffffffffffffffffffffffffffffffffffff16610ef26117a0565b73ffffffffffffffffffffffffffffffffffffffff1614610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90613d27565b60405180910390fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610f9090613a4e565b60006040518083038185875af1925050503d8060008114610fcd576040519150601f19603f3d011682016040523d82523d6000602084013e610fd2565b606091505b5050905080611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d90613de7565b60405180910390fd5b50565b61103483838360405180602001604052806000815250611d76565b505050565b60106020528060005260406000206000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690613b27565b60405180910390fd5b6000600190506000816007546110d59190613f38565b9050600960009054906101000a900460ff1615611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e90613bc7565b60405180910390fd5b600854826007546111389190613f38565b1115611179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117090613c47565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190613d07565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061124a90614190565b91905055506007600081548092919061126290614190565b9190505550611271338261237f565b5050565b61127d6122be565b73ffffffffffffffffffffffffffffffffffffffff1661129b6117a0565b73ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890613d27565b60405180910390fd5b80600b9080519060200190611307929190612f17565b5050565b600c60009054906101000a900460ff1681565b6113266122be565b73ffffffffffffffffffffffffffffffffffffffff166113446117a0565b73ffffffffffffffffffffffffffffffffffffffff161461139a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139190613d27565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e90613ca7565b60405180910390fd5b80915050919050565b6114986122be565b73ffffffffffffffffffffffffffffffffffffffff166114b66117a0565b73ffffffffffffffffffffffffffffffffffffffff161461150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390613d27565b60405180910390fd5b8060088190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e90613c87565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115d66122be565b73ffffffffffffffffffffffffffffffffffffffff166115f46117a0565b73ffffffffffffffffffffffffffffffffffffffff161461164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190613d27565b60405180910390fd5b61165460006126e2565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6116846122be565b73ffffffffffffffffffffffffffffffffffffffff166116a26117a0565b73ffffffffffffffffffffffffffffffffffffffff16146116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90613d27565b60405180910390fd5b60005b815181101561179c57603260106000848481518110611743577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061179490614190565b9150506116fb565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117d26122be565b73ffffffffffffffffffffffffffffffffffffffff166117f06117a0565b73ffffffffffffffffffffffffffffffffffffffff1614611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d90613d27565b60405180910390fd5b80600d8190555050565b6118586122be565b73ffffffffffffffffffffffffffffffffffffffff166118766117a0565b73ffffffffffffffffffffffffffffffffffffffff16146118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c390613d27565b60405180910390fd5b80601190805190602001906118e2929190612f17565b5050565b6118ee6122be565b73ffffffffffffffffffffffffffffffffffffffff1661190c6117a0565b73ffffffffffffffffffffffffffffffffffffffff1614611962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195990613d27565b60405180910390fd5b8181600a9190611973929190612f9d565b505050565b6060600180546119879061412d565b80601f01602080910402602001604051908101604052809291908181526020018280546119b39061412d565b8015611a005780601f106119d557610100808354040283529160200191611a00565b820191906000526020600020905b8154815290600101906020018083116119e357829003601f168201915b5050505050905090565b600960009054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8290613b27565b60405180910390fd5b600960019054906101000a900460ff1615611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad290613d67565b60405180910390fd5b600d5481611ae99190613fbf565b341015611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290613b07565b60405180910390fd5b60085481600754611b3c9190613f38565b1115611b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7490613c47565b60405180910390fd5b60005b81811015611c265760006001600754611b999190613f38565b9050600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611beb90614190565b919050555060076000815480929190611c0390614190565b9190505550611c12338261237f565b508080611c1e90614190565b915050611b80565b5050565b611c3c611c356122be565b83836127a8565b5050565b600b8054611c4d9061412d565b80601f0160208091040260200160405190810160405280929190818152602001828054611c799061412d565b8015611cc65780601f10611c9b57610100808354040283529160200191611cc6565b820191906000526020600020905b815481529060010190602001808311611ca957829003601f168201915b505050505081565b611cd66122be565b73ffffffffffffffffffffffffffffffffffffffff16611cf46117a0565b73ffffffffffffffffffffffffffffffffffffffff1614611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4190613d27565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b611d87611d816122be565b8361239d565b611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd90613da7565b60405180910390fd5b611dd284848484612915565b50505050565b600d5481565b606060001515600c60009054906101000a900460ff1615151415611e8e57600b8054611e099061412d565b80601f0160208091040260200160405190810160405280929190818152602001828054611e359061412d565b8015611e825780601f10611e5757610100808354040283529160200191611e82565b820191906000526020600020905b815481529060010190602001808311611e6557829003601f168201915b50505050509050611f04565b611e9782612252565b611ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecd90613dc7565b60405180910390fd5b600a611ee183612971565b604051602001611ef2929190613a1f565b60405160208183030381529060405290505b919050565b60085481565b611f176122be565b73ffffffffffffffffffffffffffffffffffffffff16611f356117a0565b73ffffffffffffffffffffffffffffffffffffffff1614611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8290613d27565b60405180910390fd5b600960019054906101000a900460ff1615600960016101000a81548160ff021916908315150217905550565b600960019054906101000a900460ff1681565b606060118054611fd99061412d565b80601f01602080910402602001604051908101604052809291908181526020018280546120059061412d565b80156120525780601f1061202757610100808354040283529160200191612052565b820191906000526020600020905b81548152906001019060200180831161203557829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120f86122be565b73ffffffffffffffffffffffffffffffffffffffff166121166117a0565b73ffffffffffffffffffffffffffffffffffffffff161461216c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216390613d27565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d390613b67565b60405180910390fd5b6121e5816126e2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612339836113de565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612399828260405180602001604052806000815250612b1e565b5050565b60006123a882612252565b6123e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123de90613c27565b60405180910390fd5b60006123f2836113de565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124345750612433818561205c565b5b8061247257508373ffffffffffffffffffffffffffffffffffffffff1661245a84610a6d565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661249b826113de565b73ffffffffffffffffffffffffffffffffffffffff16146124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e890613b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255890613be7565b60405180910390fd5b61256c838383612b79565b6125776000826122c6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125c79190614019565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461261e9190613f38565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126dd838383612b7e565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280e90613c07565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129089190613aca565b60405180910390a3505050565b61292084848461247b565b61292c84848484612b83565b61296b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296290613b47565b60405180910390fd5b50505050565b606060008214156129b9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b19565b600082905060005b600082146129eb5780806129d490614190565b915050600a826129e49190613f8e565b91506129c1565b60008167ffffffffffffffff811115612a2d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a5f5781602001600182028036833780820191505090505b5090505b60008514612b1257600182612a789190614019565b9150600a85612a8791906141d9565b6030612a939190613f38565b60f81b818381518110612acf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b0b9190613f8e565b9450612a63565b8093505050505b919050565b612b288383612d1a565b612b356000848484612b83565b612b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6b90613b47565b60405180910390fd5b505050565b505050565b505050565b6000612ba48473ffffffffffffffffffffffffffffffffffffffff16612ef4565b15612d0d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bcd6122be565b8786866040518563ffffffff1660e01b8152600401612bef9493929190613a7e565b602060405180830381600087803b158015612c0957600080fd5b505af1925050508015612c3a57506040513d601f19601f82011682018060405250810190612c37919061346a565b60015b612cbd573d8060008114612c6a576040519150601f19603f3d011682016040523d82523d6000602084013e612c6f565b606091505b50600081511415612cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cac90613b47565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d12565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8190613cc7565b60405180910390fd5b612d9381612252565b15612dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dca90613ba7565b60405180910390fd5b612ddf60008383612b79565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e2f9190613f38565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ef060008383612b7e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612f239061412d565b90600052602060002090601f016020900481019282612f455760008555612f8c565b82601f10612f5e57805160ff1916838001178555612f8c565b82800160010185558215612f8c579182015b82811115612f8b578251825591602001919060010190612f70565b5b509050612f999190613023565b5090565b828054612fa99061412d565b90600052602060002090601f016020900481019282612fcb5760008555613012565b82601f10612fe457803560ff1916838001178555613012565b82800160010185558215613012579182015b82811115613011578235825591602001919060010190612ff6565b5b50905061301f9190613023565b5090565b5b8082111561303c576000816000905550600101613024565b5090565b600061305361304e84613e47565b613e22565b9050808382526020820190508285602086028201111561307257600080fd5b60005b858110156130a257816130888882613128565b845260208401935060208301925050600181019050613075565b5050509392505050565b60006130bf6130ba84613e73565b613e22565b9050828152602081018484840111156130d757600080fd5b6130e28482856140c1565b509392505050565b60006130fd6130f884613ea4565b613e22565b90508281526020810184848401111561311557600080fd5b6131208482856140c1565b509392505050565b6000813590506131378161487d565b92915050565b600082601f83011261314e57600080fd5b813561315e848260208601613040565b91505092915050565b60008135905061317681614894565b92915050565b60008135905061318b816148ab565b92915050565b6000815190506131a0816148ab565b92915050565b600082601f8301126131b757600080fd5b81356131c78482602086016130ac565b91505092915050565b60008083601f8401126131e257600080fd5b8235905067ffffffffffffffff8111156131fb57600080fd5b60208301915083600182028301111561321357600080fd5b9250929050565b600082601f83011261322b57600080fd5b813561323b8482602086016130ea565b91505092915050565b600081359050613253816148c2565b92915050565b60006020828403121561326b57600080fd5b600061327984828501613128565b91505092915050565b6000806040838503121561329557600080fd5b60006132a385828601613128565b92505060206132b485828601613128565b9150509250929050565b6000806000606084860312156132d357600080fd5b60006132e186828701613128565b93505060206132f286828701613128565b925050604061330386828701613244565b9150509250925092565b6000806000806080858703121561332357600080fd5b600061333187828801613128565b945050602061334287828801613128565b935050604061335387828801613244565b925050606085013567ffffffffffffffff81111561337057600080fd5b61337c878288016131a6565b91505092959194509250565b6000806040838503121561339b57600080fd5b60006133a985828601613128565b92505060206133ba85828601613167565b9150509250929050565b600080604083850312156133d757600080fd5b60006133e585828601613128565b92505060206133f685828601613244565b9150509250929050565b60006020828403121561341257600080fd5b600082013567ffffffffffffffff81111561342c57600080fd5b6134388482850161313d565b91505092915050565b60006020828403121561345357600080fd5b60006134618482850161317c565b91505092915050565b60006020828403121561347c57600080fd5b600061348a84828501613191565b91505092915050565b600080602083850312156134a657600080fd5b600083013567ffffffffffffffff8111156134c057600080fd5b6134cc858286016131d0565b92509250509250929050565b6000602082840312156134ea57600080fd5b600082013567ffffffffffffffff81111561350457600080fd5b6135108482850161321a565b91505092915050565b60006020828403121561352b57600080fd5b600061353984828501613244565b91505092915050565b61354b8161404d565b82525050565b61355a8161405f565b82525050565b600061356b82613eea565b6135758185613f00565b93506135858185602086016140d0565b61358e816142c6565b840191505092915050565b60006135a482613ef5565b6135ae8185613f1c565b93506135be8185602086016140d0565b6135c7816142c6565b840191505092915050565b60006135dd82613ef5565b6135e78185613f2d565b93506135f78185602086016140d0565b80840191505092915050565b600081546136108161412d565b61361a8186613f2d565b94506001821660008114613635576001811461364657613679565b60ff19831686528186019350613679565b61364f85613ed5565b60005b8381101561367157815481890152600182019150602081019050613652565b838801955050505b50505092915050565b600061368f601083613f1c565b915061369a826142d7565b602082019050919050565b60006136b2601983613f1c565b91506136bd82614300565b602082019050919050565b60006136d5603283613f1c565b91506136e082614329565b604082019050919050565b60006136f8602683613f1c565b915061370382614378565b604082019050919050565b600061371b602583613f1c565b9150613726826143c7565b604082019050919050565b600061373e601c83613f1c565b915061374982614416565b602082019050919050565b6000613761601283613f1c565b915061376c8261443f565b602082019050919050565b6000613784602483613f1c565b915061378f82614468565b604082019050919050565b60006137a7601983613f1c565b91506137b2826144b7565b602082019050919050565b60006137ca602c83613f1c565b91506137d5826144e0565b604082019050919050565b60006137ed600883613f1c565b91506137f88261452f565b602082019050919050565b6000613810603883613f1c565b915061381b82614558565b604082019050919050565b6000613833602a83613f1c565b915061383e826145a7565b604082019050919050565b6000613856602983613f1c565b9150613861826145f6565b604082019050919050565b6000613879602083613f1c565b915061388482614645565b602082019050919050565b600061389c602c83613f1c565b91506138a78261466e565b604082019050919050565b60006138bf600583613f2d565b91506138ca826146bd565b600582019050919050565b60006138e2601183613f1c565b91506138ed826146e6565b602082019050919050565b6000613905602083613f1c565b91506139108261470f565b602082019050919050565b6000613928602183613f1c565b915061393382614738565b604082019050919050565b600061394b601183613f1c565b915061395682614787565b602082019050919050565b600061396e600083613f11565b9150613979826147b0565b600082019050919050565b6000613991601d83613f1c565b915061399c826147b3565b602082019050919050565b60006139b4603183613f1c565b91506139bf826147dc565b604082019050919050565b60006139d7601583613f1c565b91506139e28261482b565b602082019050919050565b60006139fa600f83613f1c565b9150613a0582614854565b602082019050919050565b613a19816140b7565b82525050565b6000613a2b8285613603565b9150613a3782846135d2565b9150613a42826138b2565b91508190509392505050565b6000613a5982613961565b9150819050919050565b6000602082019050613a786000830184613542565b92915050565b6000608082019050613a936000830187613542565b613aa06020830186613542565b613aad6040830185613a10565b8181036060830152613abf8184613560565b905095945050505050565b6000602082019050613adf6000830184613551565b92915050565b60006020820190508181036000830152613aff8184613599565b905092915050565b60006020820190508181036000830152613b2081613682565b9050919050565b60006020820190508181036000830152613b40816136a5565b9050919050565b60006020820190508181036000830152613b60816136c8565b9050919050565b60006020820190508181036000830152613b80816136eb565b9050919050565b60006020820190508181036000830152613ba08161370e565b9050919050565b60006020820190508181036000830152613bc081613731565b9050919050565b60006020820190508181036000830152613be081613754565b9050919050565b60006020820190508181036000830152613c0081613777565b9050919050565b60006020820190508181036000830152613c208161379a565b9050919050565b60006020820190508181036000830152613c40816137bd565b9050919050565b60006020820190508181036000830152613c60816137e0565b9050919050565b60006020820190508181036000830152613c8081613803565b9050919050565b60006020820190508181036000830152613ca081613826565b9050919050565b60006020820190508181036000830152613cc081613849565b9050919050565b60006020820190508181036000830152613ce08161386c565b9050919050565b60006020820190508181036000830152613d008161388f565b9050919050565b60006020820190508181036000830152613d20816138d5565b9050919050565b60006020820190508181036000830152613d40816138f8565b9050919050565b60006020820190508181036000830152613d608161391b565b9050919050565b60006020820190508181036000830152613d808161393e565b9050919050565b60006020820190508181036000830152613da081613984565b9050919050565b60006020820190508181036000830152613dc0816139a7565b9050919050565b60006020820190508181036000830152613de0816139ca565b9050919050565b60006020820190508181036000830152613e00816139ed565b9050919050565b6000602082019050613e1c6000830184613a10565b92915050565b6000613e2c613e3d565b9050613e38828261415f565b919050565b6000604051905090565b600067ffffffffffffffff821115613e6257613e61614297565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613e8e57613e8d614297565b5b613e97826142c6565b9050602081019050919050565b600067ffffffffffffffff821115613ebf57613ebe614297565b5b613ec8826142c6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f43826140b7565b9150613f4e836140b7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f8357613f8261420a565b5b828201905092915050565b6000613f99826140b7565b9150613fa4836140b7565b925082613fb457613fb3614239565b5b828204905092915050565b6000613fca826140b7565b9150613fd5836140b7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561400e5761400d61420a565b5b828202905092915050565b6000614024826140b7565b915061402f836140b7565b9250828210156140425761404161420a565b5b828203905092915050565b600061405882614097565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140ee5780820151818401526020810190506140d3565b838111156140fd576000848401525b50505050565b600061410e826140b7565b915060008214156141225761412161420a565b5b600182039050919050565b6000600282049050600182168061414557607f821691505b6020821081141561415957614158614268565b5b50919050565b614168826142c6565b810181811067ffffffffffffffff8211171561418757614186614297565b5b80604052505050565b600061419b826140b7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141ce576141cd61420a565b5b600182019050919050565b60006141e4826140b7565b91506141ef836140b7565b9250826141ff576141fe614239565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f77726f6e67206d696e742076616c756500000000000000000000000000000000600082015250565b7f416e6f7468657220636f6e747261637420646574656374656400000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f636c61696d696e67206973207061757365640000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f657863656564206d61782077616c6c6574000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b50565b7f6e6f7420656c696769626c6520666f72204465764c697374206d696e74000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f74206578697374210000000000000000000000600082015250565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b6148868161404d565b811461489157600080fd5b50565b61489d8161405f565b81146148a857600080fd5b50565b6148b48161406b565b81146148bf57600080fd5b50565b6148cb816140b7565b81146148d657600080fd5b5056fea26469706673582212203e5a9dedb605e1c78db59ef238512dda1729c17fe606786b8e90927d05fa967e64736f6c6343000804003368747470733a2f2f6f72696f6e2e6d7970696e6174612e636c6f75642f697066732f516d565232734d466b7635723556516577636a6d62456570526f5a78564671726f614e575354564d516d544656592f68696464656e2e6a736f6e68747470733a2f2f6f72696f6e2e6d7970696e6174612e636c6f75642f697066732f516d66593274386669625556316147573136717a52467469636332753472576f7231704c596d435048724e6f4e792f6d657461646174612e6a736f6e

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806385dd4ce11161012e578063aad2816e116100ab578063da8fbf2a1161006f578063da8fbf2a14610826578063e1a283d61461083d578063e8a3d48514610868578063e985e9c514610893578063f2fde38b146108d05761023b565b8063aad2816e14610753578063b88d4fde1461076a578063bdb4b84814610793578063c87b56dd146107be578063d5abeb01146107fb5761023b565b806395d89b41116100f257806395d89b411461068d57806397b84011146106b8578063a0712d68146106e3578063a22cb465146106ff578063a45ba8e7146107285761023b565b806385dd4ce1146105be5780638da5cb5b146105e757806391b7f5ed14610612578063938e3d7b1461063b57806395652cfa146106645761023b565b806346ea529c116101bc5780636352211e116101805780636352211e146104d95780636f8b44b01461051657806370a082311461053f578063715018a61461057c57806385d178f4146105935761023b565b806346ea529c146104085780634e71d92d146104455780634fdd43cb1461045c57806354214f69146104855780635ede942f146104b05761023b565b8063182500b711610203578063182500b7146103395780631b22020a1461036257806323b872dd1461039f5780633ccfd60b146103c857806342842e0e146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613441565b6108f9565b6040516102749190613aca565b60405180910390f35b34801561028957600080fd5b506102926109db565b60405161029f9190613ae5565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613519565b610a6d565b6040516102dc9190613a63565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906133c4565b610af2565b005b34801561031a57600080fd5b50610323610c0a565b6040516103309190613e07565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613519565b610c10565b005b34801561036e57600080fd5b5061038960048036038101906103849190613259565b610e54565b6040516103969190613e07565b60405180910390f35b3480156103ab57600080fd5b506103c660048036038101906103c191906132be565b610e6c565b005b3480156103d457600080fd5b506103dd610ecc565b005b3480156103eb57600080fd5b50610406600480360381019061040191906132be565b611019565b005b34801561041457600080fd5b5061042f600480360381019061042a9190613259565b611039565b60405161043c9190613e07565b60405180910390f35b34801561045157600080fd5b5061045a611051565b005b34801561046857600080fd5b50610483600480360381019061047e91906134d8565b611275565b005b34801561049157600080fd5b5061049a61130b565b6040516104a79190613aca565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190613259565b61131e565b005b3480156104e557600080fd5b5061050060048036038101906104fb9190613519565b6113de565b60405161050d9190613a63565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190613519565b611490565b005b34801561054b57600080fd5b5061056660048036038101906105619190613259565b611516565b6040516105739190613e07565b60405180910390f35b34801561058857600080fd5b506105916115ce565b005b34801561059f57600080fd5b506105a8611656565b6040516105b59190613a63565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190613400565b61167c565b005b3480156105f357600080fd5b506105fc6117a0565b6040516106099190613a63565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190613519565b6117ca565b005b34801561064757600080fd5b50610662600480360381019061065d91906134d8565b611850565b005b34801561067057600080fd5b5061068b60048036038101906106869190613493565b6118e6565b005b34801561069957600080fd5b506106a2611978565b6040516106af9190613ae5565b60405180910390f35b3480156106c457600080fd5b506106cd611a0a565b6040516106da9190613aca565b60405180910390f35b6106fd60048036038101906106f89190613519565b611a1d565b005b34801561070b57600080fd5b5061072660048036038101906107219190613388565b611c2a565b005b34801561073457600080fd5b5061073d611c40565b60405161074a9190613ae5565b60405180910390f35b34801561075f57600080fd5b50610768611cce565b005b34801561077657600080fd5b50610791600480360381019061078c919061330d565b611d76565b005b34801561079f57600080fd5b506107a8611dd8565b6040516107b59190613e07565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e09190613519565b611dde565b6040516107f29190613ae5565b60405180910390f35b34801561080757600080fd5b50610810611f09565b60405161081d9190613e07565b60405180910390f35b34801561083257600080fd5b5061083b611f0f565b005b34801561084957600080fd5b50610852611fb7565b60405161085f9190613aca565b60405180910390f35b34801561087457600080fd5b5061087d611fca565b60405161088a9190613ae5565b60405180910390f35b34801561089f57600080fd5b506108ba60048036038101906108b59190613282565b61205c565b6040516108c79190613aca565b60405180910390f35b3480156108dc57600080fd5b506108f760048036038101906108f29190613259565b6120f0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d457506109d3826121e8565b5b9050919050565b6060600080546109ea9061412d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a169061412d565b8015610a635780601f10610a3857610100808354040283529160200191610a63565b820191906000526020600020905b815481529060010190602001808311610a4657829003601f168201915b5050505050905090565b6000610a7882612252565b610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae90613ce7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610afd826113de565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6590613d47565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8d6122be565b73ffffffffffffffffffffffffffffffffffffffff161480610bbc5750610bbb81610bb66122be565b61205c565b5b610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf290613c67565b60405180910390fd5b610c0583836122c6565b505050565b60075481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590613b27565b60405180910390fd5b60085481600754610c8f9190613f38565b1115610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc790613c47565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4990613d87565b60405180910390fd5b60005b81811015610e505760006001600754610d6e9190613f38565b9050600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610dc090614190565b9190505550601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610e1590614103565b919050555060076000815480929190610e2d90614190565b9190505550610e3c338261237f565b508080610e4890614190565b915050610d55565b5050565b600f6020528060005260406000206000915090505481565b610e7d610e776122be565b8261239d565b610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390613da7565b60405180910390fd5b610ec783838361247b565b505050565b610ed46122be565b73ffffffffffffffffffffffffffffffffffffffff16610ef26117a0565b73ffffffffffffffffffffffffffffffffffffffff1614610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90613d27565b60405180910390fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610f9090613a4e565b60006040518083038185875af1925050503d8060008114610fcd576040519150601f19603f3d011682016040523d82523d6000602084013e610fd2565b606091505b5050905080611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d90613de7565b60405180910390fd5b50565b61103483838360405180602001604052806000815250611d76565b505050565b60106020528060005260406000206000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690613b27565b60405180910390fd5b6000600190506000816007546110d59190613f38565b9050600960009054906101000a900460ff1615611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e90613bc7565b60405180910390fd5b600854826007546111389190613f38565b1115611179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117090613c47565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190613d07565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061124a90614190565b91905055506007600081548092919061126290614190565b9190505550611271338261237f565b5050565b61127d6122be565b73ffffffffffffffffffffffffffffffffffffffff1661129b6117a0565b73ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890613d27565b60405180910390fd5b80600b9080519060200190611307929190612f17565b5050565b600c60009054906101000a900460ff1681565b6113266122be565b73ffffffffffffffffffffffffffffffffffffffff166113446117a0565b73ffffffffffffffffffffffffffffffffffffffff161461139a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139190613d27565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e90613ca7565b60405180910390fd5b80915050919050565b6114986122be565b73ffffffffffffffffffffffffffffffffffffffff166114b66117a0565b73ffffffffffffffffffffffffffffffffffffffff161461150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390613d27565b60405180910390fd5b8060088190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e90613c87565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115d66122be565b73ffffffffffffffffffffffffffffffffffffffff166115f46117a0565b73ffffffffffffffffffffffffffffffffffffffff161461164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190613d27565b60405180910390fd5b61165460006126e2565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6116846122be565b73ffffffffffffffffffffffffffffffffffffffff166116a26117a0565b73ffffffffffffffffffffffffffffffffffffffff16146116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90613d27565b60405180910390fd5b60005b815181101561179c57603260106000848481518110611743577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061179490614190565b9150506116fb565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117d26122be565b73ffffffffffffffffffffffffffffffffffffffff166117f06117a0565b73ffffffffffffffffffffffffffffffffffffffff1614611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d90613d27565b60405180910390fd5b80600d8190555050565b6118586122be565b73ffffffffffffffffffffffffffffffffffffffff166118766117a0565b73ffffffffffffffffffffffffffffffffffffffff16146118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c390613d27565b60405180910390fd5b80601190805190602001906118e2929190612f17565b5050565b6118ee6122be565b73ffffffffffffffffffffffffffffffffffffffff1661190c6117a0565b73ffffffffffffffffffffffffffffffffffffffff1614611962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195990613d27565b60405180910390fd5b8181600a9190611973929190612f9d565b505050565b6060600180546119879061412d565b80601f01602080910402602001604051908101604052809291908181526020018280546119b39061412d565b8015611a005780601f106119d557610100808354040283529160200191611a00565b820191906000526020600020905b8154815290600101906020018083116119e357829003601f168201915b5050505050905090565b600960009054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8290613b27565b60405180910390fd5b600960019054906101000a900460ff1615611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad290613d67565b60405180910390fd5b600d5481611ae99190613fbf565b341015611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290613b07565b60405180910390fd5b60085481600754611b3c9190613f38565b1115611b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7490613c47565b60405180910390fd5b60005b81811015611c265760006001600754611b999190613f38565b9050600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611beb90614190565b919050555060076000815480929190611c0390614190565b9190505550611c12338261237f565b508080611c1e90614190565b915050611b80565b5050565b611c3c611c356122be565b83836127a8565b5050565b600b8054611c4d9061412d565b80601f0160208091040260200160405190810160405280929190818152602001828054611c799061412d565b8015611cc65780601f10611c9b57610100808354040283529160200191611cc6565b820191906000526020600020905b815481529060010190602001808311611ca957829003601f168201915b505050505081565b611cd66122be565b73ffffffffffffffffffffffffffffffffffffffff16611cf46117a0565b73ffffffffffffffffffffffffffffffffffffffff1614611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4190613d27565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b611d87611d816122be565b8361239d565b611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd90613da7565b60405180910390fd5b611dd284848484612915565b50505050565b600d5481565b606060001515600c60009054906101000a900460ff1615151415611e8e57600b8054611e099061412d565b80601f0160208091040260200160405190810160405280929190818152602001828054611e359061412d565b8015611e825780601f10611e5757610100808354040283529160200191611e82565b820191906000526020600020905b815481529060010190602001808311611e6557829003601f168201915b50505050509050611f04565b611e9782612252565b611ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecd90613dc7565b60405180910390fd5b600a611ee183612971565b604051602001611ef2929190613a1f565b60405160208183030381529060405290505b919050565b60085481565b611f176122be565b73ffffffffffffffffffffffffffffffffffffffff16611f356117a0565b73ffffffffffffffffffffffffffffffffffffffff1614611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8290613d27565b60405180910390fd5b600960019054906101000a900460ff1615600960016101000a81548160ff021916908315150217905550565b600960019054906101000a900460ff1681565b606060118054611fd99061412d565b80601f01602080910402602001604051908101604052809291908181526020018280546120059061412d565b80156120525780601f1061202757610100808354040283529160200191612052565b820191906000526020600020905b81548152906001019060200180831161203557829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120f86122be565b73ffffffffffffffffffffffffffffffffffffffff166121166117a0565b73ffffffffffffffffffffffffffffffffffffffff161461216c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216390613d27565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d390613b67565b60405180910390fd5b6121e5816126e2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612339836113de565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612399828260405180602001604052806000815250612b1e565b5050565b60006123a882612252565b6123e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123de90613c27565b60405180910390fd5b60006123f2836113de565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124345750612433818561205c565b5b8061247257508373ffffffffffffffffffffffffffffffffffffffff1661245a84610a6d565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661249b826113de565b73ffffffffffffffffffffffffffffffffffffffff16146124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e890613b87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255890613be7565b60405180910390fd5b61256c838383612b79565b6125776000826122c6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125c79190614019565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461261e9190613f38565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126dd838383612b7e565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280e90613c07565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129089190613aca565b60405180910390a3505050565b61292084848461247b565b61292c84848484612b83565b61296b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296290613b47565b60405180910390fd5b50505050565b606060008214156129b9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b19565b600082905060005b600082146129eb5780806129d490614190565b915050600a826129e49190613f8e565b91506129c1565b60008167ffffffffffffffff811115612a2d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a5f5781602001600182028036833780820191505090505b5090505b60008514612b1257600182612a789190614019565b9150600a85612a8791906141d9565b6030612a939190613f38565b60f81b818381518110612acf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b0b9190613f8e565b9450612a63565b8093505050505b919050565b612b288383612d1a565b612b356000848484612b83565b612b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6b90613b47565b60405180910390fd5b505050565b505050565b505050565b6000612ba48473ffffffffffffffffffffffffffffffffffffffff16612ef4565b15612d0d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bcd6122be565b8786866040518563ffffffff1660e01b8152600401612bef9493929190613a7e565b602060405180830381600087803b158015612c0957600080fd5b505af1925050508015612c3a57506040513d601f19601f82011682018060405250810190612c37919061346a565b60015b612cbd573d8060008114612c6a576040519150601f19603f3d011682016040523d82523d6000602084013e612c6f565b606091505b50600081511415612cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cac90613b47565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d12565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8190613cc7565b60405180910390fd5b612d9381612252565b15612dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dca90613ba7565b60405180910390fd5b612ddf60008383612b79565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e2f9190613f38565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ef060008383612b7e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612f239061412d565b90600052602060002090601f016020900481019282612f455760008555612f8c565b82601f10612f5e57805160ff1916838001178555612f8c565b82800160010185558215612f8c579182015b82811115612f8b578251825591602001919060010190612f70565b5b509050612f999190613023565b5090565b828054612fa99061412d565b90600052602060002090601f016020900481019282612fcb5760008555613012565b82601f10612fe457803560ff1916838001178555613012565b82800160010185558215613012579182015b82811115613011578235825591602001919060010190612ff6565b5b50905061301f9190613023565b5090565b5b8082111561303c576000816000905550600101613024565b5090565b600061305361304e84613e47565b613e22565b9050808382526020820190508285602086028201111561307257600080fd5b60005b858110156130a257816130888882613128565b845260208401935060208301925050600181019050613075565b5050509392505050565b60006130bf6130ba84613e73565b613e22565b9050828152602081018484840111156130d757600080fd5b6130e28482856140c1565b509392505050565b60006130fd6130f884613ea4565b613e22565b90508281526020810184848401111561311557600080fd5b6131208482856140c1565b509392505050565b6000813590506131378161487d565b92915050565b600082601f83011261314e57600080fd5b813561315e848260208601613040565b91505092915050565b60008135905061317681614894565b92915050565b60008135905061318b816148ab565b92915050565b6000815190506131a0816148ab565b92915050565b600082601f8301126131b757600080fd5b81356131c78482602086016130ac565b91505092915050565b60008083601f8401126131e257600080fd5b8235905067ffffffffffffffff8111156131fb57600080fd5b60208301915083600182028301111561321357600080fd5b9250929050565b600082601f83011261322b57600080fd5b813561323b8482602086016130ea565b91505092915050565b600081359050613253816148c2565b92915050565b60006020828403121561326b57600080fd5b600061327984828501613128565b91505092915050565b6000806040838503121561329557600080fd5b60006132a385828601613128565b92505060206132b485828601613128565b9150509250929050565b6000806000606084860312156132d357600080fd5b60006132e186828701613128565b93505060206132f286828701613128565b925050604061330386828701613244565b9150509250925092565b6000806000806080858703121561332357600080fd5b600061333187828801613128565b945050602061334287828801613128565b935050604061335387828801613244565b925050606085013567ffffffffffffffff81111561337057600080fd5b61337c878288016131a6565b91505092959194509250565b6000806040838503121561339b57600080fd5b60006133a985828601613128565b92505060206133ba85828601613167565b9150509250929050565b600080604083850312156133d757600080fd5b60006133e585828601613128565b92505060206133f685828601613244565b9150509250929050565b60006020828403121561341257600080fd5b600082013567ffffffffffffffff81111561342c57600080fd5b6134388482850161313d565b91505092915050565b60006020828403121561345357600080fd5b60006134618482850161317c565b91505092915050565b60006020828403121561347c57600080fd5b600061348a84828501613191565b91505092915050565b600080602083850312156134a657600080fd5b600083013567ffffffffffffffff8111156134c057600080fd5b6134cc858286016131d0565b92509250509250929050565b6000602082840312156134ea57600080fd5b600082013567ffffffffffffffff81111561350457600080fd5b6135108482850161321a565b91505092915050565b60006020828403121561352b57600080fd5b600061353984828501613244565b91505092915050565b61354b8161404d565b82525050565b61355a8161405f565b82525050565b600061356b82613eea565b6135758185613f00565b93506135858185602086016140d0565b61358e816142c6565b840191505092915050565b60006135a482613ef5565b6135ae8185613f1c565b93506135be8185602086016140d0565b6135c7816142c6565b840191505092915050565b60006135dd82613ef5565b6135e78185613f2d565b93506135f78185602086016140d0565b80840191505092915050565b600081546136108161412d565b61361a8186613f2d565b94506001821660008114613635576001811461364657613679565b60ff19831686528186019350613679565b61364f85613ed5565b60005b8381101561367157815481890152600182019150602081019050613652565b838801955050505b50505092915050565b600061368f601083613f1c565b915061369a826142d7565b602082019050919050565b60006136b2601983613f1c565b91506136bd82614300565b602082019050919050565b60006136d5603283613f1c565b91506136e082614329565b604082019050919050565b60006136f8602683613f1c565b915061370382614378565b604082019050919050565b600061371b602583613f1c565b9150613726826143c7565b604082019050919050565b600061373e601c83613f1c565b915061374982614416565b602082019050919050565b6000613761601283613f1c565b915061376c8261443f565b602082019050919050565b6000613784602483613f1c565b915061378f82614468565b604082019050919050565b60006137a7601983613f1c565b91506137b2826144b7565b602082019050919050565b60006137ca602c83613f1c565b91506137d5826144e0565b604082019050919050565b60006137ed600883613f1c565b91506137f88261452f565b602082019050919050565b6000613810603883613f1c565b915061381b82614558565b604082019050919050565b6000613833602a83613f1c565b915061383e826145a7565b604082019050919050565b6000613856602983613f1c565b9150613861826145f6565b604082019050919050565b6000613879602083613f1c565b915061388482614645565b602082019050919050565b600061389c602c83613f1c565b91506138a78261466e565b604082019050919050565b60006138bf600583613f2d565b91506138ca826146bd565b600582019050919050565b60006138e2601183613f1c565b91506138ed826146e6565b602082019050919050565b6000613905602083613f1c565b91506139108261470f565b602082019050919050565b6000613928602183613f1c565b915061393382614738565b604082019050919050565b600061394b601183613f1c565b915061395682614787565b602082019050919050565b600061396e600083613f11565b9150613979826147b0565b600082019050919050565b6000613991601d83613f1c565b915061399c826147b3565b602082019050919050565b60006139b4603183613f1c565b91506139bf826147dc565b604082019050919050565b60006139d7601583613f1c565b91506139e28261482b565b602082019050919050565b60006139fa600f83613f1c565b9150613a0582614854565b602082019050919050565b613a19816140b7565b82525050565b6000613a2b8285613603565b9150613a3782846135d2565b9150613a42826138b2565b91508190509392505050565b6000613a5982613961565b9150819050919050565b6000602082019050613a786000830184613542565b92915050565b6000608082019050613a936000830187613542565b613aa06020830186613542565b613aad6040830185613a10565b8181036060830152613abf8184613560565b905095945050505050565b6000602082019050613adf6000830184613551565b92915050565b60006020820190508181036000830152613aff8184613599565b905092915050565b60006020820190508181036000830152613b2081613682565b9050919050565b60006020820190508181036000830152613b40816136a5565b9050919050565b60006020820190508181036000830152613b60816136c8565b9050919050565b60006020820190508181036000830152613b80816136eb565b9050919050565b60006020820190508181036000830152613ba08161370e565b9050919050565b60006020820190508181036000830152613bc081613731565b9050919050565b60006020820190508181036000830152613be081613754565b9050919050565b60006020820190508181036000830152613c0081613777565b9050919050565b60006020820190508181036000830152613c208161379a565b9050919050565b60006020820190508181036000830152613c40816137bd565b9050919050565b60006020820190508181036000830152613c60816137e0565b9050919050565b60006020820190508181036000830152613c8081613803565b9050919050565b60006020820190508181036000830152613ca081613826565b9050919050565b60006020820190508181036000830152613cc081613849565b9050919050565b60006020820190508181036000830152613ce08161386c565b9050919050565b60006020820190508181036000830152613d008161388f565b9050919050565b60006020820190508181036000830152613d20816138d5565b9050919050565b60006020820190508181036000830152613d40816138f8565b9050919050565b60006020820190508181036000830152613d608161391b565b9050919050565b60006020820190508181036000830152613d808161393e565b9050919050565b60006020820190508181036000830152613da081613984565b9050919050565b60006020820190508181036000830152613dc0816139a7565b9050919050565b60006020820190508181036000830152613de0816139ca565b9050919050565b60006020820190508181036000830152613e00816139ed565b9050919050565b6000602082019050613e1c6000830184613a10565b92915050565b6000613e2c613e3d565b9050613e38828261415f565b919050565b6000604051905090565b600067ffffffffffffffff821115613e6257613e61614297565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613e8e57613e8d614297565b5b613e97826142c6565b9050602081019050919050565b600067ffffffffffffffff821115613ebf57613ebe614297565b5b613ec8826142c6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f43826140b7565b9150613f4e836140b7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f8357613f8261420a565b5b828201905092915050565b6000613f99826140b7565b9150613fa4836140b7565b925082613fb457613fb3614239565b5b828204905092915050565b6000613fca826140b7565b9150613fd5836140b7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561400e5761400d61420a565b5b828202905092915050565b6000614024826140b7565b915061402f836140b7565b9250828210156140425761404161420a565b5b828203905092915050565b600061405882614097565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140ee5780820151818401526020810190506140d3565b838111156140fd576000848401525b50505050565b600061410e826140b7565b915060008214156141225761412161420a565b5b600182039050919050565b6000600282049050600182168061414557607f821691505b6020821081141561415957614158614268565b5b50919050565b614168826142c6565b810181811067ffffffffffffffff8211171561418757614186614297565b5b80604052505050565b600061419b826140b7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141ce576141cd61420a565b5b600182019050919050565b60006141e4826140b7565b91506141ef836140b7565b9250826141ff576141fe614239565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f77726f6e67206d696e742076616c756500000000000000000000000000000000600082015250565b7f416e6f7468657220636f6e747261637420646574656374656400000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f636c61696d696e67206973207061757365640000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f657863656564206d61782077616c6c6574000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b50565b7f6e6f7420656c696769626c6520666f72204465764c697374206d696e74000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f74206578697374210000000000000000000000600082015250565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b6148868161404d565b811461489157600080fd5b50565b61489d8161405f565b81146148a857600080fd5b50565b6148b48161406b565b81146148bf57600080fd5b50565b6148cb816140b7565b81146148d657600080fd5b5056fea26469706673582212203e5a9dedb605e1c78db59ef238512dda1729c17fe606786b8e90927d05fa967e64736f6c63430008040033

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.