ETH Price: $3,274.56 (-4.14%)
Gas: 6 Gwei

Token

The Doods (TheDoods)
 

Overview

Max Total Supply

6,969 TheDoods

Holders

1,975

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tosshed.eth
Balance
4 TheDoods
0x597cedae7830a6d7ae884589e769b7016f3af7d5
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:
TheDoods

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : TheDoods.sol
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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


contract TheDoods is ERC721, Ownable {
	using Counters
	for Counters.Counter;
	Counters.Counter private _tokenIds;
	
	
	uint public constant MAX_TOKENS = 6969;
	uint public constant MAX_TOKENS_VIP = 0;
	
	
	uint public CURR_MINT_COST = 0.033 ether;
	
	//---- Round based supplies
	string public CURR_ROUND_NAME = "Private";
	string public CURR_ROUND_PASSWORD = "0";
	uint public CURR_ROUND_SUPPLY = 4500;
	uint public CURR_ROUND_TIME = 1642017600000;
	
	uint public maxMintAmount = 3;
	uint public nftPerAddressLimit = 3;
	uint public currentVIPs = 0;
	uint public currentNormal = 0;
	
	bool public hasSaleStarted = false;
	bool public onlyWhitelisted = false;
	
	string public baseURI;
	
	mapping(address => uint) public addressMintedBalance;
	mapping (address => bool) whitelistUserAddresses;

	
	
	
	constructor() ERC721("The Doods", "TheDoods") {
		setBaseURI("http://api.thedoods.org/doods/");
	}

	function totalSupply() public view returns(uint) {
		return _tokenIds.current();
	}


	function _baseURI() internal view virtual override returns (string memory) {
		return baseURI;
	}

	function mintNFT(uint _mintAmount) public payable {
		require(_mintAmount > 0, "Need to mint at least 1 NFT");
		require(_mintAmount <= maxMintAmount, "Max mint amount per transaction exceeded");
		require(msg.value >= CURR_MINT_COST * _mintAmount, "Insufficient funds");
		require(hasSaleStarted == true, "Sale hasn't started");
		require(_mintAmount <= CURR_ROUND_SUPPLY, "We're at max supply!");
		
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "User is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "Max NFT per address exceeded");
        }
        
		
		for (uint256 i = 1; i <= _mintAmount; i++) {
			addressMintedBalance[msg.sender]++;
			_tokenIds.increment();
			CURR_ROUND_SUPPLY--;
			currentNormal = currentNormal + 1;
			_safeMint(msg.sender, currentNormal);
		}

	}

	
	function isWhitelisted(address _user) public view returns (bool) {
		return whitelistUserAddresses[_user];
	}
	
   function getInformations() public view returns (string memory)
   {
	   string memory information = string(abi.encodePacked(CURR_ROUND_NAME,",", Strings.toString(CURR_ROUND_SUPPLY),",",Strings.toString(CURR_ROUND_TIME),",",Strings.toString(CURR_MINT_COST),",",Strings.toString(maxMintAmount), ",",CURR_ROUND_PASSWORD));
	   return information;
   }
	
	
	//only owner functions
	
	function setNewRound(uint _supply, uint cost, string memory name, uint maxMint, uint perAddressLimit, uint theTime, string memory password) public onlyOwner {
		require(_supply <= MAX_TOKENS - totalSupply(), "Exceeded supply");
		CURR_ROUND_SUPPLY = _supply;
		CURR_MINT_COST = cost;
		CURR_ROUND_NAME = name;
		maxMintAmount = maxMint;
		nftPerAddressLimit = perAddressLimit;
		CURR_ROUND_TIME = theTime;
		CURR_ROUND_PASSWORD = password;
	}
	
	function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
		nftPerAddressLimit = _limit;
	}

	function setmaxMintAmount(uint _newmaxMintAmount) public onlyOwner {
		maxMintAmount = _newmaxMintAmount;
	}

	function setCurrentSupply(uint numSupply) public onlyOwner{
		require(numSupply<=MAX_TOKENS - totalSupply(), "Can't add new character NFTs. Would exceed supply");
		CURR_ROUND_SUPPLY = numSupply;
	}

	function setCost(uint _newCost) public onlyOwner {
		CURR_MINT_COST = _newCost;
	}
	
	
	function whitelistAddresses (address[] calldata users) public onlyOwner {
		for (uint i = 0; i < users.length; i++) {
			whitelistUserAddresses[users[i]] = true;
		}
	}


	function removeWhitelistAddresses (address[] calldata users) external onlyOwner {
		for (uint i = 0; i < users.length; i++) {
			delete whitelistUserAddresses[users[i]];
		}
	}
	
	function setOnlyWhitelisted(bool _state) public onlyOwner {
		onlyWhitelisted = _state;
	}


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

	function getBaseURI() public onlyOwner view returns(string memory) {
		return baseURI;
	}

	function reserveVIP(uint numTokens, address recipient) public onlyOwner {
		require((currentVIPs + numTokens) <= MAX_TOKENS_VIP, "Exceeded VIP supply");
		uint index;
		for(index = 1; index <= numTokens; index++) {
			_tokenIds.increment();
			currentVIPs = currentVIPs + 1;
			uint theToken = currentVIPs + MAX_TOKENS;
			addressMintedBalance[recipient]++;
			_safeMint(recipient, theToken);
		}
	}

	function Giveaways(uint numTokens, address recipient) public onlyOwner {
		require((_tokenIds.current() + numTokens) <= MAX_TOKENS, "Exceeded supply");
		uint index;
		// Reserved for the people who helped build this project
		for(index = 1; index <= numTokens; index++) {
			_tokenIds.increment();
			currentNormal = currentNormal + 1;
			addressMintedBalance[recipient]++;
			_safeMint(recipient, currentNormal);
		}
	}

	function withdrawAll() public payable onlyOwner {
		require(payable(msg.sender).send(address(this).balance));
	}
	
	
	function setSaleStarted(bool _state) public onlyOwner {
		hasSaleStarted = _state;
	}
}

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 5 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

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

