ETH Price: $3,123.35 (-1.78%)

Token

Zombeh Collection (ZOMBEH)
 

Overview

Max Total Supply

0 ZOMBEH

Holders

14

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ZOMBEH
0xb5b361e55067a2e9505f7f9730646379b13f0de0
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:
ZombehNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract ZombehNFT is ERC721, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Address for address payable;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    string private baseURI;
    string private collectionURI;
    string public provenanceHash;
    uint256 public numReservedTokens;
    bytes32 private preSaleListMerkleRoot;

    mapping(address => uint256) public preSaleMintCounts; 

    enum SaleState {
        Inactive,
        PreSale,
        PublicSale
    }

    SaleState public saleState = SaleState.Inactive;
    address public royaltyReceiverAddress;

    uint256 public constant MAX_TOTAL_SUPPLY = 10000;
    uint256 public constant MAX_PRE_SALE_MINTS = 3;
    uint256 public constant PRE_SALE_PRICE = 0.025 ether;
    uint256 public constant MAX_PUBLIC_SALE_MINTS = 5;
    uint256 public constant PUBLIC_SALE_PRICE = 0.05 ether;
    uint256 public constant MAX_RESERVE_TOKENS = 200;
    uint256 public constant ROYALTY_PERCENTAGE = 5;

    event MintPublicSale(address indexed minter, uint256 indexed tokens);
    event MintPreSale(address indexed minter, uint256 indexed tokens);
    event ReserveTokens(uint256 indexed tokens);
    event GiftTokens(address[] indexed addresses);
    event SetSaleState(SaleState indexed state);
    event SetPreSaleMerkleRoot(bytes32 indexed root);
    event SetBaseURI(string indexed uri);
    event SetCollectionURI(string indexed uri);
    event SetRoyaltyReceiver(address indexed _address);
    event Withdraw(address indexed dest);
    event WithdrawToken(address indexed tokenAddress, address indexed dest);

    constructor(address _royaltyReceiverAddress)
        ERC721("Zombeh Collection", "ZOMBEH")
    {
        royaltyReceiverAddress = _royaltyReceiverAddress;
    }

    modifier preSaleActive() {
        require(saleState == SaleState.PreSale, "Pre-sale is not open");
        _;
    }

    modifier publicSaleActive() {
        require(saleState == SaleState.PublicSale, "Public sale is not open");
        _;
    }

    modifier maxTokensPerPublicSaleMint(uint256 numberOfTokens) {
        require(
            numberOfTokens <= MAX_PUBLIC_SALE_MINTS,
            "Exceeds public mint max number"
        );
        _;
    }

    modifier maxTokensPerPreSaleMint(uint256 numberOfTokens) {
        require(
            preSaleMintCounts[msg.sender] + numberOfTokens <= MAX_PRE_SALE_MINTS,
            "Exceeds pre sale mint max number"
        );
        _;
    }

    modifier canMint(uint256 numberOfTokens) {
        require(
            tokenCounter.current() + numberOfTokens <=
                MAX_TOTAL_SUPPLY - MAX_RESERVE_TOKENS + numReservedTokens,
            "Insufficient tokens remaining"
        );
        _;
    }

    modifier canReserveTokens(uint256 numberOfTokens) {
        require(
            numReservedTokens + numberOfTokens <= MAX_RESERVE_TOKENS,
            "Insufficient token reserve"
        );
        require(
            tokenCounter.current() + numberOfTokens <= MAX_TOTAL_SUPPLY,
            "Insufficient tokens remaining"
        );
        _;
    }

    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        require(
            price * numberOfTokens == msg.value,
            "Incorrect ETH value sent"
        );
        _;
    }

    modifier hasAddresses(address[] calldata addresses) {
        require(addresses.length > 0, "Addresses array empty");
        _;
    }

    modifier isValidPreSaleAddress(bytes32[] calldata merkleProof) {
        require(
            MerkleProof.verify(
                merkleProof,
                preSaleListMerkleRoot,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address not in list"
        );
        _;
    }

    modifier isExistingToken(uint256 tokenId) {
        require(_exists(tokenId), "Non-existent token");
        _;
    }

    function mintPublicSale(uint256 numberOfTokens)
        external
        payable
        nonReentrant
        publicSaleActive
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        canMint(numberOfTokens)
        maxTokensPerPublicSaleMint(numberOfTokens)
    {
        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, nextTokenId());
        }

        emit MintPublicSale(msg.sender, numberOfTokens);
    }

    function mintPreSale(uint256 numberOfTokens, bytes32[] calldata merkleProof)
        external
        payable
        nonReentrant
        preSaleActive
        isCorrectPayment(PRE_SALE_PRICE, numberOfTokens)
        canMint(numberOfTokens)
        isValidPreSaleAddress(merkleProof)
        maxTokensPerPreSaleMint(numberOfTokens)
    {
        preSaleMintCounts[msg.sender] = preSaleMintCounts[msg.sender] + numberOfTokens;

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, nextTokenId());
        }

        emit MintPreSale(msg.sender, numberOfTokens);
    }

    function reserveTokens(uint256 numberOfTokens)
        external
        nonReentrant
        onlyOwner
        canReserveTokens(numberOfTokens)
    {
        numReservedTokens += numberOfTokens;

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, nextTokenId());
        }

        emit ReserveTokens(numberOfTokens);
    }

    function giftTokens(address[] calldata addresses)
        external
        nonReentrant
        onlyOwner
        canReserveTokens(addresses.length)
        hasAddresses(addresses)
    {
        numReservedTokens += addresses.length;

        for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], nextTokenId());
        }

        emit GiftTokens(addresses);
    }

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

    function getLastTokenId() external view returns (uint256) {
        return tokenCounter.current();
    }

    function nextTokenId() private returns (uint256) {
        tokenCounter.increment();
        return tokenCounter.current();
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        override
        isExistingToken(tokenId)
        returns (string memory)
    {
        return string(abi.encodePacked(baseURI, "/", tokenId.toString(), ".json"));
    }

    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        isExistingToken(tokenId)
        returns (address receiver, uint256 royaltyAmount)
    {
        return (royaltyReceiverAddress, salePrice * ROYALTY_PERCENTAGE / 100);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function setPublicSaleActive() external onlyOwner {
        saleState = SaleState.PublicSale;

        emit SetSaleState(SaleState.PublicSale);
    }

    function setPreSaleActive() external onlyOwner {
        saleState = SaleState.PreSale;

        emit SetSaleState(SaleState.PreSale);
    }

    function setSaleInactive() external onlyOwner {
        saleState = SaleState.Inactive;

        emit SetSaleState(SaleState.Inactive);
    }

    function setPreSaleListMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        preSaleListMerkleRoot = merkleRoot;

        emit SetPreSaleMerkleRoot(merkleRoot);
    }

    function setBaseURI(string memory newbaseURI) external onlyOwner {
        baseURI = newbaseURI;

        emit SetBaseURI(newbaseURI);
    }

    function setCollectionURI(string memory _collectionURI) external onlyOwner {
        collectionURI = _collectionURI;

        emit SetCollectionURI(_collectionURI);
    }
    
    function setProvenanceHash(string calldata _hash) public onlyOwner {
        provenanceHash = _hash;
    }

    function setRoyaltyReceiverAddress(address _royaltyReceiverAddress)
        external
        onlyOwner
    {
        royaltyReceiverAddress = _royaltyReceiverAddress;

        emit SetRoyaltyReceiver(_royaltyReceiverAddress);
    }

    function withdraw(address payable _dest) external onlyOwner {
        uint256 _balance = address(this).balance;
        _dest.sendValue(_balance);

        emit Withdraw(_dest);    
    }

    function withdrawToken(address _tokenAddress, address _dest) external onlyOwner {
        uint256 _balance = IERC20(_tokenAddress).balanceOf(address(this));
        SafeERC20.safeTransfer(IERC20(_tokenAddress), _dest, _balance);

        emit WithdrawToken(_tokenAddress, _dest);
    }

    receive() external payable {}
}

File 2 of 18 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

File 3 of 18 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 4 of 18 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 5 of 18 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

