ETH Price: $3,337.39 (-1.12%)
Gas: 7 Gwei

Token

Pups in Society (PUPS)
 

Overview

Max Total Supply

199 PUPS

Holders

114

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
monstermaash.eth
Balance
1 PUPS
0xCd70Cd87226D410bc3e4707bEFC971D9058601F1
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:
PupsInSociety

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : PupsInSociety.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/access/Ownable.sol";


contract PupsInSociety is ERC721, Ownable {	
	
	uint public constant MAX_TOKENS = 10000;
	uint public constant MAX_TOKENS_VIP = 0;
	
	uint private _currentToken = 0;
	
	uint public CURR_MINT_COST = 0.1 ether;
	
	//---- Round based supplies
	string private CURR_ROUND_NAME = "Presale";
	string private CURR_ROUND_PASSWORD = "0";
	uint private CURR_ROUND_SUPPLY = 3600;
	uint private CURR_ROUND_TIME = 1643493600000;
	uint private maxMintAmount = 5;
	uint private nftPerAddressLimit = 10;
	
	uint private currentVIPs = 0;
	
	bool public hasSaleStarted = false;
	bool public onlyWhitelisted = false;
	
	string public baseURI;
	
	mapping(address => uint) public addressMintedBalance;
	mapping (address => bool) private whitelistUserAddresses;
	
    uint256 private remaining = MAX_TOKENS;
    mapping(uint256 => uint256) private cache;
	
	constructor() ERC721("Pups in Society", "PUPS") {
		setBaseURI("http://api.pupsinsociety.com/pups/");
	}

	function totalSupply() public view returns(uint) {
		return _currentToken;
	}


	function _baseURI() internal view virtual override returns (string memory) {
		return baseURI;
	}
	
	
    function drawIndex() private returns (uint256 index) {
        uint256 i = uint(keccak256(abi.encodePacked(block.timestamp, msg.sender, remaining))) % remaining;

        index = cache[i] == 0 ? i : cache[i];
		index = index == 0 ? MAX_TOKENS : index;
		
        cache[i] = cache[remaining - 1] == 0 ? remaining - 1 : cache[remaining - 1];
        remaining = remaining - 1;

    }

	function mintNFT(uint _mintAmount) public payable {
		require(msg.value >= CURR_MINT_COST * _mintAmount, "Insufficient funds");
		require(hasSaleStarted == true, "Sale hasn't started");
		
		require(_mintAmount > 0, "Need to mint at least 1 NFT");
		require(_mintAmount <= maxMintAmount, "Max mint amount per transaction exceeded");
		require(_mintAmount <= CURR_ROUND_SUPPLY, "We're at max supply!");
		require((_mintAmount  + addressMintedBalance[msg.sender]) <= nftPerAddressLimit, "Max NFT per address exceeded");



        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "User is not whitelisted");
        }

		for (uint256 i = 1; i <= _mintAmount; i++) {
			addressMintedBalance[msg.sender]++;
			_currentToken++;
			CURR_ROUND_SUPPLY--;
			uint theToken = drawIndex();
			_safeMint(msg.sender, theToken);
		}

	}

	
	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, ",",Strings.toString(nftPerAddressLimit)));
	   return information;
   }
	
	function getBaseURI() public onlyOwner view returns(string memory) {
		return baseURI;
	}
	
	//only owner functions
	
	function setNewRound(uint _supply, uint cost, string memory name, uint perTransactionLimit, uint perAddressLimit, uint theTime, string memory password, bool saleState) public onlyOwner {
		require(_supply <= (MAX_TOKENS - _currentToken), "Exceeded supply");
		CURR_ROUND_SUPPLY = _supply;
		CURR_MINT_COST = cost;
		CURR_ROUND_NAME = name;
		maxMintAmount = perTransactionLimit;
		nftPerAddressLimit = perAddressLimit;
		CURR_ROUND_TIME = theTime;
		CURR_ROUND_PASSWORD = password;
		hasSaleStarted = saleState;
	}

	
	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 reserveVIP(uint numTokens, address recipient) public onlyOwner {
		require((currentVIPs + numTokens) <= MAX_TOKENS_VIP, "Exceeded VIP supply");
		uint index;
		for(index = 1; index <= numTokens; index++) {
			_currentToken++;
			currentVIPs = currentVIPs + 1;
			uint theToken = currentVIPs + MAX_TOKENS;
			addressMintedBalance[recipient]++;
			_safeMint(recipient, theToken);
		}
	}

	function Giveaways(uint numTokens, address recipient) public onlyOwner {
		require((_currentToken + numTokens) <= MAX_TOKENS, "Exceeded supply");
		uint index;
		// Reserved for the people who helped build this project
		for(index = 1; index <= numTokens; index++) {
			_currentToken++;
			uint theToken = drawIndex();
			addressMintedBalance[recipient]++;
			_safeMint(recipient, theToken);
		}
	}
	
	function smartContractBalance() public view returns(uint)
	{
		return address(this).balance;
	}

	function withdrawAll(uint amount) public payable onlyOwner {
		payable(msg.sender).send(amount);
	}
	
	
	function setSaleStarted(bool _state) public onlyOwner {
		hasSaleStarted = _state;
	}
}

