ETH Price: $3,606.73 (+4.46%)
 

Overview

Max Total Supply

185 PP

Holders

92

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
syke.eth
Balance
3 PP
0x3744817Bf2Ba8Fe13c17074f8cE53Bd963E0FBf5
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:
PixelPussies

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : PixelPussies.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
contract PixelPussies is ERC721, ERC721Enumerable, Ownable, ReentrancyGuard {
    using Strings for uint256;

	// Token Info
	uint256 public constant PRICE = .04 ether;
	uint256 public constant MAX_SUPPLY = 10000;
	uint256 public constant MAX_VOLUME_MINTABLE  = 10000;

    // Base URI
    string private _baseURIextended;
	
	// AllowList
	mapping(address => bool) private _allowList;
	mapping(address => uint256) private _stock;
	
	// PreSale - PublicSales
	bool private _isPreSaleActive = false;
	bool private _isPublicSaleActive = false;
	
	// Owners
	address private owner0 = 0x06754B7E4b20A87B58F6DbF4037aDc457FcEB9b9;
	address private owner1 = 0x03112e7C1d078265193C483a6afc8FfA2E0d7Ce0;
	address private owner2 = 0xC9fD593b01697f3C220734f7CDc03B2BC7AB9e72;
	address private owner3 = 0xE6dfC409F5c55ce0C7281F371F47F0eb956cf8d0;
	address private owner4 = 0x74A8acAC1408cdD99fAc009fa71cA6fC1B0EA599;
	address private owner5 = 0x139087327170736972AF33990F34E73499f540b7;
	
	// Modifiers
	modifier isRealUser() {
		require(msg.sender == tx.origin, "Sorry, you do not have the permission todo that.");
		_;
	}
	modifier isOwner() {
        require(msg.sender == owner0, "You are not an owner");
        _;
    }
	
	// Events
	event PreSaleStarted();
	event PreSaleStopped();
	event PublicSaleStarted();
	event PublicSaleStopped();
	
    constructor() ERC721('PixelPussies', 'PP') {}
	
	function addToAllowList(address[] calldata addresses) external onlyOwner() {
		for (uint256 i = 0; i < addresses.length; i++) {
		  require(addresses[i] != address(0), "Null address");
		  _allowList[addresses[i]] = true;
		}
	}

	function removeFromAllowList(address[] calldata addresses) external onlyOwner() {
		for (uint256 i = 0; i < addresses.length; i++) {
		  require(addresses[i] != address(0), "Null address");
		  _allowList[addresses[i]] = false;
		}
	}
	
	function isAddressAllowed(address addr) external view returns (bool) {
		return _allowList[addr];
	}

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIextended;
    }

	function getTotalSupply() public view returns (uint256) {
		return totalSupply();
	}
	
	function getTokenByOwner(address _owner) public view returns (uint256[] memory) {
		uint256 tokenCount = balanceOf(_owner);
		uint256[] memory tokenIds = new uint256[](tokenCount);
		for (uint256 i; i < tokenCount; i++) {
			tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
		}
		return tokenIds;
	}
	
	function startPreSale() public onlyOwner() {
		_isPreSaleActive = true;
		emit PreSaleStarted();
	}

	function pausePreSale() public onlyOwner() {
		_isPreSaleActive = false;
		emit PreSaleStopped();
	}
	
	function isPreSaleActive() public view returns (bool) {
		return _isPreSaleActive;
	}
	
	function startPublicSale() public onlyOwner() {
		_isPublicSaleActive = true;
		emit PublicSaleStarted();
	}

	function pausePublicSale() public onlyOwner() {
		_isPublicSaleActive = false;
		emit PublicSaleStopped();
	}
	
	function isPublicSaleActive() public view returns (bool) {
		return _isPublicSaleActive;
	}
	
	function withdraw() public isOwner() nonReentrant {
		uint256 currentBalance = address(this).balance;
		
		require(payable(owner0).send((currentBalance / 1000) * 200), "Wrong.");
		require(payable(owner1).send((currentBalance / 1000) * 200), "Wrong.");
		require(payable(owner2).send((currentBalance / 1000) * 165), "Wrong.");
		require(payable(owner3).send((currentBalance / 1000) * 200), "Wrong.");
		require(payable(owner4).send((currentBalance / 1000) * 200), "Wrong.");
		require(payable(owner5).send((currentBalance / 1000) * 35), "Wrong.");
	}
	
	function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
		require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
		
		if(tokenId < MAX_SUPPLY) {
			return string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"));
		} else {
			return "ERC721Metadata: URI query for nonexistent token - Invalid token ID";
		}
	}
	
	function mintPresale(uint8 TOKENS_TO_MINT) public payable isRealUser nonReentrant {
		require(_isPreSaleActive, "Sorry, pre-sales is not active yet.");
		require((totalSupply() + TOKENS_TO_MINT) <= MAX_VOLUME_MINTABLE , "Exceeding max supply");
		require(_allowList[msg.sender] == true, "Sorry, you are not whitelisted.");
		require(TOKENS_TO_MINT <= 5 && TOKENS_TO_MINT > 0, "Sorry, you are trying to mint too many tokens at one time");
		require(PRICE*TOKENS_TO_MINT <= msg.value, "Sorry, you did not sent the required amount of ETH");
		require((_stock[msg.sender] + TOKENS_TO_MINT) <= 5, "You are trying to mint too many tokens.");
		
		_allowList[msg.sender] = false;
		_mint(TOKENS_TO_MINT, msg.sender);
	}
	
	function mintPublic(uint8 TOKENS_TO_MINT) public payable isRealUser nonReentrant {
		require(_isPublicSaleActive, "Sorry, public-sales are not active yet.");
		require((totalSupply() + TOKENS_TO_MINT) <= MAX_VOLUME_MINTABLE , "Exceeding max supply");
		require(TOKENS_TO_MINT <= 10 && TOKENS_TO_MINT > 0, "Sorry, you are trying to mint too many tokens at one time");
		require(PRICE*TOKENS_TO_MINT <= msg.value, "Sorry, you did not sent the required amount of ETH");
		require((_stock[msg.sender] + TOKENS_TO_MINT) <= 10, "You are trying to mint too many tokens.");
		
		_mint(TOKENS_TO_MINT, msg.sender);
		_stock[msg.sender] += TOKENS_TO_MINT;
	}
	
	function _mint(uint256 num, address recipient) internal {
		uint256 supply = totalSupply();
		for (uint256 i = 0; i < num; i++) {
			_safeMint(recipient, supply + i);
		}
	}
	
	function _beforeTokenTransfer(
		address from,
		address to,
		uint256 tokenId
	) internal override(ERC721, ERC721Enumerable) {
		super._beforeTokenTransfer(from, to, tokenId);
	}
	
	function supportsInterface(bytes4 interfaceId)
		public
		view
		override(ERC721, ERC721Enumerable)
		returns (bool)
	{
		return super.supportsInterface(interfaceId);
	}
}

File 2 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 6 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 7 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

File 8 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 10 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 12 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 13 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

pragma solidity ^0.8.0;

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