File 6 of 18 : 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 7 of 18 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 8 of 18 : 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 9 of 18 : 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 10 of 18 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 18 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 14 of 18 : 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 15 of 18 : 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 16 of 18 : 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 17 of 18 : 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 18 of 18 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_royaltyReceiverAddress","type":"address"}],"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":"addresses","type":"address[]"}],"name":"GiftTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"MintPreSale","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"MintPublicSale","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"ReserveTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"uri","type":"string"}],"name":"SetBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"uri","type":"string"}],"name":"SetCollectionURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"SetPreSaleMerkleRoot","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"SetRoyaltyReceiver","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"enum ZombehNFT.SaleState","name":"state","type":"uint8"}],"name":"SetSaleState","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"dest","type":"address"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":true,"internalType":"address","name":"dest","type":"address"}],"name":"WithdrawToken","type":"event"},{"inputs":[],"name":"MAX_PRE_SALE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_SALE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVE_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRE_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_PERCENTAGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"giftTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintPreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numReservedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preSaleMintCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyReceiverAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"saleState","outputs":[{"internalType":"enum ZombehNFT.SaleState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newbaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_collectionURI","type":"string"}],"name":"setCollectionURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPreSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setPreSaleListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyReceiverAddress","type":"address"}],"name":"setRoyaltyReceiverAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleInactive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_dest","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"_dest","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600f60006101000a81548160ff0219169083600281111562000051577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b02179055503480156200006357600080fd5b50604051620063893803806200638983398181016040528101906200008991906200032e565b6040518060400160405280601181526020017f5a6f6d62656820436f6c6c656374696f6e0000000000000000000000000000008152506040518060400160405280600681526020017f5a4f4d424548000000000000000000000000000000000000000000000000000081525081600090805190602001906200010d92919062000267565b5080600190805190602001906200012692919062000267565b505050620001496200013d6200019960201b60201c565b620001a160201b60201c565b600160078190555080600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506200040d565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000275906200038e565b90600052602060002090601f016020900481019282620002995760008555620002e5565b82601f10620002b457805160ff1916838001178555620002e5565b82800160010185558215620002e5579182015b82811115620002e4578251825591602001919060010190620002c7565b5b509050620002f49190620002f8565b5090565b5b8082111562000313576000816000905550600101620002f9565b5090565b6000815190506200032881620003f3565b92915050565b6000602082840312156200034157600080fd5b6000620003518482850162000317565b91505092915050565b600062000367826200036e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620003a757607f821691505b60208210811415620003be57620003bd620003c4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b620003fe816200035a565b81146200040a57600080fd5b50565b615f6c806200041d6000396000f3fe6080604052600436106102815760003560e01c8063603f4d521161014f5780639dd85f17116100c1578063c87b56dd1161007a578063c87b56dd1461092a578063d031370b14610967578063dc7eda7d14610990578063e8a3d485146109bb578063e985e9c5146109e6578063f2fde38b14610a2357610288565b80639dd85f171461083d5780639e6b2c5b14610868578063a22cb46514610884578063af42d82d146108ad578063b88d4fde146108d6578063c6ab67a3146108ff57610288565b8063715018a611610113578063715018a61461073f57806383c4c00d146107565780638a8fe819146107815780638b4f8463146107be5780638da5cb5b146107e757806395d89b411461081257610288565b8063603f4d52146106445780636352211e1461066f57806363ff5e17146106ac57806370a08231146106d7578063714c53981461071457610288565b80632639f460116101f3578063440754d8116101ac578063440754d814610557578063463b08db14610580578063508881c1146105ab57806351cff8d9146105d657806355f804b3146105ff5780635a5e5d581461062857610288565b80632639f4601461045c5780632a55205a1461048557806333039d3d146104c35780633aeac4e1146104ee5780633e11ab3f1461051757806342842e0e1461052e57610288565b80630cd6fba9116102455780630cd6fba914610386578063109695231461039d57806311e3dbca146103c6578063193402bb146103f157806320fe418a1461041c57806323b872dd1461043357610288565b806301ffc9a71461028d57806306fdde03146102ca57806307e89ec0146102f5578063081812fc14610320578063095ea7b31461035d57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102b460048036038101906102af91906143dd565b610a4c565b6040516102c19190614dac565b60405180910390f35b3480156102d657600080fd5b506102df610ac6565b6040516102ec9190614de2565b60405180910390f35b34801561030157600080fd5b5061030a610b58565b60405161031791906151e4565b60405180910390f35b34801561032c57600080fd5b50610347600480360381019061034291906144b5565b610b63565b6040516103549190614d1c565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f919061430a565b610be8565b005b34801561039257600080fd5b5061039b610d00565b005b3480156103a957600080fd5b506103c460048036038101906103bf919061442f565b610e35565b005b3480156103d257600080fd5b506103db610ec7565b6040516103e891906151e4565b60405180910390f35b3480156103fd57600080fd5b50610406610ecd565b60405161041391906151e4565b60405180910390f35b34801561042857600080fd5b50610431610ed8565b005b34801561043f57600080fd5b5061045a60048036038101906104559190614204565b61100d565b005b34801561046857600080fd5b50610483600480360381019061047e9190614474565b61106d565b005b34801561049157600080fd5b506104ac60048036038101906104a7919061455f565b611145565b6040516104ba929190614d83565b60405180910390f35b3480156104cf57600080fd5b506104d86111d9565b6040516104e591906151e4565b60405180910390f35b3480156104fa57600080fd5b50610515600480360381019061051091906141c8565b6111df565b005b34801561052357600080fd5b5061052c611352565b005b34801561053a57600080fd5b5061055560048036038101906105509190614204565b611486565b005b34801561056357600080fd5b5061057e60048036038101906105799190614346565b6114a6565b005b34801561058c57600080fd5b50610595611755565b6040516105a291906151e4565b60405180910390f35b3480156105b757600080fd5b506105c061175a565b6040516105cd91906151e4565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f8919061419f565b61175f565b005b34801561060b57600080fd5b5061062660048036038101906106219190614474565b611850565b005b610642600480360381019061063d91906144b5565b611928565b005b34801561065057600080fd5b50610659611bc8565b6040516106669190614dc7565b60405180910390f35b34801561067b57600080fd5b50610696600480360381019061069191906144b5565b611bdb565b6040516106a39190614d1c565b60405180910390f35b3480156106b857600080fd5b506106c1611c8d565b6040516106ce91906151e4565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f99190614176565b611c92565b60405161070b91906151e4565b60405180910390f35b34801561072057600080fd5b50610729611d4a565b6040516107369190614de2565b60405180910390f35b34801561074b57600080fd5b50610754611ddc565b005b34801561076257600080fd5b5061076b611e64565b60405161077891906151e4565b60405180910390f35b34801561078d57600080fd5b506107a860048036038101906107a39190614176565b611e75565b6040516107b591906151e4565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e09190614176565b611e8d565b005b3480156107f357600080fd5b506107fc611f90565b6040516108099190614d1c565b60405180910390f35b34801561081e57600080fd5b50610827611fba565b6040516108349190614de2565b60405180910390f35b34801561084957600080fd5b5061085261204c565b60405161085f91906151e4565b60405180910390f35b610882600480360381019061087d9190614507565b612051565b005b34801561089057600080fd5b506108ab60048036038101906108a691906142ce565b612483565b005b3480156108b957600080fd5b506108d460048036038101906108cf91906143b4565b612499565b005b3480156108e257600080fd5b506108fd60048036038101906108f89190614253565b61254c565b005b34801561090b57600080fd5b506109146125ae565b6040516109219190614de2565b60405180910390f35b34801561093657600080fd5b50610951600480360381019061094c91906144b5565b61263c565b60405161095e9190614de2565b60405180910390f35b34801561097357600080fd5b5061098e600480360381019061098991906144b5565b6126ba565b005b34801561099c57600080fd5b506109a56128b1565b6040516109b29190614d1c565b60405180910390f35b3480156109c757600080fd5b506109d06128d7565b6040516109dd9190614de2565b60405180910390f35b3480156109f257600080fd5b50610a0d6004803603810190610a0891906141c8565b612969565b604051610a1a9190614dac565b60405180910390f35b348015610a2f57600080fd5b50610a4a6004803603810190610a459190614176565b6129fd565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610abf5750610abe82612af5565b5b9050919050565b606060008054610ad59061552e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b019061552e565b8015610b4e5780601f10610b2357610100808354040283529160200191610b4e565b820191906000526020600020905b815481529060010190602001808311610b3157829003601f168201915b5050505050905090565b66b1a2bc2ec5000081565b6000610b6e82612bd7565b610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490615084565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf382611bdb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b906150c4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c83612c43565b73ffffffffffffffffffffffffffffffffffffffff161480610cb25750610cb181610cac612c43565b612969565b5b610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890614fc4565b60405180910390fd5b610cfb8383612c4b565b505050565b610d08612c43565b73ffffffffffffffffffffffffffffffffffffffff16610d26611f90565b73ffffffffffffffffffffffffffffffffffffffff1614610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d73906150a4565b60405180910390fd5b6000600f60006101000a81548160ff02191690836002811115610dc8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555060006002811115610e07577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f784851bf4f56ebb482b14174b5fcc43c006ca236a47dcb14d8eedcf0eddc503e60405160405180910390a2565b610e3d612c43565b73ffffffffffffffffffffffffffffffffffffffff16610e5b611f90565b73ffffffffffffffffffffffffffffffffffffffff1614610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea8906150a4565b60405180910390fd5b8181600b9190610ec2929190613de2565b505050565b600c5481565b6658d15e1762800081565b610ee0612c43565b73ffffffffffffffffffffffffffffffffffffffff16610efe611f90565b73ffffffffffffffffffffffffffffffffffffffff1614610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b906150a4565b60405180910390fd5b6001600f60006101000a81548160ff02191690836002811115610fa0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555060016002811115610fdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f784851bf4f56ebb482b14174b5fcc43c006ca236a47dcb14d8eedcf0eddc503e60405160405180910390a2565b61101e611018612c43565b82612d04565b61105d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611054906150e4565b60405180910390fd5b611068838383612de2565b505050565b611075612c43565b73ffffffffffffffffffffffffffffffffffffffff16611093611f90565b73ffffffffffffffffffffffffffffffffffffffff16146110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e0906150a4565b60405180910390fd5b80600a90805190602001906110ff929190613e68565b508060405161110e9190614cb6565b60405180910390207ff88079580916acca3afc2e0f6ce909bab62d70f38e856286ffd15925be4fd9cc60405160405180910390a250565b6000808361115281612bd7565b611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890615024565b60405180910390fd5b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660646005866111c391906153a9565b6111cd9190615378565b92509250509250929050565b61271081565b6111e7612c43565b73ffffffffffffffffffffffffffffffffffffffff16611205611f90565b73ffffffffffffffffffffffffffffffffffffffff161461125b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611252906150a4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112969190614d1c565b60206040518083038186803b1580156112ae57600080fd5b505afa1580156112c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e691906144de565b90506112f3838383613049565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fce9ecd720079c00c86716fadb783ea8b0577f02c0f55b98d8a4a86ecdcb7918b60405160405180910390a3505050565b61135a612c43565b73ffffffffffffffffffffffffffffffffffffffff16611378611f90565b73ffffffffffffffffffffffffffffffffffffffff16146113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c5906150a4565b60405180910390fd5b6002600f60006101000a81548160ff0219169083600281111561141a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550600280811115611458577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f784851bf4f56ebb482b14174b5fcc43c006ca236a47dcb14d8eedcf0eddc503e60405160405180910390a2565b6114a18383836040518060200160405280600081525061254c565b505050565b600260075414156114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e390615184565b60405180910390fd5b60026007819055506114fc612c43565b73ffffffffffffffffffffffffffffffffffffffff1661151a611f90565b73ffffffffffffffffffffffffffffffffffffffff1614611570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611567906150a4565b60405180910390fd5b8181905060c881600c546115849190615322565b11156115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90615164565b60405180910390fd5b612710816115d360086130cf565b6115dd9190615322565b111561161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590614fa4565b60405180910390fd5b828260008282905011611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d906151c4565b60405180910390fd5b84849050600c600082825461167b9190615322565b9250508190555060005b85859050811015611701576116ee8686838181106116cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906116e19190614176565b6116e96130dd565b6130f8565b80806116f990615591565b915050611685565b508484604051611712929190614c86565b60405180910390207f60f9e182d4e9c17b0b89f72aca3c084950624d5c97740ab7c37368ed9c1b561960405160405180910390a250505060016007819055505050565b600581565b600581565b611767612c43565b73ffffffffffffffffffffffffffffffffffffffff16611785611f90565b73ffffffffffffffffffffffffffffffffffffffff16146117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d2906150a4565b60405180910390fd5b6000479050611809818373ffffffffffffffffffffffffffffffffffffffff1661311690919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff167ff67611512e0a2d90c96fd3f08dca4971bc45fba9dc679eabe839a32abbe58a8e60405160405180910390a25050565b611858612c43565b73ffffffffffffffffffffffffffffffffffffffff16611876611f90565b73ffffffffffffffffffffffffffffffffffffffff16146118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c3906150a4565b60405180910390fd5b80600990805190602001906118e2929190613e68565b50806040516118f19190614cb6565b60405180910390207f23c8c9488efebfd474e85a7956de6f39b17c7ab88502d42a623db2d8e382bbaa60405160405180910390a250565b6002600754141561196e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196590615184565b60405180910390fd5b60026007819055506002808111156119af577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600f60009054906101000a900460ff1660028111156119f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e906151a4565b60405180910390fd5b66b1a2bc2ec5000081348183611a4d91906153a9565b14611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8490615144565b60405180910390fd5b82600c5460c8612710611aa09190615403565b611aaa9190615322565b81611ab560086130cf565b611abf9190615322565b1115611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af790614fa4565b60405180910390fd5b836005811115611b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3c90614f24565b60405180910390fd5b60005b85811015611b7457611b6133611b5c6130dd565b6130f8565b8080611b6c90615591565b915050611b48565b50843373ffffffffffffffffffffffffffffffffffffffff167fe0e3b14a4f3f053af472cf2a7c31ae0e87fd170dbc7a89466d1c776952bd173760405160405180910390a350505050600160078190555050565b600f60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7b90615004565b60405180910390fd5b80915050919050565b60c881565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa90614fe4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060098054611d599061552e565b80601f0160208091040260200160405190810160405280929190818152602001828054611d859061552e565b8015611dd25780601f10611da757610100808354040283529160200191611dd2565b820191906000526020600020905b815481529060010190602001808311611db557829003601f168201915b5050505050905090565b611de4612c43565b73ffffffffffffffffffffffffffffffffffffffff16611e02611f90565b73ffffffffffffffffffffffffffffffffffffffff1614611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f906150a4565b60405180910390fd5b611e62600061320a565b565b6000611e7060086130cf565b905090565b600e6020528060005260406000206000915090505481565b611e95612c43565b73ffffffffffffffffffffffffffffffffffffffff16611eb3611f90565b73ffffffffffffffffffffffffffffffffffffffff1614611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f00906150a4565b60405180910390fd5b80600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f1b7503b18e6e011fd6a493067321794279eb00b8bad2baefa1d771b2e98f216c60405160405180910390a250565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611fc99061552e565b80601f0160208091040260200160405190810160405280929190818152602001828054611ff59061552e565b80156120425780601f1061201757610100808354040283529160200191612042565b820191906000526020600020905b81548152906001019060200180831161202557829003601f168201915b5050505050905090565b600381565b60026007541415612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208e90615184565b60405180910390fd5b6002600781905550600160028111156120d9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600f60009054906101000a900460ff166002811115612121577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14612161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215890615064565b60405180910390fd5b6658d15e176280008334818361217791906153a9565b146121b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ae90615144565b60405180910390fd5b84600c5460c86127106121ca9190615403565b6121d49190615322565b816121df60086130cf565b6121e99190615322565b111561222a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222190614fa4565b60405180910390fd5b84846122a0828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d54336040516020016122859190614c6b565b604051602081830303815290604052805190602001206132d0565b6122df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d690614ea4565b60405180910390fd5b87600381600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232d9190615322565b111561236e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236590614e04565b60405180910390fd5b88600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123b99190615322565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b8981101561242b57612418336124136130dd565b6130f8565b808061242390615591565b9150506123ff565b50883373ffffffffffffffffffffffffffffffffffffffff167f7ecbc6c2508739b8cb9f4ce243de4345253602f1ea2f8ba5e0ac26f1eecc63aa60405160405180910390a35050505050506001600781905550505050565b61249561248e612c43565b83836132e7565b5050565b6124a1612c43565b73ffffffffffffffffffffffffffffffffffffffff166124bf611f90565b73ffffffffffffffffffffffffffffffffffffffff1614612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250c906150a4565b60405180910390fd5b80600d81905550807f2965d6e68e4e35cf06fce0f92ff1ee28e7d29bde2bf6b0557d8f22e78171432d60405160405180910390a250565b61255d612557612c43565b83612d04565b61259c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612593906150e4565b60405180910390fd5b6125a884848484613454565b50505050565b600b80546125bb9061552e565b80601f01602080910402602001604051908101604052809291908181526020018280546125e79061552e565b80156126345780601f1061260957610100808354040283529160200191612634565b820191906000526020600020905b81548152906001019060200180831161261757829003601f168201915b505050505081565b60608161264881612bd7565b612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e90615024565b60405180910390fd5b6009612692846134b0565b6040516020016126a3929190614ccd565b604051602081830303815290604052915050919050565b60026007541415612700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f790615184565b60405180910390fd5b6002600781905550612710612c43565b73ffffffffffffffffffffffffffffffffffffffff1661272e611f90565b73ffffffffffffffffffffffffffffffffffffffff1614612784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277b906150a4565b60405180910390fd5b8060c881600c546127959190615322565b11156127d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cd90615164565b60405180910390fd5b612710816127e460086130cf565b6127ee9190615322565b111561282f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282690614fa4565b60405180910390fd5b81600c60008282546128419190615322565b9250508190555060005b82811015612877576128643361285f6130dd565b6130f8565b808061286f90615591565b91505061284b565b50817fa3fef113f707ae04eb95a86404ce54b1b062eee16db52dc37266dbdd1cbaef1160405160405180910390a250600160078190555050565b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600a80546128e69061552e565b80601f01602080910402602001604051908101604052809291908181526020018280546129129061552e565b801561295f5780601f106129345761010080835404028352916020019161295f565b820191906000526020600020905b81548152906001019060200180831161294257829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612a05612c43565b73ffffffffffffffffffffffffffffffffffffffff16612a23611f90565b73ffffffffffffffffffffffffffffffffffffffff1614612a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a70906150a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae090614e44565b60405180910390fd5b612af28161320a565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612bc057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612bd05750612bcf8261365d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612cbe83611bdb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612d0f82612bd7565b612d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4590614f84565b60405180910390fd5b6000612d5983611bdb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d9b5750612d9a8185612969565b5b80612dd957508373ffffffffffffffffffffffffffffffffffffffff16612dc184610b63565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612e0282611bdb565b73ffffffffffffffffffffffffffffffffffffffff1614612e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4f90614e64565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebf90614ec4565b60405180910390fd5b612ed38383836136c7565b612ede600082612c4b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f2e9190615403565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f859190615322565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130448383836136cc565b505050565b6130ca8363a9059cbb60e01b8484604051602401613068929190614d83565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506136d1565b505050565b600081600001549050919050565b60006130e96008613798565b6130f360086130cf565b905090565b6131128282604051806020016040528060008152506137ae565b5050565b80471015613159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315090614f44565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161317f90614d07565b60006040518083038185875af1925050503d80600081146131bc576040519150601f19603f3d011682016040523d82523d6000602084013e6131c1565b606091505b5050905080613205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fc90614f04565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826132dd8584613809565b1490509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334d90614ee4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516134479190614dac565b60405180910390a3505050565b61345f848484612de2565b61346b848484846138a4565b6134aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a190614e24565b60405180910390fd5b50505050565b606060008214156134f8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613658565b600082905060005b6000821461352a57808061351390615591565b915050600a826135239190615378565b9150613500565b60008167ffffffffffffffff81111561356c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561359e5781602001600182028036833780820191505090505b5090505b60008514613651576001826135b79190615403565b9150600a856135c691906155fe565b60306135d29190615322565b60f81b81838151811061360e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561364a9190615378565b94506135a2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b505050565b6000613733826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16613a3b9092919063ffffffff16565b90506000815111156137935780806020019051810190613753919061438b565b613792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161378990615124565b60405180910390fd5b5b505050565b6001816000016000828254019250508190555050565b6137b88383613a53565b6137c560008484846138a4565b613804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137fb90614e24565b60405180910390fd5b505050565b60008082905060005b8451811015613899576000858281518110613856577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311613878576138718382613c2d565b9250613885565b6138828184613c2d565b92505b50808061389190615591565b915050613812565b508091505092915050565b60006138c58473ffffffffffffffffffffffffffffffffffffffff16613c44565b15613a2e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026138ee612c43565b8786866040518563ffffffff1660e01b81526004016139109493929190614d37565b602060405180830381600087803b15801561392a57600080fd5b505af192505050801561395b57506040513d601f19601f820116820180604052508101906139589190614406565b60015b6139de573d806000811461398b576040519150601f19603f3d011682016040523d82523d6000602084013e613990565b606091505b506000815114156139d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139cd90614e24565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a33565b600190505b949350505050565b6060613a4a8484600085613c67565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aba90615044565b60405180910390fd5b613acc81612bd7565b15613b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b0390614e84565b60405180910390fd5b613b18600083836136c7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b689190615322565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c29600083836136cc565b5050565b600082600052816020526040600020905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b606082471015613cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ca390614f64565b60405180910390fd5b613cb585613c44565b613cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ceb90615104565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051613d1d9190614c9f565b60006040518083038185875af1925050503d8060008114613d5a576040519150601f19603f3d011682016040523d82523d6000602084013e613d5f565b606091505b5091509150613d6f828286613d7b565b92505050949350505050565b60608315613d8b57829050613ddb565b600083511115613d9e5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dd29190614de2565b60405180910390fd5b9392505050565b828054613dee9061552e565b90600052602060002090601f016020900481019282613e105760008555613e57565b82601f10613e2957803560ff1916838001178555613e57565b82800160010185558215613e57579182015b82811115613e56578235825591602001919060010190613e3b565b5b509050613e649190613eee565b5090565b828054613e749061552e565b90600052602060002090601f016020900481019282613e965760008555613edd565b82601f10613eaf57805160ff1916838001178555613edd565b82800160010185558215613edd579182015b82811115613edc578251825591602001919060010190613ec1565b5b509050613eea9190613eee565b5090565b5b80821115613f07576000816000905550600101613eef565b5090565b6000613f1e613f1984615224565b6151ff565b905082815260208101848484011115613f3657600080fd5b613f418482856154ec565b509392505050565b6000613f5c613f5784615255565b6151ff565b905082815260208101848484011115613f7457600080fd5b613f7f8482856154ec565b509392505050565b600081359050613f9681615eac565b92915050565b600081359050613fab81615ec3565b92915050565b60008083601f840112613fc357600080fd5b8235905067ffffffffffffffff811115613fdc57600080fd5b602083019150836020820283011115613ff457600080fd5b9250929050565b60008083601f84011261400d57600080fd5b8235905067ffffffffffffffff81111561402657600080fd5b60208301915083602082028301111561403e57600080fd5b9250929050565b60008135905061405481615eda565b92915050565b60008151905061406981615eda565b92915050565b60008135905061407e81615ef1565b92915050565b60008135905061409381615f08565b92915050565b6000815190506140a881615f08565b92915050565b600082601f8301126140bf57600080fd5b81356140cf848260208601613f0b565b91505092915050565b60008083601f8401126140ea57600080fd5b8235905067ffffffffffffffff81111561410357600080fd5b60208301915083600182028301111561411b57600080fd5b9250929050565b600082601f83011261413357600080fd5b8135614143848260208601613f49565b91505092915050565b60008135905061415b81615f1f565b92915050565b60008151905061417081615f1f565b92915050565b60006020828403121561418857600080fd5b600061419684828501613f87565b91505092915050565b6000602082840312156141b157600080fd5b60006141bf84828501613f9c565b91505092915050565b600080604083850312156141db57600080fd5b60006141e985828601613f87565b92505060206141fa85828601613f87565b9150509250929050565b60008060006060848603121561421957600080fd5b600061422786828701613f87565b935050602061423886828701613f87565b92505060406142498682870161414c565b9150509250925092565b6000806000806080858703121561426957600080fd5b600061427787828801613f87565b945050602061428887828801613f87565b93505060406142998782880161414c565b925050606085013567ffffffffffffffff8111156142b657600080fd5b6142c2878288016140ae565b91505092959194509250565b600080604083850312156142e157600080fd5b60006142ef85828601613f87565b925050602061430085828601614045565b9150509250929050565b6000806040838503121561431d57600080fd5b600061432b85828601613f87565b925050602061433c8582860161414c565b9150509250929050565b6000806020838503121561435957600080fd5b600083013567ffffffffffffffff81111561437357600080fd5b61437f85828601613fb1565b92509250509250929050565b60006020828403121561439d57600080fd5b60006143ab8482850161405a565b91505092915050565b6000602082840312156143c657600080fd5b60006143d48482850161406f565b91505092915050565b6000602082840312156143ef57600080fd5b60006143fd84828501614084565b91505092915050565b60006020828403121561441857600080fd5b600061442684828501614099565b91505092915050565b6000806020838503121561444257600080fd5b600083013567ffffffffffffffff81111561445c57600080fd5b614468858286016140d8565b92509250509250929050565b60006020828403121561448657600080fd5b600082013567ffffffffffffffff8111156144a057600080fd5b6144ac84828501614122565b91505092915050565b6000602082840312156144c757600080fd5b60006144d58482850161414c565b91505092915050565b6000602082840312156144f057600080fd5b60006144fe84828501614161565b91505092915050565b60008060006040848603121561451c57600080fd5b600061452a8682870161414c565b935050602084013567ffffffffffffffff81111561454757600080fd5b61455386828701613ffb565b92509250509250925092565b6000806040838503121561457257600080fd5b60006145808582860161414c565b92505060206145918582860161414c565b9150509250929050565b60006145a783836145c2565b60208301905092915050565b6145bc81615437565b82525050565b6145cb81615437565b82525050565b6145e26145dd82615437565b6155da565b82525050565b60006145f483856152c8565b93506145ff82615286565b8060005b8581101561463857614615828461530b565b61461f888261459b565b975061462a836152bb565b925050600181019050614603565b5085925050509392505050565b61464e8161545b565b82525050565b600061465f826152a5565b61466981856152d3565b93506146798185602086016154fb565b6146828161571a565b840191505092915050565b6000614698826152a5565b6146a281856152e4565b93506146b28185602086016154fb565b80840191505092915050565b6146c7816154da565b82525050565b60006146d8826152b0565b6146e281856152ef565b93506146f28185602086016154fb565b6146fb8161571a565b840191505092915050565b6000614711826152b0565b61471b8185615300565b935061472b8185602086016154fb565b80840191505092915050565b600081546147448161552e565b61474e8186615300565b94506001821660008114614769576001811461477a576147ad565b60ff198316865281860193506147ad565b61478385615290565b60005b838110156147a557815481890152600182019150602081019050614786565b838801955050505b50505092915050565b60006147c36020836152ef565b91506147ce82615738565b602082019050919050565b60006147e66032836152ef565b91506147f182615761565b604082019050919050565b60006148096026836152ef565b9150614814826157b0565b604082019050919050565b600061482c6025836152ef565b9150614837826157ff565b604082019050919050565b600061484f601c836152ef565b915061485a8261584e565b602082019050919050565b60006148726013836152ef565b915061487d82615877565b602082019050919050565b60006148956024836152ef565b91506148a0826158a0565b604082019050919050565b60006148b86019836152ef565b91506148c3826158ef565b602082019050919050565b60006148db603a836152ef565b91506148e682615918565b604082019050919050565b60006148fe601e836152ef565b915061490982615967565b602082019050919050565b6000614921601d836152ef565b915061492c82615990565b602082019050919050565b60006149446026836152ef565b915061494f826159b9565b604082019050919050565b6000614967602c836152ef565b915061497282615a08565b604082019050919050565b600061498a601d836152ef565b915061499582615a57565b602082019050919050565b60006149ad6038836152ef565b91506149b882615a80565b604082019050919050565b60006149d0602a836152ef565b91506149db82615acf565b604082019050919050565b60006149f36029836152ef565b91506149fe82615b1e565b604082019050919050565b6000614a166012836152ef565b9150614a2182615b6d565b602082019050919050565b6000614a396020836152ef565b9150614a4482615b96565b602082019050919050565b6000614a5c6014836152ef565b9150614a6782615bbf565b602082019050919050565b6000614a7f602c836152ef565b9150614a8a82615be8565b604082019050919050565b6000614aa2600583615300565b9150614aad82615c37565b600582019050919050565b6000614ac56020836152ef565b9150614ad082615c60565b602082019050919050565b6000614ae86021836152ef565b9150614af382615c89565b604082019050919050565b6000614b0b6000836152e4565b9150614b1682615cd8565b600082019050919050565b6000614b2e6031836152ef565b9150614b3982615cdb565b604082019050919050565b6000614b51601d836152ef565b9150614b5c82615d2a565b602082019050919050565b6000614b74602a836152ef565b9150614b7f82615d53565b604082019050919050565b6000614b976018836152ef565b9150614ba282615da2565b602082019050919050565b6000614bba601a836152ef565b9150614bc582615dcb565b602082019050919050565b6000614bdd601f836152ef565b9150614be882615df4565b602082019050919050565b6000614c006017836152ef565b9150614c0b82615e1d565b602082019050919050565b6000614c23600183615300565b9150614c2e82615e46565b600182019050919050565b6000614c466015836152ef565b9150614c5182615e6f565b602082019050919050565b614c65816154d0565b82525050565b6000614c7782846145d1565b60148201915081905092915050565b6000614c938284866145e8565b91508190509392505050565b6000614cab828461468d565b915081905092915050565b6000614cc28284614706565b915081905092915050565b6000614cd98285614737565b9150614ce482614c16565b9150614cf08284614706565b9150614cfb82614a95565b91508190509392505050565b6000614d1282614afe565b9150819050919050565b6000602082019050614d3160008301846145b3565b92915050565b6000608082019050614d4c60008301876145b3565b614d5960208301866145b3565b614d666040830185614c5c565b8181036060830152614d788184614654565b905095945050505050565b6000604082019050614d9860008301856145b3565b614da56020830184614c5c565b9392505050565b6000602082019050614dc16000830184614645565b92915050565b6000602082019050614ddc60008301846146be565b92915050565b60006020820190508181036000830152614dfc81846146cd565b905092915050565b60006020820190508181036000830152614e1d816147b6565b9050919050565b60006020820190508181036000830152614e3d816147d9565b9050919050565b60006020820190508181036000830152614e5d816147fc565b9050919050565b60006020820190508181036000830152614e7d8161481f565b9050919050565b60006020820190508181036000830152614e9d81614842565b9050919050565b60006020820190508181036000830152614ebd81614865565b9050919050565b60006020820190508181036000830152614edd81614888565b9050919050565b60006020820190508181036000830152614efd816148ab565b9050919050565b60006020820190508181036000830152614f1d816148ce565b9050919050565b60006020820190508181036000830152614f3d816148f1565b9050919050565b60006020820190508181036000830152614f5d81614914565b9050919050565b60006020820190508181036000830152614f7d81614937565b9050919050565b60006020820190508181036000830152614f9d8161495a565b9050919050565b60006020820190508181036000830152614fbd8161497d565b9050919050565b60006020820190508181036000830152614fdd816149a0565b9050919050565b60006020820190508181036000830152614ffd816149c3565b9050919050565b6000602082019050818103600083015261501d816149e6565b9050919050565b6000602082019050818103600083015261503d81614a09565b9050919050565b6000602082019050818103600083015261505d81614a2c565b9050919050565b6000602082019050818103600083015261507d81614a4f565b9050919050565b6000602082019050818103600083015261509d81614a72565b9050919050565b600060208201905081810360008301526150bd81614ab8565b9050919050565b600060208201905081810360008301526150dd81614adb565b9050919050565b600060208201905081810360008301526150fd81614b21565b9050919050565b6000602082019050818103600083015261511d81614b44565b9050919050565b6000602082019050818103600083015261513d81614b67565b9050919050565b6000602082019050818103600083015261515d81614b8a565b9050919050565b6000602082019050818103600083015261517d81614bad565b9050919050565b6000602082019050818103600083015261519d81614bd0565b9050919050565b600060208201905081810360008301526151bd81614bf3565b9050919050565b600060208201905081810360008301526151dd81614c39565b9050919050565b60006020820190506151f96000830184614c5c565b92915050565b600061520961521a565b90506152158282615560565b919050565b6000604051905090565b600067ffffffffffffffff82111561523f5761523e6156eb565b5b6152488261571a565b9050602081019050919050565b600067ffffffffffffffff8211156152705761526f6156eb565b5b6152798261571a565b9050602081019050919050565b6000819050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061531a6020840184613f87565b905092915050565b600061532d826154d0565b9150615338836154d0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561536d5761536c61562f565b5b828201905092915050565b6000615383826154d0565b915061538e836154d0565b92508261539e5761539d61565e565b5b828204905092915050565b60006153b4826154d0565b91506153bf836154d0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153f8576153f761562f565b5b828202905092915050565b600061540e826154d0565b9150615419836154d0565b92508282101561542c5761542b61562f565b5b828203905092915050565b6000615442826154b0565b9050919050565b6000615454826154b0565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008190506154ab82615e98565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006154e58261549d565b9050919050565b82818337600083830152505050565b60005b838110156155195780820151818401526020810190506154fe565b83811115615528576000848401525b50505050565b6000600282049050600182168061554657607f821691505b6020821081141561555a576155596156bc565b5b50919050565b6155698261571a565b810181811067ffffffffffffffff82111715615588576155876156eb565b5b80604052505050565b600061559c826154d0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156155cf576155ce61562f565b5b600182019050919050565b60006155e5826155ec565b9050919050565b60006155f78261572b565b9050919050565b6000615609826154d0565b9150615614836154d0565b9250826156245761562361565e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45786365656473207072652073616c65206d696e74206d6178206e756d626572600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f41646472657373206e6f7420696e206c69737400000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f45786365656473207075626c6963206d696e74206d6178206e756d6265720000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420746f6b656e732072656d61696e696e67000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e2d6578697374656e7420746f6b656e0000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5072652d73616c65206973206e6f74206f70656e000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f496e73756666696369656e7420746f6b656e2072657365727665000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f41646472657373657320617272617920656d7074790000000000000000000000600082015250565b60038110615ea957615ea861568d565b5b50565b615eb581615437565b8114615ec057600080fd5b50565b615ecc81615449565b8114615ed757600080fd5b50565b615ee38161545b565b8114615eee57600080fd5b50565b615efa81615467565b8114615f0557600080fd5b50565b615f1181615471565b8114615f1c57600080fd5b50565b615f28816154d0565b8114615f3357600080fd5b5056fea2646970667358221220db7d12a70744289bb39ccb094d43b66e4b56b9812be47c88dfc21ff38133bbc664736f6c634300080400330000000000000000000000004e6182a6c6a8b7dea278925beffd4e256e636969