File 2 of 11 : 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 11 : 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 4 of 11 : 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 5 of 11 : 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 6 of 11 : 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 7 of 11 : 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 8 of 11 : 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 9 of 11 : 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 10 of 11 : 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 11 of 11 : 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":[{"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":[{"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":[{"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":"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":"_supply","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"perTransactionLimit","type":"uint256"},{"internalType":"uint256","name":"perAddressLimit","type":"uint256"},{"internalType":"uint256","name":"theTime","type":"uint256"},{"internalType":"string","name":"password","type":"string"},{"internalType":"bool","name":"saleState","type":"bool"}],"name":"setNewRound","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":[],"name":"smartContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600060075567016345785d8a00006008556040518060400160405280600781526020017f50726573616c65000000000000000000000000000000000000000000000000008152506009908051906020019062000062929190620003ad565b506040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000b0929190620003ad565b50610e10600b5565017ea7da2b00600c556005600d55600a600e556000600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506127106014553480156200011957600080fd5b506040518060400160405280600f81526020017f5075707320696e20536f636965747900000000000000000000000000000000008152506040518060400160405280600481526020017f505550530000000000000000000000000000000000000000000000000000000081525081600090805190602001906200019e929190620003ad565b508060019080519060200190620001b7929190620003ad565b505050620001da620001ce6200020a60201b60201c565b6200021260201b60201c565b6200020460405180606001604052806022815260200162004ef660229139620002d860201b60201c565b62000537565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002e86200020a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200030e6200038360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000367576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035e906200049f565b60405180910390fd5b80601190805190602001906200037f929190620003ad565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003bb90620004d2565b90600052602060002090601f016020900481019282620003df57600085556200042b565b82601f10620003fa57805160ff19168380011785556200042b565b828001600101855582156200042b579182015b828111156200042a5782518255916020019190600101906200040d565b5b5090506200043a91906200043e565b5090565b5b80821115620004595760008160009055506001016200043f565b5090565b60006200046c602083620004c1565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190508181036000830152620004ba816200045d565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004eb57607f821691505b6020821081141562000502576200050162000508565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6149af80620005476000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c5146107e9578063ed73964c14610826578063f2fde38b1461084f578063f47c84c514610878578063f79e66ba146108a357610225565b8063b88d4fde14610706578063bff84fc51461072f578063c342784414610758578063c87b56dd14610783578063cc0b8d15146107c057610225565b806395d89b41116100f257806395d89b41146106355780639c70b51214610660578063a22cb4651461068b578063a854ffba146106b4578063b83921a6146106dd57610225565b8063715018a6146105bb5780638da5cb5b146105d257806392642744146105fd578063958e2d311461061957610225565b806332ab3f00116101b157806355f804b31161017557806355f804b3146104c25780636352211e146104eb5780636c0360eb1461052857806370a0823114610553578063714c53981461059057610225565b806332ab3f00146103dd5780633af32abf146104085780633c5e310b146104455780633c9527641461047057806342842e0e1461049957610225565b806318160ddd116101f857806318160ddd146102f857806318cae269146103235780631c8b232d1461036057806323b872dd1461038b5780632bf04304146103b457610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906133df565b6108ce565b60405161025e9190614113565b60405180910390f35b34801561027357600080fd5b5061027c6109b0565b604051610289919061412e565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613472565b610a42565b6040516102c691906140ac565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613335565b610ac7565b005b34801561030457600080fd5b5061030d610bdf565b60405161031a9190614470565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906131ca565b610be9565b6040516103579190614470565b60405180910390f35b34801561036c57600080fd5b50610375610c01565b6040516103829190614113565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad919061322f565b610c14565b005b3480156103c057600080fd5b506103db60048036038101906103d69190613371565b610c74565b005b3480156103e957600080fd5b506103f2610dbb565b6040516103ff9190614470565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a91906131ca565b610dc3565b60405161043c9190614113565b60405180910390f35b34801561045157600080fd5b5061045a610e19565b604051610467919061412e565b60405180910390f35b34801561047c57600080fd5b50610497600480360381019061049291906133b6565b610e86565b005b3480156104a557600080fd5b506104c060048036038101906104bb919061322f565b610f1f565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190613431565b610f3f565b005b3480156104f757600080fd5b50610512600480360381019061050d9190613472565b610fd5565b60405161051f91906140ac565b60405180910390f35b34801561053457600080fd5b5061053d611087565b60405161054a919061412e565b60405180910390f35b34801561055f57600080fd5b5061057a600480360381019061057591906131ca565b611115565b6040516105879190614470565b60405180910390f35b34801561059c57600080fd5b506105a56111cd565b6040516105b2919061412e565b60405180910390f35b3480156105c757600080fd5b506105d06112db565b005b3480156105de57600080fd5b506105e7611363565b6040516105f491906140ac565b60405180910390f35b61061760048036038101906106129190613472565b61138d565b005b610633600480360381019061062e9190613472565b6116b5565b005b34801561064157600080fd5b5061064a61176a565b604051610657919061412e565b60405180910390f35b34801561066c57600080fd5b506106756117fc565b6040516106829190614113565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad91906132f9565b61180f565b005b3480156106c057600080fd5b506106db60048036038101906106d691906133b6565b611825565b005b3480156106e957600080fd5b5061070460048036038101906106ff9190613371565b6118be565b005b34801561071257600080fd5b5061072d6004803603810190610728919061327e565b6119fc565b005b34801561073b57600080fd5b506107566004803603810190610751919061349b565b611a5e565b005b34801561076457600080fd5b5061076d611bf2565b60405161077a9190614470565b60405180910390f35b34801561078f57600080fd5b506107aa60048036038101906107a59190613472565b611bf8565b6040516107b7919061412e565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e2919061349b565b611c9f565b005b3480156107f557600080fd5b50610810600480360381019061080b91906131f3565b611e17565b60405161081d9190614113565b60405180910390f35b34801561083257600080fd5b5061084d600480360381019061084891906134d7565b611eab565b005b34801561085b57600080fd5b50610876600480360381019061087191906131ca565b611fee565b005b34801561088457600080fd5b5061088d6120e6565b60405161089a9190614470565b60405180910390f35b3480156108af57600080fd5b506108b86120ec565b6040516108c59190614470565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a957506109a8826120f1565b5b9050919050565b6060600080546109bf90614769565b80601f01602080910402602001604051908101604052809291908181526020018280546109eb90614769565b8015610a385780601f10610a0d57610100808354040283529160200191610a38565b820191906000526020600020905b815481529060010190602001808311610a1b57829003601f168201915b5050505050905090565b6000610a4d8261215b565b610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a83906142f0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad282610fd5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a906143b0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b626121c7565b73ffffffffffffffffffffffffffffffffffffffff161480610b915750610b9081610b8b6121c7565b611e17565b5b610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc790614270565b60405180910390fd5b610bda83836121cf565b505050565b6000600754905090565b60126020528060005260406000206000915090505481565b601060009054906101000a900460ff1681565b610c25610c1f6121c7565b82612288565b610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b906143f0565b60405180910390fd5b610c6f838383612366565b505050565b610c7c6121c7565b73ffffffffffffffffffffffffffffffffffffffff16610c9a611363565b73ffffffffffffffffffffffffffffffffffffffff1614610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce790614310565b60405180910390fd5b60005b82829050811015610db657600160136000858585818110610d3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610d5291906131ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610dae9061479b565b915050610cf3565b505050565b600047905090565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b606060006009610e2a600b546125c2565b610e35600c546125c2565b610e406008546125c2565b610e4b600d546125c2565b600a610e58600e546125c2565b604051602001610e6e9796959493929190613fc8565b60405160208183030381529060405290508091505090565b610e8e6121c7565b73ffffffffffffffffffffffffffffffffffffffff16610eac611363565b73ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990614310565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b610f3a838383604051806020016040528060008152506119fc565b505050565b610f476121c7565b73ffffffffffffffffffffffffffffffffffffffff16610f65611363565b73ffffffffffffffffffffffffffffffffffffffff1614610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290614310565b60405180910390fd5b8060119080519060200190610fd1929190612fa4565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561107e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611075906142b0565b60405180910390fd5b80915050919050565b6011805461109490614769565b80601f01602080910402602001604051908101604052809291908181526020018280546110c090614769565b801561110d5780601f106110e25761010080835404028352916020019161110d565b820191906000526020600020905b8154815290600101906020018083116110f057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90614290565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606111d76121c7565b73ffffffffffffffffffffffffffffffffffffffff166111f5611363565b73ffffffffffffffffffffffffffffffffffffffff161461124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290614310565b60405180910390fd5b6011805461125890614769565b80601f016020809104026020016040519081016040528092919081815260200182805461128490614769565b80156112d15780601f106112a6576101008083540402835291602001916112d1565b820191906000526020600020905b8154815290600101906020018083116112b457829003601f168201915b5050505050905090565b6112e36121c7565b73ffffffffffffffffffffffffffffffffffffffff16611301611363565b73ffffffffffffffffffffffffffffffffffffffff1614611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90614310565b60405180910390fd5b611361600061276f565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8060085461139b91906145fb565b3410156113dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d490614230565b60405180910390fd5b60011515601060009054906101000a900460ff16151514611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90614430565b60405180910390fd5b60008111611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90614450565b60405180910390fd5b600d548111156114bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b2906141b0565b60405180910390fd5b600b54811115611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f7906143d0565b60405180910390fd5b600e54601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548261154e9190614574565b111561158f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158690614390565b60405180910390fd5b60011515601060019054906101000a900460ff16151514156115f4576115b433610dc3565b6115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90614250565b60405180910390fd5b5b6000600190505b8181116116b157601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906116529061479b565b91905055506007600081548092919061166a9061479b565b9190505550600b60008154809291906116829061473f565b91905055506000611691612835565b905061169d3382612953565b5080806116a99061479b565b9150506115fb565b5050565b6116bd6121c7565b73ffffffffffffffffffffffffffffffffffffffff166116db611363565b73ffffffffffffffffffffffffffffffffffffffff1614611731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172890614310565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050505050565b60606001805461177990614769565b80601f01602080910402602001604051908101604052809291908181526020018280546117a590614769565b80156117f25780601f106117c7576101008083540402835291602001916117f2565b820191906000526020600020905b8154815290600101906020018083116117d557829003601f168201915b5050505050905090565b601060019054906101000a900460ff1681565b61182161181a6121c7565b8383612971565b5050565b61182d6121c7565b73ffffffffffffffffffffffffffffffffffffffff1661184b611363565b73ffffffffffffffffffffffffffffffffffffffff16146118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890614310565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6118c66121c7565b73ffffffffffffffffffffffffffffffffffffffff166118e4611363565b73ffffffffffffffffffffffffffffffffffffffff161461193a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193190614310565b60405180910390fd5b60005b828290508110156119f75760136000848484818110611985577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061199a91906131ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905580806119ef9061479b565b91505061193d565b505050565b611a0d611a076121c7565b83612288565b611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a43906143f0565b60405180910390fd5b611a5884848484612ade565b50505050565b611a666121c7565b73ffffffffffffffffffffffffffffffffffffffff16611a84611363565b73ffffffffffffffffffffffffffffffffffffffff1614611ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad190614310565b60405180910390fd5b600082600f54611aea9190614574565b1115611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290614370565b60405180910390fd5b6000600190505b828111611bed5760076000815480929190611b4c9061479b565b91905055506001600f54611b609190614574565b600f819055506000612710600f54611b789190614574565b9050601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611bca9061479b565b9190505550611bd98382612953565b508080611be59061479b565b915050611b32565b505050565b60085481565b6060611c038261215b565b611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3990614350565b60405180910390fd5b6000611c4c612b3a565b90506000815111611c6c5760405180602001604052806000815250611c97565b80611c76846125c2565b604051602001611c87929190613fa4565b6040516020818303038152906040525b915050919050565b611ca76121c7565b73ffffffffffffffffffffffffffffffffffffffff16611cc5611363565b73ffffffffffffffffffffffffffffffffffffffff1614611d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1290614310565b60405180910390fd5b61271082600754611d2c9190614574565b1115611d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6490614410565b60405180910390fd5b6000600190505b828111611e125760076000815480929190611d8e9061479b565b91905055506000611d9d612835565b9050601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611def9061479b565b9190505550611dfe8382612953565b508080611e0a9061479b565b915050611d74565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eb36121c7565b73ffffffffffffffffffffffffffffffffffffffff16611ed1611363565b73ffffffffffffffffffffffffffffffffffffffff1614611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90614310565b60405180910390fd5b600754612710611f379190614655565b881115611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090614410565b60405180910390fd5b87600b81905550866008819055508560099080519060200190611f9d929190612fa4565b5084600d8190555083600e8190555082600c8190555081600a9080519060200190611fc9929190612fa4565b5080601060006101000a81548160ff0219169083151502179055505050505050505050565b611ff66121c7565b73ffffffffffffffffffffffffffffffffffffffff16612014611363565b73ffffffffffffffffffffffffffffffffffffffff161461206a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206190614310565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d190614170565b60405180910390fd5b6120e38161276f565b50565b61271081565b600081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661224283610fd5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122938261215b565b6122d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c990614210565b60405180910390fd5b60006122dd83610fd5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061234c57508373ffffffffffffffffffffffffffffffffffffffff1661233484610a42565b73ffffffffffffffffffffffffffffffffffffffff16145b8061235d575061235c8185611e17565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661238682610fd5565b73ffffffffffffffffffffffffffffffffffffffff16146123dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d390614330565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561244c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612443906141d0565b60405180910390fd5b612457838383612bcc565b6124626000826121cf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124b29190614655565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125099190614574565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6060600082141561260a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061276a565b600082905060005b6000821461263c5780806126259061479b565b915050600a8261263591906145ca565b9150612612565b60008167ffffffffffffffff81111561267e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126b05781602001600182028036833780820191505090505b5090505b60008514612763576001826126c99190614655565b9150600a856126d89190614812565b60306126e49190614574565b60f81b818381518110612720577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561275c91906145ca565b94506126b4565b8093505050505b919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060145442336014546040516020016128529392919061406f565b6040516020818303038152906040528051906020012060001c6128759190614812565b905060006015600083815260200190815260200160002054146128ab5760156000828152602001908152602001600020546128ad565b805b9150600082146128bd57816128c1565b6127105b915060006015600060016014546128d89190614655565b81526020019081526020016000205414612913576015600060016014546128ff9190614655565b815260200190815260200160002054612923565b60016014546129229190614655565b5b601560008381526020019081526020016000208190555060016014546129499190614655565b6014819055505090565b61296d828260405180602001604052806000815250612bd1565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d7906141f0565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ad19190614113565b60405180910390a3505050565b612ae9848484612366565b612af584848484612c2c565b612b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2b90614150565b60405180910390fd5b50505050565b606060118054612b4990614769565b80601f0160208091040260200160405190810160405280929190818152602001828054612b7590614769565b8015612bc25780601f10612b9757610100808354040283529160200191612bc2565b820191906000526020600020905b815481529060010190602001808311612ba557829003601f168201915b5050505050905090565b505050565b612bdb8383612dc3565b612be86000848484612c2c565b612c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1e90614150565b60405180910390fd5b505050565b6000612c4d8473ffffffffffffffffffffffffffffffffffffffff16612f91565b15612db6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c766121c7565b8786866040518563ffffffff1660e01b8152600401612c9894939291906140c7565b602060405180830381600087803b158015612cb257600080fd5b505af1925050508015612ce357506040513d601f19601f82011682018060405250810190612ce09190613408565b60015b612d66573d8060008114612d13576040519150601f19603f3d011682016040523d82523d6000602084013e612d18565b606091505b50600081511415612d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5590614150565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dbb565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2a906142d0565b60405180910390fd5b612e3c8161215b565b15612e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7390614190565b60405180910390fd5b612e8860008383612bcc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ed89190614574565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612fb090614769565b90600052602060002090601f016020900481019282612fd25760008555613019565b82601f10612feb57805160ff1916838001178555613019565b82800160010185558215613019579182015b82811115613018578251825591602001919060010190612ffd565b5b509050613026919061302a565b5090565b5b8082111561304357600081600090555060010161302b565b5090565b600061305a613055846144bc565b61448b565b90508281526020810184848401111561307257600080fd5b61307d8482856146fd565b509392505050565b6000613098613093846144ec565b61448b565b9050828152602081018484840111156130b057600080fd5b6130bb8482856146fd565b509392505050565b6000813590506130d28161491d565b92915050565b60008083601f8401126130ea57600080fd5b8235905067ffffffffffffffff81111561310357600080fd5b60208301915083602082028301111561311b57600080fd5b9250929050565b60008135905061313181614934565b92915050565b6000813590506131468161494b565b92915050565b60008151905061315b8161494b565b92915050565b600082601f83011261317257600080fd5b8135613182848260208601613047565b91505092915050565b600082601f83011261319c57600080fd5b81356131ac848260208601613085565b91505092915050565b6000813590506131c481614962565b92915050565b6000602082840312156131dc57600080fd5b60006131ea848285016130c3565b91505092915050565b6000806040838503121561320657600080fd5b6000613214858286016130c3565b9250506020613225858286016130c3565b9150509250929050565b60008060006060848603121561324457600080fd5b6000613252868287016130c3565b9350506020613263868287016130c3565b9250506040613274868287016131b5565b9150509250925092565b6000806000806080858703121561329457600080fd5b60006132a2878288016130c3565b94505060206132b3878288016130c3565b93505060406132c4878288016131b5565b925050606085013567ffffffffffffffff8111156132e157600080fd5b6132ed87828801613161565b91505092959194509250565b6000806040838503121561330c57600080fd5b600061331a858286016130c3565b925050602061332b85828601613122565b9150509250929050565b6000806040838503121561334857600080fd5b6000613356858286016130c3565b9250506020613367858286016131b5565b9150509250929050565b6000806020838503121561338457600080fd5b600083013567ffffffffffffffff81111561339e57600080fd5b6133aa858286016130d8565b92509250509250929050565b6000602082840312156133c857600080fd5b60006133d684828501613122565b91505092915050565b6000602082840312156133f157600080fd5b60006133ff84828501613137565b91505092915050565b60006020828403121561341a57600080fd5b60006134288482850161314c565b91505092915050565b60006020828403121561344357600080fd5b600082013567ffffffffffffffff81111561345d57600080fd5b6134698482850161318b565b91505092915050565b60006020828403121561348457600080fd5b6000613492848285016131b5565b91505092915050565b600080604083850312156134ae57600080fd5b60006134bc858286016131b5565b92505060206134cd858286016130c3565b9150509250929050565b600080600080600080600080610100898b0312156134f457600080fd5b60006135028b828c016131b5565b98505060206135138b828c016131b5565b975050604089013567ffffffffffffffff81111561353057600080fd5b61353c8b828c0161318b565b965050606061354d8b828c016131b5565b955050608061355e8b828c016131b5565b94505060a061356f8b828c016131b5565b93505060c089013567ffffffffffffffff81111561358c57600080fd5b6135988b828c0161318b565b92505060e06135a98b828c01613122565b9150509295985092959890939650565b6135c281614689565b82525050565b6135d96135d482614689565b6147e4565b82525050565b6135e88161469b565b82525050565b60006135f982614531565b6136038185614547565b935061361381856020860161470c565b61361c816148ff565b840191505092915050565b60006136328261453c565b61363c8185614558565b935061364c81856020860161470c565b613655816148ff565b840191505092915050565b600061366b8261453c565b6136758185614569565b935061368581856020860161470c565b80840191505092915050565b6000815461369e81614769565b6136a88186614569565b945060018216600081146136c357600181146136d457613707565b60ff19831686528186019350613707565b6136dd8561451c565b60005b838110156136ff578154818901526001820191506020810190506136e0565b838801955050505b50505092915050565b600061371d603283614558565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613783602683614558565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137e9601c83614558565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613829602883614558565b91507f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008301527f65786365656465640000000000000000000000000000000000000000000000006020830152604082019050919050565b600061388f600183614569565b91507f2c000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b60006138cf602483614558565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613935601983614558565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613975602c83614558565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139db601283614558565b91507f496e73756666696369656e742066756e647300000000000000000000000000006000830152602082019050919050565b6000613a1b601783614558565b91507f55736572206973206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b6000613a5b603883614558565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613ac1602a83614558565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b27602983614558565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b8d602083614558565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613bcd602c83614558565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613c33602083614558565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613c73602983614558565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cd9602f83614558565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613d3f601383614558565b91507f45786365656465642056495020737570706c79000000000000000000000000006000830152602082019050919050565b6000613d7f601c83614558565b91507f4d6178204e4654207065722061646472657373206578636565646564000000006000830152602082019050919050565b6000613dbf602183614558565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e25601483614558565b91507f5765277265206174206d617820737570706c79210000000000000000000000006000830152602082019050919050565b6000613e65603183614558565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613ecb600f83614558565b91507f457863656564656420737570706c7900000000000000000000000000000000006000830152602082019050919050565b6000613f0b601383614558565b91507f53616c65206861736e27742073746172746564000000000000000000000000006000830152602082019050919050565b6000613f4b601b83614558565b91507f4e65656420746f206d696e74206174206c656173742031204e465400000000006000830152602082019050919050565b613f87816146f3565b82525050565b613f9e613f99826146f3565b614808565b82525050565b6000613fb08285613660565b9150613fbc8284613660565b91508190509392505050565b6000613fd4828a613691565b9150613fdf82613882565b9150613feb8289613660565b9150613ff682613882565b91506140028288613660565b915061400d82613882565b91506140198287613660565b915061402482613882565b91506140308286613660565b915061403b82613882565b91506140478285613691565b915061405282613882565b915061405e8284613660565b915081905098975050505050505050565b600061407b8286613f8d565b60208201915061408b82856135c8565b60148201915061409b8284613f8d565b602082019150819050949350505050565b60006020820190506140c160008301846135b9565b92915050565b60006080820190506140dc60008301876135b9565b6140e960208301866135b9565b6140f66040830185613f7e565b818103606083015261410881846135ee565b905095945050505050565b600060208201905061412860008301846135df565b92915050565b600060208201905081810360008301526141488184613627565b905092915050565b6000602082019050818103600083015261416981613710565b9050919050565b6000602082019050818103600083015261418981613776565b9050919050565b600060208201905081810360008301526141a9816137dc565b9050919050565b600060208201905081810360008301526141c98161381c565b9050919050565b600060208201905081810360008301526141e9816138c2565b9050919050565b6000602082019050818103600083015261420981613928565b9050919050565b6000602082019050818103600083015261422981613968565b9050919050565b60006020820190508181036000830152614249816139ce565b9050919050565b6000602082019050818103600083015261426981613a0e565b9050919050565b6000602082019050818103600083015261428981613a4e565b9050919050565b600060208201905081810360008301526142a981613ab4565b9050919050565b600060208201905081810360008301526142c981613b1a565b9050919050565b600060208201905081810360008301526142e981613b80565b9050919050565b6000602082019050818103600083015261430981613bc0565b9050919050565b6000602082019050818103600083015261432981613c26565b9050919050565b6000602082019050818103600083015261434981613c66565b9050919050565b6000602082019050818103600083015261436981613ccc565b9050919050565b6000602082019050818103600083015261438981613d32565b9050919050565b600060208201905081810360008301526143a981613d72565b9050919050565b600060208201905081810360008301526143c981613db2565b9050919050565b600060208201905081810360008301526143e981613e18565b9050919050565b6000602082019050818103600083015261440981613e58565b9050919050565b6000602082019050818103600083015261442981613ebe565b9050919050565b6000602082019050818103600083015261444981613efe565b9050919050565b6000602082019050818103600083015261446981613f3e565b9050919050565b60006020820190506144856000830184613f7e565b92915050565b6000604051905081810181811067ffffffffffffffff821117156144b2576144b16148d0565b5b8060405250919050565b600067ffffffffffffffff8211156144d7576144d66148d0565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614507576145066148d0565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061457f826146f3565b915061458a836146f3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145bf576145be614843565b5b828201905092915050565b60006145d5826146f3565b91506145e0836146f3565b9250826145f0576145ef614872565b5b828204905092915050565b6000614606826146f3565b9150614611836146f3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561464a57614649614843565b5b828202905092915050565b6000614660826146f3565b915061466b836146f3565b92508282101561467e5761467d614843565b5b828203905092915050565b6000614694826146d3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561472a57808201518184015260208101905061470f565b83811115614739576000848401525b50505050565b600061474a826146f3565b9150600082141561475e5761475d614843565b5b600182039050919050565b6000600282049050600182168061478157607f821691505b60208210811415614795576147946148a1565b5b50919050565b60006147a6826146f3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147d9576147d8614843565b5b600182019050919050565b60006147ef826147f6565b9050919050565b600061480182614910565b9050919050565b6000819050919050565b600061481d826146f3565b9150614828836146f3565b92508261483857614837614872565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b61492681614689565b811461493157600080fd5b50565b61493d8161469b565b811461494857600080fd5b50565b614954816146a7565b811461495f57600080fd5b50565b61496b816146f3565b811461497657600080fd5b5056fea264697066735822122043452cb1ed867d370db22d7eae70265e3a1a92b2adb752828653b6fbb0dba02f64736f6c63430008000033687474703a2f2f6170692e70757073696e736f63696574792e636f6d2f707570732f

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c5146107e9578063ed73964c14610826578063f2fde38b1461084f578063f47c84c514610878578063f79e66ba146108a357610225565b8063b88d4fde14610706578063bff84fc51461072f578063c342784414610758578063c87b56dd14610783578063cc0b8d15146107c057610225565b806395d89b41116100f257806395d89b41146106355780639c70b51214610660578063a22cb4651461068b578063a854ffba146106b4578063b83921a6146106dd57610225565b8063715018a6146105bb5780638da5cb5b146105d257806392642744146105fd578063958e2d311461061957610225565b806332ab3f00116101b157806355f804b31161017557806355f804b3146104c25780636352211e146104eb5780636c0360eb1461052857806370a0823114610553578063714c53981461059057610225565b806332ab3f00146103dd5780633af32abf146104085780633c5e310b146104455780633c9527641461047057806342842e0e1461049957610225565b806318160ddd116101f857806318160ddd146102f857806318cae269146103235780631c8b232d1461036057806323b872dd1461038b5780632bf04304146103b457610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906133df565b6108ce565b60405161025e9190614113565b60405180910390f35b34801561027357600080fd5b5061027c6109b0565b604051610289919061412e565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613472565b610a42565b6040516102c691906140ac565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613335565b610ac7565b005b34801561030457600080fd5b5061030d610bdf565b60405161031a9190614470565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906131ca565b610be9565b6040516103579190614470565b60405180910390f35b34801561036c57600080fd5b50610375610c01565b6040516103829190614113565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad919061322f565b610c14565b005b3480156103c057600080fd5b506103db60048036038101906103d69190613371565b610c74565b005b3480156103e957600080fd5b506103f2610dbb565b6040516103ff9190614470565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a91906131ca565b610dc3565b60405161043c9190614113565b60405180910390f35b34801561045157600080fd5b5061045a610e19565b604051610467919061412e565b60405180910390f35b34801561047c57600080fd5b50610497600480360381019061049291906133b6565b610e86565b005b3480156104a557600080fd5b506104c060048036038101906104bb919061322f565b610f1f565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190613431565b610f3f565b005b3480156104f757600080fd5b50610512600480360381019061050d9190613472565b610fd5565b60405161051f91906140ac565b60405180910390f35b34801561053457600080fd5b5061053d611087565b60405161054a919061412e565b60405180910390f35b34801561055f57600080fd5b5061057a600480360381019061057591906131ca565b611115565b6040516105879190614470565b60405180910390f35b34801561059c57600080fd5b506105a56111cd565b6040516105b2919061412e565b60405180910390f35b3480156105c757600080fd5b506105d06112db565b005b3480156105de57600080fd5b506105e7611363565b6040516105f491906140ac565b60405180910390f35b61061760048036038101906106129190613472565b61138d565b005b610633600480360381019061062e9190613472565b6116b5565b005b34801561064157600080fd5b5061064a61176a565b604051610657919061412e565b60405180910390f35b34801561066c57600080fd5b506106756117fc565b6040516106829190614113565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad91906132f9565b61180f565b005b3480156106c057600080fd5b506106db60048036038101906106d691906133b6565b611825565b005b3480156106e957600080fd5b5061070460048036038101906106ff9190613371565b6118be565b005b34801561071257600080fd5b5061072d6004803603810190610728919061327e565b6119fc565b005b34801561073b57600080fd5b506107566004803603810190610751919061349b565b611a5e565b005b34801561076457600080fd5b5061076d611bf2565b60405161077a9190614470565b60405180910390f35b34801561078f57600080fd5b506107aa60048036038101906107a59190613472565b611bf8565b6040516107b7919061412e565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e2919061349b565b611c9f565b005b3480156107f557600080fd5b50610810600480360381019061080b91906131f3565b611e17565b60405161081d9190614113565b60405180910390f35b34801561083257600080fd5b5061084d600480360381019061084891906134d7565b611eab565b005b34801561085b57600080fd5b50610876600480360381019061087191906131ca565b611fee565b005b34801561088457600080fd5b5061088d6120e6565b60405161089a9190614470565b60405180910390f35b3480156108af57600080fd5b506108b86120ec565b6040516108c59190614470565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a957506109a8826120f1565b5b9050919050565b6060600080546109bf90614769565b80601f01602080910402602001604051908101604052809291908181526020018280546109eb90614769565b8015610a385780601f10610a0d57610100808354040283529160200191610a38565b820191906000526020600020905b815481529060010190602001808311610a1b57829003601f168201915b5050505050905090565b6000610a4d8261215b565b610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a83906142f0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad282610fd5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a906143b0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b626121c7565b73ffffffffffffffffffffffffffffffffffffffff161480610b915750610b9081610b8b6121c7565b611e17565b5b610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc790614270565b60405180910390fd5b610bda83836121cf565b505050565b6000600754905090565b60126020528060005260406000206000915090505481565b601060009054906101000a900460ff1681565b610c25610c1f6121c7565b82612288565b610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b906143f0565b60405180910390fd5b610c6f838383612366565b505050565b610c7c6121c7565b73ffffffffffffffffffffffffffffffffffffffff16610c9a611363565b73ffffffffffffffffffffffffffffffffffffffff1614610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce790614310565b60405180910390fd5b60005b82829050811015610db657600160136000858585818110610d3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610d5291906131ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610dae9061479b565b915050610cf3565b505050565b600047905090565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b606060006009610e2a600b546125c2565b610e35600c546125c2565b610e406008546125c2565b610e4b600d546125c2565b600a610e58600e546125c2565b604051602001610e6e9796959493929190613fc8565b60405160208183030381529060405290508091505090565b610e8e6121c7565b73ffffffffffffffffffffffffffffffffffffffff16610eac611363565b73ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990614310565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b610f3a838383604051806020016040528060008152506119fc565b505050565b610f476121c7565b73ffffffffffffffffffffffffffffffffffffffff16610f65611363565b73ffffffffffffffffffffffffffffffffffffffff1614610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290614310565b60405180910390fd5b8060119080519060200190610fd1929190612fa4565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561107e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611075906142b0565b60405180910390fd5b80915050919050565b6011805461109490614769565b80601f01602080910402602001604051908101604052809291908181526020018280546110c090614769565b801561110d5780601f106110e25761010080835404028352916020019161110d565b820191906000526020600020905b8154815290600101906020018083116110f057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90614290565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606111d76121c7565b73ffffffffffffffffffffffffffffffffffffffff166111f5611363565b73ffffffffffffffffffffffffffffffffffffffff161461124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290614310565b60405180910390fd5b6011805461125890614769565b80601f016020809104026020016040519081016040528092919081815260200182805461128490614769565b80156112d15780601f106112a6576101008083540402835291602001916112d1565b820191906000526020600020905b8154815290600101906020018083116112b457829003601f168201915b5050505050905090565b6112e36121c7565b73ffffffffffffffffffffffffffffffffffffffff16611301611363565b73ffffffffffffffffffffffffffffffffffffffff1614611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90614310565b60405180910390fd5b611361600061276f565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8060085461139b91906145fb565b3410156113dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d490614230565b60405180910390fd5b60011515601060009054906101000a900460ff16151514611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90614430565b60405180910390fd5b60008111611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90614450565b60405180910390fd5b600d548111156114bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b2906141b0565b60405180910390fd5b600b54811115611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f7906143d0565b60405180910390fd5b600e54601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548261154e9190614574565b111561158f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158690614390565b60405180910390fd5b60011515601060019054906101000a900460ff16151514156115f4576115b433610dc3565b6115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90614250565b60405180910390fd5b5b6000600190505b8181116116b157601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906116529061479b565b91905055506007600081548092919061166a9061479b565b9190505550600b60008154809291906116829061473f565b91905055506000611691612835565b905061169d3382612953565b5080806116a99061479b565b9150506115fb565b5050565b6116bd6121c7565b73ffffffffffffffffffffffffffffffffffffffff166116db611363565b73ffffffffffffffffffffffffffffffffffffffff1614611731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172890614310565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050505050565b60606001805461177990614769565b80601f01602080910402602001604051908101604052809291908181526020018280546117a590614769565b80156117f25780601f106117c7576101008083540402835291602001916117f2565b820191906000526020600020905b8154815290600101906020018083116117d557829003601f168201915b5050505050905090565b601060019054906101000a900460ff1681565b61182161181a6121c7565b8383612971565b5050565b61182d6121c7565b73ffffffffffffffffffffffffffffffffffffffff1661184b611363565b73ffffffffffffffffffffffffffffffffffffffff16146118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890614310565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6118c66121c7565b73ffffffffffffffffffffffffffffffffffffffff166118e4611363565b73ffffffffffffffffffffffffffffffffffffffff161461193a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193190614310565b60405180910390fd5b60005b828290508110156119f75760136000848484818110611985577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061199a91906131ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905580806119ef9061479b565b91505061193d565b505050565b611a0d611a076121c7565b83612288565b611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a43906143f0565b60405180910390fd5b611a5884848484612ade565b50505050565b611a666121c7565b73ffffffffffffffffffffffffffffffffffffffff16611a84611363565b73ffffffffffffffffffffffffffffffffffffffff1614611ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad190614310565b60405180910390fd5b600082600f54611aea9190614574565b1115611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290614370565b60405180910390fd5b6000600190505b828111611bed5760076000815480929190611b4c9061479b565b91905055506001600f54611b609190614574565b600f819055506000612710600f54611b789190614574565b9050601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611bca9061479b565b9190505550611bd98382612953565b508080611be59061479b565b915050611b32565b505050565b60085481565b6060611c038261215b565b611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3990614350565b60405180910390fd5b6000611c4c612b3a565b90506000815111611c6c5760405180602001604052806000815250611c97565b80611c76846125c2565b604051602001611c87929190613fa4565b6040516020818303038152906040525b915050919050565b611ca76121c7565b73ffffffffffffffffffffffffffffffffffffffff16611cc5611363565b73ffffffffffffffffffffffffffffffffffffffff1614611d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1290614310565b60405180910390fd5b61271082600754611d2c9190614574565b1115611d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6490614410565b60405180910390fd5b6000600190505b828111611e125760076000815480929190611d8e9061479b565b91905055506000611d9d612835565b9050601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611def9061479b565b9190505550611dfe8382612953565b508080611e0a9061479b565b915050611d74565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eb36121c7565b73ffffffffffffffffffffffffffffffffffffffff16611ed1611363565b73ffffffffffffffffffffffffffffffffffffffff1614611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90614310565b60405180910390fd5b600754612710611f379190614655565b881115611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090614410565b60405180910390fd5b87600b81905550866008819055508560099080519060200190611f9d929190612fa4565b5084600d8190555083600e8190555082600c8190555081600a9080519060200190611fc9929190612fa4565b5080601060006101000a81548160ff0219169083151502179055505050505050505050565b611ff66121c7565b73ffffffffffffffffffffffffffffffffffffffff16612014611363565b73ffffffffffffffffffffffffffffffffffffffff161461206a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206190614310565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d190614170565b60405180910390fd5b6120e38161276f565b50565b61271081565b600081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661224283610fd5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122938261215b565b6122d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c990614210565b60405180910390fd5b60006122dd83610fd5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061234c57508373ffffffffffffffffffffffffffffffffffffffff1661233484610a42565b73ffffffffffffffffffffffffffffffffffffffff16145b8061235d575061235c8185611e17565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661238682610fd5565b73ffffffffffffffffffffffffffffffffffffffff16146123dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d390614330565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561244c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612443906141d0565b60405180910390fd5b612457838383612bcc565b6124626000826121cf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124b29190614655565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125099190614574565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6060600082141561260a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061276a565b600082905060005b6000821461263c5780806126259061479b565b915050600a8261263591906145ca565b9150612612565b60008167ffffffffffffffff81111561267e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126b05781602001600182028036833780820191505090505b5090505b60008514612763576001826126c99190614655565b9150600a856126d89190614812565b60306126e49190614574565b60f81b818381518110612720577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561275c91906145ca565b94506126b4565b8093505050505b919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060145442336014546040516020016128529392919061406f565b6040516020818303038152906040528051906020012060001c6128759190614812565b905060006015600083815260200190815260200160002054146128ab5760156000828152602001908152602001600020546128ad565b805b9150600082146128bd57816128c1565b6127105b915060006015600060016014546128d89190614655565b81526020019081526020016000205414612913576015600060016014546128ff9190614655565b815260200190815260200160002054612923565b60016014546129229190614655565b5b601560008381526020019081526020016000208190555060016014546129499190614655565b6014819055505090565b61296d828260405180602001604052806000815250612bd1565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d7906141f0565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ad19190614113565b60405180910390a3505050565b612ae9848484612366565b612af584848484612c2c565b612b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2b90614150565b60405180910390fd5b50505050565b606060118054612b4990614769565b80601f0160208091040260200160405190810160405280929190818152602001828054612b7590614769565b8015612bc25780601f10612b9757610100808354040283529160200191612bc2565b820191906000526020600020905b815481529060010190602001808311612ba557829003601f168201915b5050505050905090565b505050565b612bdb8383612dc3565b612be86000848484612c2c565b612c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1e90614150565b60405180910390fd5b505050565b6000612c4d8473ffffffffffffffffffffffffffffffffffffffff16612f91565b15612db6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c766121c7565b8786866040518563ffffffff1660e01b8152600401612c9894939291906140c7565b602060405180830381600087803b158015612cb257600080fd5b505af1925050508015612ce357506040513d601f19601f82011682018060405250810190612ce09190613408565b60015b612d66573d8060008114612d13576040519150601f19603f3d011682016040523d82523d6000602084013e612d18565b606091505b50600081511415612d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5590614150565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dbb565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2a906142d0565b60405180910390fd5b612e3c8161215b565b15612e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7390614190565b60405180910390fd5b612e8860008383612bcc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ed89190614574565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612fb090614769565b90600052602060002090601f016020900481019282612fd25760008555613019565b82601f10612feb57805160ff1916838001178555613019565b82800160010185558215613019579182015b82811115613018578251825591602001919060010190612ffd565b5b509050613026919061302a565b5090565b5b8082111561304357600081600090555060010161302b565b5090565b600061305a613055846144bc565b61448b565b90508281526020810184848401111561307257600080fd5b61307d8482856146fd565b509392505050565b6000613098613093846144ec565b61448b565b9050828152602081018484840111156130b057600080fd5b6130bb8482856146fd565b509392505050565b6000813590506130d28161491d565b92915050565b60008083601f8401126130ea57600080fd5b8235905067ffffffffffffffff81111561310357600080fd5b60208301915083602082028301111561311b57600080fd5b9250929050565b60008135905061313181614934565b92915050565b6000813590506131468161494b565b92915050565b60008151905061315b8161494b565b92915050565b600082601f83011261317257600080fd5b8135613182848260208601613047565b91505092915050565b600082601f83011261319c57600080fd5b81356131ac848260208601613085565b91505092915050565b6000813590506131c481614962565b92915050565b6000602082840312156131dc57600080fd5b60006131ea848285016130c3565b91505092915050565b6000806040838503121561320657600080fd5b6000613214858286016130c3565b9250506020613225858286016130c3565b9150509250929050565b60008060006060848603121561324457600080fd5b6000613252868287016130c3565b9350506020613263868287016130c3565b9250506040613274868287016131b5565b9150509250925092565b6000806000806080858703121561329457600080fd5b60006132a2878288016130c3565b94505060206132b3878288016130c3565b93505060406132c4878288016131b5565b925050606085013567ffffffffffffffff8111156132e157600080fd5b6132ed87828801613161565b91505092959194509250565b6000806040838503121561330c57600080fd5b600061331a858286016130c3565b925050602061332b85828601613122565b9150509250929050565b6000806040838503121561334857600080fd5b6000613356858286016130c3565b9250506020613367858286016131b5565b9150509250929050565b6000806020838503121561338457600080fd5b600083013567ffffffffffffffff81111561339e57600080fd5b6133aa858286016130d8565b92509250509250929050565b6000602082840312156133c857600080fd5b60006133d684828501613122565b91505092915050565b6000602082840312156133f157600080fd5b60006133ff84828501613137565b91505092915050565b60006020828403121561341a57600080fd5b60006134288482850161314c565b91505092915050565b60006020828403121561344357600080fd5b600082013567ffffffffffffffff81111561345d57600080fd5b6134698482850161318b565b91505092915050565b60006020828403121561348457600080fd5b6000613492848285016131b5565b91505092915050565b600080604083850312156134ae57600080fd5b60006134bc858286016131b5565b92505060206134cd858286016130c3565b9150509250929050565b600080600080600080600080610100898b0312156134f457600080fd5b60006135028b828c016131b5565b98505060206135138b828c016131b5565b975050604089013567ffffffffffffffff81111561353057600080fd5b61353c8b828c0161318b565b965050606061354d8b828c016131b5565b955050608061355e8b828c016131b5565b94505060a061356f8b828c016131b5565b93505060c089013567ffffffffffffffff81111561358c57600080fd5b6135988b828c0161318b565b92505060e06135a98b828c01613122565b9150509295985092959890939650565b6135c281614689565b82525050565b6135d96135d482614689565b6147e4565b82525050565b6135e88161469b565b82525050565b60006135f982614531565b6136038185614547565b935061361381856020860161470c565b61361c816148ff565b840191505092915050565b60006136328261453c565b61363c8185614558565b935061364c81856020860161470c565b613655816148ff565b840191505092915050565b600061366b8261453c565b6136758185614569565b935061368581856020860161470c565b80840191505092915050565b6000815461369e81614769565b6136a88186614569565b945060018216600081146136c357600181146136d457613707565b60ff19831686528186019350613707565b6136dd8561451c565b60005b838110156136ff578154818901526001820191506020810190506136e0565b838801955050505b50505092915050565b600061371d603283614558565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613783602683614558565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137e9601c83614558565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613829602883614558565b91507f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008301527f65786365656465640000000000000000000000000000000000000000000000006020830152604082019050919050565b600061388f600183614569565b91507f2c000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b60006138cf602483614558565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613935601983614558565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613975602c83614558565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139db601283614558565b91507f496e73756666696369656e742066756e647300000000000000000000000000006000830152602082019050919050565b6000613a1b601783614558565b91507f55736572206973206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b6000613a5b603883614558565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613ac1602a83614558565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b27602983614558565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b8d602083614558565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613bcd602c83614558565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613c33602083614558565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613c73602983614558565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cd9602f83614558565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613d3f601383614558565b91507f45786365656465642056495020737570706c79000000000000000000000000006000830152602082019050919050565b6000613d7f601c83614558565b91507f4d6178204e4654207065722061646472657373206578636565646564000000006000830152602082019050919050565b6000613dbf602183614558565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e25601483614558565b91507f5765277265206174206d617820737570706c79210000000000000000000000006000830152602082019050919050565b6000613e65603183614558565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613ecb600f83614558565b91507f457863656564656420737570706c7900000000000000000000000000000000006000830152602082019050919050565b6000613f0b601383614558565b91507f53616c65206861736e27742073746172746564000000000000000000000000006000830152602082019050919050565b6000613f4b601b83614558565b91507f4e65656420746f206d696e74206174206c656173742031204e465400000000006000830152602082019050919050565b613f87816146f3565b82525050565b613f9e613f99826146f3565b614808565b82525050565b6000613fb08285613660565b9150613fbc8284613660565b91508190509392505050565b6000613fd4828a613691565b9150613fdf82613882565b9150613feb8289613660565b9150613ff682613882565b91506140028288613660565b915061400d82613882565b91506140198287613660565b915061402482613882565b91506140308286613660565b915061403b82613882565b91506140478285613691565b915061405282613882565b915061405e8284613660565b915081905098975050505050505050565b600061407b8286613f8d565b60208201915061408b82856135c8565b60148201915061409b8284613f8d565b602082019150819050949350505050565b60006020820190506140c160008301846135b9565b92915050565b60006080820190506140dc60008301876135b9565b6140e960208301866135b9565b6140f66040830185613f7e565b818103606083015261410881846135ee565b905095945050505050565b600060208201905061412860008301846135df565b92915050565b600060208201905081810360008301526141488184613627565b905092915050565b6000602082019050818103600083015261416981613710565b9050919050565b6000602082019050818103600083015261418981613776565b9050919050565b600060208201905081810360008301526141a9816137dc565b9050919050565b600060208201905081810360008301526141c98161381c565b9050919050565b600060208201905081810360008301526141e9816138c2565b9050919050565b6000602082019050818103600083015261420981613928565b9050919050565b6000602082019050818103600083015261422981613968565b9050919050565b60006020820190508181036000830152614249816139ce565b9050919050565b6000602082019050818103600083015261426981613a0e565b9050919050565b6000602082019050818103600083015261428981613a4e565b9050919050565b600060208201905081810360008301526142a981613ab4565b9050919050565b600060208201905081810360008301526142c981613b1a565b9050919050565b600060208201905081810360008301526142e981613b80565b9050919050565b6000602082019050818103600083015261430981613bc0565b9050919050565b6000602082019050818103600083015261432981613c26565b9050919050565b6000602082019050818103600083015261434981613c66565b9050919050565b6000602082019050818103600083015261436981613ccc565b9050919050565b6000602082019050818103600083015261438981613d32565b9050919050565b600060208201905081810360008301526143a981613d72565b9050919050565b600060208201905081810360008301526143c981613db2565b9050919050565b600060208201905081810360008301526143e981613e18565b9050919050565b6000602082019050818103600083015261440981613e58565b9050919050565b6000602082019050818103600083015261442981613ebe565b9050919050565b6000602082019050818103600083015261444981613efe565b9050919050565b6000602082019050818103600083015261446981613f3e565b9050919050565b60006020820190506144856000830184613f7e565b92915050565b6000604051905081810181811067ffffffffffffffff821117156144b2576144b16148d0565b5b8060405250919050565b600067ffffffffffffffff8211156144d7576144d66148d0565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614507576145066148d0565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061457f826146f3565b915061458a836146f3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145bf576145be614843565b5b828201905092915050565b60006145d5826146f3565b91506145e0836146f3565b9250826145f0576145ef614872565b5b828204905092915050565b6000614606826146f3565b9150614611836146f3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561464a57614649614843565b5b828202905092915050565b6000614660826146f3565b915061466b836146f3565b92508282101561467e5761467d614843565b5b828203905092915050565b6000614694826146d3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561472a57808201518184015260208101905061470f565b83811115614739576000848401525b50505050565b600061474a826146f3565b9150600082141561475e5761475d614843565b5b600182039050919050565b6000600282049050600182168061478157607f821691505b60208210811415614795576147946148a1565b5b50919050565b60006147a6826146f3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147d9576147d8614843565b5b600182019050919050565b60006147ef826147f6565b9050919050565b600061480182614910565b9050919050565b6000819050919050565b600061481d826146f3565b9150614828836146f3565b92508261483857614837614872565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b61492681614689565b811461493157600080fd5b50565b61493d8161469b565b811461494857600080fd5b50565b614954816146a7565b811461495f57600080fd5b50565b61496b816146f3565b811461497657600080fd5b5056fea264697066735822122043452cb1ed867d370db22d7eae70265e3a1a92b2adb752828653b6fbb0dba02f64736f6c63430008000033

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.