File 15 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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":[],"name":"PreSaleStarted","type":"event"},{"anonymous":false,"inputs":[],"name":"PreSaleStopped","type":"event"},{"anonymous":false,"inputs":[],"name":"PublicSaleStarted","type":"event"},{"anonymous":false,"inputs":[],"name":"PublicSaleStopped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_VOLUME_MINTABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokenByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isAddressAllowed","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":[],"name":"isPreSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"TOKENS_TO_MINT","type":"uint8"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"TOKENS_TO_MINT","type":"uint8"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pausePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055507306754b7e4b20a87b58f6dbf4037adc457fceb9b9600f60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507303112e7c1d078265193c483a6afc8ffa2e0d7ce0601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c9fd593b01697f3c220734f7cdc03b2bc7ab9e72601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e6dfc409f5c55ce0c7281f371f47f0eb956cf8d0601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507374a8acac1408cdd99fac009fa71ca6fc1b0ea599601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073139087327170736972af33990f34e73499f540b7601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200024557600080fd5b506040518060400160405280600c81526020017f506978656c5075737369657300000000000000000000000000000000000000008152506040518060400160405280600281526020017f50500000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620002ca929190620003e2565b508060019080519060200190620002e3929190620003e2565b50505062000306620002fa6200031460201b60201c565b6200031c60201b60201c565b6001600b81905550620004f7565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003f090620004c1565b90600052602060002090601f01602090048101928262000414576000855562000460565b82601f106200042f57805160ff191683800117855562000460565b8280016001018555821562000460579182015b828111156200045f57825182559160200191906001019062000442565b5b5090506200046f919062000473565b5090565b5b808211156200048e57600081600090555060010162000474565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004da57607f821691505b60208210811415620004f157620004f062000492565b5b50919050565b61569080620005076000396000f3fe60806040526004361061021a5760003560e01c80636352211e1161012357806395d89b41116100ab578063b88d4fde1161006f578063b88d4fde1461076b578063c4e41b2214610794578063c87b56dd146107bf578063e985e9c5146107fc578063f2fde38b146108395761021a565b806395d89b41146106a75780639d044ed3146106d2578063a0a6ee0f146106fd578063a22cb46514610719578063a51312c8146107425761021a565b80637263cfe2116100f25780637263cfe2146105c05780638c0f33de146105e95780638d859f3e146106145780638da5cb5b1461063f5780638fa2a9031461066a5761021a565b80636352211e1461051357806367dce1ed1461055057806370a082311461056c578063715018a6146105a95761021a565b80632bf79c94116101a657806342842e0e1161017557806342842e0e146104565780634357da581461047f5780634f6ccce71461049657806355dd574c146104d357806355f804b3146104ea5761021a565b80632bf79c941461039a5780632f745c59146103d757806332cb6b0c146104145780633ccfd60b1461043f5761021a565b80630c1c972a116101ed5780630c1c972a146102ed5780630c41f4971461030457806318160ddd1461031b5780631e84c4131461034657806323b872dd146103715761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906139fe565b610862565b6040516102539190613a46565b60405180910390f35b34801561026857600080fd5b50610271610874565b60405161027e9190613afa565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613b52565b610906565b6040516102bb9190613bc0565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613c07565b61098b565b005b3480156102f957600080fd5b50610302610aa3565b005b34801561031057600080fd5b50610319610b68565b005b34801561032757600080fd5b50610330610c2d565b60405161033d9190613c56565b60405180910390f35b34801561035257600080fd5b5061035b610c3a565b6040516103689190613a46565b60405180910390f35b34801561037d57600080fd5b5061039860048036038101906103939190613c71565b610c51565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190613cc4565b610cb1565b6040516103ce9190613daf565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190613c07565b610d5f565b60405161040b9190613c56565b60405180910390f35b34801561042057600080fd5b50610429610e04565b6040516104369190613c56565b60405180910390f35b34801561044b57600080fd5b50610454610e0a565b005b34801561046257600080fd5b5061047d60048036038101906104789190613c71565b611312565b005b34801561048b57600080fd5b50610494611332565b005b3480156104a257600080fd5b506104bd60048036038101906104b89190613b52565b6113f7565b6040516104ca9190613c56565b60405180910390f35b3480156104df57600080fd5b506104e8611468565b005b3480156104f657600080fd5b50610511600480360381019061050c9190613f06565b61152d565b005b34801561051f57600080fd5b5061053a60048036038101906105359190613b52565b6115c3565b6040516105479190613bc0565b60405180910390f35b61056a60048036038101906105659190613f88565b611675565b005b34801561057857600080fd5b50610593600480360381019061058e9190613cc4565b61198a565b6040516105a09190613c56565b60405180910390f35b3480156105b557600080fd5b506105be611a42565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190614015565b611aca565b005b3480156105f557600080fd5b506105fe611c82565b60405161060b9190613c56565b60405180910390f35b34801561062057600080fd5b50610629611c88565b6040516106369190613c56565b60405180910390f35b34801561064b57600080fd5b50610654611c93565b6040516106619190613bc0565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190613cc4565b611cbd565b60405161069e9190613a46565b60405180910390f35b3480156106b357600080fd5b506106bc611d13565b6040516106c99190613afa565b60405180910390f35b3480156106de57600080fd5b506106e7611da5565b6040516106f49190613a46565b60405180910390f35b61071760048036038101906107129190613f88565b611dbc565b005b34801561072557600080fd5b50610740600480360381019061073b919061408e565b612163565b005b34801561074e57600080fd5b5061076960048036038101906107649190614015565b612179565b005b34801561077757600080fd5b50610792600480360381019061078d919061416f565b612331565b005b3480156107a057600080fd5b506107a9612393565b6040516107b69190613c56565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190613b52565b6123a2565b6040516107f39190613afa565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e91906141f2565b61244f565b6040516108309190613a46565b60405180910390f35b34801561084557600080fd5b50610860600480360381019061085b9190613cc4565b6124e3565b005b600061086d826125db565b9050919050565b60606000805461088390614261565b80601f01602080910402602001604051908101604052809291908181526020018280546108af90614261565b80156108fc5780601f106108d1576101008083540402835291602001916108fc565b820191906000526020600020905b8154815290600101906020018083116108df57829003601f168201915b5050505050905090565b600061091182612655565b610950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094790614305565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610996826115c3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe90614397565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a266126c1565b73ffffffffffffffffffffffffffffffffffffffff161480610a555750610a5481610a4f6126c1565b61244f565b5b610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b90614429565b60405180910390fd5b610a9e83836126c9565b505050565b610aab6126c1565b73ffffffffffffffffffffffffffffffffffffffff16610ac9611c93565b73ffffffffffffffffffffffffffffffffffffffff1614610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1690614495565b60405180910390fd5b6001600f60016101000a81548160ff0219169083151502179055507f7f61feaf9de325b870ef0cee2d50d59ea86b10142d5154a6595e06407eeda3e760405160405180910390a1565b610b706126c1565b73ffffffffffffffffffffffffffffffffffffffff16610b8e611c93565b73ffffffffffffffffffffffffffffffffffffffff1614610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb90614495565b60405180910390fd5b6000600f60016101000a81548160ff0219169083151502179055507f185010463fd349b428a7c1ac5caaec4859fc9e4b00617bf0316c017390bab80d60405160405180910390a1565b6000600880549050905090565b6000600f60019054906101000a900460ff16905090565b610c62610c5c6126c1565b82612782565b610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890614527565b60405180910390fd5b610cac838383612860565b505050565b60606000610cbe8361198a565b905060008167ffffffffffffffff811115610cdc57610cdb613ddb565b5b604051908082528060200260200182016040528015610d0a5781602001602082028036833780820191505090505b50905060005b82811015610d5457610d228582610d5f565b828281518110610d3557610d34614547565b5b6020026020010181815250508080610d4c906145a5565b915050610d10565b508092505050919050565b6000610d6a8361198a565b8210610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290614660565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b600f60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e91906146cc565b60405180910390fd5b6002600b541415610ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed790614738565b60405180910390fd5b6002600b819055506000479050600f60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60c86103e884610f399190614787565b610f4391906147b8565b9081150290604051600060405180830381858888f19350505050610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f939061485e565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60c86103e884610fe89190614787565b610ff291906147b8565b9081150290604051600060405180830381858888f1935050505061104b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110429061485e565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60a56103e8846110979190614787565b6110a191906147b8565b9081150290604051600060405180830381858888f193505050506110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f19061485e565b60405180910390fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60c86103e8846111469190614787565b61115091906147b8565b9081150290604051600060405180830381858888f193505050506111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a09061485e565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60c86103e8846111f59190614787565b6111ff91906147b8565b9081150290604051600060405180830381858888f19350505050611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f9061485e565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60236103e8846112a49190614787565b6112ae91906147b8565b9081150290604051600060405180830381858888f19350505050611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe9061485e565b60405180910390fd5b506001600b81905550565b61132d83838360405180602001604052806000815250612331565b505050565b61133a6126c1565b73ffffffffffffffffffffffffffffffffffffffff16611358611c93565b73ffffffffffffffffffffffffffffffffffffffff16146113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590614495565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055507f7628efb4517aedbd2d5089a0a7b84aa80584746bd21f90fd8705da1895344f2460405160405180910390a1565b6000611401610c2d565b8210611442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611439906148f0565b60405180910390fd5b6008828154811061145657611455614547565b5b90600052602060002001549050919050565b6114706126c1565b73ffffffffffffffffffffffffffffffffffffffff1661148e611c93565b73ffffffffffffffffffffffffffffffffffffffff16146114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db90614495565b60405180910390fd5b6001600f60006101000a81548160ff0219169083151502179055507f8dff4c1d9edc7d20fb38d7de9c46ff9338c28da4309a2ebadc0d8b309b000ff660405160405180910390a1565b6115356126c1565b73ffffffffffffffffffffffffffffffffffffffff16611553611c93565b73ffffffffffffffffffffffffffffffffffffffff16146115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a090614495565b60405180910390fd5b80600c90805190602001906115bf9291906138ef565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390614982565b60405180910390fd5b80915050919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90614a14565b60405180910390fd5b6002600b541415611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090614738565b60405180910390fd5b6002600b81905550600f60019054906101000a900460ff16611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790614aa6565b60405180910390fd5b6127108160ff1661178f610c2d565b6117999190614ac6565b11156117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d190614b68565b60405180910390fd5b600a8160ff16111580156117f1575060008160ff16115b611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790614bfa565b60405180910390fd5b348160ff16668e1bc9bf04000061184791906147b8565b1115611888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187f90614c8c565b60405180910390fd5b600a8160ff16600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118d89190614ac6565b1115611919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191090614d1e565b60405180910390fd5b6119268160ff1633612abc565b8060ff16600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119789190614ac6565b925050819055506001600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f290614db0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a4a6126c1565b73ffffffffffffffffffffffffffffffffffffffff16611a68611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab590614495565b60405180910390fd5b611ac86000612b01565b565b611ad26126c1565b73ffffffffffffffffffffffffffffffffffffffff16611af0611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d90614495565b60405180910390fd5b60005b82829050811015611c7d57600073ffffffffffffffffffffffffffffffffffffffff16838383818110611b7f57611b7e614547565b5b9050602002016020810190611b949190613cc4565b73ffffffffffffffffffffffffffffffffffffffff161415611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be290614e1c565b60405180910390fd5b6001600d6000858585818110611c0457611c03614547565b5b9050602002016020810190611c199190613cc4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611c75906145a5565b915050611b49565b505050565b61271081565b668e1bc9bf04000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b606060018054611d2290614261565b80601f0160208091040260200160405190810160405280929190818152602001828054611d4e90614261565b8015611d9b5780601f10611d7057610100808354040283529160200191611d9b565b820191906000526020600020905b815481529060010190602001808311611d7e57829003601f168201915b5050505050905090565b6000600f60009054906101000a900460ff16905090565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2190614a14565b60405180910390fd5b6002600b541415611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790614738565b60405180910390fd5b6002600b81905550600f60009054906101000a900460ff16611ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebe90614eae565b60405180910390fd5b6127108160ff16611ed6610c2d565b611ee09190614ac6565b1115611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1890614b68565b60405180910390fd5b60011515600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fab90614f1a565b60405180910390fd5b60058160ff1611158015611fcb575060008160ff16115b61200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190614bfa565b60405180910390fd5b348160ff16668e1bc9bf04000061202191906147b8565b1115612062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205990614c8c565b60405180910390fd5b60058160ff16600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120b29190614ac6565b11156120f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ea90614d1e565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506121588160ff1633612abc565b6001600b8190555050565b61217561216e6126c1565b8383612bc7565b5050565b6121816126c1565b73ffffffffffffffffffffffffffffffffffffffff1661219f611c93565b73ffffffffffffffffffffffffffffffffffffffff16146121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ec90614495565b60405180910390fd5b60005b8282905081101561232c57600073ffffffffffffffffffffffffffffffffffffffff1683838381811061222e5761222d614547565b5b90506020020160208101906122439190613cc4565b73ffffffffffffffffffffffffffffffffffffffff16141561229a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229190614e1c565b60405180910390fd5b6000600d60008585858181106122b3576122b2614547565b5b90506020020160208101906122c89190613cc4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612324906145a5565b9150506121f8565b505050565b61234261233c6126c1565b83612782565b612381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237890614527565b60405180910390fd5b61238d84848484612d34565b50505050565b600061239d610c2d565b905090565b60606123ad82612655565b6123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e390614fac565b60405180910390fd5b61271082101561242e576123fe612d90565b61240783612e22565b604051602001612418929190615054565b604051602081830303815290604052905061244a565b6040518060800160405280604281526020016156196042913990505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124eb6126c1565b73ffffffffffffffffffffffffffffffffffffffff16612509611c93565b73ffffffffffffffffffffffffffffffffffffffff161461255f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255690614495565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c6906150f5565b60405180910390fd5b6125d881612b01565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061264e575061264d82612f83565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661273c836115c3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061278d82612655565b6127cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c390615187565b60405180910390fd5b60006127d7836115c3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061284657508373ffffffffffffffffffffffffffffffffffffffff1661282e84610906565b73ffffffffffffffffffffffffffffffffffffffff16145b806128575750612856818561244f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612880826115c3565b73ffffffffffffffffffffffffffffffffffffffff16146128d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cd90615219565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293d906152ab565b60405180910390fd5b612951838383613065565b61295c6000826126c9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129ac91906152cb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a039190614ac6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612ac6610c2d565b905060005b83811015612afb57612ae8838284612ae39190614ac6565b613075565b8080612af3906145a5565b915050612acb565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2d9061534b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612d279190613a46565b60405180910390a3505050565b612d3f848484612860565b612d4b84848484613093565b612d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d81906153dd565b60405180910390fd5b50505050565b6060600c8054612d9f90614261565b80601f0160208091040260200160405190810160405280929190818152602001828054612dcb90614261565b8015612e185780601f10612ded57610100808354040283529160200191612e18565b820191906000526020600020905b815481529060010190602001808311612dfb57829003601f168201915b5050505050905090565b60606000821415612e6a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f7e565b600082905060005b60008214612e9c578080612e85906145a5565b915050600a82612e959190614787565b9150612e72565b60008167ffffffffffffffff811115612eb857612eb7613ddb565b5b6040519080825280601f01601f191660200182016040528015612eea5781602001600182028036833780820191505090505b5090505b60008514612f7757600182612f0391906152cb565b9150600a85612f1291906153fd565b6030612f1e9190614ac6565b60f81b818381518110612f3457612f33614547565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f709190614787565b9450612eee565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061304e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061305e575061305d8261322a565b5b9050919050565b613070838383613294565b505050565b61308f8282604051806020016040528060008152506133a8565b5050565b60006130b48473ffffffffffffffffffffffffffffffffffffffff16613403565b1561321d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130dd6126c1565b8786866040518563ffffffff1660e01b81526004016130ff9493929190615483565b602060405180830381600087803b15801561311957600080fd5b505af192505050801561314a57506040513d601f19601f8201168201806040525081019061314791906154e4565b60015b6131cd573d806000811461317a576040519150601f19603f3d011682016040523d82523d6000602084013e61317f565b606091505b506000815114156131c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131bc906153dd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613222565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61329f838383613416565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132e2576132dd8161341b565b613321565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133205761331f8382613464565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133645761335f816135d1565b6133a3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146133a2576133a182826136a2565b5b5b505050565b6133b28383613721565b6133bf6000848484613093565b6133fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f5906153dd565b60405180910390fd5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134718461198a565b61347b91906152cb565b9050600060076000848152602001908152602001600020549050818114613560576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506135e591906152cb565b905060006009600084815260200190815260200160002054905060006008838154811061361557613614614547565b5b90600052602060002001549050806008838154811061363757613636614547565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061368657613685615511565b5b6001900381819060005260206000200160009055905550505050565b60006136ad8361198a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613791576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137889061558c565b60405180910390fd5b61379a81612655565b156137da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d1906155f8565b60405180910390fd5b6137e660008383613065565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138369190614ac6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546138fb90614261565b90600052602060002090601f01602090048101928261391d5760008555613964565b82601f1061393657805160ff1916838001178555613964565b82800160010185558215613964579182015b82811115613963578251825591602001919060010190613948565b5b5090506139719190613975565b5090565b5b8082111561398e576000816000905550600101613976565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139db816139a6565b81146139e657600080fd5b50565b6000813590506139f8816139d2565b92915050565b600060208284031215613a1457613a1361399c565b5b6000613a22848285016139e9565b91505092915050565b60008115159050919050565b613a4081613a2b565b82525050565b6000602082019050613a5b6000830184613a37565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a9b578082015181840152602081019050613a80565b83811115613aaa576000848401525b50505050565b6000601f19601f8301169050919050565b6000613acc82613a61565b613ad68185613a6c565b9350613ae6818560208601613a7d565b613aef81613ab0565b840191505092915050565b60006020820190508181036000830152613b148184613ac1565b905092915050565b6000819050919050565b613b2f81613b1c565b8114613b3a57600080fd5b50565b600081359050613b4c81613b26565b92915050565b600060208284031215613b6857613b6761399c565b5b6000613b7684828501613b3d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613baa82613b7f565b9050919050565b613bba81613b9f565b82525050565b6000602082019050613bd56000830184613bb1565b92915050565b613be481613b9f565b8114613bef57600080fd5b50565b600081359050613c0181613bdb565b92915050565b60008060408385031215613c1e57613c1d61399c565b5b6000613c2c85828601613bf2565b9250506020613c3d85828601613b3d565b9150509250929050565b613c5081613b1c565b82525050565b6000602082019050613c6b6000830184613c47565b92915050565b600080600060608486031215613c8a57613c8961399c565b5b6000613c9886828701613bf2565b9350506020613ca986828701613bf2565b9250506040613cba86828701613b3d565b9150509250925092565b600060208284031215613cda57613cd961399c565b5b6000613ce884828501613bf2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613d2681613b1c565b82525050565b6000613d388383613d1d565b60208301905092915050565b6000602082019050919050565b6000613d5c82613cf1565b613d668185613cfc565b9350613d7183613d0d565b8060005b83811015613da2578151613d898882613d2c565b9750613d9483613d44565b925050600181019050613d75565b5085935050505092915050565b60006020820190508181036000830152613dc98184613d51565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e1382613ab0565b810181811067ffffffffffffffff82111715613e3257613e31613ddb565b5b80604052505050565b6000613e45613992565b9050613e518282613e0a565b919050565b600067ffffffffffffffff821115613e7157613e70613ddb565b5b613e7a82613ab0565b9050602081019050919050565b82818337600083830152505050565b6000613ea9613ea484613e56565b613e3b565b905082815260208101848484011115613ec557613ec4613dd6565b5b613ed0848285613e87565b509392505050565b600082601f830112613eed57613eec613dd1565b5b8135613efd848260208601613e96565b91505092915050565b600060208284031215613f1c57613f1b61399c565b5b600082013567ffffffffffffffff811115613f3a57613f396139a1565b5b613f4684828501613ed8565b91505092915050565b600060ff82169050919050565b613f6581613f4f565b8114613f7057600080fd5b50565b600081359050613f8281613f5c565b92915050565b600060208284031215613f9e57613f9d61399c565b5b6000613fac84828501613f73565b91505092915050565b600080fd5b600080fd5b60008083601f840112613fd557613fd4613dd1565b5b8235905067ffffffffffffffff811115613ff257613ff1613fb5565b5b60208301915083602082028301111561400e5761400d613fba565b5b9250929050565b6000806020838503121561402c5761402b61399c565b5b600083013567ffffffffffffffff81111561404a576140496139a1565b5b61405685828601613fbf565b92509250509250929050565b61406b81613a2b565b811461407657600080fd5b50565b60008135905061408881614062565b92915050565b600080604083850312156140a5576140a461399c565b5b60006140b385828601613bf2565b92505060206140c485828601614079565b9150509250929050565b600067ffffffffffffffff8211156140e9576140e8613ddb565b5b6140f282613ab0565b9050602081019050919050565b600061411261410d846140ce565b613e3b565b90508281526020810184848401111561412e5761412d613dd6565b5b614139848285613e87565b509392505050565b600082601f83011261415657614155613dd1565b5b81356141668482602086016140ff565b91505092915050565b600080600080608085870312156141895761418861399c565b5b600061419787828801613bf2565b94505060206141a887828801613bf2565b93505060406141b987828801613b3d565b925050606085013567ffffffffffffffff8111156141da576141d96139a1565b5b6141e687828801614141565b91505092959194509250565b600080604083850312156142095761420861399c565b5b600061421785828601613bf2565b925050602061422885828601613bf2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061427957607f821691505b6020821081141561428d5761428c614232565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006142ef602c83613a6c565b91506142fa82614293565b604082019050919050565b6000602082019050818103600083015261431e816142e2565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614381602183613a6c565b915061438c82614325565b604082019050919050565b600060208201905081810360008301526143b081614374565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614413603883613a6c565b915061441e826143b7565b604082019050919050565b6000602082019050818103600083015261444281614406565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061447f602083613a6c565b915061448a82614449565b602082019050919050565b600060208201905081810360008301526144ae81614472565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614511603183613a6c565b915061451c826144b5565b604082019050919050565b6000602082019050818103600083015261454081614504565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145b082613b1c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145e3576145e2614576565b5b600182019050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061464a602b83613a6c565b9150614655826145ee565b604082019050919050565b600060208201905081810360008301526146798161463d565b9050919050565b7f596f7520617265206e6f7420616e206f776e6572000000000000000000000000600082015250565b60006146b6601483613a6c565b91506146c182614680565b602082019050919050565b600060208201905081810360008301526146e5816146a9565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614722601f83613a6c565b915061472d826146ec565b602082019050919050565b6000602082019050818103600083015261475181614715565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061479282613b1c565b915061479d83613b1c565b9250826147ad576147ac614758565b5b828204905092915050565b60006147c382613b1c565b91506147ce83613b1c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561480757614806614576565b5b828202905092915050565b7f57726f6e672e0000000000000000000000000000000000000000000000000000600082015250565b6000614848600683613a6c565b915061485382614812565b602082019050919050565b600060208201905081810360008301526148778161483b565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006148da602c83613a6c565b91506148e58261487e565b604082019050919050565b60006020820190508181036000830152614909816148cd565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061496c602983613a6c565b915061497782614910565b604082019050919050565b6000602082019050818103600083015261499b8161495f565b9050919050565b7f536f7272792c20796f7520646f206e6f74206861766520746865207065726d6960008201527f7373696f6e20746f646f20746861742e00000000000000000000000000000000602082015250565b60006149fe603083613a6c565b9150614a09826149a2565b604082019050919050565b60006020820190508181036000830152614a2d816149f1565b9050919050565b7f536f7272792c207075626c69632d73616c657320617265206e6f74206163746960008201527f7665207965742e00000000000000000000000000000000000000000000000000602082015250565b6000614a90602783613a6c565b9150614a9b82614a34565b604082019050919050565b60006020820190508181036000830152614abf81614a83565b9050919050565b6000614ad182613b1c565b9150614adc83613b1c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b1157614b10614576565b5b828201905092915050565b7f457863656564696e67206d617820737570706c79000000000000000000000000600082015250565b6000614b52601483613a6c565b9150614b5d82614b1c565b602082019050919050565b60006020820190508181036000830152614b8181614b45565b9050919050565b7f536f7272792c20796f752061726520747279696e6720746f206d696e7420746f60008201527f6f206d616e7920746f6b656e73206174206f6e652074696d6500000000000000602082015250565b6000614be4603983613a6c565b9150614bef82614b88565b604082019050919050565b60006020820190508181036000830152614c1381614bd7565b9050919050565b7f536f7272792c20796f7520646964206e6f742073656e7420746865207265717560008201527f6972656420616d6f756e74206f66204554480000000000000000000000000000602082015250565b6000614c76603283613a6c565b9150614c8182614c1a565b604082019050919050565b60006020820190508181036000830152614ca581614c69565b9050919050565b7f596f752061726520747279696e6720746f206d696e7420746f6f206d616e792060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b6000614d08602783613a6c565b9150614d1382614cac565b604082019050919050565b60006020820190508181036000830152614d3781614cfb565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614d9a602a83613a6c565b9150614da582614d3e565b604082019050919050565b60006020820190508181036000830152614dc981614d8d565b9050919050565b7f4e756c6c20616464726573730000000000000000000000000000000000000000600082015250565b6000614e06600c83613a6c565b9150614e1182614dd0565b602082019050919050565b60006020820190508181036000830152614e3581614df9565b9050919050565b7f536f7272792c207072652d73616c6573206973206e6f7420616374697665207960008201527f65742e0000000000000000000000000000000000000000000000000000000000602082015250565b6000614e98602383613a6c565b9150614ea382614e3c565b604082019050919050565b60006020820190508181036000830152614ec781614e8b565b9050919050565b7f536f7272792c20796f7520617265206e6f742077686974656c69737465642e00600082015250565b6000614f04601f83613a6c565b9150614f0f82614ece565b602082019050919050565b60006020820190508181036000830152614f3381614ef7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614f96602f83613a6c565b9150614fa182614f3a565b604082019050919050565b60006020820190508181036000830152614fc581614f89565b9050919050565b600081905092915050565b6000614fe282613a61565b614fec8185614fcc565b9350614ffc818560208601613a7d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061503e600583614fcc565b915061504982615008565b600582019050919050565b60006150608285614fd7565b915061506c8284614fd7565b915061507782615031565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150df602683613a6c565b91506150ea82615083565b604082019050919050565b6000602082019050818103600083015261510e816150d2565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615171602c83613a6c565b915061517c82615115565b604082019050919050565b600060208201905081810360008301526151a081615164565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615203602983613a6c565b915061520e826151a7565b604082019050919050565b60006020820190508181036000830152615232816151f6565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615295602483613a6c565b91506152a082615239565b604082019050919050565b600060208201905081810360008301526152c481615288565b9050919050565b60006152d682613b1c565b91506152e183613b1c565b9250828210156152f4576152f3614576565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615335601983613a6c565b9150615340826152ff565b602082019050919050565b6000602082019050818103600083015261536481615328565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006153c7603283613a6c565b91506153d28261536b565b604082019050919050565b600060208201905081810360008301526153f6816153ba565b9050919050565b600061540882613b1c565b915061541383613b1c565b92508261542357615422614758565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006154558261542e565b61545f8185615439565b935061546f818560208601613a7d565b61547881613ab0565b840191505092915050565b60006080820190506154986000830187613bb1565b6154a56020830186613bb1565b6154b26040830185613c47565b81810360608301526154c4818461544a565b905095945050505050565b6000815190506154de816139d2565b92915050565b6000602082840312156154fa576154f961399c565b5b6000615508848285016154cf565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615576602083613a6c565b915061558182615540565b602082019050919050565b600060208201905081810360008301526155a581615569565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006155e2601c83613a6c565b91506155ed826155ac565b602082019050919050565b60006020820190508181036000830152615611816155d5565b905091905056fe4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e202d20496e76616c696420746f6b656e204944a2646970667358221220d8f91af92c76f8a6f28ca9458fffb12b7037b161164f197a35e375b4ebcc452b64736f6c63430008090033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636352211e1161012357806395d89b41116100ab578063b88d4fde1161006f578063b88d4fde1461076b578063c4e41b2214610794578063c87b56dd146107bf578063e985e9c5146107fc578063f2fde38b146108395761021a565b806395d89b41146106a75780639d044ed3146106d2578063a0a6ee0f146106fd578063a22cb46514610719578063a51312c8146107425761021a565b80637263cfe2116100f25780637263cfe2146105c05780638c0f33de146105e95780638d859f3e146106145780638da5cb5b1461063f5780638fa2a9031461066a5761021a565b80636352211e1461051357806367dce1ed1461055057806370a082311461056c578063715018a6146105a95761021a565b80632bf79c94116101a657806342842e0e1161017557806342842e0e146104565780634357da581461047f5780634f6ccce71461049657806355dd574c146104d357806355f804b3146104ea5761021a565b80632bf79c941461039a5780632f745c59146103d757806332cb6b0c146104145780633ccfd60b1461043f5761021a565b80630c1c972a116101ed5780630c1c972a146102ed5780630c41f4971461030457806318160ddd1461031b5780631e84c4131461034657806323b872dd146103715761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906139fe565b610862565b6040516102539190613a46565b60405180910390f35b34801561026857600080fd5b50610271610874565b60405161027e9190613afa565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613b52565b610906565b6040516102bb9190613bc0565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613c07565b61098b565b005b3480156102f957600080fd5b50610302610aa3565b005b34801561031057600080fd5b50610319610b68565b005b34801561032757600080fd5b50610330610c2d565b60405161033d9190613c56565b60405180910390f35b34801561035257600080fd5b5061035b610c3a565b6040516103689190613a46565b60405180910390f35b34801561037d57600080fd5b5061039860048036038101906103939190613c71565b610c51565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190613cc4565b610cb1565b6040516103ce9190613daf565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190613c07565b610d5f565b60405161040b9190613c56565b60405180910390f35b34801561042057600080fd5b50610429610e04565b6040516104369190613c56565b60405180910390f35b34801561044b57600080fd5b50610454610e0a565b005b34801561046257600080fd5b5061047d60048036038101906104789190613c71565b611312565b005b34801561048b57600080fd5b50610494611332565b005b3480156104a257600080fd5b506104bd60048036038101906104b89190613b52565b6113f7565b6040516104ca9190613c56565b60405180910390f35b3480156104df57600080fd5b506104e8611468565b005b3480156104f657600080fd5b50610511600480360381019061050c9190613f06565b61152d565b005b34801561051f57600080fd5b5061053a60048036038101906105359190613b52565b6115c3565b6040516105479190613bc0565b60405180910390f35b61056a60048036038101906105659190613f88565b611675565b005b34801561057857600080fd5b50610593600480360381019061058e9190613cc4565b61198a565b6040516105a09190613c56565b60405180910390f35b3480156105b557600080fd5b506105be611a42565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190614015565b611aca565b005b3480156105f557600080fd5b506105fe611c82565b60405161060b9190613c56565b60405180910390f35b34801561062057600080fd5b50610629611c88565b6040516106369190613c56565b60405180910390f35b34801561064b57600080fd5b50610654611c93565b6040516106619190613bc0565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190613cc4565b611cbd565b60405161069e9190613a46565b60405180910390f35b3480156106b357600080fd5b506106bc611d13565b6040516106c99190613afa565b60405180910390f35b3480156106de57600080fd5b506106e7611da5565b6040516106f49190613a46565b60405180910390f35b61071760048036038101906107129190613f88565b611dbc565b005b34801561072557600080fd5b50610740600480360381019061073b919061408e565b612163565b005b34801561074e57600080fd5b5061076960048036038101906107649190614015565b612179565b005b34801561077757600080fd5b50610792600480360381019061078d919061416f565b612331565b005b3480156107a057600080fd5b506107a9612393565b6040516107b69190613c56565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190613b52565b6123a2565b6040516107f39190613afa565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e91906141f2565b61244f565b6040516108309190613a46565b60405180910390f35b34801561084557600080fd5b50610860600480360381019061085b9190613cc4565b6124e3565b005b600061086d826125db565b9050919050565b60606000805461088390614261565b80601f01602080910402602001604051908101604052809291908181526020018280546108af90614261565b80156108fc5780601f106108d1576101008083540402835291602001916108fc565b820191906000526020600020905b8154815290600101906020018083116108df57829003601f168201915b5050505050905090565b600061091182612655565b610950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094790614305565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610996826115c3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe90614397565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a266126c1565b73ffffffffffffffffffffffffffffffffffffffff161480610a555750610a5481610a4f6126c1565b61244f565b5b610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b90614429565b60405180910390fd5b610a9e83836126c9565b505050565b610aab6126c1565b73ffffffffffffffffffffffffffffffffffffffff16610ac9611c93565b73ffffffffffffffffffffffffffffffffffffffff1614610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1690614495565b60405180910390fd5b6001600f60016101000a81548160ff0219169083151502179055507f7f61feaf9de325b870ef0cee2d50d59ea86b10142d5154a6595e06407eeda3e760405160405180910390a1565b610b706126c1565b73ffffffffffffffffffffffffffffffffffffffff16610b8e611c93565b73ffffffffffffffffffffffffffffffffffffffff1614610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb90614495565b60405180910390fd5b6000600f60016101000a81548160ff0219169083151502179055507f185010463fd349b428a7c1ac5caaec4859fc9e4b00617bf0316c017390bab80d60405160405180910390a1565b6000600880549050905090565b6000600f60019054906101000a900460ff16905090565b610c62610c5c6126c1565b82612782565b610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890614527565b60405180910390fd5b610cac838383612860565b505050565b60606000610cbe8361198a565b905060008167ffffffffffffffff811115610cdc57610cdb613ddb565b5b604051908082528060200260200182016040528015610d0a5781602001602082028036833780820191505090505b50905060005b82811015610d5457610d228582610d5f565b828281518110610d3557610d34614547565b5b6020026020010181815250508080610d4c906145a5565b915050610d10565b508092505050919050565b6000610d6a8361198a565b8210610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290614660565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b600f60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e91906146cc565b60405180910390fd5b6002600b541415610ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed790614738565b60405180910390fd5b6002600b819055506000479050600f60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60c86103e884610f399190614787565b610f4391906147b8565b9081150290604051600060405180830381858888f19350505050610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f939061485e565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60c86103e884610fe89190614787565b610ff291906147b8565b9081150290604051600060405180830381858888f1935050505061104b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110429061485e565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60a56103e8846110979190614787565b6110a191906147b8565b9081150290604051600060405180830381858888f193505050506110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f19061485e565b60405180910390fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60c86103e8846111469190614787565b61115091906147b8565b9081150290604051600060405180830381858888f193505050506111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a09061485e565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60c86103e8846111f59190614787565b6111ff91906147b8565b9081150290604051600060405180830381858888f19350505050611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f9061485e565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60236103e8846112a49190614787565b6112ae91906147b8565b9081150290604051600060405180830381858888f19350505050611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe9061485e565b60405180910390fd5b506001600b81905550565b61132d83838360405180602001604052806000815250612331565b505050565b61133a6126c1565b73ffffffffffffffffffffffffffffffffffffffff16611358611c93565b73ffffffffffffffffffffffffffffffffffffffff16146113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590614495565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055507f7628efb4517aedbd2d5089a0a7b84aa80584746bd21f90fd8705da1895344f2460405160405180910390a1565b6000611401610c2d565b8210611442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611439906148f0565b60405180910390fd5b6008828154811061145657611455614547565b5b90600052602060002001549050919050565b6114706126c1565b73ffffffffffffffffffffffffffffffffffffffff1661148e611c93565b73ffffffffffffffffffffffffffffffffffffffff16146114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db90614495565b60405180910390fd5b6001600f60006101000a81548160ff0219169083151502179055507f8dff4c1d9edc7d20fb38d7de9c46ff9338c28da4309a2ebadc0d8b309b000ff660405160405180910390a1565b6115356126c1565b73ffffffffffffffffffffffffffffffffffffffff16611553611c93565b73ffffffffffffffffffffffffffffffffffffffff16146115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a090614495565b60405180910390fd5b80600c90805190602001906115bf9291906138ef565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390614982565b60405180910390fd5b80915050919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90614a14565b60405180910390fd5b6002600b541415611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090614738565b60405180910390fd5b6002600b81905550600f60019054906101000a900460ff16611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790614aa6565b60405180910390fd5b6127108160ff1661178f610c2d565b6117999190614ac6565b11156117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d190614b68565b60405180910390fd5b600a8160ff16111580156117f1575060008160ff16115b611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790614bfa565b60405180910390fd5b348160ff16668e1bc9bf04000061184791906147b8565b1115611888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187f90614c8c565b60405180910390fd5b600a8160ff16600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118d89190614ac6565b1115611919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191090614d1e565b60405180910390fd5b6119268160ff1633612abc565b8060ff16600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119789190614ac6565b925050819055506001600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f290614db0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a4a6126c1565b73ffffffffffffffffffffffffffffffffffffffff16611a68611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab590614495565b60405180910390fd5b611ac86000612b01565b565b611ad26126c1565b73ffffffffffffffffffffffffffffffffffffffff16611af0611c93565b73ffffffffffffffffffffffffffffffffffffffff1614611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d90614495565b60405180910390fd5b60005b82829050811015611c7d57600073ffffffffffffffffffffffffffffffffffffffff16838383818110611b7f57611b7e614547565b5b9050602002016020810190611b949190613cc4565b73ffffffffffffffffffffffffffffffffffffffff161415611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be290614e1c565b60405180910390fd5b6001600d6000858585818110611c0457611c03614547565b5b9050602002016020810190611c199190613cc4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611c75906145a5565b915050611b49565b505050565b61271081565b668e1bc9bf04000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b606060018054611d2290614261565b80601f0160208091040260200160405190810160405280929190818152602001828054611d4e90614261565b8015611d9b5780601f10611d7057610100808354040283529160200191611d9b565b820191906000526020600020905b815481529060010190602001808311611d7e57829003601f168201915b5050505050905090565b6000600f60009054906101000a900460ff16905090565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2190614a14565b60405180910390fd5b6002600b541415611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790614738565b60405180910390fd5b6002600b81905550600f60009054906101000a900460ff16611ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebe90614eae565b60405180910390fd5b6127108160ff16611ed6610c2d565b611ee09190614ac6565b1115611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1890614b68565b60405180910390fd5b60011515600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fab90614f1a565b60405180910390fd5b60058160ff1611158015611fcb575060008160ff16115b61200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190614bfa565b60405180910390fd5b348160ff16668e1bc9bf04000061202191906147b8565b1115612062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205990614c8c565b60405180910390fd5b60058160ff16600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120b29190614ac6565b11156120f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ea90614d1e565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506121588160ff1633612abc565b6001600b8190555050565b61217561216e6126c1565b8383612bc7565b5050565b6121816126c1565b73ffffffffffffffffffffffffffffffffffffffff1661219f611c93565b73ffffffffffffffffffffffffffffffffffffffff16146121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ec90614495565b60405180910390fd5b60005b8282905081101561232c57600073ffffffffffffffffffffffffffffffffffffffff1683838381811061222e5761222d614547565b5b90506020020160208101906122439190613cc4565b73ffffffffffffffffffffffffffffffffffffffff16141561229a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229190614e1c565b60405180910390fd5b6000600d60008585858181106122b3576122b2614547565b5b90506020020160208101906122c89190613cc4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612324906145a5565b9150506121f8565b505050565b61234261233c6126c1565b83612782565b612381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237890614527565b60405180910390fd5b61238d84848484612d34565b50505050565b600061239d610c2d565b905090565b60606123ad82612655565b6123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e390614fac565b60405180910390fd5b61271082101561242e576123fe612d90565b61240783612e22565b604051602001612418929190615054565b604051602081830303815290604052905061244a565b6040518060800160405280604281526020016156196042913990505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124eb6126c1565b73ffffffffffffffffffffffffffffffffffffffff16612509611c93565b73ffffffffffffffffffffffffffffffffffffffff161461255f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255690614495565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c6906150f5565b60405180910390fd5b6125d881612b01565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061264e575061264d82612f83565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661273c836115c3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061278d82612655565b6127cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c390615187565b60405180910390fd5b60006127d7836115c3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061284657508373ffffffffffffffffffffffffffffffffffffffff1661282e84610906565b73ffffffffffffffffffffffffffffffffffffffff16145b806128575750612856818561244f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612880826115c3565b73ffffffffffffffffffffffffffffffffffffffff16146128d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cd90615219565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293d906152ab565b60405180910390fd5b612951838383613065565b61295c6000826126c9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129ac91906152cb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a039190614ac6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612ac6610c2d565b905060005b83811015612afb57612ae8838284612ae39190614ac6565b613075565b8080612af3906145a5565b915050612acb565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2d9061534b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612d279190613a46565b60405180910390a3505050565b612d3f848484612860565b612d4b84848484613093565b612d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d81906153dd565b60405180910390fd5b50505050565b6060600c8054612d9f90614261565b80601f0160208091040260200160405190810160405280929190818152602001828054612dcb90614261565b8015612e185780601f10612ded57610100808354040283529160200191612e18565b820191906000526020600020905b815481529060010190602001808311612dfb57829003601f168201915b5050505050905090565b60606000821415612e6a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f7e565b600082905060005b60008214612e9c578080612e85906145a5565b915050600a82612e959190614787565b9150612e72565b60008167ffffffffffffffff811115612eb857612eb7613ddb565b5b6040519080825280601f01601f191660200182016040528015612eea5781602001600182028036833780820191505090505b5090505b60008514612f7757600182612f0391906152cb565b9150600a85612f1291906153fd565b6030612f1e9190614ac6565b60f81b818381518110612f3457612f33614547565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f709190614787565b9450612eee565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061304e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061305e575061305d8261322a565b5b9050919050565b613070838383613294565b505050565b61308f8282604051806020016040528060008152506133a8565b5050565b60006130b48473ffffffffffffffffffffffffffffffffffffffff16613403565b1561321d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130dd6126c1565b8786866040518563ffffffff1660e01b81526004016130ff9493929190615483565b602060405180830381600087803b15801561311957600080fd5b505af192505050801561314a57506040513d601f19601f8201168201806040525081019061314791906154e4565b60015b6131cd573d806000811461317a576040519150601f19603f3d011682016040523d82523d6000602084013e61317f565b606091505b506000815114156131c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131bc906153dd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613222565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61329f838383613416565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132e2576132dd8161341b565b613321565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133205761331f8382613464565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133645761335f816135d1565b6133a3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146133a2576133a182826136a2565b5b5b505050565b6133b28383613721565b6133bf6000848484613093565b6133fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f5906153dd565b60405180910390fd5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134718461198a565b61347b91906152cb565b9050600060076000848152602001908152602001600020549050818114613560576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506135e591906152cb565b905060006009600084815260200190815260200160002054905060006008838154811061361557613614614547565b5b90600052602060002001549050806008838154811061363757613636614547565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061368657613685615511565b5b6001900381819060005260206000200160009055905550505050565b60006136ad8361198a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613791576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137889061558c565b60405180910390fd5b61379a81612655565b156137da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d1906155f8565b60405180910390fd5b6137e660008383613065565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138369190614ac6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546138fb90614261565b90600052602060002090601f01602090048101928261391d5760008555613964565b82601f1061393657805160ff1916838001178555613964565b82800160010185558215613964579182015b82811115613963578251825591602001919060010190613948565b5b5090506139719190613975565b5090565b5b8082111561398e576000816000905550600101613976565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139db816139a6565b81146139e657600080fd5b50565b6000813590506139f8816139d2565b92915050565b600060208284031215613a1457613a1361399c565b5b6000613a22848285016139e9565b91505092915050565b60008115159050919050565b613a4081613a2b565b82525050565b6000602082019050613a5b6000830184613a37565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a9b578082015181840152602081019050613a80565b83811115613aaa576000848401525b50505050565b6000601f19601f8301169050919050565b6000613acc82613a61565b613ad68185613a6c565b9350613ae6818560208601613a7d565b613aef81613ab0565b840191505092915050565b60006020820190508181036000830152613b148184613ac1565b905092915050565b6000819050919050565b613b2f81613b1c565b8114613b3a57600080fd5b50565b600081359050613b4c81613b26565b92915050565b600060208284031215613b6857613b6761399c565b5b6000613b7684828501613b3d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613baa82613b7f565b9050919050565b613bba81613b9f565b82525050565b6000602082019050613bd56000830184613bb1565b92915050565b613be481613b9f565b8114613bef57600080fd5b50565b600081359050613c0181613bdb565b92915050565b60008060408385031215613c1e57613c1d61399c565b5b6000613c2c85828601613bf2565b9250506020613c3d85828601613b3d565b9150509250929050565b613c5081613b1c565b82525050565b6000602082019050613c6b6000830184613c47565b92915050565b600080600060608486031215613c8a57613c8961399c565b5b6000613c9886828701613bf2565b9350506020613ca986828701613bf2565b9250506040613cba86828701613b3d565b9150509250925092565b600060208284031215613cda57613cd961399c565b5b6000613ce884828501613bf2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613d2681613b1c565b82525050565b6000613d388383613d1d565b60208301905092915050565b6000602082019050919050565b6000613d5c82613cf1565b613d668185613cfc565b9350613d7183613d0d565b8060005b83811015613da2578151613d898882613d2c565b9750613d9483613d44565b925050600181019050613d75565b5085935050505092915050565b60006020820190508181036000830152613dc98184613d51565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e1382613ab0565b810181811067ffffffffffffffff82111715613e3257613e31613ddb565b5b80604052505050565b6000613e45613992565b9050613e518282613e0a565b919050565b600067ffffffffffffffff821115613e7157613e70613ddb565b5b613e7a82613ab0565b9050602081019050919050565b82818337600083830152505050565b6000613ea9613ea484613e56565b613e3b565b905082815260208101848484011115613ec557613ec4613dd6565b5b613ed0848285613e87565b509392505050565b600082601f830112613eed57613eec613dd1565b5b8135613efd848260208601613e96565b91505092915050565b600060208284031215613f1c57613f1b61399c565b5b600082013567ffffffffffffffff811115613f3a57613f396139a1565b5b613f4684828501613ed8565b91505092915050565b600060ff82169050919050565b613f6581613f4f565b8114613f7057600080fd5b50565b600081359050613f8281613f5c565b92915050565b600060208284031215613f9e57613f9d61399c565b5b6000613fac84828501613f73565b91505092915050565b600080fd5b600080fd5b60008083601f840112613fd557613fd4613dd1565b5b8235905067ffffffffffffffff811115613ff257613ff1613fb5565b5b60208301915083602082028301111561400e5761400d613fba565b5b9250929050565b6000806020838503121561402c5761402b61399c565b5b600083013567ffffffffffffffff81111561404a576140496139a1565b5b61405685828601613fbf565b92509250509250929050565b61406b81613a2b565b811461407657600080fd5b50565b60008135905061408881614062565b92915050565b600080604083850312156140a5576140a461399c565b5b60006140b385828601613bf2565b92505060206140c485828601614079565b9150509250929050565b600067ffffffffffffffff8211156140e9576140e8613ddb565b5b6140f282613ab0565b9050602081019050919050565b600061411261410d846140ce565b613e3b565b90508281526020810184848401111561412e5761412d613dd6565b5b614139848285613e87565b509392505050565b600082601f83011261415657614155613dd1565b5b81356141668482602086016140ff565b91505092915050565b600080600080608085870312156141895761418861399c565b5b600061419787828801613bf2565b94505060206141a887828801613bf2565b93505060406141b987828801613b3d565b925050606085013567ffffffffffffffff8111156141da576141d96139a1565b5b6141e687828801614141565b91505092959194509250565b600080604083850312156142095761420861399c565b5b600061421785828601613bf2565b925050602061422885828601613bf2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061427957607f821691505b6020821081141561428d5761428c614232565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006142ef602c83613a6c565b91506142fa82614293565b604082019050919050565b6000602082019050818103600083015261431e816142e2565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614381602183613a6c565b915061438c82614325565b604082019050919050565b600060208201905081810360008301526143b081614374565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614413603883613a6c565b915061441e826143b7565b604082019050919050565b6000602082019050818103600083015261444281614406565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061447f602083613a6c565b915061448a82614449565b602082019050919050565b600060208201905081810360008301526144ae81614472565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614511603183613a6c565b915061451c826144b5565b604082019050919050565b6000602082019050818103600083015261454081614504565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145b082613b1c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145e3576145e2614576565b5b600182019050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061464a602b83613a6c565b9150614655826145ee565b604082019050919050565b600060208201905081810360008301526146798161463d565b9050919050565b7f596f7520617265206e6f7420616e206f776e6572000000000000000000000000600082015250565b60006146b6601483613a6c565b91506146c182614680565b602082019050919050565b600060208201905081810360008301526146e5816146a9565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614722601f83613a6c565b915061472d826146ec565b602082019050919050565b6000602082019050818103600083015261475181614715565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061479282613b1c565b915061479d83613b1c565b9250826147ad576147ac614758565b5b828204905092915050565b60006147c382613b1c565b91506147ce83613b1c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561480757614806614576565b5b828202905092915050565b7f57726f6e672e0000000000000000000000000000000000000000000000000000600082015250565b6000614848600683613a6c565b915061485382614812565b602082019050919050565b600060208201905081810360008301526148778161483b565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006148da602c83613a6c565b91506148e58261487e565b604082019050919050565b60006020820190508181036000830152614909816148cd565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061496c602983613a6c565b915061497782614910565b604082019050919050565b6000602082019050818103600083015261499b8161495f565b9050919050565b7f536f7272792c20796f7520646f206e6f74206861766520746865207065726d6960008201527f7373696f6e20746f646f20746861742e00000000000000000000000000000000602082015250565b60006149fe603083613a6c565b9150614a09826149a2565b604082019050919050565b60006020820190508181036000830152614a2d816149f1565b9050919050565b7f536f7272792c207075626c69632d73616c657320617265206e6f74206163746960008201527f7665207965742e00000000000000000000000000000000000000000000000000602082015250565b6000614a90602783613a6c565b9150614a9b82614a34565b604082019050919050565b60006020820190508181036000830152614abf81614a83565b9050919050565b6000614ad182613b1c565b9150614adc83613b1c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b1157614b10614576565b5b828201905092915050565b7f457863656564696e67206d617820737570706c79000000000000000000000000600082015250565b6000614b52601483613a6c565b9150614b5d82614b1c565b602082019050919050565b60006020820190508181036000830152614b8181614b45565b9050919050565b7f536f7272792c20796f752061726520747279696e6720746f206d696e7420746f60008201527f6f206d616e7920746f6b656e73206174206f6e652074696d6500000000000000602082015250565b6000614be4603983613a6c565b9150614bef82614b88565b604082019050919050565b60006020820190508181036000830152614c1381614bd7565b9050919050565b7f536f7272792c20796f7520646964206e6f742073656e7420746865207265717560008201527f6972656420616d6f756e74206f66204554480000000000000000000000000000602082015250565b6000614c76603283613a6c565b9150614c8182614c1a565b604082019050919050565b60006020820190508181036000830152614ca581614c69565b9050919050565b7f596f752061726520747279696e6720746f206d696e7420746f6f206d616e792060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b6000614d08602783613a6c565b9150614d1382614cac565b604082019050919050565b60006020820190508181036000830152614d3781614cfb565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614d9a602a83613a6c565b9150614da582614d3e565b604082019050919050565b60006020820190508181036000830152614dc981614d8d565b9050919050565b7f4e756c6c20616464726573730000000000000000000000000000000000000000600082015250565b6000614e06600c83613a6c565b9150614e1182614dd0565b602082019050919050565b60006020820190508181036000830152614e3581614df9565b9050919050565b7f536f7272792c207072652d73616c6573206973206e6f7420616374697665207960008201527f65742e0000000000000000000000000000000000000000000000000000000000602082015250565b6000614e98602383613a6c565b9150614ea382614e3c565b604082019050919050565b60006020820190508181036000830152614ec781614e8b565b9050919050565b7f536f7272792c20796f7520617265206e6f742077686974656c69737465642e00600082015250565b6000614f04601f83613a6c565b9150614f0f82614ece565b602082019050919050565b60006020820190508181036000830152614f3381614ef7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614f96602f83613a6c565b9150614fa182614f3a565b604082019050919050565b60006020820190508181036000830152614fc581614f89565b9050919050565b600081905092915050565b6000614fe282613a61565b614fec8185614fcc565b9350614ffc818560208601613a7d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061503e600583614fcc565b915061504982615008565b600582019050919050565b60006150608285614fd7565b915061506c8284614fd7565b915061507782615031565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150df602683613a6c565b91506150ea82615083565b604082019050919050565b6000602082019050818103600083015261510e816150d2565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615171602c83613a6c565b915061517c82615115565b604082019050919050565b600060208201905081810360008301526151a081615164565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615203602983613a6c565b915061520e826151a7565b604082019050919050565b60006020820190508181036000830152615232816151f6565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615295602483613a6c565b91506152a082615239565b604082019050919050565b600060208201905081810360008301526152c481615288565b9050919050565b60006152d682613b1c565b91506152e183613b1c565b9250828210156152f4576152f3614576565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615335601983613a6c565b9150615340826152ff565b602082019050919050565b6000602082019050818103600083015261536481615328565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006153c7603283613a6c565b91506153d28261536b565b604082019050919050565b600060208201905081810360008301526153f6816153ba565b9050919050565b600061540882613b1c565b915061541383613b1c565b92508261542357615422614758565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006154558261542e565b61545f8185615439565b935061546f818560208601613a7d565b61547881613ab0565b840191505092915050565b60006080820190506154986000830187613bb1565b6154a56020830186613bb1565b6154b26040830185613c47565b81810360608301526154c4818461544a565b905095945050505050565b6000815190506154de816139d2565b92915050565b6000602082840312156154fa576154f961399c565b5b6000615508848285016154cf565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615576602083613a6c565b915061558182615540565b602082019050919050565b600060208201905081810360008301526155a581615569565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006155e2601c83613a6c565b91506155ed826155ac565b602082019050919050565b60006020820190508181036000830152615611816155d5565b905091905056fe4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e202d20496e76616c696420746f6b656e204944a2646970667358221220d8f91af92c76f8a6f28ca9458fffb12b7037b161164f197a35e375b4ebcc452b64736f6c63430008090033

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.