Deployed Bytecode

0x6080604052600436106102815760003560e01c8063603f4d521161014f5780639dd85f17116100c1578063c87b56dd1161007a578063c87b56dd1461092a578063d031370b14610967578063dc7eda7d14610990578063e8a3d485146109bb578063e985e9c5146109e6578063f2fde38b14610a2357610288565b80639dd85f171461083d5780639e6b2c5b14610868578063a22cb46514610884578063af42d82d146108ad578063b88d4fde146108d6578063c6ab67a3146108ff57610288565b8063715018a611610113578063715018a61461073f57806383c4c00d146107565780638a8fe819146107815780638b4f8463146107be5780638da5cb5b146107e757806395d89b411461081257610288565b8063603f4d52146106445780636352211e1461066f57806363ff5e17146106ac57806370a08231146106d7578063714c53981461071457610288565b80632639f460116101f3578063440754d8116101ac578063440754d814610557578063463b08db14610580578063508881c1146105ab57806351cff8d9146105d657806355f804b3146105ff5780635a5e5d581461062857610288565b80632639f4601461045c5780632a55205a1461048557806333039d3d146104c35780633aeac4e1146104ee5780633e11ab3f1461051757806342842e0e1461052e57610288565b80630cd6fba9116102455780630cd6fba914610386578063109695231461039d57806311e3dbca146103c6578063193402bb146103f157806320fe418a1461041c57806323b872dd1461043357610288565b806301ffc9a71461028d57806306fdde03146102ca57806307e89ec0146102f5578063081812fc14610320578063095ea7b31461035d57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102b460048036038101906102af91906143dd565b610a4c565b6040516102c19190614dac565b60405180910390f35b3480156102d657600080fd5b506102df610ac6565b6040516102ec9190614de2565b60405180910390f35b34801561030157600080fd5b5061030a610b58565b60405161031791906151e4565b60405180910390f35b34801561032c57600080fd5b50610347600480360381019061034291906144b5565b610b63565b6040516103549190614d1c565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f919061430a565b610be8565b005b34801561039257600080fd5b5061039b610d00565b005b3480156103a957600080fd5b506103c460048036038101906103bf919061442f565b610e35565b005b3480156103d257600080fd5b506103db610ec7565b6040516103e891906151e4565b60405180910390f35b3480156103fd57600080fd5b50610406610ecd565b60405161041391906151e4565b60405180910390f35b34801561042857600080fd5b50610431610ed8565b005b34801561043f57600080fd5b5061045a60048036038101906104559190614204565b61100d565b005b34801561046857600080fd5b50610483600480360381019061047e9190614474565b61106d565b005b34801561049157600080fd5b506104ac60048036038101906104a7919061455f565b611145565b6040516104ba929190614d83565b60405180910390f35b3480156104cf57600080fd5b506104d86111d9565b6040516104e591906151e4565b60405180910390f35b3480156104fa57600080fd5b50610515600480360381019061051091906141c8565b6111df565b005b34801561052357600080fd5b5061052c611352565b005b34801561053a57600080fd5b5061055560048036038101906105509190614204565b611486565b005b34801561056357600080fd5b5061057e60048036038101906105799190614346565b6114a6565b005b34801561058c57600080fd5b50610595611755565b6040516105a291906151e4565b60405180910390f35b3480156105b757600080fd5b506105c061175a565b6040516105cd91906151e4565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f8919061419f565b61175f565b005b34801561060b57600080fd5b5061062660048036038101906106219190614474565b611850565b005b610642600480360381019061063d91906144b5565b611928565b005b34801561065057600080fd5b50610659611bc8565b6040516106669190614dc7565b60405180910390f35b34801561067b57600080fd5b50610696600480360381019061069191906144b5565b611bdb565b6040516106a39190614d1c565b60405180910390f35b3480156106b857600080fd5b506106c1611c8d565b6040516106ce91906151e4565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f99190614176565b611c92565b60405161070b91906151e4565b60405180910390f35b34801561072057600080fd5b50610729611d4a565b6040516107369190614de2565b60405180910390f35b34801561074b57600080fd5b50610754611ddc565b005b34801561076257600080fd5b5061076b611e64565b60405161077891906151e4565b60405180910390f35b34801561078d57600080fd5b506107a860048036038101906107a39190614176565b611e75565b6040516107b591906151e4565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e09190614176565b611e8d565b005b3480156107f357600080fd5b506107fc611f90565b6040516108099190614d1c565b60405180910390f35b34801561081e57600080fd5b50610827611fba565b6040516108349190614de2565b60405180910390f35b34801561084957600080fd5b5061085261204c565b60405161085f91906151e4565b60405180910390f35b610882600480360381019061087d9190614507565b612051565b005b34801561089057600080fd5b506108ab60048036038101906108a691906142ce565b612483565b005b3480156108b957600080fd5b506108d460048036038101906108cf91906143b4565b612499565b005b3480156108e257600080fd5b506108fd60048036038101906108f89190614253565b61254c565b005b34801561090b57600080fd5b506109146125ae565b6040516109219190614de2565b60405180910390f35b34801561093657600080fd5b50610951600480360381019061094c91906144b5565b61263c565b60405161095e9190614de2565b60405180910390f35b34801561097357600080fd5b5061098e600480360381019061098991906144b5565b6126ba565b005b34801561099c57600080fd5b506109a56128b1565b6040516109b29190614d1c565b60405180910390f35b3480156109c757600080fd5b506109d06128d7565b6040516109dd9190614de2565b60405180910390f35b3480156109f257600080fd5b50610a0d6004803603810190610a0891906141c8565b612969565b604051610a1a9190614dac565b60405180910390f35b348015610a2f57600080fd5b50610a4a6004803603810190610a459190614176565b6129fd565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610abf5750610abe82612af5565b5b9050919050565b606060008054610ad59061552e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b019061552e565b8015610b4e5780601f10610b2357610100808354040283529160200191610b4e565b820191906000526020600020905b815481529060010190602001808311610b3157829003601f168201915b5050505050905090565b66b1a2bc2ec5000081565b6000610b6e82612bd7565b610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490615084565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf382611bdb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b906150c4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c83612c43565b73ffffffffffffffffffffffffffffffffffffffff161480610cb25750610cb181610cac612c43565b612969565b5b610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890614fc4565b60405180910390fd5b610cfb8383612c4b565b505050565b610d08612c43565b73ffffffffffffffffffffffffffffffffffffffff16610d26611f90565b73ffffffffffffffffffffffffffffffffffffffff1614610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d73906150a4565b60405180910390fd5b6000600f60006101000a81548160ff02191690836002811115610dc8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555060006002811115610e07577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f784851bf4f56ebb482b14174b5fcc43c006ca236a47dcb14d8eedcf0eddc503e60405160405180910390a2565b610e3d612c43565b73ffffffffffffffffffffffffffffffffffffffff16610e5b611f90565b73ffffffffffffffffffffffffffffffffffffffff1614610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea8906150a4565b60405180910390fd5b8181600b9190610ec2929190613de2565b505050565b600c5481565b6658d15e1762800081565b610ee0612c43565b73ffffffffffffffffffffffffffffffffffffffff16610efe611f90565b73ffffffffffffffffffffffffffffffffffffffff1614610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b906150a4565b60405180910390fd5b6001600f60006101000a81548160ff02191690836002811115610fa0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555060016002811115610fdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f784851bf4f56ebb482b14174b5fcc43c006ca236a47dcb14d8eedcf0eddc503e60405160405180910390a2565b61101e611018612c43565b82612d04565b61105d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611054906150e4565b60405180910390fd5b611068838383612de2565b505050565b611075612c43565b73ffffffffffffffffffffffffffffffffffffffff16611093611f90565b73ffffffffffffffffffffffffffffffffffffffff16146110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e0906150a4565b60405180910390fd5b80600a90805190602001906110ff929190613e68565b508060405161110e9190614cb6565b60405180910390207ff88079580916acca3afc2e0f6ce909bab62d70f38e856286ffd15925be4fd9cc60405160405180910390a250565b6000808361115281612bd7565b611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890615024565b60405180910390fd5b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660646005866111c391906153a9565b6111cd9190615378565b92509250509250929050565b61271081565b6111e7612c43565b73ffffffffffffffffffffffffffffffffffffffff16611205611f90565b73ffffffffffffffffffffffffffffffffffffffff161461125b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611252906150a4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112969190614d1c565b60206040518083038186803b1580156112ae57600080fd5b505afa1580156112c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e691906144de565b90506112f3838383613049565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fce9ecd720079c00c86716fadb783ea8b0577f02c0f55b98d8a4a86ecdcb7918b60405160405180910390a3505050565b61135a612c43565b73ffffffffffffffffffffffffffffffffffffffff16611378611f90565b73ffffffffffffffffffffffffffffffffffffffff16146113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c5906150a4565b60405180910390fd5b6002600f60006101000a81548160ff0219169083600281111561141a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550600280811115611458577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f784851bf4f56ebb482b14174b5fcc43c006ca236a47dcb14d8eedcf0eddc503e60405160405180910390a2565b6114a18383836040518060200160405280600081525061254c565b505050565b600260075414156114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e390615184565b60405180910390fd5b60026007819055506114fc612c43565b73ffffffffffffffffffffffffffffffffffffffff1661151a611f90565b73ffffffffffffffffffffffffffffffffffffffff1614611570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611567906150a4565b60405180910390fd5b8181905060c881600c546115849190615322565b11156115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90615164565b60405180910390fd5b612710816115d360086130cf565b6115dd9190615322565b111561161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590614fa4565b60405180910390fd5b828260008282905011611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d906151c4565b60405180910390fd5b84849050600c600082825461167b9190615322565b9250508190555060005b85859050811015611701576116ee8686838181106116cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906116e19190614176565b6116e96130dd565b6130f8565b80806116f990615591565b915050611685565b508484604051611712929190614c86565b60405180910390207f60f9e182d4e9c17b0b89f72aca3c084950624d5c97740ab7c37368ed9c1b561960405160405180910390a250505060016007819055505050565b600581565b600581565b611767612c43565b73ffffffffffffffffffffffffffffffffffffffff16611785611f90565b73ffffffffffffffffffffffffffffffffffffffff16146117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d2906150a4565b60405180910390fd5b6000479050611809818373ffffffffffffffffffffffffffffffffffffffff1661311690919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff167ff67611512e0a2d90c96fd3f08dca4971bc45fba9dc679eabe839a32abbe58a8e60405160405180910390a25050565b611858612c43565b73ffffffffffffffffffffffffffffffffffffffff16611876611f90565b73ffffffffffffffffffffffffffffffffffffffff16146118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c3906150a4565b60405180910390fd5b80600990805190602001906118e2929190613e68565b50806040516118f19190614cb6565b60405180910390207f23c8c9488efebfd474e85a7956de6f39b17c7ab88502d42a623db2d8e382bbaa60405160405180910390a250565b6002600754141561196e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196590615184565b60405180910390fd5b60026007819055506002808111156119af577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600f60009054906101000a900460ff1660028111156119f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e906151a4565b60405180910390fd5b66b1a2bc2ec5000081348183611a4d91906153a9565b14611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8490615144565b60405180910390fd5b82600c5460c8612710611aa09190615403565b611aaa9190615322565b81611ab560086130cf565b611abf9190615322565b1115611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af790614fa4565b60405180910390fd5b836005811115611b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3c90614f24565b60405180910390fd5b60005b85811015611b7457611b6133611b5c6130dd565b6130f8565b8080611b6c90615591565b915050611b48565b50843373ffffffffffffffffffffffffffffffffffffffff167fe0e3b14a4f3f053af472cf2a7c31ae0e87fd170dbc7a89466d1c776952bd173760405160405180910390a350505050600160078190555050565b600f60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7b90615004565b60405180910390fd5b80915050919050565b60c881565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa90614fe4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060098054611d599061552e565b80601f0160208091040260200160405190810160405280929190818152602001828054611d859061552e565b8015611dd25780601f10611da757610100808354040283529160200191611dd2565b820191906000526020600020905b815481529060010190602001808311611db557829003601f168201915b5050505050905090565b611de4612c43565b73ffffffffffffffffffffffffffffffffffffffff16611e02611f90565b73ffffffffffffffffffffffffffffffffffffffff1614611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f906150a4565b60405180910390fd5b611e62600061320a565b565b6000611e7060086130cf565b905090565b600e6020528060005260406000206000915090505481565b611e95612c43565b73ffffffffffffffffffffffffffffffffffffffff16611eb3611f90565b73ffffffffffffffffffffffffffffffffffffffff1614611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f00906150a4565b60405180910390fd5b80600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f1b7503b18e6e011fd6a493067321794279eb00b8bad2baefa1d771b2e98f216c60405160405180910390a250565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611fc99061552e565b80601f0160208091040260200160405190810160405280929190818152602001828054611ff59061552e565b80156120425780601f1061201757610100808354040283529160200191612042565b820191906000526020600020905b81548152906001019060200180831161202557829003601f168201915b5050505050905090565b600381565b60026007541415612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208e90615184565b60405180910390fd5b6002600781905550600160028111156120d9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600f60009054906101000a900460ff166002811115612121577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14612161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215890615064565b60405180910390fd5b6658d15e176280008334818361217791906153a9565b146121b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ae90615144565b60405180910390fd5b84600c5460c86127106121ca9190615403565b6121d49190615322565b816121df60086130cf565b6121e99190615322565b111561222a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222190614fa4565b60405180910390fd5b84846122a0828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d54336040516020016122859190614c6b565b604051602081830303815290604052805190602001206132d0565b6122df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d690614ea4565b60405180910390fd5b87600381600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232d9190615322565b111561236e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236590614e04565b60405180910390fd5b88600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123b99190615322565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b8981101561242b57612418336124136130dd565b6130f8565b808061242390615591565b9150506123ff565b50883373ffffffffffffffffffffffffffffffffffffffff167f7ecbc6c2508739b8cb9f4ce243de4345253602f1ea2f8ba5e0ac26f1eecc63aa60405160405180910390a35050505050506001600781905550505050565b61249561248e612c43565b83836132e7565b5050565b6124a1612c43565b73ffffffffffffffffffffffffffffffffffffffff166124bf611f90565b73ffffffffffffffffffffffffffffffffffffffff1614612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250c906150a4565b60405180910390fd5b80600d81905550807f2965d6e68e4e35cf06fce0f92ff1ee28e7d29bde2bf6b0557d8f22e78171432d60405160405180910390a250565b61255d612557612c43565b83612d04565b61259c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612593906150e4565b60405180910390fd5b6125a884848484613454565b50505050565b600b80546125bb9061552e565b80601f01602080910402602001604051908101604052809291908181526020018280546125e79061552e565b80156126345780601f1061260957610100808354040283529160200191612634565b820191906000526020600020905b81548152906001019060200180831161261757829003601f168201915b505050505081565b60608161264881612bd7565b612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e90615024565b60405180910390fd5b6009612692846134b0565b6040516020016126a3929190614ccd565b604051602081830303815290604052915050919050565b60026007541415612700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f790615184565b60405180910390fd5b6002600781905550612710612c43565b73ffffffffffffffffffffffffffffffffffffffff1661272e611f90565b73ffffffffffffffffffffffffffffffffffffffff1614612784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277b906150a4565b60405180910390fd5b8060c881600c546127959190615322565b11156127d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cd90615164565b60405180910390fd5b612710816127e460086130cf565b6127ee9190615322565b111561282f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282690614fa4565b60405180910390fd5b81600c60008282546128419190615322565b9250508190555060005b82811015612877576128643361285f6130dd565b6130f8565b808061286f90615591565b91505061284b565b50817fa3fef113f707ae04eb95a86404ce54b1b062eee16db52dc37266dbdd1cbaef1160405160405180910390a250600160078190555050565b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600a80546128e69061552e565b80601f01602080910402602001604051908101604052809291908181526020018280546129129061552e565b801561295f5780601f106129345761010080835404028352916020019161295f565b820191906000526020600020905b81548152906001019060200180831161294257829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612a05612c43565b73ffffffffffffffffffffffffffffffffffffffff16612a23611f90565b73ffffffffffffffffffffffffffffffffffffffff1614612a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a70906150a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae090614e44565b60405180910390fd5b612af28161320a565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612bc057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612bd05750612bcf8261365d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612cbe83611bdb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612d0f82612bd7565b612d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4590614f84565b60405180910390fd5b6000612d5983611bdb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d9b5750612d9a8185612969565b5b80612dd957508373ffffffffffffffffffffffffffffffffffffffff16612dc184610b63565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612e0282611bdb565b73ffffffffffffffffffffffffffffffffffffffff1614612e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4f90614e64565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebf90614ec4565b60405180910390fd5b612ed38383836136c7565b612ede600082612c4b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f2e9190615403565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f859190615322565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130448383836136cc565b505050565b6130ca8363a9059cbb60e01b8484604051602401613068929190614d83565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506136d1565b505050565b600081600001549050919050565b60006130e96008613798565b6130f360086130cf565b905090565b6131128282604051806020016040528060008152506137ae565b5050565b80471015613159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315090614f44565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161317f90614d07565b60006040518083038185875af1925050503d80600081146131bc576040519150601f19603f3d011682016040523d82523d6000602084013e6131c1565b606091505b5050905080613205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fc90614f04565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826132dd8584613809565b1490509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334d90614ee4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516134479190614dac565b60405180910390a3505050565b61345f848484612de2565b61346b848484846138a4565b6134aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a190614e24565b60405180910390fd5b50505050565b606060008214156134f8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613658565b600082905060005b6000821461352a57808061351390615591565b915050600a826135239190615378565b9150613500565b60008167ffffffffffffffff81111561356c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561359e5781602001600182028036833780820191505090505b5090505b60008514613651576001826135b79190615403565b9150600a856135c691906155fe565b60306135d29190615322565b60f81b81838151811061360e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561364a9190615378565b94506135a2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b505050565b6000613733826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16613a3b9092919063ffffffff16565b90506000815111156137935780806020019051810190613753919061438b565b613792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161378990615124565b60405180910390fd5b5b505050565b6001816000016000828254019250508190555050565b6137b88383613a53565b6137c560008484846138a4565b613804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137fb90614e24565b60405180910390fd5b505050565b60008082905060005b8451811015613899576000858281518110613856577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311613878576138718382613c2d565b9250613885565b6138828184613c2d565b92505b50808061389190615591565b915050613812565b508091505092915050565b60006138c58473ffffffffffffffffffffffffffffffffffffffff16613c44565b15613a2e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026138ee612c43565b8786866040518563ffffffff1660e01b81526004016139109493929190614d37565b602060405180830381600087803b15801561392a57600080fd5b505af192505050801561395b57506040513d601f19601f820116820180604052508101906139589190614406565b60015b6139de573d806000811461398b576040519150601f19603f3d011682016040523d82523d6000602084013e613990565b606091505b506000815114156139d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139cd90614e24565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a33565b600190505b949350505050565b6060613a4a8484600085613c67565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aba90615044565b60405180910390fd5b613acc81612bd7565b15613b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b0390614e84565b60405180910390fd5b613b18600083836136c7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b689190615322565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c29600083836136cc565b5050565b600082600052816020526040600020905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b606082471015613cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ca390614f64565b60405180910390fd5b613cb585613c44565b613cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ceb90615104565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051613d1d9190614c9f565b60006040518083038185875af1925050503d8060008114613d5a576040519150601f19603f3d011682016040523d82523d6000602084013e613d5f565b606091505b5091509150613d6f828286613d7b565b92505050949350505050565b60608315613d8b57829050613ddb565b600083511115613d9e5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dd29190614de2565b60405180910390fd5b9392505050565b828054613dee9061552e565b90600052602060002090601f016020900481019282613e105760008555613e57565b82601f10613e2957803560ff1916838001178555613e57565b82800160010185558215613e57579182015b82811115613e56578235825591602001919060010190613e3b565b5b509050613e649190613eee565b5090565b828054613e749061552e565b90600052602060002090601f016020900481019282613e965760008555613edd565b82601f10613eaf57805160ff1916838001178555613edd565b82800160010185558215613edd579182015b82811115613edc578251825591602001919060010190613ec1565b5b509050613eea9190613eee565b5090565b5b80821115613f07576000816000905550600101613eef565b5090565b6000613f1e613f1984615224565b6151ff565b905082815260208101848484011115613f3657600080fd5b613f418482856154ec565b509392505050565b6000613f5c613f5784615255565b6151ff565b905082815260208101848484011115613f7457600080fd5b613f7f8482856154ec565b509392505050565b600081359050613f9681615eac565b92915050565b600081359050613fab81615ec3565b92915050565b60008083601f840112613fc357600080fd5b8235905067ffffffffffffffff811115613fdc57600080fd5b602083019150836020820283011115613ff457600080fd5b9250929050565b60008083601f84011261400d57600080fd5b8235905067ffffffffffffffff81111561402657600080fd5b60208301915083602082028301111561403e57600080fd5b9250929050565b60008135905061405481615eda565b92915050565b60008151905061406981615eda565b92915050565b60008135905061407e81615ef1565b92915050565b60008135905061409381615f08565b92915050565b6000815190506140a881615f08565b92915050565b600082601f8301126140bf57600080fd5b81356140cf848260208601613f0b565b91505092915050565b60008083601f8401126140ea57600080fd5b8235905067ffffffffffffffff81111561410357600080fd5b60208301915083600182028301111561411b57600080fd5b9250929050565b600082601f83011261413357600080fd5b8135614143848260208601613f49565b91505092915050565b60008135905061415b81615f1f565b92915050565b60008151905061417081615f1f565b92915050565b60006020828403121561418857600080fd5b600061419684828501613f87565b91505092915050565b6000602082840312156141b157600080fd5b60006141bf84828501613f9c565b91505092915050565b600080604083850312156141db57600080fd5b60006141e985828601613f87565b92505060206141fa85828601613f87565b9150509250929050565b60008060006060848603121561421957600080fd5b600061422786828701613f87565b935050602061423886828701613f87565b92505060406142498682870161414c565b9150509250925092565b6000806000806080858703121561426957600080fd5b600061427787828801613f87565b945050602061428887828801613f87565b93505060406142998782880161414c565b925050606085013567ffffffffffffffff8111156142b657600080fd5b6142c2878288016140ae565b91505092959194509250565b600080604083850312156142e157600080fd5b60006142ef85828601613f87565b925050602061430085828601614045565b9150509250929050565b6000806040838503121561431d57600080fd5b600061432b85828601613f87565b925050602061433c8582860161414c565b9150509250929050565b6000806020838503121561435957600080fd5b600083013567ffffffffffffffff81111561437357600080fd5b61437f85828601613fb1565b92509250509250929050565b60006020828403121561439d57600080fd5b60006143ab8482850161405a565b91505092915050565b6000602082840312156143c657600080fd5b60006143d48482850161406f565b91505092915050565b6000602082840312156143ef57600080fd5b60006143fd84828501614084565b91505092915050565b60006020828403121561441857600080fd5b600061442684828501614099565b91505092915050565b6000806020838503121561444257600080fd5b600083013567ffffffffffffffff81111561445c57600080fd5b614468858286016140d8565b92509250509250929050565b60006020828403121561448657600080fd5b600082013567ffffffffffffffff8111156144a057600080fd5b6144ac84828501614122565b91505092915050565b6000602082840312156144c757600080fd5b60006144d58482850161414c565b91505092915050565b6000602082840312156144f057600080fd5b60006144fe84828501614161565b91505092915050565b60008060006040848603121561451c57600080fd5b600061452a8682870161414c565b935050602084013567ffffffffffffffff81111561454757600080fd5b61455386828701613ffb565b92509250509250925092565b6000806040838503121561457257600080fd5b60006145808582860161414c565b92505060206145918582860161414c565b9150509250929050565b60006145a783836145c2565b60208301905092915050565b6145bc81615437565b82525050565b6145cb81615437565b82525050565b6145e26145dd82615437565b6155da565b82525050565b60006145f483856152c8565b93506145ff82615286565b8060005b8581101561463857614615828461530b565b61461f888261459b565b975061462a836152bb565b925050600181019050614603565b5085925050509392505050565b61464e8161545b565b82525050565b600061465f826152a5565b61466981856152d3565b93506146798185602086016154fb565b6146828161571a565b840191505092915050565b6000614698826152a5565b6146a281856152e4565b93506146b28185602086016154fb565b80840191505092915050565b6146c7816154da565b82525050565b60006146d8826152b0565b6146e281856152ef565b93506146f28185602086016154fb565b6146fb8161571a565b840191505092915050565b6000614711826152b0565b61471b8185615300565b935061472b8185602086016154fb565b80840191505092915050565b600081546147448161552e565b61474e8186615300565b94506001821660008114614769576001811461477a576147ad565b60ff198316865281860193506147ad565b61478385615290565b60005b838110156147a557815481890152600182019150602081019050614786565b838801955050505b50505092915050565b60006147c36020836152ef565b91506147ce82615738565b602082019050919050565b60006147e66032836152ef565b91506147f182615761565b604082019050919050565b60006148096026836152ef565b9150614814826157b0565b604082019050919050565b600061482c6025836152ef565b9150614837826157ff565b604082019050919050565b600061484f601c836152ef565b915061485a8261584e565b602082019050919050565b60006148726013836152ef565b915061487d82615877565b602082019050919050565b60006148956024836152ef565b91506148a0826158a0565b604082019050919050565b60006148b86019836152ef565b91506148c3826158ef565b602082019050919050565b60006148db603a836152ef565b91506148e682615918565b604082019050919050565b60006148fe601e836152ef565b915061490982615967565b602082019050919050565b6000614921601d836152ef565b915061492c82615990565b602082019050919050565b60006149446026836152ef565b915061494f826159b9565b604082019050919050565b6000614967602c836152ef565b915061497282615a08565b604082019050919050565b600061498a601d836152ef565b915061499582615a57565b602082019050919050565b60006149ad6038836152ef565b91506149b882615a80565b604082019050919050565b60006149d0602a836152ef565b91506149db82615acf565b604082019050919050565b60006149f36029836152ef565b91506149fe82615b1e565b604082019050919050565b6000614a166012836152ef565b9150614a2182615b6d565b602082019050919050565b6000614a396020836152ef565b9150614a4482615b96565b602082019050919050565b6000614a5c6014836152ef565b9150614a6782615bbf565b602082019050919050565b6000614a7f602c836152ef565b9150614a8a82615be8565b604082019050919050565b6000614aa2600583615300565b9150614aad82615c37565b600582019050919050565b6000614ac56020836152ef565b9150614ad082615c60565b602082019050919050565b6000614ae86021836152ef565b9150614af382615c89565b604082019050919050565b6000614b0b6000836152e4565b9150614b1682615cd8565b600082019050919050565b6000614b2e6031836152ef565b9150614b3982615cdb565b604082019050919050565b6000614b51601d836152ef565b9150614b5c82615d2a565b602082019050919050565b6000614b74602a836152ef565b9150614b7f82615d53565b604082019050919050565b6000614b976018836152ef565b9150614ba282615da2565b602082019050919050565b6000614bba601a836152ef565b9150614bc582615dcb565b602082019050919050565b6000614bdd601f836152ef565b9150614be882615df4565b602082019050919050565b6000614c006017836152ef565b9150614c0b82615e1d565b602082019050919050565b6000614c23600183615300565b9150614c2e82615e46565b600182019050919050565b6000614c466015836152ef565b9150614c5182615e6f565b602082019050919050565b614c65816154d0565b82525050565b6000614c7782846145d1565b60148201915081905092915050565b6000614c938284866145e8565b91508190509392505050565b6000614cab828461468d565b915081905092915050565b6000614cc28284614706565b915081905092915050565b6000614cd98285614737565b9150614ce482614c16565b9150614cf08284614706565b9150614cfb82614a95565b91508190509392505050565b6000614d1282614afe565b9150819050919050565b6000602082019050614d3160008301846145b3565b92915050565b6000608082019050614d4c60008301876145b3565b614d5960208301866145b3565b614d666040830185614c5c565b8181036060830152614d788184614654565b905095945050505050565b6000604082019050614d9860008301856145b3565b614da56020830184614c5c565b9392505050565b6000602082019050614dc16000830184614645565b92915050565b6000602082019050614ddc60008301846146be565b92915050565b60006020820190508181036000830152614dfc81846146cd565b905092915050565b60006020820190508181036000830152614e1d816147b6565b9050919050565b60006020820190508181036000830152614e3d816147d9565b9050919050565b60006020820190508181036000830152614e5d816147fc565b9050919050565b60006020820190508181036000830152614e7d8161481f565b9050919050565b60006020820190508181036000830152614e9d81614842565b9050919050565b60006020820190508181036000830152614ebd81614865565b9050919050565b60006020820190508181036000830152614edd81614888565b9050919050565b60006020820190508181036000830152614efd816148ab565b9050919050565b60006020820190508181036000830152614f1d816148ce565b9050919050565b60006020820190508181036000830152614f3d816148f1565b9050919050565b60006020820190508181036000830152614f5d81614914565b9050919050565b60006020820190508181036000830152614f7d81614937565b9050919050565b60006020820190508181036000830152614f9d8161495a565b9050919050565b60006020820190508181036000830152614fbd8161497d565b9050919050565b60006020820190508181036000830152614fdd816149a0565b9050919050565b60006020820190508181036000830152614ffd816149c3565b9050919050565b6000602082019050818103600083015261501d816149e6565b9050919050565b6000602082019050818103600083015261503d81614a09565b9050919050565b6000602082019050818103600083015261505d81614a2c565b9050919050565b6000602082019050818103600083015261507d81614a4f565b9050919050565b6000602082019050818103600083015261509d81614a72565b9050919050565b600060208201905081810360008301526150bd81614ab8565b9050919050565b600060208201905081810360008301526150dd81614adb565b9050919050565b600060208201905081810360008301526150fd81614b21565b9050919050565b6000602082019050818103600083015261511d81614b44565b9050919050565b6000602082019050818103600083015261513d81614b67565b9050919050565b6000602082019050818103600083015261515d81614b8a565b9050919050565b6000602082019050818103600083015261517d81614bad565b9050919050565b6000602082019050818103600083015261519d81614bd0565b9050919050565b600060208201905081810360008301526151bd81614bf3565b9050919050565b600060208201905081810360008301526151dd81614c39565b9050919050565b60006020820190506151f96000830184614c5c565b92915050565b600061520961521a565b90506152158282615560565b919050565b6000604051905090565b600067ffffffffffffffff82111561523f5761523e6156eb565b5b6152488261571a565b9050602081019050919050565b600067ffffffffffffffff8211156152705761526f6156eb565b5b6152798261571a565b9050602081019050919050565b6000819050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061531a6020840184613f87565b905092915050565b600061532d826154d0565b9150615338836154d0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561536d5761536c61562f565b5b828201905092915050565b6000615383826154d0565b915061538e836154d0565b92508261539e5761539d61565e565b5b828204905092915050565b60006153b4826154d0565b91506153bf836154d0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153f8576153f761562f565b5b828202905092915050565b600061540e826154d0565b9150615419836154d0565b92508282101561542c5761542b61562f565b5b828203905092915050565b6000615442826154b0565b9050919050565b6000615454826154b0565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008190506154ab82615e98565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006154e58261549d565b9050919050565b82818337600083830152505050565b60005b838110156155195780820151818401526020810190506154fe565b83811115615528576000848401525b50505050565b6000600282049050600182168061554657607f821691505b6020821081141561555a576155596156bc565b5b50919050565b6155698261571a565b810181811067ffffffffffffffff82111715615588576155876156eb565b5b80604052505050565b600061559c826154d0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156155cf576155ce61562f565b5b600182019050919050565b60006155e5826155ec565b9050919050565b60006155f78261572b565b9050919050565b6000615609826154d0565b9150615614836154d0565b9250826156245761562361565e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45786365656473207072652073616c65206d696e74206d6178206e756d626572600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f41646472657373206e6f7420696e206c69737400000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f45786365656473207075626c6963206d696e74206d6178206e756d6265720000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420746f6b656e732072656d61696e696e67000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e2d6578697374656e7420746f6b656e0000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5072652d73616c65206973206e6f74206f70656e000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f496e73756666696369656e7420746f6b656e2072657365727665000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f41646472657373657320617272617920656d7074790000000000000000000000600082015250565b60038110615ea957615ea861568d565b5b50565b615eb581615437565b8114615ec057600080fd5b50565b615ecc81615449565b8114615ed757600080fd5b50565b615ee38161545b565b8114615eee57600080fd5b50565b615efa81615467565b8114615f0557600080fd5b50565b615f1181615471565b8114615f1c57600080fd5b50565b615f28816154d0565b8114615f3357600080fd5b5056fea2646970667358221220db7d12a70744289bb39ccb094d43b66e4b56b9812be47c88dfc21ff38133bbc664736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000004e6182a6c6a8b7dea278925beffd4e256e636969

-----Decoded View---------------
Arg [0] : _royaltyReceiverAddress (address): 0x4e6182a6C6A8B7DEa278925beffD4E256E636969

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004e6182a6c6a8b7dea278925beffd4e256e636969


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.