File 8 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CURR_MINT_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CURR_ROUND_NAME","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CURR_ROUND_PASSWORD","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CURR_ROUND_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CURR_ROUND_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"Giveaways","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_VIP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentNormal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentVIPs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInformations","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"removeWhitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reserveVIP","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numSupply","type":"uint256"}],"name":"setCurrentSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"perAddressLimit","type":"uint256"},{"internalType":"uint256","name":"theTime","type":"uint256"},{"internalType":"string","name":"password","type":"string"}],"name":"setNewRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"whitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266753d533d9680006008556040518060400160405280600781526020017f5072697661746500000000000000000000000000000000000000000000000000815250600990805190602001906200005c929190620003c2565b506040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000aa929190620003c2565b50611194600b5565017e4fe03200600c556003600d556003600e556000600f5560006010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055503480156200011257600080fd5b506040518060400160405280600981526020017f54686520446f6f647300000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f546865446f6f6473000000000000000000000000000000000000000000000000815250816000908051906020019062000197929190620003c2565b508060019080519060200190620001b0929190620003c2565b505050620001d3620001c76200021f60201b60201c565b6200022760201b60201c565b620002196040518060400160405280601e81526020017f687474703a2f2f6170692e746865646f6f64732e6f72672f646f6f64732f0000815250620002ed60201b60201c565b6200054c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002fd6200021f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003236200039860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200037c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037390620004b4565b60405180910390fd5b806012908051906020019062000394929190620003c2565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003d090620004e7565b90600052602060002090601f016020900481019282620003f4576000855562000440565b82601f106200040f57805160ff191683800117855562000440565b8280016001018555821562000440579182015b828111156200043f57825182559160200191906001019062000422565b5b5090506200044f919062000453565b5090565b5b808211156200046e57600081600090555060010162000454565b5090565b600062000481602083620004d6565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190508181036000830152620004cf8162000472565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200050057607f821691505b602082108114156200051757620005166200051d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614e3b806200055c6000396000f3fe6080604052600436106102ae5760003560e01c8063715018a611610175578063b88d4fde116100dc578063d0eb26b011610095578063ef0de0aa1161006f578063ef0de0aa14610a6c578063f2fde38b14610a97578063f47c84c514610ac0578063f79e66ba14610aeb576102ae565b8063d0eb26b0146109dd578063dc54730114610a06578063e985e9c514610a2f576102ae565b8063b88d4fde146108cf578063ba7d2c76146108f8578063bff84fc514610923578063c34278441461094c578063c87b56dd14610977578063cc0b8d15146109b4576102ae565b806395d89b411161012e57806395d89b41146107d357806397000de1146107fe5780639c70b51214610829578063a22cb46514610854578063a854ffba1461087d578063b83921a6146108a6576102ae565b8063715018a6146107175780637f00c7a61461072e578063853828b6146107575780638626af27146107615780638da5cb5b1461078c57806392642744146107b7576102ae565b80632bf043041161021957806344a0d68a116101d257806344a0d68a146105f557806355f804b31461061e5780636352211e146106475780636c0360eb1461068457806370a08231146106af578063714c5398146106ec576102ae565b80632bf04304146104e95780633af32abf146105125780633b557f561461054f5780633c5e310b146105785780633c952764146105a357806342842e0e146105cc576102ae565b806318160ddd1161026b57806318160ddd146103d757806318cae269146104025780631c8b232d1461043f578063239c70ae1461046a57806323b872dd1461049557806329540530146104be576102ae565b806301ffc9a7146102b3578063027b2513146102f0578063042ebb481461031b57806306fdde0314610346578063081812fc14610371578063095ea7b3146103ae575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d591906138b7565b610b16565b6040516102e791906145ba565b60405180910390f35b3480156102fc57600080fd5b50610305610bf8565b6040516103129190614937565b60405180910390f35b34801561032757600080fd5b50610330610bfe565b60405161033d9190614937565b60405180910390f35b34801561035257600080fd5b5061035b610c04565b60405161036891906145d5565b60405180910390f35b34801561037d57600080fd5b506103986004803603810190610393919061394a565b610c96565b6040516103a59190614553565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d0919061380d565b610d1b565b005b3480156103e357600080fd5b506103ec610e33565b6040516103f99190614937565b60405180910390f35b34801561040e57600080fd5b50610429600480360381019061042491906136a2565b610e44565b6040516104369190614937565b60405180910390f35b34801561044b57600080fd5b50610454610e5c565b60405161046191906145ba565b60405180910390f35b34801561047657600080fd5b5061047f610e6f565b60405161048c9190614937565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190613707565b610e75565b005b3480156104ca57600080fd5b506104d3610ed5565b6040516104e091906145d5565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190613849565b610f63565b005b34801561051e57600080fd5b50610539600480360381019061053491906136a2565b6110aa565b60405161054691906145ba565b60405180910390f35b34801561055b57600080fd5b50610576600480360381019061057191906139af565b611100565b005b34801561058457600080fd5b5061058d61122d565b60405161059a91906145d5565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c5919061388e565b61128e565b005b3480156105d857600080fd5b506105f360048036038101906105ee9190613707565b611327565b005b34801561060157600080fd5b5061061c6004803603810190610617919061394a565b611347565b005b34801561062a57600080fd5b5061064560048036038101906106409190613909565b6113cd565b005b34801561065357600080fd5b5061066e6004803603810190610669919061394a565b611463565b60405161067b9190614553565b60405180910390f35b34801561069057600080fd5b50610699611515565b6040516106a691906145d5565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d191906136a2565b6115a3565b6040516106e39190614937565b60405180910390f35b3480156106f857600080fd5b5061070161165b565b60405161070e91906145d5565b60405180910390f35b34801561072357600080fd5b5061072c611769565b005b34801561073a57600080fd5b506107556004803603810190610750919061394a565b6117f1565b005b61075f611877565b005b34801561076d57600080fd5b50610776611933565b60405161078391906145d5565b60405180910390f35b34801561079857600080fd5b506107a16119c1565b6040516107ae9190614553565b60405180910390f35b6107d160048036038101906107cc919061394a565b6119eb565b005b3480156107df57600080fd5b506107e8611d15565b6040516107f591906145d5565b60405180910390f35b34801561080a57600080fd5b50610813611da7565b6040516108209190614937565b60405180910390f35b34801561083557600080fd5b5061083e611dad565b60405161084b91906145ba565b60405180910390f35b34801561086057600080fd5b5061087b600480360381019061087691906137d1565b611dc0565b005b34801561088957600080fd5b506108a4600480360381019061089f919061388e565b611dd6565b005b3480156108b257600080fd5b506108cd60048036038101906108c89190613849565b611e6f565b005b3480156108db57600080fd5b506108f660048036038101906108f19190613756565b611fad565b005b34801561090457600080fd5b5061090d61200f565b60405161091a9190614937565b60405180910390f35b34801561092f57600080fd5b5061094a60048036038101906109459190613973565b612015565b005b34801561095857600080fd5b5061096161219b565b60405161096e9190614937565b60405180910390f35b34801561098357600080fd5b5061099e6004803603810190610999919061394a565b6121a1565b6040516109ab91906145d5565b60405180910390f35b3480156109c057600080fd5b506109db60048036038101906109d69190613973565b612248565b005b3480156109e957600080fd5b50610a0460048036038101906109ff919061394a565b6123c3565b005b348015610a1257600080fd5b50610a2d6004803603810190610a28919061394a565b612449565b005b348015610a3b57600080fd5b50610a566004803603810190610a5191906136cb565b612526565b604051610a6391906145ba565b60405180910390f35b348015610a7857600080fd5b50610a816125ba565b604051610a8e9190614937565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab991906136a2565b6125c0565b005b348015610acc57600080fd5b50610ad56126b8565b604051610ae29190614937565b60405180910390f35b348015610af757600080fd5b50610b006126be565b604051610b0d9190614937565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610be157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bf15750610bf0826126c3565b5b9050919050565b600c5481565b600f5481565b606060008054610c1390614c30565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3f90614c30565b8015610c8c5780601f10610c6157610100808354040283529160200191610c8c565b820191906000526020600020905b815481529060010190602001808311610c6f57829003601f168201915b5050505050905090565b6000610ca18261272d565b610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd7906147b7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d2682611463565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90614877565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610db6612799565b73ffffffffffffffffffffffffffffffffffffffff161480610de55750610de481610ddf612799565b612526565b5b610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90614717565b60405180910390fd5b610e2e83836127a1565b505050565b6000610e3f600761285a565b905090565b60136020528060005260406000206000915090505481565b601160009054906101000a900460ff1681565b600d5481565b610e86610e80612799565b82612868565b610ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebc906148b7565b60405180910390fd5b610ed0838383612946565b505050565b60098054610ee290614c30565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0e90614c30565b8015610f5b5780601f10610f3057610100808354040283529160200191610f5b565b820191906000526020600020905b815481529060010190602001808311610f3e57829003601f168201915b505050505081565b610f6b612799565b73ffffffffffffffffffffffffffffffffffffffff16610f896119c1565b73ffffffffffffffffffffffffffffffffffffffff1614610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd6906147d7565b60405180910390fd5b60005b828290508110156110a55760016014600085858581811061102c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061104191906136a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061109d90614c62565b915050610fe2565b505050565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611108612799565b73ffffffffffffffffffffffffffffffffffffffff166111266119c1565b73ffffffffffffffffffffffffffffffffffffffff161461117c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611173906147d7565b60405180910390fd5b611184610e33565b611b396111919190614b1c565b8711156111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca906148d7565b60405180910390fd5b86600b819055508560088190555084600990805190602001906111f792919061347c565b5083600d8190555082600e8190555081600c8190555080600a908051906020019061122392919061347c565b5050505050505050565b60606000600961123e600b54612ba2565b611249600c54612ba2565b611254600854612ba2565b61125f600d54612ba2565b600a604051602001611276969594939291906144c4565b60405160208183030381529060405290508091505090565b611296612799565b73ffffffffffffffffffffffffffffffffffffffff166112b46119c1565b73ffffffffffffffffffffffffffffffffffffffff161461130a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611301906147d7565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b61134283838360405180602001604052806000815250611fad565b505050565b61134f612799565b73ffffffffffffffffffffffffffffffffffffffff1661136d6119c1565b73ffffffffffffffffffffffffffffffffffffffff16146113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba906147d7565b60405180910390fd5b8060088190555050565b6113d5612799565b73ffffffffffffffffffffffffffffffffffffffff166113f36119c1565b73ffffffffffffffffffffffffffffffffffffffff1614611449576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611440906147d7565b60405180910390fd5b806012908051906020019061145f92919061347c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390614757565b60405180910390fd5b80915050919050565b6012805461152290614c30565b80601f016020809104026020016040519081016040528092919081815260200182805461154e90614c30565b801561159b5780601f106115705761010080835404028352916020019161159b565b820191906000526020600020905b81548152906001019060200180831161157e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614737565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060611665612799565b73ffffffffffffffffffffffffffffffffffffffff166116836119c1565b73ffffffffffffffffffffffffffffffffffffffff16146116d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d0906147d7565b60405180910390fd5b601280546116e690614c30565b80601f016020809104026020016040519081016040528092919081815260200182805461171290614c30565b801561175f5780601f106117345761010080835404028352916020019161175f565b820191906000526020600020905b81548152906001019060200180831161174257829003601f168201915b5050505050905090565b611771612799565b73ffffffffffffffffffffffffffffffffffffffff1661178f6119c1565b73ffffffffffffffffffffffffffffffffffffffff16146117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc906147d7565b60405180910390fd5b6117ef6000612d4f565b565b6117f9612799565b73ffffffffffffffffffffffffffffffffffffffff166118176119c1565b73ffffffffffffffffffffffffffffffffffffffff161461186d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611864906147d7565b60405180910390fd5b80600d8190555050565b61187f612799565b73ffffffffffffffffffffffffffffffffffffffff1661189d6119c1565b73ffffffffffffffffffffffffffffffffffffffff16146118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea906147d7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061193157600080fd5b565b600a805461194090614c30565b80601f016020809104026020016040519081016040528092919081815260200182805461196c90614c30565b80156119b95780601f1061198e576101008083540402835291602001916119b9565b820191906000526020600020905b81548152906001019060200180831161199c57829003601f168201915b505050505081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008111611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2590614917565b60405180910390fd5b600d54811115611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a90614657565b60405180910390fd5b80600854611a819190614ac2565b341015611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba906146d7565b60405180910390fd5b60011515601160009054906101000a900460ff16151514611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b10906148f7565b60405180910390fd5b600b54811115611b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5590614897565b60405180910390fd5b60011515601160019054906101000a900460ff1615151415611c5857611b83336110aa565b611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb9906146f7565b60405180910390fd5b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548282611c159190614a3b565b1115611c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4d90614857565b60405180910390fd5b505b6000600190505b818111611d1157601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611cb690614c62565b9190505550611cc56007612e15565b600b6000815480929190611cd890614c06565b91905055506001601054611cec9190614a3b565b601081905550611cfe33601054612e2b565b8080611d0990614c62565b915050611c5f565b5050565b606060018054611d2490614c30565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5090614c30565b8015611d9d5780601f10611d7257610100808354040283529160200191611d9d565b820191906000526020600020905b815481529060010190602001808311611d8057829003601f168201915b5050505050905090565b600b5481565b601160019054906101000a900460ff1681565b611dd2611dcb612799565b8383612e49565b5050565b611dde612799565b73ffffffffffffffffffffffffffffffffffffffff16611dfc6119c1565b73ffffffffffffffffffffffffffffffffffffffff1614611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e49906147d7565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b611e77612799565b73ffffffffffffffffffffffffffffffffffffffff16611e956119c1565b73ffffffffffffffffffffffffffffffffffffffff1614611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee2906147d7565b60405180910390fd5b60005b82829050811015611fa85760146000848484818110611f36577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611f4b91906136a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690558080611fa090614c62565b915050611eee565b505050565b611fbe611fb8612799565b83612868565b611ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff4906148b7565b60405180910390fd5b61200984848484612fb6565b50505050565b600e5481565b61201d612799565b73ffffffffffffffffffffffffffffffffffffffff1661203b6119c1565b73ffffffffffffffffffffffffffffffffffffffff1614612091576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612088906147d7565b60405180910390fd5b600082600f546120a19190614a3b565b11156120e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d990614837565b60405180910390fd5b6000600190505b828111612196576120fa6007612e15565b6001600f546121099190614a3b565b600f819055506000611b39600f546121219190614a3b565b9050601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061217390614c62565b91905055506121828382612e2b565b50808061218e90614c62565b9150506120e9565b505050565b60085481565b60606121ac8261272d565b6121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614817565b60405180910390fd5b60006121f5613012565b905060008151116122155760405180602001604052806000815250612240565b8061221f84612ba2565b6040516020016122309291906144a0565b6040516020818303038152906040525b915050919050565b612250612799565b73ffffffffffffffffffffffffffffffffffffffff1661226e6119c1565b73ffffffffffffffffffffffffffffffffffffffff16146122c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bb906147d7565b60405180910390fd5b611b39826122d2600761285a565b6122dc9190614a3b565b111561231d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612314906148d7565b60405180910390fd5b6000600190505b8281116123be576123356007612e15565b60016010546123449190614a3b565b601081905550601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061239a90614c62565b91905055506123ab82601054612e2b565b80806123b690614c62565b915050612324565b505050565b6123cb612799565b73ffffffffffffffffffffffffffffffffffffffff166123e96119c1565b73ffffffffffffffffffffffffffffffffffffffff161461243f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612436906147d7565b60405180910390fd5b80600e8190555050565b612451612799565b73ffffffffffffffffffffffffffffffffffffffff1661246f6119c1565b73ffffffffffffffffffffffffffffffffffffffff16146124c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bc906147d7565b60405180910390fd5b6124cd610e33565b611b396124da9190614b1c565b81111561251c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251390614777565b60405180910390fd5b80600b8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60105481565b6125c8612799565b73ffffffffffffffffffffffffffffffffffffffff166125e66119c1565b73ffffffffffffffffffffffffffffffffffffffff161461263c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612633906147d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a390614617565b60405180910390fd5b6126b581612d4f565b50565b611b3981565b600081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661281483611463565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006128738261272d565b6128b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a9906146b7565b60405180910390fd5b60006128bd83611463565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061292c57508373ffffffffffffffffffffffffffffffffffffffff1661291484610c96565b73ffffffffffffffffffffffffffffffffffffffff16145b8061293d575061293c8185612526565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661296682611463565b73ffffffffffffffffffffffffffffffffffffffff16146129bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b3906147f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2390614677565b60405180910390fd5b612a378383836130a4565b612a426000826127a1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a929190614b1c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ae99190614a3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60606000821415612bea576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d4a565b600082905060005b60008214612c1c578080612c0590614c62565b915050600a82612c159190614a91565b9150612bf2565b60008167ffffffffffffffff811115612c5e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c905781602001600182028036833780820191505090505b5090505b60008514612d4357600182612ca99190614b1c565b9150600a85612cb89190614cab565b6030612cc49190614a3b565b60f81b818381518110612d00577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d3c9190614a91565b9450612c94565b8093505050505b919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b612e458282604051806020016040528060008152506130a9565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eaf90614697565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fa991906145ba565b60405180910390a3505050565b612fc1848484612946565b612fcd84848484613104565b61300c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613003906145f7565b60405180910390fd5b50505050565b60606012805461302190614c30565b80601f016020809104026020016040519081016040528092919081815260200182805461304d90614c30565b801561309a5780601f1061306f5761010080835404028352916020019161309a565b820191906000526020600020905b81548152906001019060200180831161307d57829003601f168201915b5050505050905090565b505050565b6130b3838361329b565b6130c06000848484613104565b6130ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f6906145f7565b60405180910390fd5b505050565b60006131258473ffffffffffffffffffffffffffffffffffffffff16613469565b1561328e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261314e612799565b8786866040518563ffffffff1660e01b8152600401613170949392919061456e565b602060405180830381600087803b15801561318a57600080fd5b505af19250505080156131bb57506040513d601f19601f820116820180604052508101906131b891906138e0565b60015b61323e573d80600081146131eb576040519150601f19603f3d011682016040523d82523d6000602084013e6131f0565b606091505b50600081511415613236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322d906145f7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613293565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561330b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330290614797565b60405180910390fd5b6133148161272d565b15613354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334b90614637565b60405180910390fd5b613360600083836130a4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133b09190614a3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461348890614c30565b90600052602060002090601f0160209004810192826134aa57600085556134f1565b82601f106134c357805160ff19168380011785556134f1565b828001600101855582156134f1579182015b828111156134f05782518255916020019190600101906134d5565b5b5090506134fe9190613502565b5090565b5b8082111561351b576000816000905550600101613503565b5090565b600061353261352d84614983565b614952565b90508281526020810184848401111561354a57600080fd5b613555848285614bc4565b509392505050565b600061357061356b846149b3565b614952565b90508281526020810184848401111561358857600080fd5b613593848285614bc4565b509392505050565b6000813590506135aa81614da9565b92915050565b60008083601f8401126135c257600080fd5b8235905067ffffffffffffffff8111156135db57600080fd5b6020830191508360208202830111156135f357600080fd5b9250929050565b60008135905061360981614dc0565b92915050565b60008135905061361e81614dd7565b92915050565b60008151905061363381614dd7565b92915050565b600082601f83011261364a57600080fd5b813561365a84826020860161351f565b91505092915050565b600082601f83011261367457600080fd5b813561368484826020860161355d565b91505092915050565b60008135905061369c81614dee565b92915050565b6000602082840312156136b457600080fd5b60006136c28482850161359b565b91505092915050565b600080604083850312156136de57600080fd5b60006136ec8582860161359b565b92505060206136fd8582860161359b565b9150509250929050565b60008060006060848603121561371c57600080fd5b600061372a8682870161359b565b935050602061373b8682870161359b565b925050604061374c8682870161368d565b9150509250925092565b6000806000806080858703121561376c57600080fd5b600061377a8782880161359b565b945050602061378b8782880161359b565b935050604061379c8782880161368d565b925050606085013567ffffffffffffffff8111156137b957600080fd5b6137c587828801613639565b91505092959194509250565b600080604083850312156137e457600080fd5b60006137f28582860161359b565b9250506020613803858286016135fa565b9150509250929050565b6000806040838503121561382057600080fd5b600061382e8582860161359b565b925050602061383f8582860161368d565b9150509250929050565b6000806020838503121561385c57600080fd5b600083013567ffffffffffffffff81111561387657600080fd5b613882858286016135b0565b92509250509250929050565b6000602082840312156138a057600080fd5b60006138ae848285016135fa565b91505092915050565b6000602082840312156138c957600080fd5b60006138d78482850161360f565b91505092915050565b6000602082840312156138f257600080fd5b600061390084828501613624565b91505092915050565b60006020828403121561391b57600080fd5b600082013567ffffffffffffffff81111561393557600080fd5b61394184828501613663565b91505092915050565b60006020828403121561395c57600080fd5b600061396a8482850161368d565b91505092915050565b6000806040838503121561398657600080fd5b60006139948582860161368d565b92505060206139a58582860161359b565b9150509250929050565b600080600080600080600060e0888a0312156139ca57600080fd5b60006139d88a828b0161368d565b97505060206139e98a828b0161368d565b965050604088013567ffffffffffffffff811115613a0657600080fd5b613a128a828b01613663565b9550506060613a238a828b0161368d565b9450506080613a348a828b0161368d565b93505060a0613a458a828b0161368d565b92505060c088013567ffffffffffffffff811115613a6257600080fd5b613a6e8a828b01613663565b91505092959891949750929550565b613a8681614b50565b82525050565b613a9581614b62565b82525050565b6000613aa6826149f8565b613ab08185614a0e565b9350613ac0818560208601614bd3565b613ac981614d98565b840191505092915050565b6000613adf82614a03565b613ae98185614a1f565b9350613af9818560208601614bd3565b613b0281614d98565b840191505092915050565b6000613b1882614a03565b613b228185614a30565b9350613b32818560208601614bd3565b80840191505092915050565b60008154613b4b81614c30565b613b558186614a30565b94506001821660008114613b705760018114613b8157613bb4565b60ff19831686528186019350613bb4565b613b8a856149e3565b60005b83811015613bac57815481890152600182019150602081019050613b8d565b838801955050505b50505092915050565b6000613bca603283614a1f565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613c30602683614a1f565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c96601c83614a1f565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613cd6602883614a1f565b91507f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008301527f65786365656465640000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d3c600183614a30565b91507f2c000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b6000613d7c602483614a1f565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613de2601983614a1f565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613e22602c83614a1f565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e88601283614a1f565b91507f496e73756666696369656e742066756e647300000000000000000000000000006000830152602082019050919050565b6000613ec8601783614a1f565b91507f55736572206973206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b6000613f08603883614a1f565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613f6e602a83614a1f565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fd4602983614a1f565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061403a603183614a1f565b91507f43616e277420616464206e657720636861726163746572204e4654732e20576f60008301527f756c642065786365656420737570706c790000000000000000000000000000006020830152604082019050919050565b60006140a0602083614a1f565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006140e0602c83614a1f565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614146602083614a1f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614186602983614a1f565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006141ec602f83614a1f565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614252601383614a1f565b91507f45786365656465642056495020737570706c79000000000000000000000000006000830152602082019050919050565b6000614292601c83614a1f565b91507f4d6178204e4654207065722061646472657373206578636565646564000000006000830152602082019050919050565b60006142d2602183614a1f565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614338601483614a1f565b91507f5765277265206174206d617820737570706c79210000000000000000000000006000830152602082019050919050565b6000614378603183614a1f565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006143de600f83614a1f565b91507f457863656564656420737570706c7900000000000000000000000000000000006000830152602082019050919050565b600061441e601383614a1f565b91507f53616c65206861736e27742073746172746564000000000000000000000000006000830152602082019050919050565b600061445e601b83614a1f565b91507f4e65656420746f206d696e74206174206c656173742031204e465400000000006000830152602082019050919050565b61449a81614bba565b82525050565b60006144ac8285613b0d565b91506144b88284613b0d565b91508190509392505050565b60006144d08289613b3e565b91506144db82613d2f565b91506144e78288613b0d565b91506144f282613d2f565b91506144fe8287613b0d565b915061450982613d2f565b91506145158286613b0d565b915061452082613d2f565b915061452c8285613b0d565b915061453782613d2f565b91506145438284613b3e565b9150819050979650505050505050565b60006020820190506145686000830184613a7d565b92915050565b60006080820190506145836000830187613a7d565b6145906020830186613a7d565b61459d6040830185614491565b81810360608301526145af8184613a9b565b905095945050505050565b60006020820190506145cf6000830184613a8c565b92915050565b600060208201905081810360008301526145ef8184613ad4565b905092915050565b6000602082019050818103600083015261461081613bbd565b9050919050565b6000602082019050818103600083015261463081613c23565b9050919050565b6000602082019050818103600083015261465081613c89565b9050919050565b6000602082019050818103600083015261467081613cc9565b9050919050565b6000602082019050818103600083015261469081613d6f565b9050919050565b600060208201905081810360008301526146b081613dd5565b9050919050565b600060208201905081810360008301526146d081613e15565b9050919050565b600060208201905081810360008301526146f081613e7b565b9050919050565b6000602082019050818103600083015261471081613ebb565b9050919050565b6000602082019050818103600083015261473081613efb565b9050919050565b6000602082019050818103600083015261475081613f61565b9050919050565b6000602082019050818103600083015261477081613fc7565b9050919050565b600060208201905081810360008301526147908161402d565b9050919050565b600060208201905081810360008301526147b081614093565b9050919050565b600060208201905081810360008301526147d0816140d3565b9050919050565b600060208201905081810360008301526147f081614139565b9050919050565b6000602082019050818103600083015261481081614179565b9050919050565b60006020820190508181036000830152614830816141df565b9050919050565b6000602082019050818103600083015261485081614245565b9050919050565b6000602082019050818103600083015261487081614285565b9050919050565b60006020820190508181036000830152614890816142c5565b9050919050565b600060208201905081810360008301526148b08161432b565b9050919050565b600060208201905081810360008301526148d08161436b565b9050919050565b600060208201905081810360008301526148f0816143d1565b9050919050565b6000602082019050818103600083015261491081614411565b9050919050565b6000602082019050818103600083015261493081614451565b9050919050565b600060208201905061494c6000830184614491565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561497957614978614d69565b5b8060405250919050565b600067ffffffffffffffff82111561499e5761499d614d69565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156149ce576149cd614d69565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a4682614bba565b9150614a5183614bba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a8657614a85614cdc565b5b828201905092915050565b6000614a9c82614bba565b9150614aa783614bba565b925082614ab757614ab6614d0b565b5b828204905092915050565b6000614acd82614bba565b9150614ad883614bba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b1157614b10614cdc565b5b828202905092915050565b6000614b2782614bba565b9150614b3283614bba565b925082821015614b4557614b44614cdc565b5b828203905092915050565b6000614b5b82614b9a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614bf1578082015181840152602081019050614bd6565b83811115614c00576000848401525b50505050565b6000614c1182614bba565b91506000821415614c2557614c24614cdc565b5b600182039050919050565b60006002820490506001821680614c4857607f821691505b60208210811415614c5c57614c5b614d3a565b5b50919050565b6000614c6d82614bba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ca057614c9f614cdc565b5b600182019050919050565b6000614cb682614bba565b9150614cc183614bba565b925082614cd157614cd0614d0b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614db281614b50565b8114614dbd57600080fd5b50565b614dc981614b62565b8114614dd457600080fd5b50565b614de081614b6e565b8114614deb57600080fd5b50565b614df781614bba565b8114614e0257600080fd5b5056fea2646970667358221220202e31c7e324b05f40df3fd72ef4136b5ae1108207be0964fdccef61702d253864736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c8063715018a611610175578063b88d4fde116100dc578063d0eb26b011610095578063ef0de0aa1161006f578063ef0de0aa14610a6c578063f2fde38b14610a97578063f47c84c514610ac0578063f79e66ba14610aeb576102ae565b8063d0eb26b0146109dd578063dc54730114610a06578063e985e9c514610a2f576102ae565b8063b88d4fde146108cf578063ba7d2c76146108f8578063bff84fc514610923578063c34278441461094c578063c87b56dd14610977578063cc0b8d15146109b4576102ae565b806395d89b411161012e57806395d89b41146107d357806397000de1146107fe5780639c70b51214610829578063a22cb46514610854578063a854ffba1461087d578063b83921a6146108a6576102ae565b8063715018a6146107175780637f00c7a61461072e578063853828b6146107575780638626af27146107615780638da5cb5b1461078c57806392642744146107b7576102ae565b80632bf043041161021957806344a0d68a116101d257806344a0d68a146105f557806355f804b31461061e5780636352211e146106475780636c0360eb1461068457806370a08231146106af578063714c5398146106ec576102ae565b80632bf04304146104e95780633af32abf146105125780633b557f561461054f5780633c5e310b146105785780633c952764146105a357806342842e0e146105cc576102ae565b806318160ddd1161026b57806318160ddd146103d757806318cae269146104025780631c8b232d1461043f578063239c70ae1461046a57806323b872dd1461049557806329540530146104be576102ae565b806301ffc9a7146102b3578063027b2513146102f0578063042ebb481461031b57806306fdde0314610346578063081812fc14610371578063095ea7b3146103ae575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d591906138b7565b610b16565b6040516102e791906145ba565b60405180910390f35b3480156102fc57600080fd5b50610305610bf8565b6040516103129190614937565b60405180910390f35b34801561032757600080fd5b50610330610bfe565b60405161033d9190614937565b60405180910390f35b34801561035257600080fd5b5061035b610c04565b60405161036891906145d5565b60405180910390f35b34801561037d57600080fd5b506103986004803603810190610393919061394a565b610c96565b6040516103a59190614553565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d0919061380d565b610d1b565b005b3480156103e357600080fd5b506103ec610e33565b6040516103f99190614937565b60405180910390f35b34801561040e57600080fd5b50610429600480360381019061042491906136a2565b610e44565b6040516104369190614937565b60405180910390f35b34801561044b57600080fd5b50610454610e5c565b60405161046191906145ba565b60405180910390f35b34801561047657600080fd5b5061047f610e6f565b60405161048c9190614937565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190613707565b610e75565b005b3480156104ca57600080fd5b506104d3610ed5565b6040516104e091906145d5565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190613849565b610f63565b005b34801561051e57600080fd5b50610539600480360381019061053491906136a2565b6110aa565b60405161054691906145ba565b60405180910390f35b34801561055b57600080fd5b50610576600480360381019061057191906139af565b611100565b005b34801561058457600080fd5b5061058d61122d565b60405161059a91906145d5565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c5919061388e565b61128e565b005b3480156105d857600080fd5b506105f360048036038101906105ee9190613707565b611327565b005b34801561060157600080fd5b5061061c6004803603810190610617919061394a565b611347565b005b34801561062a57600080fd5b5061064560048036038101906106409190613909565b6113cd565b005b34801561065357600080fd5b5061066e6004803603810190610669919061394a565b611463565b60405161067b9190614553565b60405180910390f35b34801561069057600080fd5b50610699611515565b6040516106a691906145d5565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d191906136a2565b6115a3565b6040516106e39190614937565b60405180910390f35b3480156106f857600080fd5b5061070161165b565b60405161070e91906145d5565b60405180910390f35b34801561072357600080fd5b5061072c611769565b005b34801561073a57600080fd5b506107556004803603810190610750919061394a565b6117f1565b005b61075f611877565b005b34801561076d57600080fd5b50610776611933565b60405161078391906145d5565b60405180910390f35b34801561079857600080fd5b506107a16119c1565b6040516107ae9190614553565b60405180910390f35b6107d160048036038101906107cc919061394a565b6119eb565b005b3480156107df57600080fd5b506107e8611d15565b6040516107f591906145d5565b60405180910390f35b34801561080a57600080fd5b50610813611da7565b6040516108209190614937565b60405180910390f35b34801561083557600080fd5b5061083e611dad565b60405161084b91906145ba565b60405180910390f35b34801561086057600080fd5b5061087b600480360381019061087691906137d1565b611dc0565b005b34801561088957600080fd5b506108a4600480360381019061089f919061388e565b611dd6565b005b3480156108b257600080fd5b506108cd60048036038101906108c89190613849565b611e6f565b005b3480156108db57600080fd5b506108f660048036038101906108f19190613756565b611fad565b005b34801561090457600080fd5b5061090d61200f565b60405161091a9190614937565b60405180910390f35b34801561092f57600080fd5b5061094a60048036038101906109459190613973565b612015565b005b34801561095857600080fd5b5061096161219b565b60405161096e9190614937565b60405180910390f35b34801561098357600080fd5b5061099e6004803603810190610999919061394a565b6121a1565b6040516109ab91906145d5565b60405180910390f35b3480156109c057600080fd5b506109db60048036038101906109d69190613973565b612248565b005b3480156109e957600080fd5b50610a0460048036038101906109ff919061394a565b6123c3565b005b348015610a1257600080fd5b50610a2d6004803603810190610a28919061394a565b612449565b005b348015610a3b57600080fd5b50610a566004803603810190610a5191906136cb565b612526565b604051610a6391906145ba565b60405180910390f35b348015610a7857600080fd5b50610a816125ba565b604051610a8e9190614937565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab991906136a2565b6125c0565b005b348015610acc57600080fd5b50610ad56126b8565b604051610ae29190614937565b60405180910390f35b348015610af757600080fd5b50610b006126be565b604051610b0d9190614937565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610be157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bf15750610bf0826126c3565b5b9050919050565b600c5481565b600f5481565b606060008054610c1390614c30565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3f90614c30565b8015610c8c5780601f10610c6157610100808354040283529160200191610c8c565b820191906000526020600020905b815481529060010190602001808311610c6f57829003601f168201915b5050505050905090565b6000610ca18261272d565b610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd7906147b7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d2682611463565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90614877565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610db6612799565b73ffffffffffffffffffffffffffffffffffffffff161480610de55750610de481610ddf612799565b612526565b5b610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90614717565b60405180910390fd5b610e2e83836127a1565b505050565b6000610e3f600761285a565b905090565b60136020528060005260406000206000915090505481565b601160009054906101000a900460ff1681565b600d5481565b610e86610e80612799565b82612868565b610ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebc906148b7565b60405180910390fd5b610ed0838383612946565b505050565b60098054610ee290614c30565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0e90614c30565b8015610f5b5780601f10610f3057610100808354040283529160200191610f5b565b820191906000526020600020905b815481529060010190602001808311610f3e57829003601f168201915b505050505081565b610f6b612799565b73ffffffffffffffffffffffffffffffffffffffff16610f896119c1565b73ffffffffffffffffffffffffffffffffffffffff1614610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd6906147d7565b60405180910390fd5b60005b828290508110156110a55760016014600085858581811061102c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061104191906136a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061109d90614c62565b915050610fe2565b505050565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611108612799565b73ffffffffffffffffffffffffffffffffffffffff166111266119c1565b73ffffffffffffffffffffffffffffffffffffffff161461117c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611173906147d7565b60405180910390fd5b611184610e33565b611b396111919190614b1c565b8711156111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca906148d7565b60405180910390fd5b86600b819055508560088190555084600990805190602001906111f792919061347c565b5083600d8190555082600e8190555081600c8190555080600a908051906020019061122392919061347c565b5050505050505050565b60606000600961123e600b54612ba2565b611249600c54612ba2565b611254600854612ba2565b61125f600d54612ba2565b600a604051602001611276969594939291906144c4565b60405160208183030381529060405290508091505090565b611296612799565b73ffffffffffffffffffffffffffffffffffffffff166112b46119c1565b73ffffffffffffffffffffffffffffffffffffffff161461130a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611301906147d7565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b61134283838360405180602001604052806000815250611fad565b505050565b61134f612799565b73ffffffffffffffffffffffffffffffffffffffff1661136d6119c1565b73ffffffffffffffffffffffffffffffffffffffff16146113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba906147d7565b60405180910390fd5b8060088190555050565b6113d5612799565b73ffffffffffffffffffffffffffffffffffffffff166113f36119c1565b73ffffffffffffffffffffffffffffffffffffffff1614611449576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611440906147d7565b60405180910390fd5b806012908051906020019061145f92919061347c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390614757565b60405180910390fd5b80915050919050565b6012805461152290614c30565b80601f016020809104026020016040519081016040528092919081815260200182805461154e90614c30565b801561159b5780601f106115705761010080835404028352916020019161159b565b820191906000526020600020905b81548152906001019060200180831161157e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614737565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060611665612799565b73ffffffffffffffffffffffffffffffffffffffff166116836119c1565b73ffffffffffffffffffffffffffffffffffffffff16146116d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d0906147d7565b60405180910390fd5b601280546116e690614c30565b80601f016020809104026020016040519081016040528092919081815260200182805461171290614c30565b801561175f5780601f106117345761010080835404028352916020019161175f565b820191906000526020600020905b81548152906001019060200180831161174257829003601f168201915b5050505050905090565b611771612799565b73ffffffffffffffffffffffffffffffffffffffff1661178f6119c1565b73ffffffffffffffffffffffffffffffffffffffff16146117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc906147d7565b60405180910390fd5b6117ef6000612d4f565b565b6117f9612799565b73ffffffffffffffffffffffffffffffffffffffff166118176119c1565b73ffffffffffffffffffffffffffffffffffffffff161461186d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611864906147d7565b60405180910390fd5b80600d8190555050565b61187f612799565b73ffffffffffffffffffffffffffffffffffffffff1661189d6119c1565b73ffffffffffffffffffffffffffffffffffffffff16146118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea906147d7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061193157600080fd5b565b600a805461194090614c30565b80601f016020809104026020016040519081016040528092919081815260200182805461196c90614c30565b80156119b95780601f1061198e576101008083540402835291602001916119b9565b820191906000526020600020905b81548152906001019060200180831161199c57829003601f168201915b505050505081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008111611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2590614917565b60405180910390fd5b600d54811115611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a90614657565b60405180910390fd5b80600854611a819190614ac2565b341015611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba906146d7565b60405180910390fd5b60011515601160009054906101000a900460ff16151514611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b10906148f7565b60405180910390fd5b600b54811115611b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5590614897565b60405180910390fd5b60011515601160019054906101000a900460ff1615151415611c5857611b83336110aa565b611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb9906146f7565b60405180910390fd5b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548282611c159190614a3b565b1115611c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4d90614857565b60405180910390fd5b505b6000600190505b818111611d1157601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611cb690614c62565b9190505550611cc56007612e15565b600b6000815480929190611cd890614c06565b91905055506001601054611cec9190614a3b565b601081905550611cfe33601054612e2b565b8080611d0990614c62565b915050611c5f565b5050565b606060018054611d2490614c30565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5090614c30565b8015611d9d5780601f10611d7257610100808354040283529160200191611d9d565b820191906000526020600020905b815481529060010190602001808311611d8057829003601f168201915b5050505050905090565b600b5481565b601160019054906101000a900460ff1681565b611dd2611dcb612799565b8383612e49565b5050565b611dde612799565b73ffffffffffffffffffffffffffffffffffffffff16611dfc6119c1565b73ffffffffffffffffffffffffffffffffffffffff1614611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e49906147d7565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b611e77612799565b73ffffffffffffffffffffffffffffffffffffffff16611e956119c1565b73ffffffffffffffffffffffffffffffffffffffff1614611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee2906147d7565b60405180910390fd5b60005b82829050811015611fa85760146000848484818110611f36577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611f4b91906136a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690558080611fa090614c62565b915050611eee565b505050565b611fbe611fb8612799565b83612868565b611ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff4906148b7565b60405180910390fd5b61200984848484612fb6565b50505050565b600e5481565b61201d612799565b73ffffffffffffffffffffffffffffffffffffffff1661203b6119c1565b73ffffffffffffffffffffffffffffffffffffffff1614612091576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612088906147d7565b60405180910390fd5b600082600f546120a19190614a3b565b11156120e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d990614837565b60405180910390fd5b6000600190505b828111612196576120fa6007612e15565b6001600f546121099190614a3b565b600f819055506000611b39600f546121219190614a3b565b9050601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061217390614c62565b91905055506121828382612e2b565b50808061218e90614c62565b9150506120e9565b505050565b60085481565b60606121ac8261272d565b6121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614817565b60405180910390fd5b60006121f5613012565b905060008151116122155760405180602001604052806000815250612240565b8061221f84612ba2565b6040516020016122309291906144a0565b6040516020818303038152906040525b915050919050565b612250612799565b73ffffffffffffffffffffffffffffffffffffffff1661226e6119c1565b73ffffffffffffffffffffffffffffffffffffffff16146122c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bb906147d7565b60405180910390fd5b611b39826122d2600761285a565b6122dc9190614a3b565b111561231d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612314906148d7565b60405180910390fd5b6000600190505b8281116123be576123356007612e15565b60016010546123449190614a3b565b601081905550601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061239a90614c62565b91905055506123ab82601054612e2b565b80806123b690614c62565b915050612324565b505050565b6123cb612799565b73ffffffffffffffffffffffffffffffffffffffff166123e96119c1565b73ffffffffffffffffffffffffffffffffffffffff161461243f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612436906147d7565b60405180910390fd5b80600e8190555050565b612451612799565b73ffffffffffffffffffffffffffffffffffffffff1661246f6119c1565b73ffffffffffffffffffffffffffffffffffffffff16146124c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bc906147d7565b60405180910390fd5b6124cd610e33565b611b396124da9190614b1c565b81111561251c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251390614777565b60405180910390fd5b80600b8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60105481565b6125c8612799565b73ffffffffffffffffffffffffffffffffffffffff166125e66119c1565b73ffffffffffffffffffffffffffffffffffffffff161461263c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612633906147d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a390614617565b60405180910390fd5b6126b581612d4f565b50565b611b3981565b600081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661281483611463565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006128738261272d565b6128b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a9906146b7565b60405180910390fd5b60006128bd83611463565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061292c57508373ffffffffffffffffffffffffffffffffffffffff1661291484610c96565b73ffffffffffffffffffffffffffffffffffffffff16145b8061293d575061293c8185612526565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661296682611463565b73ffffffffffffffffffffffffffffffffffffffff16146129bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b3906147f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2390614677565b60405180910390fd5b612a378383836130a4565b612a426000826127a1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a929190614b1c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ae99190614a3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60606000821415612bea576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d4a565b600082905060005b60008214612c1c578080612c0590614c62565b915050600a82612c159190614a91565b9150612bf2565b60008167ffffffffffffffff811115612c5e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c905781602001600182028036833780820191505090505b5090505b60008514612d4357600182612ca99190614b1c565b9150600a85612cb89190614cab565b6030612cc49190614a3b565b60f81b818381518110612d00577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d3c9190614a91565b9450612c94565b8093505050505b919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b612e458282604051806020016040528060008152506130a9565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eaf90614697565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fa991906145ba565b60405180910390a3505050565b612fc1848484612946565b612fcd84848484613104565b61300c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613003906145f7565b60405180910390fd5b50505050565b60606012805461302190614c30565b80601f016020809104026020016040519081016040528092919081815260200182805461304d90614c30565b801561309a5780601f1061306f5761010080835404028352916020019161309a565b820191906000526020600020905b81548152906001019060200180831161307d57829003601f168201915b5050505050905090565b505050565b6130b3838361329b565b6130c06000848484613104565b6130ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f6906145f7565b60405180910390fd5b505050565b60006131258473ffffffffffffffffffffffffffffffffffffffff16613469565b1561328e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261314e612799565b8786866040518563ffffffff1660e01b8152600401613170949392919061456e565b602060405180830381600087803b15801561318a57600080fd5b505af19250505080156131bb57506040513d601f19601f820116820180604052508101906131b891906138e0565b60015b61323e573d80600081146131eb576040519150601f19603f3d011682016040523d82523d6000602084013e6131f0565b606091505b50600081511415613236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322d906145f7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613293565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561330b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330290614797565b60405180910390fd5b6133148161272d565b15613354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334b90614637565b60405180910390fd5b613360600083836130a4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133b09190614a3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461348890614c30565b90600052602060002090601f0160209004810192826134aa57600085556134f1565b82601f106134c357805160ff19168380011785556134f1565b828001600101855582156134f1579182015b828111156134f05782518255916020019190600101906134d5565b5b5090506134fe9190613502565b5090565b5b8082111561351b576000816000905550600101613503565b5090565b600061353261352d84614983565b614952565b90508281526020810184848401111561354a57600080fd5b613555848285614bc4565b509392505050565b600061357061356b846149b3565b614952565b90508281526020810184848401111561358857600080fd5b613593848285614bc4565b509392505050565b6000813590506135aa81614da9565b92915050565b60008083601f8401126135c257600080fd5b8235905067ffffffffffffffff8111156135db57600080fd5b6020830191508360208202830111156135f357600080fd5b9250929050565b60008135905061360981614dc0565b92915050565b60008135905061361e81614dd7565b92915050565b60008151905061363381614dd7565b92915050565b600082601f83011261364a57600080fd5b813561365a84826020860161351f565b91505092915050565b600082601f83011261367457600080fd5b813561368484826020860161355d565b91505092915050565b60008135905061369c81614dee565b92915050565b6000602082840312156136b457600080fd5b60006136c28482850161359b565b91505092915050565b600080604083850312156136de57600080fd5b60006136ec8582860161359b565b92505060206136fd8582860161359b565b9150509250929050565b60008060006060848603121561371c57600080fd5b600061372a8682870161359b565b935050602061373b8682870161359b565b925050604061374c8682870161368d565b9150509250925092565b6000806000806080858703121561376c57600080fd5b600061377a8782880161359b565b945050602061378b8782880161359b565b935050604061379c8782880161368d565b925050606085013567ffffffffffffffff8111156137b957600080fd5b6137c587828801613639565b91505092959194509250565b600080604083850312156137e457600080fd5b60006137f28582860161359b565b9250506020613803858286016135fa565b9150509250929050565b6000806040838503121561382057600080fd5b600061382e8582860161359b565b925050602061383f8582860161368d565b9150509250929050565b6000806020838503121561385c57600080fd5b600083013567ffffffffffffffff81111561387657600080fd5b613882858286016135b0565b92509250509250929050565b6000602082840312156138a057600080fd5b60006138ae848285016135fa565b91505092915050565b6000602082840312156138c957600080fd5b60006138d78482850161360f565b91505092915050565b6000602082840312156138f257600080fd5b600061390084828501613624565b91505092915050565b60006020828403121561391b57600080fd5b600082013567ffffffffffffffff81111561393557600080fd5b61394184828501613663565b91505092915050565b60006020828403121561395c57600080fd5b600061396a8482850161368d565b91505092915050565b6000806040838503121561398657600080fd5b60006139948582860161368d565b92505060206139a58582860161359b565b9150509250929050565b600080600080600080600060e0888a0312156139ca57600080fd5b60006139d88a828b0161368d565b97505060206139e98a828b0161368d565b965050604088013567ffffffffffffffff811115613a0657600080fd5b613a128a828b01613663565b9550506060613a238a828b0161368d565b9450506080613a348a828b0161368d565b93505060a0613a458a828b0161368d565b92505060c088013567ffffffffffffffff811115613a6257600080fd5b613a6e8a828b01613663565b91505092959891949750929550565b613a8681614b50565b82525050565b613a9581614b62565b82525050565b6000613aa6826149f8565b613ab08185614a0e565b9350613ac0818560208601614bd3565b613ac981614d98565b840191505092915050565b6000613adf82614a03565b613ae98185614a1f565b9350613af9818560208601614bd3565b613b0281614d98565b840191505092915050565b6000613b1882614a03565b613b228185614a30565b9350613b32818560208601614bd3565b80840191505092915050565b60008154613b4b81614c30565b613b558186614a30565b94506001821660008114613b705760018114613b8157613bb4565b60ff19831686528186019350613bb4565b613b8a856149e3565b60005b83811015613bac57815481890152600182019150602081019050613b8d565b838801955050505b50505092915050565b6000613bca603283614a1f565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613c30602683614a1f565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c96601c83614a1f565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613cd6602883614a1f565b91507f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008301527f65786365656465640000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d3c600183614a30565b91507f2c000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b6000613d7c602483614a1f565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613de2601983614a1f565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613e22602c83614a1f565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e88601283614a1f565b91507f496e73756666696369656e742066756e647300000000000000000000000000006000830152602082019050919050565b6000613ec8601783614a1f565b91507f55736572206973206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b6000613f08603883614a1f565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613f6e602a83614a1f565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fd4602983614a1f565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061403a603183614a1f565b91507f43616e277420616464206e657720636861726163746572204e4654732e20576f60008301527f756c642065786365656420737570706c790000000000000000000000000000006020830152604082019050919050565b60006140a0602083614a1f565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006140e0602c83614a1f565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614146602083614a1f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614186602983614a1f565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006141ec602f83614a1f565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614252601383614a1f565b91507f45786365656465642056495020737570706c79000000000000000000000000006000830152602082019050919050565b6000614292601c83614a1f565b91507f4d6178204e4654207065722061646472657373206578636565646564000000006000830152602082019050919050565b60006142d2602183614a1f565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614338601483614a1f565b91507f5765277265206174206d617820737570706c79210000000000000000000000006000830152602082019050919050565b6000614378603183614a1f565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006143de600f83614a1f565b91507f457863656564656420737570706c7900000000000000000000000000000000006000830152602082019050919050565b600061441e601383614a1f565b91507f53616c65206861736e27742073746172746564000000000000000000000000006000830152602082019050919050565b600061445e601b83614a1f565b91507f4e65656420746f206d696e74206174206c656173742031204e465400000000006000830152602082019050919050565b61449a81614bba565b82525050565b60006144ac8285613b0d565b91506144b88284613b0d565b91508190509392505050565b60006144d08289613b3e565b91506144db82613d2f565b91506144e78288613b0d565b91506144f282613d2f565b91506144fe8287613b0d565b915061450982613d2f565b91506145158286613b0d565b915061452082613d2f565b915061452c8285613b0d565b915061453782613d2f565b91506145438284613b3e565b9150819050979650505050505050565b60006020820190506145686000830184613a7d565b92915050565b60006080820190506145836000830187613a7d565b6145906020830186613a7d565b61459d6040830185614491565b81810360608301526145af8184613a9b565b905095945050505050565b60006020820190506145cf6000830184613a8c565b92915050565b600060208201905081810360008301526145ef8184613ad4565b905092915050565b6000602082019050818103600083015261461081613bbd565b9050919050565b6000602082019050818103600083015261463081613c23565b9050919050565b6000602082019050818103600083015261465081613c89565b9050919050565b6000602082019050818103600083015261467081613cc9565b9050919050565b6000602082019050818103600083015261469081613d6f565b9050919050565b600060208201905081810360008301526146b081613dd5565b9050919050565b600060208201905081810360008301526146d081613e15565b9050919050565b600060208201905081810360008301526146f081613e7b565b9050919050565b6000602082019050818103600083015261471081613ebb565b9050919050565b6000602082019050818103600083015261473081613efb565b9050919050565b6000602082019050818103600083015261475081613f61565b9050919050565b6000602082019050818103600083015261477081613fc7565b9050919050565b600060208201905081810360008301526147908161402d565b9050919050565b600060208201905081810360008301526147b081614093565b9050919050565b600060208201905081810360008301526147d0816140d3565b9050919050565b600060208201905081810360008301526147f081614139565b9050919050565b6000602082019050818103600083015261481081614179565b9050919050565b60006020820190508181036000830152614830816141df565b9050919050565b6000602082019050818103600083015261485081614245565b9050919050565b6000602082019050818103600083015261487081614285565b9050919050565b60006020820190508181036000830152614890816142c5565b9050919050565b600060208201905081810360008301526148b08161432b565b9050919050565b600060208201905081810360008301526148d08161436b565b9050919050565b600060208201905081810360008301526148f0816143d1565b9050919050565b6000602082019050818103600083015261491081614411565b9050919050565b6000602082019050818103600083015261493081614451565b9050919050565b600060208201905061494c6000830184614491565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561497957614978614d69565b5b8060405250919050565b600067ffffffffffffffff82111561499e5761499d614d69565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156149ce576149cd614d69565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a4682614bba565b9150614a5183614bba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a8657614a85614cdc565b5b828201905092915050565b6000614a9c82614bba565b9150614aa783614bba565b925082614ab757614ab6614d0b565b5b828204905092915050565b6000614acd82614bba565b9150614ad883614bba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b1157614b10614cdc565b5b828202905092915050565b6000614b2782614bba565b9150614b3283614bba565b925082821015614b4557614b44614cdc565b5b828203905092915050565b6000614b5b82614b9a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614bf1578082015181840152602081019050614bd6565b83811115614c00576000848401525b50505050565b6000614c1182614bba565b91506000821415614c2557614c24614cdc565b5b600182039050919050565b60006002820490506001821680614c4857607f821691505b60208210811415614c5c57614c5b614d3a565b5b50919050565b6000614c6d82614bba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ca057614c9f614cdc565b5b600182019050919050565b6000614cb682614bba565b9150614cc183614bba565b925082614cd157614cd0614d0b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614db281614b50565b8114614dbd57600080fd5b50565b614dc981614b62565b8114614dd457600080fd5b50565b614de081614b6e565b8114614deb57600080fd5b50565b614df781614bba565b8114614e0257600080fd5b5056fea2646970667358221220202e31c7e324b05f40df3fd72ef4136b5ae1108207be0964fdccef61702d253864736f6c63430008000033

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.