ETH Price: $3,308.73 (-1.05%)
Gas: 2 Gwei

Token

DAEJONG Film Award Membership (DAEJONG)
 

Overview

Max Total Supply

398 DAEJONG

Holders

302

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DAEJONG
0x4AE18cC98092D3103CB6F3D81D0D563A31Db2bB9
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:
DAEJONG

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.7;

import "contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "contracts/access/Ownable.sol";

contract DAEJONG is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    
    uint256 public cost = 0.03 ether;
    uint256 public precost = 0.0285 ether;

    uint256 public maxsupply = 230;
    


    bool public paused = false;
    bool public freeminting = false;
    bool public presale = false;

    mapping(address => bool) public whitelisted;
    mapping(address => bool) public presaleWallets;
    mapping(address => uint8) public mintAmount; 


    constructor(
        string memory _name,
        string memory _symbol
    ) ERC721(_name, _symbol) {
        
    }

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

    // public
    function mintwithTokenURI(address _to, uint256 tokenId, string memory tokenURI) public payable {
        require(!paused);
        uint256 supply = totalSupply();
        require(supply + 1 <= maxsupply);

        if (msg.sender != owner()) {
            if (!freeminting) {

                if (!presale) {
                    require(mintAmount[msg.sender]<9);
                    require(msg.value >= cost);
                    mintAmount[msg.sender] += 1;
                } else {
                    require(mintAmount[msg.sender]<24);
                    require(msg.value >= precost);
                    mintAmount[msg.sender] += 1;

                }
            } else {
                    require(mintAmount[msg.sender]<1);
                    mintAmount[msg.sender] += 1;

            }

        }

        _mint(_to, tokenId);
        _setTokenURI(tokenId, tokenURI);       
        
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

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

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        type,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }
*/

    // function _setTokenURI(uint256 tokenId, string memory uri) internal {
    //     require(_exists(tokenId), "KIP17Metadata: URI set of nonexistent token");
    //     _tokenURIs[tokenId] = uri;
    // }


    // function tokenURI(uint256 tokenId) external view returns (string memory) {
    //     require(_exists(tokenId), "KIP17Metadata: URI query for nonexistent token");
    //     return _tokenURIs[tokenId];
    // }

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

   function setmaxsupply(uint256 _maxsupply) public onlyOwner {
        maxsupply = _maxsupply;
    }


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

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function freeminting_status(bool _state) public onlyOwner {
        freeminting = _state;
    }
    
    function presale_status(bool _state) public onlyOwner {
        presale = _state;
    }
    

    function whitelistUser(address _user) public onlyOwner {
        whitelisted[_user] = true;
    }

    function removeWhitelistUser(address _user) public onlyOwner {
        whitelisted[_user] = false;
    }

    function addPresaleUser(address _user) public onlyOwner {
        presaleWallets[_user] = true;
    }

    function add100PresaleUsers(address[100] memory _users) public onlyOwner {
        for (uint256 i = 0; i < 2; i++) {
            presaleWallets[_users[i]] = true;
        }
    }

    function removePresaleUser(address _user) public onlyOwner {
        presaleWallets[_user] = false;
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

File 2 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 5 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

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;
    
    mapping(uint256 => string) private _tokenURIs;


    /**
     * @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) external view override returns (string memory) {
        require(_exists(tokenId), "KIP17Metadata: URI query for nonexistent token");
        return _tokenURIs[tokenId];
    }

    /**
     * @dev Internal function to set the token URI for a given token.
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to set its URI
     * @param uri string URI to assign
     */
    function _setTokenURI(uint256 tokenId, string memory uri) internal {
        require(_exists(tokenId), "KIP17Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = uri;
    }
    

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 6 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

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 9 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

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 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 12 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[100]","name":"_users","type":"address[100]"}],"name":"add100PresaleUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"addPresaleUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeminting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"freeminting_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxsupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintAmount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"mintwithTokenURI","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"presale_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removePresaleUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxsupply","type":"uint256"}],"name":"setmaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000519291906200021d565b50666a94d74f430000600e556665409958194000600f5560e66010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff021916908315150217905550348015620000cb57600080fd5b50604051620050c2380380620050c28339818101604052810190620000f191906200034b565b818181600090805190602001906200010b9291906200021d565b508060019080519060200190620001249291906200021d565b505050620001476200013b6200014f60201b60201c565b6200015760201b60201c565b505062000554565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022b9062000465565b90600052602060002090601f0160209004810192826200024f57600085556200029b565b82601f106200026a57805160ff19168380011785556200029b565b828001600101855582156200029b579182015b828111156200029a5782518255916020019190600101906200027d565b5b509050620002aa9190620002ae565b5090565b5b80821115620002c9576000816000905550600101620002af565b5090565b6000620002e4620002de84620003f9565b620003d0565b90508281526020810184848401111562000303576200030262000534565b5b620003108482856200042f565b509392505050565b600082601f83011262000330576200032f6200052f565b5b815162000342848260208601620002cd565b91505092915050565b600080604083850312156200036557620003646200053e565b5b600083015167ffffffffffffffff81111562000386576200038562000539565b5b620003948582860162000318565b925050602083015167ffffffffffffffff811115620003b857620003b762000539565b5b620003c68582860162000318565b9150509250929050565b6000620003dc620003ef565b9050620003ea82826200049b565b919050565b6000604051905090565b600067ffffffffffffffff82111562000417576200041662000500565b5b620004228262000543565b9050602081019050919050565b60005b838110156200044f57808201518184015260208101905062000432565b838111156200045f576000848401525b50505050565b600060028204905060018216806200047e57607f821691505b60208210811415620004955762000494620004d1565b5b50919050565b620004a68262000543565b810181811067ffffffffffffffff82111715620004c857620004c762000500565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b614b5e80620005646000396000f3fe6080604052600436106102725760003560e01c80635c975abb1161014f578063b2f3e85e116100c1578063e8f6db401161007a578063e8f6db4014610968578063e985e9c514610991578063ed931e17146109ce578063efd04dc9146109f7578063f2fde38b14610a22578063fdea8e0b14610a4b57610272565b8063b2f3e85e14610848578063b88d4fde14610871578063c66828621461089a578063c87b56dd146108c5578063d936547e14610902578063da3ef23f1461093f57610272565b8063715018a611610113578063715018a61461076d5780638ce4ed55146107845780638da5cb5b146107ad57806395d89b41146107d8578063a22cb46514610803578063abcebc351461082c57610272565b80635c975abb146106745780635d4ba6141461069f5780636352211e146106c85780636c0360eb1461070557806370a082311461073057610272565b806330cc7ae0116101e857806344a0d68a116101ac57806344a0d68a146105685780634a4c560d146105915780634b6406d1146105ba5780634f6ccce7146105e5578063546857c71461062257806355f804b31461064b57610272565b806330cc7ae0146104a45780633ccfd60b146104cd578063407f4d4d146104d757806342842e0e14610502578063438b63001461052b57610272565b8063095ea7b31161023a578063095ea7b31461038257806313faede6146103ab57806318160ddd146103d657806323b872dd146104015780632f745c591461042a57806330b2264e1461046757610272565b806301ffc9a71461027757806302329a29146102b4578063055d822c146102dd57806306fdde031461031a578063081812fc14610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906138e6565b610a76565b6040516102ab9190613e43565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906138b9565b610af0565b005b3480156102e957600080fd5b5061030460048036038101906102ff9190613659565b610b89565b60405161031191906140fb565b60405180910390f35b34801561032657600080fd5b5061032f610ba9565b60405161033c9190613e5e565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190613989565b610c3b565b6040516103799190613dba565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906137dc565b610cc0565b005b3480156103b757600080fd5b506103c0610dd8565b6040516103cd91906140e0565b60405180910390f35b3480156103e257600080fd5b506103eb610dde565b6040516103f891906140e0565b60405180910390f35b34801561040d57600080fd5b50610428600480360381019061042391906136c6565b610deb565b005b34801561043657600080fd5b50610451600480360381019061044c91906137dc565b610e4b565b60405161045e91906140e0565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190613659565b610ef0565b60405161049b9190613e43565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613659565b610f10565b005b6104d5610fe7565b005b3480156104e357600080fd5b506104ec6110dc565b6040516104f991906140e0565b60405180910390f35b34801561050e57600080fd5b50610529600480360381019061052491906136c6565b6110e2565b005b34801561053757600080fd5b50610552600480360381019061054d9190613659565b611102565b60405161055f9190613e21565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190613989565b6111b0565b005b34801561059d57600080fd5b506105b860048036038101906105b39190613659565b611236565b005b3480156105c657600080fd5b506105cf61130d565b6040516105dc91906140e0565b60405180910390f35b3480156105f157600080fd5b5061060c60048036038101906106079190613989565b611313565b60405161061991906140e0565b60405180910390f35b34801561062e57600080fd5b506106496004803603810190610644919061388b565b611384565b005b34801561065757600080fd5b50610672600480360381019061066d9190613940565b611492565b005b34801561068057600080fd5b50610689611528565b6040516106969190613e43565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613989565b61153b565b005b3480156106d457600080fd5b506106ef60048036038101906106ea9190613989565b6115c1565b6040516106fc9190613dba565b60405180910390f35b34801561071157600080fd5b5061071a611673565b6040516107279190613e5e565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190613659565b611701565b60405161076491906140e0565b60405180910390f35b34801561077957600080fd5b506107826117b9565b005b34801561079057600080fd5b506107ab60048036038101906107a691906138b9565b611841565b005b3480156107b957600080fd5b506107c26118da565b6040516107cf9190613dba565b60405180910390f35b3480156107e457600080fd5b506107ed611904565b6040516107fa9190613e5e565b60405180910390f35b34801561080f57600080fd5b5061082a6004803603810190610825919061379c565b611996565b005b6108466004803603810190610841919061381c565b611b17565b005b34801561085457600080fd5b5061086f600480360381019061086a9190613659565b611e6f565b005b34801561087d57600080fd5b5061089860048036038101906108939190613719565b611f46565b005b3480156108a657600080fd5b506108af611fa8565b6040516108bc9190613e5e565b60405180910390f35b3480156108d157600080fd5b506108ec60048036038101906108e79190613989565b612036565b6040516108f99190613e5e565b60405180910390f35b34801561090e57600080fd5b5061092960048036038101906109249190613659565b612123565b6040516109369190613e43565b60405180910390f35b34801561094b57600080fd5b5061096660048036038101906109619190613940565b612143565b005b34801561097457600080fd5b5061098f600480360381019061098a91906138b9565b6121d9565b005b34801561099d57600080fd5b506109b860048036038101906109b39190613686565b612272565b6040516109c59190613e43565b60405180910390f35b3480156109da57600080fd5b506109f560048036038101906109f09190613659565b612306565b005b348015610a0357600080fd5b50610a0c6123dd565b604051610a199190613e43565b60405180910390f35b348015610a2e57600080fd5b50610a496004803603810190610a449190613659565b6123f0565b005b348015610a5757600080fd5b50610a606124e8565b604051610a6d9190613e43565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae95750610ae8826124fb565b5b9050919050565b610af86125dd565b73ffffffffffffffffffffffffffffffffffffffff16610b166118da565b73ffffffffffffffffffffffffffffffffffffffff1614610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6390614040565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60146020528060005260406000206000915054906101000a900460ff1681565b606060008054610bb8906143c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610be4906143c3565b8015610c315780601f10610c0657610100808354040283529160200191610c31565b820191906000526020600020905b815481529060010190602001808311610c1457829003601f168201915b5050505050905090565b6000610c46826125e5565b610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c90614020565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ccb826115c1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390614080565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d5b6125dd565b73ffffffffffffffffffffffffffffffffffffffff161480610d8a5750610d8981610d846125dd565b612272565b5b610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090613f80565b60405180910390fd5b610dd38383612651565b505050565b600e5481565b6000600980549050905090565b610dfc610df66125dd565b8261270a565b610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e32906140a0565b60405180910390fd5b610e468383836127e8565b505050565b6000610e5683611701565b8210610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90613ea0565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b610f186125dd565b73ffffffffffffffffffffffffffffffffffffffff16610f366118da565b73ffffffffffffffffffffffffffffffffffffffff1614610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390614040565b60405180910390fd5b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610fef6125dd565b73ffffffffffffffffffffffffffffffffffffffff1661100d6118da565b73ffffffffffffffffffffffffffffffffffffffff1614611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a90614040565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161108990613da5565b60006040518083038185875af1925050503d80600081146110c6576040519150601f19603f3d011682016040523d82523d6000602084013e6110cb565b606091505b50509050806110d957600080fd5b50565b600f5481565b6110fd83838360405180602001604052806000815250611f46565b505050565b6060600061110f83611701565b905060008167ffffffffffffffff81111561112d5761112c61452b565b5b60405190808252806020026020018201604052801561115b5781602001602082028036833780820191505090505b50905060005b828110156111a5576111738582610e4b565b828281518110611186576111856144fc565b5b602002602001018181525050808061119d90614426565b915050611161565b508092505050919050565b6111b86125dd565b73ffffffffffffffffffffffffffffffffffffffff166111d66118da565b73ffffffffffffffffffffffffffffffffffffffff161461122c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122390614040565b60405180910390fd5b80600e8190555050565b61123e6125dd565b73ffffffffffffffffffffffffffffffffffffffff1661125c6118da565b73ffffffffffffffffffffffffffffffffffffffff16146112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a990614040565b60405180910390fd5b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60105481565b600061131d610dde565b821061135e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611355906140c0565b60405180910390fd5b60098281548110611372576113716144fc565b5b90600052602060002001549050919050565b61138c6125dd565b73ffffffffffffffffffffffffffffffffffffffff166113aa6118da565b73ffffffffffffffffffffffffffffffffffffffff1614611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790614040565b60405180910390fd5b60005b600281101561148e57600160136000848460648110611425576114246144fc565b5b602002015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061148690614426565b915050611403565b5050565b61149a6125dd565b73ffffffffffffffffffffffffffffffffffffffff166114b86118da565b73ffffffffffffffffffffffffffffffffffffffff161461150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150590614040565b60405180910390fd5b80600c90805190602001906115249291906133db565b5050565b601160009054906101000a900460ff1681565b6115436125dd565b73ffffffffffffffffffffffffffffffffffffffff166115616118da565b73ffffffffffffffffffffffffffffffffffffffff16146115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90614040565b60405180910390fd5b8060108190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561166a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166190613fc0565b60405180910390fd5b80915050919050565b600c8054611680906143c3565b80601f01602080910402602001604051908101604052809291908181526020018280546116ac906143c3565b80156116f95780601f106116ce576101008083540402835291602001916116f9565b820191906000526020600020905b8154815290600101906020018083116116dc57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990613fa0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117c16125dd565b73ffffffffffffffffffffffffffffffffffffffff166117df6118da565b73ffffffffffffffffffffffffffffffffffffffff1614611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90614040565b60405180910390fd5b61183f6000612a44565b565b6118496125dd565b73ffffffffffffffffffffffffffffffffffffffff166118676118da565b73ffffffffffffffffffffffffffffffffffffffff16146118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b490614040565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611913906143c3565b80601f016020809104026020016040519081016040528092919081815260200182805461193f906143c3565b801561198c5780601f106119615761010080835404028352916020019161198c565b820191906000526020600020905b81548152906001019060200180831161196f57829003601f168201915b5050505050905090565b61199e6125dd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390613f40565b60405180910390fd5b8060056000611a196125dd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ac66125dd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b0b9190613e43565b60405180910390a35050565b601160009054906101000a900460ff1615611b3157600080fd5b6000611b3b610dde565b9050601054600182611b4d919061423f565b1115611b5857600080fd5b611b606118da565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e5557601160019054906101000a900460ff16611d8357601160029054906101000a900460ff16611c9e576009601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1610611c1657600080fd5b600e54341015611c2557600080fd5b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611c819190614295565b92506101000a81548160ff021916908360ff160217905550611d7e565b6018601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1610611cfa57600080fd5b600f54341015611d0957600080fd5b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611d659190614295565b92506101000a81548160ff021916908360ff1602179055505b611e54565b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1610611ddf57600080fd5b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611e3b9190614295565b92506101000a81548160ff021916908360ff1602179055505b5b611e5f8484612b0a565b611e698383612cd8565b50505050565b611e776125dd565b73ffffffffffffffffffffffffffffffffffffffff16611e956118da565b73ffffffffffffffffffffffffffffffffffffffff1614611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee290614040565b60405180910390fd5b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611f57611f516125dd565b8361270a565b611f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8d906140a0565b60405180910390fd5b611fa284848484612d4c565b50505050565b600d8054611fb5906143c3565b80601f0160208091040260200160405190810160405280929190818152602001828054611fe1906143c3565b801561202e5780601f106120035761010080835404028352916020019161202e565b820191906000526020600020905b81548152906001019060200180831161201157829003601f168201915b505050505081565b6060612041826125e5565b612080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207790613e80565b60405180910390fd5b60066000838152602001908152602001600020805461209e906143c3565b80601f01602080910402602001604051908101604052809291908181526020018280546120ca906143c3565b80156121175780601f106120ec57610100808354040283529160200191612117565b820191906000526020600020905b8154815290600101906020018083116120fa57829003601f168201915b50505050509050919050565b60126020528060005260406000206000915054906101000a900460ff1681565b61214b6125dd565b73ffffffffffffffffffffffffffffffffffffffff166121696118da565b73ffffffffffffffffffffffffffffffffffffffff16146121bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b690614040565b60405180910390fd5b80600d90805190602001906121d59291906133db565b5050565b6121e16125dd565b73ffffffffffffffffffffffffffffffffffffffff166121ff6118da565b73ffffffffffffffffffffffffffffffffffffffff1614612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c90614040565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61230e6125dd565b73ffffffffffffffffffffffffffffffffffffffff1661232c6118da565b73ffffffffffffffffffffffffffffffffffffffff1614612382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237990614040565b60405180910390fd5b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601160019054906101000a900460ff1681565b6123f86125dd565b73ffffffffffffffffffffffffffffffffffffffff166124166118da565b73ffffffffffffffffffffffffffffffffffffffff161461246c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246390614040565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d390613ee0565b60405180910390fd5b6124e581612a44565b50565b601160029054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125c657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125d657506125d582612da8565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126c4836115c1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612715826125e5565b612754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274b90613f60565b60405180910390fd5b600061275f836115c1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127ce57508373ffffffffffffffffffffffffffffffffffffffff166127b684610c3b565b73ffffffffffffffffffffffffffffffffffffffff16145b806127df57506127de8185612272565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612808826115c1565b73ffffffffffffffffffffffffffffffffffffffff161461285e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285590614060565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c590613f20565b60405180910390fd5b6128d9838383612e12565b6128e4600082612651565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461293491906142cc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461298b919061423f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7190614000565b60405180910390fd5b612b83816125e5565b15612bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bba90613f00565b60405180910390fd5b612bcf60008383612e12565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c1f919061423f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612ce1826125e5565b612d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1790613fe0565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190612d479291906133db565b505050565b612d578484846127e8565b612d6384848484612f26565b612da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9990613ec0565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e1d8383836130bd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e6057612e5b816130c2565b612e9f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e9e57612e9d838261310b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ee257612edd81613278565b612f21565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f2057612f1f8282613349565b5b5b505050565b6000612f478473ffffffffffffffffffffffffffffffffffffffff166133c8565b156130b0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f706125dd565b8786866040518563ffffffff1660e01b8152600401612f929493929190613dd5565b602060405180830381600087803b158015612fac57600080fd5b505af1925050508015612fdd57506040513d601f19601f82011682018060405250810190612fda9190613913565b60015b613060573d806000811461300d576040519150601f19603f3d011682016040523d82523d6000602084013e613012565b606091505b50600081511415613058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304f90613ec0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130b5565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161311884611701565b61312291906142cc565b9050600060086000848152602001908152602001600020549050818114613207576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061328c91906142cc565b90506000600a60008481526020019081526020016000205490506000600983815481106132bc576132bb6144fc565b5b9060005260206000200154905080600983815481106132de576132dd6144fc565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061332d5761332c6144cd565b5b6001900381819060005260206000200160009055905550505050565b600061335483611701565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b8280546133e7906143c3565b90600052602060002090601f0160209004810192826134095760008555613450565b82601f1061342257805160ff1916838001178555613450565b82800160010185558215613450579182015b8281111561344f578251825591602001919060010190613434565b5b50905061345d9190613461565b5090565b5b8082111561347a576000816000905550600101613462565b5090565b600061349161348c8461413b565b614116565b905080828560208602820111156134ab576134aa61455f565b5b60005b858110156134db57816134c18882613569565b8452602084019350602083019250506001810190506134ae565b5050509392505050565b60006134f86134f384614161565b614116565b90508281526020810184848401111561351457613513614564565b5b61351f848285614381565b509392505050565b600061353a61353584614192565b614116565b90508281526020810184848401111561355657613555614564565b5b613561848285614381565b509392505050565b60008135905061357881614acc565b92915050565b600082601f8301126135935761359261455a565b5b60646135a084828561347e565b91505092915050565b6000813590506135b881614ae3565b92915050565b6000813590506135cd81614afa565b92915050565b6000815190506135e281614afa565b92915050565b600082601f8301126135fd576135fc61455a565b5b813561360d8482602086016134e5565b91505092915050565b600082601f83011261362b5761362a61455a565b5b813561363b848260208601613527565b91505092915050565b60008135905061365381614b11565b92915050565b60006020828403121561366f5761366e61456e565b5b600061367d84828501613569565b91505092915050565b6000806040838503121561369d5761369c61456e565b5b60006136ab85828601613569565b92505060206136bc85828601613569565b9150509250929050565b6000806000606084860312156136df576136de61456e565b5b60006136ed86828701613569565b93505060206136fe86828701613569565b925050604061370f86828701613644565b9150509250925092565b600080600080608085870312156137335761373261456e565b5b600061374187828801613569565b945050602061375287828801613569565b935050604061376387828801613644565b925050606085013567ffffffffffffffff81111561378457613783614569565b5b613790878288016135e8565b91505092959194509250565b600080604083850312156137b3576137b261456e565b5b60006137c185828601613569565b92505060206137d2858286016135a9565b9150509250929050565b600080604083850312156137f3576137f261456e565b5b600061380185828601613569565b925050602061381285828601613644565b9150509250929050565b6000806000606084860312156138355761383461456e565b5b600061384386828701613569565b935050602061385486828701613644565b925050604084013567ffffffffffffffff81111561387557613874614569565b5b61388186828701613616565b9150509250925092565b6000610c8082840312156138a2576138a161456e565b5b60006138b08482850161357e565b91505092915050565b6000602082840312156138cf576138ce61456e565b5b60006138dd848285016135a9565b91505092915050565b6000602082840312156138fc576138fb61456e565b5b600061390a848285016135be565b91505092915050565b6000602082840312156139295761392861456e565b5b6000613937848285016135d3565b91505092915050565b6000602082840312156139565761395561456e565b5b600082013567ffffffffffffffff81111561397457613973614569565b5b61398084828501613616565b91505092915050565b60006020828403121561399f5761399e61456e565b5b60006139ad84828501613644565b91505092915050565b60006139c28383613d78565b60208301905092915050565b6139d781614300565b82525050565b60006139e8826141d3565b6139f28185614201565b93506139fd836141c3565b8060005b83811015613a2e578151613a1588826139b6565b9750613a20836141f4565b925050600181019050613a01565b5085935050505092915050565b613a4481614312565b82525050565b6000613a55826141de565b613a5f8185614212565b9350613a6f818560208601614390565b613a7881614573565b840191505092915050565b6000613a8e826141e9565b613a98818561422e565b9350613aa8818560208601614390565b613ab181614573565b840191505092915050565b6000613ac9602e8361422e565b9150613ad482614584565b604082019050919050565b6000613aec602b8361422e565b9150613af7826145d3565b604082019050919050565b6000613b0f60328361422e565b9150613b1a82614622565b604082019050919050565b6000613b3260268361422e565b9150613b3d82614671565b604082019050919050565b6000613b55601c8361422e565b9150613b60826146c0565b602082019050919050565b6000613b7860248361422e565b9150613b83826146e9565b604082019050919050565b6000613b9b60198361422e565b9150613ba682614738565b602082019050919050565b6000613bbe602c8361422e565b9150613bc982614761565b604082019050919050565b6000613be160388361422e565b9150613bec826147b0565b604082019050919050565b6000613c04602a8361422e565b9150613c0f826147ff565b604082019050919050565b6000613c2760298361422e565b9150613c328261484e565b604082019050919050565b6000613c4a602b8361422e565b9150613c558261489d565b604082019050919050565b6000613c6d60208361422e565b9150613c78826148ec565b602082019050919050565b6000613c90602c8361422e565b9150613c9b82614915565b604082019050919050565b6000613cb360208361422e565b9150613cbe82614964565b602082019050919050565b6000613cd660298361422e565b9150613ce18261498d565b604082019050919050565b6000613cf960218361422e565b9150613d04826149dc565b604082019050919050565b6000613d1c600083614223565b9150613d2782614a2b565b600082019050919050565b6000613d3f60318361422e565b9150613d4a82614a2e565b604082019050919050565b6000613d62602c8361422e565b9150613d6d82614a7d565b604082019050919050565b613d818161436a565b82525050565b613d908161436a565b82525050565b613d9f81614374565b82525050565b6000613db082613d0f565b9150819050919050565b6000602082019050613dcf60008301846139ce565b92915050565b6000608082019050613dea60008301876139ce565b613df760208301866139ce565b613e046040830185613d87565b8181036060830152613e168184613a4a565b905095945050505050565b60006020820190508181036000830152613e3b81846139dd565b905092915050565b6000602082019050613e586000830184613a3b565b92915050565b60006020820190508181036000830152613e788184613a83565b905092915050565b60006020820190508181036000830152613e9981613abc565b9050919050565b60006020820190508181036000830152613eb981613adf565b9050919050565b60006020820190508181036000830152613ed981613b02565b9050919050565b60006020820190508181036000830152613ef981613b25565b9050919050565b60006020820190508181036000830152613f1981613b48565b9050919050565b60006020820190508181036000830152613f3981613b6b565b9050919050565b60006020820190508181036000830152613f5981613b8e565b9050919050565b60006020820190508181036000830152613f7981613bb1565b9050919050565b60006020820190508181036000830152613f9981613bd4565b9050919050565b60006020820190508181036000830152613fb981613bf7565b9050919050565b60006020820190508181036000830152613fd981613c1a565b9050919050565b60006020820190508181036000830152613ff981613c3d565b9050919050565b6000602082019050818103600083015261401981613c60565b9050919050565b6000602082019050818103600083015261403981613c83565b9050919050565b6000602082019050818103600083015261405981613ca6565b9050919050565b6000602082019050818103600083015261407981613cc9565b9050919050565b6000602082019050818103600083015261409981613cec565b9050919050565b600060208201905081810360008301526140b981613d32565b9050919050565b600060208201905081810360008301526140d981613d55565b9050919050565b60006020820190506140f56000830184613d87565b92915050565b60006020820190506141106000830184613d96565b92915050565b6000614120614131565b905061412c82826143f5565b919050565b6000604051905090565b600067ffffffffffffffff8211156141565761415561452b565b5b602082029050919050565b600067ffffffffffffffff82111561417c5761417b61452b565b5b61418582614573565b9050602081019050919050565b600067ffffffffffffffff8211156141ad576141ac61452b565b5b6141b682614573565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600061424a8261436a565b91506142558361436a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561428a5761428961446f565b5b828201905092915050565b60006142a082614374565b91506142ab83614374565b92508260ff038211156142c1576142c061446f565b5b828201905092915050565b60006142d78261436a565b91506142e28361436a565b9250828210156142f5576142f461446f565b5b828203905092915050565b600061430b8261434a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156143ae578082015181840152602081019050614393565b838111156143bd576000848401525b50505050565b600060028204905060018216806143db57607f821691505b602082108114156143ef576143ee61449e565b5b50919050565b6143fe82614573565b810181811067ffffffffffffffff8211171561441d5761441c61452b565b5b80604052505050565b60006144318261436a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144645761446361446f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4b495031374d657461646174613a2055524920717565727920666f72206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4b495031374d657461646174613a2055524920736574206f66206e6f6e65786960008201527f7374656e7420746f6b656e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614ad581614300565b8114614ae057600080fd5b50565b614aec81614312565b8114614af757600080fd5b50565b614b038161431e565b8114614b0e57600080fd5b50565b614b1a8161436a565b8114614b2557600080fd5b5056fea2646970667358221220a3c201643c23dfe854ef4cbc87df92ea1c164b9677d6fc401e0319b10d23291964736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001d4441454a4f4e472046696c6d204177617264204d656d6265727368697000000000000000000000000000000000000000000000000000000000000000000000074441454a4f4e4700000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80635c975abb1161014f578063b2f3e85e116100c1578063e8f6db401161007a578063e8f6db4014610968578063e985e9c514610991578063ed931e17146109ce578063efd04dc9146109f7578063f2fde38b14610a22578063fdea8e0b14610a4b57610272565b8063b2f3e85e14610848578063b88d4fde14610871578063c66828621461089a578063c87b56dd146108c5578063d936547e14610902578063da3ef23f1461093f57610272565b8063715018a611610113578063715018a61461076d5780638ce4ed55146107845780638da5cb5b146107ad57806395d89b41146107d8578063a22cb46514610803578063abcebc351461082c57610272565b80635c975abb146106745780635d4ba6141461069f5780636352211e146106c85780636c0360eb1461070557806370a082311461073057610272565b806330cc7ae0116101e857806344a0d68a116101ac57806344a0d68a146105685780634a4c560d146105915780634b6406d1146105ba5780634f6ccce7146105e5578063546857c71461062257806355f804b31461064b57610272565b806330cc7ae0146104a45780633ccfd60b146104cd578063407f4d4d146104d757806342842e0e14610502578063438b63001461052b57610272565b8063095ea7b31161023a578063095ea7b31461038257806313faede6146103ab57806318160ddd146103d657806323b872dd146104015780632f745c591461042a57806330b2264e1461046757610272565b806301ffc9a71461027757806302329a29146102b4578063055d822c146102dd57806306fdde031461031a578063081812fc14610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906138e6565b610a76565b6040516102ab9190613e43565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906138b9565b610af0565b005b3480156102e957600080fd5b5061030460048036038101906102ff9190613659565b610b89565b60405161031191906140fb565b60405180910390f35b34801561032657600080fd5b5061032f610ba9565b60405161033c9190613e5e565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190613989565b610c3b565b6040516103799190613dba565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906137dc565b610cc0565b005b3480156103b757600080fd5b506103c0610dd8565b6040516103cd91906140e0565b60405180910390f35b3480156103e257600080fd5b506103eb610dde565b6040516103f891906140e0565b60405180910390f35b34801561040d57600080fd5b50610428600480360381019061042391906136c6565b610deb565b005b34801561043657600080fd5b50610451600480360381019061044c91906137dc565b610e4b565b60405161045e91906140e0565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190613659565b610ef0565b60405161049b9190613e43565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613659565b610f10565b005b6104d5610fe7565b005b3480156104e357600080fd5b506104ec6110dc565b6040516104f991906140e0565b60405180910390f35b34801561050e57600080fd5b50610529600480360381019061052491906136c6565b6110e2565b005b34801561053757600080fd5b50610552600480360381019061054d9190613659565b611102565b60405161055f9190613e21565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190613989565b6111b0565b005b34801561059d57600080fd5b506105b860048036038101906105b39190613659565b611236565b005b3480156105c657600080fd5b506105cf61130d565b6040516105dc91906140e0565b60405180910390f35b3480156105f157600080fd5b5061060c60048036038101906106079190613989565b611313565b60405161061991906140e0565b60405180910390f35b34801561062e57600080fd5b506106496004803603810190610644919061388b565b611384565b005b34801561065757600080fd5b50610672600480360381019061066d9190613940565b611492565b005b34801561068057600080fd5b50610689611528565b6040516106969190613e43565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613989565b61153b565b005b3480156106d457600080fd5b506106ef60048036038101906106ea9190613989565b6115c1565b6040516106fc9190613dba565b60405180910390f35b34801561071157600080fd5b5061071a611673565b6040516107279190613e5e565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190613659565b611701565b60405161076491906140e0565b60405180910390f35b34801561077957600080fd5b506107826117b9565b005b34801561079057600080fd5b506107ab60048036038101906107a691906138b9565b611841565b005b3480156107b957600080fd5b506107c26118da565b6040516107cf9190613dba565b60405180910390f35b3480156107e457600080fd5b506107ed611904565b6040516107fa9190613e5e565b60405180910390f35b34801561080f57600080fd5b5061082a6004803603810190610825919061379c565b611996565b005b6108466004803603810190610841919061381c565b611b17565b005b34801561085457600080fd5b5061086f600480360381019061086a9190613659565b611e6f565b005b34801561087d57600080fd5b5061089860048036038101906108939190613719565b611f46565b005b3480156108a657600080fd5b506108af611fa8565b6040516108bc9190613e5e565b60405180910390f35b3480156108d157600080fd5b506108ec60048036038101906108e79190613989565b612036565b6040516108f99190613e5e565b60405180910390f35b34801561090e57600080fd5b5061092960048036038101906109249190613659565b612123565b6040516109369190613e43565b60405180910390f35b34801561094b57600080fd5b5061096660048036038101906109619190613940565b612143565b005b34801561097457600080fd5b5061098f600480360381019061098a91906138b9565b6121d9565b005b34801561099d57600080fd5b506109b860048036038101906109b39190613686565b612272565b6040516109c59190613e43565b60405180910390f35b3480156109da57600080fd5b506109f560048036038101906109f09190613659565b612306565b005b348015610a0357600080fd5b50610a0c6123dd565b604051610a199190613e43565b60405180910390f35b348015610a2e57600080fd5b50610a496004803603810190610a449190613659565b6123f0565b005b348015610a5757600080fd5b50610a606124e8565b604051610a6d9190613e43565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae95750610ae8826124fb565b5b9050919050565b610af86125dd565b73ffffffffffffffffffffffffffffffffffffffff16610b166118da565b73ffffffffffffffffffffffffffffffffffffffff1614610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6390614040565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60146020528060005260406000206000915054906101000a900460ff1681565b606060008054610bb8906143c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610be4906143c3565b8015610c315780601f10610c0657610100808354040283529160200191610c31565b820191906000526020600020905b815481529060010190602001808311610c1457829003601f168201915b5050505050905090565b6000610c46826125e5565b610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c90614020565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ccb826115c1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390614080565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d5b6125dd565b73ffffffffffffffffffffffffffffffffffffffff161480610d8a5750610d8981610d846125dd565b612272565b5b610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090613f80565b60405180910390fd5b610dd38383612651565b505050565b600e5481565b6000600980549050905090565b610dfc610df66125dd565b8261270a565b610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e32906140a0565b60405180910390fd5b610e468383836127e8565b505050565b6000610e5683611701565b8210610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90613ea0565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b610f186125dd565b73ffffffffffffffffffffffffffffffffffffffff16610f366118da565b73ffffffffffffffffffffffffffffffffffffffff1614610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390614040565b60405180910390fd5b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610fef6125dd565b73ffffffffffffffffffffffffffffffffffffffff1661100d6118da565b73ffffffffffffffffffffffffffffffffffffffff1614611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a90614040565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161108990613da5565b60006040518083038185875af1925050503d80600081146110c6576040519150601f19603f3d011682016040523d82523d6000602084013e6110cb565b606091505b50509050806110d957600080fd5b50565b600f5481565b6110fd83838360405180602001604052806000815250611f46565b505050565b6060600061110f83611701565b905060008167ffffffffffffffff81111561112d5761112c61452b565b5b60405190808252806020026020018201604052801561115b5781602001602082028036833780820191505090505b50905060005b828110156111a5576111738582610e4b565b828281518110611186576111856144fc565b5b602002602001018181525050808061119d90614426565b915050611161565b508092505050919050565b6111b86125dd565b73ffffffffffffffffffffffffffffffffffffffff166111d66118da565b73ffffffffffffffffffffffffffffffffffffffff161461122c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122390614040565b60405180910390fd5b80600e8190555050565b61123e6125dd565b73ffffffffffffffffffffffffffffffffffffffff1661125c6118da565b73ffffffffffffffffffffffffffffffffffffffff16146112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a990614040565b60405180910390fd5b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60105481565b600061131d610dde565b821061135e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611355906140c0565b60405180910390fd5b60098281548110611372576113716144fc565b5b90600052602060002001549050919050565b61138c6125dd565b73ffffffffffffffffffffffffffffffffffffffff166113aa6118da565b73ffffffffffffffffffffffffffffffffffffffff1614611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790614040565b60405180910390fd5b60005b600281101561148e57600160136000848460648110611425576114246144fc565b5b602002015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061148690614426565b915050611403565b5050565b61149a6125dd565b73ffffffffffffffffffffffffffffffffffffffff166114b86118da565b73ffffffffffffffffffffffffffffffffffffffff161461150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150590614040565b60405180910390fd5b80600c90805190602001906115249291906133db565b5050565b601160009054906101000a900460ff1681565b6115436125dd565b73ffffffffffffffffffffffffffffffffffffffff166115616118da565b73ffffffffffffffffffffffffffffffffffffffff16146115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90614040565b60405180910390fd5b8060108190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561166a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166190613fc0565b60405180910390fd5b80915050919050565b600c8054611680906143c3565b80601f01602080910402602001604051908101604052809291908181526020018280546116ac906143c3565b80156116f95780601f106116ce576101008083540402835291602001916116f9565b820191906000526020600020905b8154815290600101906020018083116116dc57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990613fa0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117c16125dd565b73ffffffffffffffffffffffffffffffffffffffff166117df6118da565b73ffffffffffffffffffffffffffffffffffffffff1614611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90614040565b60405180910390fd5b61183f6000612a44565b565b6118496125dd565b73ffffffffffffffffffffffffffffffffffffffff166118676118da565b73ffffffffffffffffffffffffffffffffffffffff16146118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b490614040565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611913906143c3565b80601f016020809104026020016040519081016040528092919081815260200182805461193f906143c3565b801561198c5780601f106119615761010080835404028352916020019161198c565b820191906000526020600020905b81548152906001019060200180831161196f57829003601f168201915b5050505050905090565b61199e6125dd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390613f40565b60405180910390fd5b8060056000611a196125dd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ac66125dd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b0b9190613e43565b60405180910390a35050565b601160009054906101000a900460ff1615611b3157600080fd5b6000611b3b610dde565b9050601054600182611b4d919061423f565b1115611b5857600080fd5b611b606118da565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e5557601160019054906101000a900460ff16611d8357601160029054906101000a900460ff16611c9e576009601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1610611c1657600080fd5b600e54341015611c2557600080fd5b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611c819190614295565b92506101000a81548160ff021916908360ff160217905550611d7e565b6018601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1610611cfa57600080fd5b600f54341015611d0957600080fd5b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611d659190614295565b92506101000a81548160ff021916908360ff1602179055505b611e54565b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1610611ddf57600080fd5b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611e3b9190614295565b92506101000a81548160ff021916908360ff1602179055505b5b611e5f8484612b0a565b611e698383612cd8565b50505050565b611e776125dd565b73ffffffffffffffffffffffffffffffffffffffff16611e956118da565b73ffffffffffffffffffffffffffffffffffffffff1614611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee290614040565b60405180910390fd5b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611f57611f516125dd565b8361270a565b611f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8d906140a0565b60405180910390fd5b611fa284848484612d4c565b50505050565b600d8054611fb5906143c3565b80601f0160208091040260200160405190810160405280929190818152602001828054611fe1906143c3565b801561202e5780601f106120035761010080835404028352916020019161202e565b820191906000526020600020905b81548152906001019060200180831161201157829003601f168201915b505050505081565b6060612041826125e5565b612080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207790613e80565b60405180910390fd5b60066000838152602001908152602001600020805461209e906143c3565b80601f01602080910402602001604051908101604052809291908181526020018280546120ca906143c3565b80156121175780601f106120ec57610100808354040283529160200191612117565b820191906000526020600020905b8154815290600101906020018083116120fa57829003601f168201915b50505050509050919050565b60126020528060005260406000206000915054906101000a900460ff1681565b61214b6125dd565b73ffffffffffffffffffffffffffffffffffffffff166121696118da565b73ffffffffffffffffffffffffffffffffffffffff16146121bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b690614040565b60405180910390fd5b80600d90805190602001906121d59291906133db565b5050565b6121e16125dd565b73ffffffffffffffffffffffffffffffffffffffff166121ff6118da565b73ffffffffffffffffffffffffffffffffffffffff1614612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c90614040565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61230e6125dd565b73ffffffffffffffffffffffffffffffffffffffff1661232c6118da565b73ffffffffffffffffffffffffffffffffffffffff1614612382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237990614040565b60405180910390fd5b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601160019054906101000a900460ff1681565b6123f86125dd565b73ffffffffffffffffffffffffffffffffffffffff166124166118da565b73ffffffffffffffffffffffffffffffffffffffff161461246c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246390614040565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d390613ee0565b60405180910390fd5b6124e581612a44565b50565b601160029054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125c657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125d657506125d582612da8565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126c4836115c1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612715826125e5565b612754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274b90613f60565b60405180910390fd5b600061275f836115c1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127ce57508373ffffffffffffffffffffffffffffffffffffffff166127b684610c3b565b73ffffffffffffffffffffffffffffffffffffffff16145b806127df57506127de8185612272565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612808826115c1565b73ffffffffffffffffffffffffffffffffffffffff161461285e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285590614060565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c590613f20565b60405180910390fd5b6128d9838383612e12565b6128e4600082612651565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461293491906142cc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461298b919061423f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7190614000565b60405180910390fd5b612b83816125e5565b15612bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bba90613f00565b60405180910390fd5b612bcf60008383612e12565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c1f919061423f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612ce1826125e5565b612d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1790613fe0565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190612d479291906133db565b505050565b612d578484846127e8565b612d6384848484612f26565b612da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9990613ec0565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e1d8383836130bd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e6057612e5b816130c2565b612e9f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e9e57612e9d838261310b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ee257612edd81613278565b612f21565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f2057612f1f8282613349565b5b5b505050565b6000612f478473ffffffffffffffffffffffffffffffffffffffff166133c8565b156130b0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f706125dd565b8786866040518563ffffffff1660e01b8152600401612f929493929190613dd5565b602060405180830381600087803b158015612fac57600080fd5b505af1925050508015612fdd57506040513d601f19601f82011682018060405250810190612fda9190613913565b60015b613060573d806000811461300d576040519150601f19603f3d011682016040523d82523d6000602084013e613012565b606091505b50600081511415613058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304f90613ec0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130b5565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161311884611701565b61312291906142cc565b9050600060086000848152602001908152602001600020549050818114613207576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061328c91906142cc565b90506000600a60008481526020019081526020016000205490506000600983815481106132bc576132bb6144fc565b5b9060005260206000200154905080600983815481106132de576132dd6144fc565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061332d5761332c6144cd565b5b6001900381819060005260206000200160009055905550505050565b600061335483611701565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b8280546133e7906143c3565b90600052602060002090601f0160209004810192826134095760008555613450565b82601f1061342257805160ff1916838001178555613450565b82800160010185558215613450579182015b8281111561344f578251825591602001919060010190613434565b5b50905061345d9190613461565b5090565b5b8082111561347a576000816000905550600101613462565b5090565b600061349161348c8461413b565b614116565b905080828560208602820111156134ab576134aa61455f565b5b60005b858110156134db57816134c18882613569565b8452602084019350602083019250506001810190506134ae565b5050509392505050565b60006134f86134f384614161565b614116565b90508281526020810184848401111561351457613513614564565b5b61351f848285614381565b509392505050565b600061353a61353584614192565b614116565b90508281526020810184848401111561355657613555614564565b5b613561848285614381565b509392505050565b60008135905061357881614acc565b92915050565b600082601f8301126135935761359261455a565b5b60646135a084828561347e565b91505092915050565b6000813590506135b881614ae3565b92915050565b6000813590506135cd81614afa565b92915050565b6000815190506135e281614afa565b92915050565b600082601f8301126135fd576135fc61455a565b5b813561360d8482602086016134e5565b91505092915050565b600082601f83011261362b5761362a61455a565b5b813561363b848260208601613527565b91505092915050565b60008135905061365381614b11565b92915050565b60006020828403121561366f5761366e61456e565b5b600061367d84828501613569565b91505092915050565b6000806040838503121561369d5761369c61456e565b5b60006136ab85828601613569565b92505060206136bc85828601613569565b9150509250929050565b6000806000606084860312156136df576136de61456e565b5b60006136ed86828701613569565b93505060206136fe86828701613569565b925050604061370f86828701613644565b9150509250925092565b600080600080608085870312156137335761373261456e565b5b600061374187828801613569565b945050602061375287828801613569565b935050604061376387828801613644565b925050606085013567ffffffffffffffff81111561378457613783614569565b5b613790878288016135e8565b91505092959194509250565b600080604083850312156137b3576137b261456e565b5b60006137c185828601613569565b92505060206137d2858286016135a9565b9150509250929050565b600080604083850312156137f3576137f261456e565b5b600061380185828601613569565b925050602061381285828601613644565b9150509250929050565b6000806000606084860312156138355761383461456e565b5b600061384386828701613569565b935050602061385486828701613644565b925050604084013567ffffffffffffffff81111561387557613874614569565b5b61388186828701613616565b9150509250925092565b6000610c8082840312156138a2576138a161456e565b5b60006138b08482850161357e565b91505092915050565b6000602082840312156138cf576138ce61456e565b5b60006138dd848285016135a9565b91505092915050565b6000602082840312156138fc576138fb61456e565b5b600061390a848285016135be565b91505092915050565b6000602082840312156139295761392861456e565b5b6000613937848285016135d3565b91505092915050565b6000602082840312156139565761395561456e565b5b600082013567ffffffffffffffff81111561397457613973614569565b5b61398084828501613616565b91505092915050565b60006020828403121561399f5761399e61456e565b5b60006139ad84828501613644565b91505092915050565b60006139c28383613d78565b60208301905092915050565b6139d781614300565b82525050565b60006139e8826141d3565b6139f28185614201565b93506139fd836141c3565b8060005b83811015613a2e578151613a1588826139b6565b9750613a20836141f4565b925050600181019050613a01565b5085935050505092915050565b613a4481614312565b82525050565b6000613a55826141de565b613a5f8185614212565b9350613a6f818560208601614390565b613a7881614573565b840191505092915050565b6000613a8e826141e9565b613a98818561422e565b9350613aa8818560208601614390565b613ab181614573565b840191505092915050565b6000613ac9602e8361422e565b9150613ad482614584565b604082019050919050565b6000613aec602b8361422e565b9150613af7826145d3565b604082019050919050565b6000613b0f60328361422e565b9150613b1a82614622565b604082019050919050565b6000613b3260268361422e565b9150613b3d82614671565b604082019050919050565b6000613b55601c8361422e565b9150613b60826146c0565b602082019050919050565b6000613b7860248361422e565b9150613b83826146e9565b604082019050919050565b6000613b9b60198361422e565b9150613ba682614738565b602082019050919050565b6000613bbe602c8361422e565b9150613bc982614761565b604082019050919050565b6000613be160388361422e565b9150613bec826147b0565b604082019050919050565b6000613c04602a8361422e565b9150613c0f826147ff565b604082019050919050565b6000613c2760298361422e565b9150613c328261484e565b604082019050919050565b6000613c4a602b8361422e565b9150613c558261489d565b604082019050919050565b6000613c6d60208361422e565b9150613c78826148ec565b602082019050919050565b6000613c90602c8361422e565b9150613c9b82614915565b604082019050919050565b6000613cb360208361422e565b9150613cbe82614964565b602082019050919050565b6000613cd660298361422e565b9150613ce18261498d565b604082019050919050565b6000613cf960218361422e565b9150613d04826149dc565b604082019050919050565b6000613d1c600083614223565b9150613d2782614a2b565b600082019050919050565b6000613d3f60318361422e565b9150613d4a82614a2e565b604082019050919050565b6000613d62602c8361422e565b9150613d6d82614a7d565b604082019050919050565b613d818161436a565b82525050565b613d908161436a565b82525050565b613d9f81614374565b82525050565b6000613db082613d0f565b9150819050919050565b6000602082019050613dcf60008301846139ce565b92915050565b6000608082019050613dea60008301876139ce565b613df760208301866139ce565b613e046040830185613d87565b8181036060830152613e168184613a4a565b905095945050505050565b60006020820190508181036000830152613e3b81846139dd565b905092915050565b6000602082019050613e586000830184613a3b565b92915050565b60006020820190508181036000830152613e788184613a83565b905092915050565b60006020820190508181036000830152613e9981613abc565b9050919050565b60006020820190508181036000830152613eb981613adf565b9050919050565b60006020820190508181036000830152613ed981613b02565b9050919050565b60006020820190508181036000830152613ef981613b25565b9050919050565b60006020820190508181036000830152613f1981613b48565b9050919050565b60006020820190508181036000830152613f3981613b6b565b9050919050565b60006020820190508181036000830152613f5981613b8e565b9050919050565b60006020820190508181036000830152613f7981613bb1565b9050919050565b60006020820190508181036000830152613f9981613bd4565b9050919050565b60006020820190508181036000830152613fb981613bf7565b9050919050565b60006020820190508181036000830152613fd981613c1a565b9050919050565b60006020820190508181036000830152613ff981613c3d565b9050919050565b6000602082019050818103600083015261401981613c60565b9050919050565b6000602082019050818103600083015261403981613c83565b9050919050565b6000602082019050818103600083015261405981613ca6565b9050919050565b6000602082019050818103600083015261407981613cc9565b9050919050565b6000602082019050818103600083015261409981613cec565b9050919050565b600060208201905081810360008301526140b981613d32565b9050919050565b600060208201905081810360008301526140d981613d55565b9050919050565b60006020820190506140f56000830184613d87565b92915050565b60006020820190506141106000830184613d96565b92915050565b6000614120614131565b905061412c82826143f5565b919050565b6000604051905090565b600067ffffffffffffffff8211156141565761415561452b565b5b602082029050919050565b600067ffffffffffffffff82111561417c5761417b61452b565b5b61418582614573565b9050602081019050919050565b600067ffffffffffffffff8211156141ad576141ac61452b565b5b6141b682614573565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600061424a8261436a565b91506142558361436a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561428a5761428961446f565b5b828201905092915050565b60006142a082614374565b91506142ab83614374565b92508260ff038211156142c1576142c061446f565b5b828201905092915050565b60006142d78261436a565b91506142e28361436a565b9250828210156142f5576142f461446f565b5b828203905092915050565b600061430b8261434a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156143ae578082015181840152602081019050614393565b838111156143bd576000848401525b50505050565b600060028204905060018216806143db57607f821691505b602082108114156143ef576143ee61449e565b5b50919050565b6143fe82614573565b810181811067ffffffffffffffff8211171561441d5761441c61452b565b5b80604052505050565b60006144318261436a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144645761446361446f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4b495031374d657461646174613a2055524920717565727920666f72206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4b495031374d657461646174613a2055524920736574206f66206e6f6e65786960008201527f7374656e7420746f6b656e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614ad581614300565b8114614ae057600080fd5b50565b614aec81614312565b8114614af757600080fd5b50565b614b038161431e565b8114614b0e57600080fd5b50565b614b1a8161436a565b8114614b2557600080fd5b5056fea2646970667358221220a3c201643c23dfe854ef4cbc87df92ea1c164b9677d6fc401e0319b10d23291964736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001d4441454a4f4e472046696c6d204177617264204d656d6265727368697000000000000000000000000000000000000000000000000000000000000000000000074441454a4f4e4700000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): DAEJONG Film Award Membership
Arg [1] : _symbol (string): DAEJONG

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [3] : 4441454a4f4e472046696c6d204177617264204d656d62657273686970000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 4441454a4f4e4700000000000000000000000000000000000000000000000000


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.