ETH Price: $3,489.44 (+3.66%)
Gas: 2 Gwei

Token

Mekas of Krupt - Genesis (MOK)
 

Overview

Max Total Supply

0 MOK

Holders

549

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MOK
0x3b7d4e90ec2731000066e7b7f2c7d0b729c48a98
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The New Resistance is a play2earn crypto video game, NFT collection and cryptocurrency.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MekasOfKrupt

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : MOK.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

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

contract MekasOfKrupt is ERC721, Ownable {
    uint internal constant TOKEN_LIMIT = 888;

    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;


    mapping(address => bool) public whitelist;
    mapping(address => bool) public hasMinted;
    uint256 internal _mintPrice = 0;

    address payable internal devTeam;

    string internal _baseTokenURI;
    bool internal saleStarted = false;
    bool internal openToPublic = false;
    bool internal URISet = false;
    Counters.Counter private _devSupplyAwarded;



    /// The sale has not started yet.
    error SaleNotStarted();
    /// Max tokens have been minted.
    error MaxTokensMinted();
    /// You are not on the whitelist
    error NotOnWhitelist();
    /// You have minted your allowance
    error MintedAllowance();
    /// msg.value too low
    error MintPayableTooLow();
    /// Sale has already started
    error SaleStarted();
    /// URI has not been set yet
    error URINotSet();
    /// Mint price set to low
    error MintPriceTooLow();
    /// Dev team award limit reached.
    error DevTeamAwardLimit();

    constructor(string memory name, string memory symbol, address devTeamAddress) ERC721(name, symbol) {
        devTeam = payable(devTeamAddress);
        _tokenIdCounter.increment(); // dev: starts tokens at id of 1
    }

    /**
     * @dev takes a list of addresses and gives each address a allocation of mints
     */
    function addToWhiteList(address[] memory whitelist_addresses) external onlyOwner {
        for (uint i = 0; i < whitelist_addresses.length; i++) {
            whitelist[whitelist_addresses[i]] = true;
        }
    }

    /**
     * @dev Creates a new token. Its token ID will be automatically
     * assigned (and available on the emitted {IERC721-Transfer} event), and the token
     * URI autogenerated based on the base URI passed at construction.
     *
     * See {ERC721-_mint}.
     *
     */
    function safeMint(address to) external payable {
        if (saleStarted == false)
            revert SaleNotStarted(); // dev: sale not started
        if (whitelist[msg.sender] == false && openToPublic == false)
            revert NotOnWhitelist(); // dev: not on the whitelist
        if (hasMinted[msg.sender] == true)
            revert MintedAllowance(); // dev: allowance minted
        uint256 tokenId = _tokenIdCounter.current();
        if (tokenId > TOKEN_LIMIT)
            revert MaxTokensMinted(); // dev: max token supply minted
        if (msg.value < _mintPrice)
            revert MintPayableTooLow(); // dev: msg.value too low
        hasMinted[msg.sender] = true;
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
    }

    /**
    * open mint up to the public
    */
    function openMintToPublic() external onlyOwner {
        openToPublic = true;
    }

    /**
    * Start the sale (cant be stopped later)
    */
    function startSale(uint256 mintPrice) external virtual onlyOwner {
        if (saleStarted == true)
            revert SaleStarted(); // dev: sale has already started
        if (URISet == false)
            revert URINotSet(); // dev: uri must be set
        if (mintPrice < 0.09 ether)
            revert MintPriceTooLow(); // dev: mint price too low
        _mintPrice = mintPrice;
        saleStarted = true;
    }
    
    /**
    * Can only be called twice. Gives 48 total Tokens to devs for giveaways, marketing purposes and team members.
    */
    function devAward() external onlyOwner {
        uint256 devSupplyAwarded = _devSupplyAwarded.current();
        if (devSupplyAwarded >= 2)
            revert DevTeamAwardLimit(); // dev: dev award limit reached

        for(uint i = 0; i < 24; i++){
            uint256 tokenId = _tokenIdCounter.current();
            if (tokenId > TOKEN_LIMIT)
                break;
            _tokenIdCounter.increment();
            _safeMint(devTeam, tokenId);
        }
        _devSupplyAwarded.increment();
    }

    /**
    * Withdraw contract funds to dev team address
    */
    function withdrawFunds() external virtual onlyOwner {
        devTeam.transfer(address(this).balance);
    }

    function setBaseURI(string memory baseTokenURI) external onlyOwner {
        _baseTokenURI = baseTokenURI;
        URISet = true;
    }

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

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

    function getMaxSupply() external pure returns (uint256) {
        return TOKEN_LIMIT;
    }

    function getMintPrice() external view returns (uint256) {
        return _mintPrice;
    }

    function getSaleStarted() external view returns (bool) {
        return saleStarted;
    }

    function getOpenToPublic() external view returns (bool) {
        return openToPublic;
    }

}

File 2 of 12 : 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);
}

File 3 of 12 : 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 4 of 12 : 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 5 of 12 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 12 : 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 12 : 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 8 of 12 : 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 9 of 12 : 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 10 of 12 : 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 11 of 12 : 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;

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        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 12 of 12 : 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);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "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"},{"internalType":"address","name":"devTeamAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"DevTeamAwardLimit","type":"error"},{"inputs":[],"name":"MaxTokensMinted","type":"error"},{"inputs":[],"name":"MintPayableTooLow","type":"error"},{"inputs":[],"name":"MintPriceTooLow","type":"error"},{"inputs":[],"name":"MintedAllowance","type":"error"},{"inputs":[],"name":"NotOnWhitelist","type":"error"},{"inputs":[],"name":"SaleNotStarted","type":"error"},{"inputs":[],"name":"SaleStarted","type":"error"},{"inputs":[],"name":"URINotSet","type":"error"},{"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[]","name":"whitelist_addresses","type":"address[]"}],"name":"addToWhiteList","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":"devAward","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":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOpenToPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMintToPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"payable","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":"baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055503480156200006757600080fd5b506040516200404b3803806200404b83398181016040528101906200008d919062000361565b82828160009080519060200190620000a792919062000228565b508060019080519060200190620000c092919062000228565b505050620000e3620000d76200014460201b60201c565b6200014c60201b60201c565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200013b60076200021260201b620019721760201c565b505050620005a7565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b8280546200023690620004b2565b90600052602060002090601f0160209004810192826200025a5760008555620002a6565b82601f106200027557805160ff1916838001178555620002a6565b82800160010185558215620002a6579182015b82811115620002a557825182559160200191906001019062000288565b5b509050620002b59190620002b9565b5090565b5b80821115620002d4576000816000905550600101620002ba565b5090565b6000620002ef620002e98462000412565b620003e9565b9050828152602081018484840111156200030857600080fd5b620003158482856200047c565b509392505050565b6000815190506200032e816200058d565b92915050565b600082601f8301126200034657600080fd5b815162000358848260208601620002d8565b91505092915050565b6000806000606084860312156200037757600080fd5b600084015167ffffffffffffffff8111156200039257600080fd5b620003a08682870162000334565b935050602084015167ffffffffffffffff811115620003be57600080fd5b620003cc8682870162000334565b9250506040620003df868287016200031d565b9150509250925092565b6000620003f562000408565b9050620004038282620004e8565b919050565b6000604051905090565b600067ffffffffffffffff82111562000430576200042f6200054d565b5b6200043b826200057c565b9050602081019050919050565b600062000455826200045c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200049c5780820151818401526020810190506200047f565b83811115620004ac576000848401525b50505050565b60006002820490506001821680620004cb57607f821691505b60208210811415620004e257620004e16200051e565b5b50919050565b620004f3826200057c565b810181811067ffffffffffffffff821117156200051557620005146200054d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005988162000448565b8114620005a457600080fd5b50565b613a9480620005b76000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f757806395d89b4111610095578063b88d4fde11610064578063b88d4fde146105f9578063c87b56dd14610622578063e985e9c51461065f578063f2fde38b1461069c576101c2565b806395d89b411461053d5780639b19251a14610568578063a22cb465146105a5578063a7f93ebd146105ce576101c2565b8063740d73f3116100d1578063740d73f3146104a7578063859c2af1146104d05780638680d87e146104e75780638da5cb5b14610512576101c2565b80636352211e1461041657806370a0823114610453578063715018a614610490576101c2565b806323b872dd1161016457806340d097c31161013e57806340d097c31461037d57806342842e0e146103995780634c0f38c2146103c257806355f804b3146103ed576101c2565b806323b872dd1461030057806324600fc31461032957806338e21cce14610340576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806309b15935146102955780630b64251e146102ac5780630e3ab61d146102d7576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612afa565b6106c5565b6040516101fb9190612f41565b60405180910390f35b34801561021057600080fd5b506102196106d7565b6040516102269190612f5c565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612b8d565b610769565b6040516102639190612eda565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612a7d565b6107ee565b005b3480156102a157600080fd5b506102aa610906565b005b3480156102b857600080fd5b506102c161099f565b6040516102ce9190612f41565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190612b8d565b6109b6565b005b34801561030c57600080fd5b5061032760048036038101906103229190612977565b610b35565b005b34801561033557600080fd5b5061033e610b95565b005b34801561034c57600080fd5b5061036760048036038101906103629190612912565b610c7c565b6040516103749190612f41565b60405180910390f35b61039760048036038101906103929190612912565b610c9c565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190612977565b610f15565b005b3480156103ce57600080fd5b506103d7610f35565b6040516103e4919061317e565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f9190612b4c565b610f3f565b005b34801561042257600080fd5b5061043d60048036038101906104389190612b8d565b610ff0565b60405161044a9190612eda565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612912565b6110a2565b604051610487919061317e565b60405180910390f35b34801561049c57600080fd5b506104a561115a565b005b3480156104b357600080fd5b506104ce60048036038101906104c99190612ab9565b6111e2565b005b3480156104dc57600080fd5b506104e5611319565b005b3480156104f357600080fd5b506104fc61145f565b6040516105099190612f41565b60405180910390f35b34801561051e57600080fd5b50610527611476565b6040516105349190612eda565b60405180910390f35b34801561054957600080fd5b506105526114a0565b60405161055f9190612f5c565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190612912565b611532565b60405161059c9190612f41565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190612a41565b611552565b005b3480156105da57600080fd5b506105e36116d3565b6040516105f0919061317e565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b91906129c6565b6116dd565b005b34801561062e57600080fd5b5061064960048036038101906106449190612b8d565b61173f565b6040516106569190612f5c565b60405180910390f35b34801561066b57600080fd5b506106866004803603810190610681919061293b565b6117e6565b6040516106939190612f41565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190612912565b61187a565b005b60006106d082611988565b9050919050565b6060600080546106e690613400565b80601f016020809104026020016040519081016040528092919081815260200182805461071290613400565b801561075f5780601f106107345761010080835404028352916020019161075f565b820191906000526020600020905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b600061077482611a6a565b6107b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107aa906130be565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107f982610ff0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108619061313e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610889611ad6565b73ffffffffffffffffffffffffffffffffffffffff1614806108b857506108b7816108b2611ad6565b6117e6565b5b6108f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ee9061303e565b60405180910390fd5b6109018383611ade565b505050565b61090e611ad6565b73ffffffffffffffffffffffffffffffffffffffff1661092c611476565b73ffffffffffffffffffffffffffffffffffffffff1614610982576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610979906130de565b60405180910390fd5b6001600d60016101000a81548160ff021916908315150217905550565b6000600d60009054906101000a900460ff16905090565b6109be611ad6565b73ffffffffffffffffffffffffffffffffffffffff166109dc611476565b73ffffffffffffffffffffffffffffffffffffffff1614610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a29906130de565b60405180910390fd5b60011515600d60009054906101000a900460ff1615151415610a80576040517f912ee23d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600d60029054906101000a900460ff1615151415610ace576040517fb313c7a000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67013fbe85edc90000811015610b10576040517ffcfc765e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a819055506001600d60006101000a81548160ff02191690831515021790555050565b610b46610b40611ad6565b82611b97565b610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c9061315e565b60405180910390fd5b610b90838383611c75565b505050565b610b9d611ad6565b73ffffffffffffffffffffffffffffffffffffffff16610bbb611476565b73ffffffffffffffffffffffffffffffffffffffff1614610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c08906130de565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c79573d6000803e3d6000fd5b50565b60096020528060005260406000206000915054906101000a900460ff1681565b60001515600d60009054906101000a900460ff1615151415610cea576040517f2d0a346e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015610d5d575060001515600d60019054906101000a900460ff161515145b15610d94576040517f522fc3bd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610e1f576040517f17f0618d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610e2b6007611ed1565b9050610378811115610e69576040517fadb00a1700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54341015610ea5576040517fa7924a1300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f076007611972565b610f118282611edf565b5050565b610f30838383604051806020016040528060008152506116dd565b505050565b6000610378905090565b610f47611ad6565b73ffffffffffffffffffffffffffffffffffffffff16610f65611476565b73ffffffffffffffffffffffffffffffffffffffff1614610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb2906130de565b60405180910390fd5b80600c9080519060200190610fd19291906126a0565b506001600d60026101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611099576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110909061307e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a9061305e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611162611ad6565b73ffffffffffffffffffffffffffffffffffffffff16611180611476565b73ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd906130de565b60405180910390fd5b6111e06000611efd565b565b6111ea611ad6565b73ffffffffffffffffffffffffffffffffffffffff16611208611476565b73ffffffffffffffffffffffffffffffffffffffff161461125e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611255906130de565b60405180910390fd5b60005b8151811015611315576001600860008484815181106112a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061130d90613463565b915050611261565b5050565b611321611ad6565b73ffffffffffffffffffffffffffffffffffffffff1661133f611476565b73ffffffffffffffffffffffffffffffffffffffff1614611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c906130de565b60405180910390fd5b60006113a1600e611ed1565b9050600281106113dd576040517f51c5dc2c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b60188110156114515760006113f56007611ed1565b90506103788111156114075750611451565b6114116007611972565b61143d600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611edf565b50808061144990613463565b9150506113e0565b5061145c600e611972565b50565b6000600d60019054906101000a900460ff16905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114af90613400565b80601f01602080910402602001604051908101604052809291908181526020018280546114db90613400565b80156115285780601f106114fd57610100808354040283529160200191611528565b820191906000526020600020905b81548152906001019060200180831161150b57829003601f168201915b5050505050905090565b60086020528060005260406000206000915054906101000a900460ff1681565b61155a611ad6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90612ffe565b60405180910390fd5b80600560006115d5611ad6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611682611ad6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116c79190612f41565b60405180910390a35050565b6000600a54905090565b6116ee6116e8611ad6565b83611b97565b61172d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117249061315e565b60405180910390fd5b61173984848484611fc3565b50505050565b606061174a82611a6a565b611789576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117809061311e565b60405180910390fd5b600061179361201f565b905060008151116117b357604051806020016040528060008152506117de565b806117bd846120b1565b6040516020016117ce929190612eb6565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611882611ad6565b73ffffffffffffffffffffffffffffffffffffffff166118a0611476565b73ffffffffffffffffffffffffffffffffffffffff16146118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed906130de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195d90612f9e565b60405180910390fd5b61196f81611efd565b50565b6001816000016000828254019250508190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a5357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a635750611a628261225e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b5183610ff0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ba282611a6a565b611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd89061301e565b60405180910390fd5b6000611bec83610ff0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c5b57508373ffffffffffffffffffffffffffffffffffffffff16611c4384610769565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c6c5750611c6b81856117e6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c9582610ff0565b73ffffffffffffffffffffffffffffffffffffffff1614611ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce2906130fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5290612fde565b60405180910390fd5b611d668383836122c8565b611d71600082611ade565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dc19190613316565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e18919061328f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b611ef98282604051806020016040528060008152506122cd565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fce848484611c75565b611fda84848484612328565b612019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201090612f7e565b60405180910390fd5b50505050565b6060600c805461202e90613400565b80601f016020809104026020016040519081016040528092919081815260200182805461205a90613400565b80156120a75780601f1061207c576101008083540402835291602001916120a7565b820191906000526020600020905b81548152906001019060200180831161208a57829003601f168201915b5050505050905090565b606060008214156120f9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612259565b600082905060005b6000821461212b57808061211490613463565b915050600a8261212491906132e5565b9150612101565b60008167ffffffffffffffff81111561216d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561219f5781602001600182028036833780820191505090505b5090505b60008514612252576001826121b89190613316565b9150600a856121c791906134ac565b60306121d3919061328f565b60f81b81838151811061220f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561224b91906132e5565b94506121a3565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6122d783836124bf565b6122e46000848484612328565b612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90612f7e565b60405180910390fd5b505050565b60006123498473ffffffffffffffffffffffffffffffffffffffff1661268d565b156124b2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612372611ad6565b8786866040518563ffffffff1660e01b81526004016123949493929190612ef5565b602060405180830381600087803b1580156123ae57600080fd5b505af19250505080156123df57506040513d601f19601f820116820180604052508101906123dc9190612b23565b60015b612462573d806000811461240f576040519150601f19603f3d011682016040523d82523d6000602084013e612414565b606091505b5060008151141561245a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245190612f7e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124b7565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561252f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125269061309e565b60405180910390fd5b61253881611a6a565b15612578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256f90612fbe565b60405180910390fd5b612584600083836122c8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125d4919061328f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546126ac90613400565b90600052602060002090601f0160209004810192826126ce5760008555612715565b82601f106126e757805160ff1916838001178555612715565b82800160010185558215612715579182015b828111156127145782518255916020019190600101906126f9565b5b5090506127229190612726565b5090565b5b8082111561273f576000816000905550600101612727565b5090565b6000612756612751846131be565b613199565b9050808382526020820190508285602086028201111561277557600080fd5b60005b858110156127a5578161278b888261282b565b845260208401935060208301925050600181019050612778565b5050509392505050565b60006127c26127bd846131ea565b613199565b9050828152602081018484840111156127da57600080fd5b6127e58482856133be565b509392505050565b60006128006127fb8461321b565b613199565b90508281526020810184848401111561281857600080fd5b6128238482856133be565b509392505050565b60008135905061283a81613a02565b92915050565b600082601f83011261285157600080fd5b8135612861848260208601612743565b91505092915050565b60008135905061287981613a19565b92915050565b60008135905061288e81613a30565b92915050565b6000815190506128a381613a30565b92915050565b600082601f8301126128ba57600080fd5b81356128ca8482602086016127af565b91505092915050565b600082601f8301126128e457600080fd5b81356128f48482602086016127ed565b91505092915050565b60008135905061290c81613a47565b92915050565b60006020828403121561292457600080fd5b60006129328482850161282b565b91505092915050565b6000806040838503121561294e57600080fd5b600061295c8582860161282b565b925050602061296d8582860161282b565b9150509250929050565b60008060006060848603121561298c57600080fd5b600061299a8682870161282b565b93505060206129ab8682870161282b565b92505060406129bc868287016128fd565b9150509250925092565b600080600080608085870312156129dc57600080fd5b60006129ea8782880161282b565b94505060206129fb8782880161282b565b9350506040612a0c878288016128fd565b925050606085013567ffffffffffffffff811115612a2957600080fd5b612a35878288016128a9565b91505092959194509250565b60008060408385031215612a5457600080fd5b6000612a628582860161282b565b9250506020612a738582860161286a565b9150509250929050565b60008060408385031215612a9057600080fd5b6000612a9e8582860161282b565b9250506020612aaf858286016128fd565b9150509250929050565b600060208284031215612acb57600080fd5b600082013567ffffffffffffffff811115612ae557600080fd5b612af184828501612840565b91505092915050565b600060208284031215612b0c57600080fd5b6000612b1a8482850161287f565b91505092915050565b600060208284031215612b3557600080fd5b6000612b4384828501612894565b91505092915050565b600060208284031215612b5e57600080fd5b600082013567ffffffffffffffff811115612b7857600080fd5b612b84848285016128d3565b91505092915050565b600060208284031215612b9f57600080fd5b6000612bad848285016128fd565b91505092915050565b612bbf8161334a565b82525050565b612bce8161335c565b82525050565b6000612bdf8261324c565b612be98185613262565b9350612bf98185602086016133cd565b612c0281613599565b840191505092915050565b6000612c1882613257565b612c228185613273565b9350612c328185602086016133cd565b612c3b81613599565b840191505092915050565b6000612c5182613257565b612c5b8185613284565b9350612c6b8185602086016133cd565b80840191505092915050565b6000612c84603283613273565b9150612c8f826135aa565b604082019050919050565b6000612ca7602683613273565b9150612cb2826135f9565b604082019050919050565b6000612cca601c83613273565b9150612cd582613648565b602082019050919050565b6000612ced602483613273565b9150612cf882613671565b604082019050919050565b6000612d10601983613273565b9150612d1b826136c0565b602082019050919050565b6000612d33602c83613273565b9150612d3e826136e9565b604082019050919050565b6000612d56603883613273565b9150612d6182613738565b604082019050919050565b6000612d79602a83613273565b9150612d8482613787565b604082019050919050565b6000612d9c602983613273565b9150612da7826137d6565b604082019050919050565b6000612dbf602083613273565b9150612dca82613825565b602082019050919050565b6000612de2602c83613273565b9150612ded8261384e565b604082019050919050565b6000612e05602083613273565b9150612e108261389d565b602082019050919050565b6000612e28602983613273565b9150612e33826138c6565b604082019050919050565b6000612e4b602f83613273565b9150612e5682613915565b604082019050919050565b6000612e6e602183613273565b9150612e7982613964565b604082019050919050565b6000612e91603183613273565b9150612e9c826139b3565b604082019050919050565b612eb0816133b4565b82525050565b6000612ec28285612c46565b9150612ece8284612c46565b91508190509392505050565b6000602082019050612eef6000830184612bb6565b92915050565b6000608082019050612f0a6000830187612bb6565b612f176020830186612bb6565b612f246040830185612ea7565b8181036060830152612f368184612bd4565b905095945050505050565b6000602082019050612f566000830184612bc5565b92915050565b60006020820190508181036000830152612f768184612c0d565b905092915050565b60006020820190508181036000830152612f9781612c77565b9050919050565b60006020820190508181036000830152612fb781612c9a565b9050919050565b60006020820190508181036000830152612fd781612cbd565b9050919050565b60006020820190508181036000830152612ff781612ce0565b9050919050565b6000602082019050818103600083015261301781612d03565b9050919050565b6000602082019050818103600083015261303781612d26565b9050919050565b6000602082019050818103600083015261305781612d49565b9050919050565b6000602082019050818103600083015261307781612d6c565b9050919050565b6000602082019050818103600083015261309781612d8f565b9050919050565b600060208201905081810360008301526130b781612db2565b9050919050565b600060208201905081810360008301526130d781612dd5565b9050919050565b600060208201905081810360008301526130f781612df8565b9050919050565b6000602082019050818103600083015261311781612e1b565b9050919050565b6000602082019050818103600083015261313781612e3e565b9050919050565b6000602082019050818103600083015261315781612e61565b9050919050565b6000602082019050818103600083015261317781612e84565b9050919050565b60006020820190506131936000830184612ea7565b92915050565b60006131a36131b4565b90506131af8282613432565b919050565b6000604051905090565b600067ffffffffffffffff8211156131d9576131d861356a565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156132055761320461356a565b5b61320e82613599565b9050602081019050919050565b600067ffffffffffffffff8211156132365761323561356a565b5b61323f82613599565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061329a826133b4565b91506132a5836133b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132da576132d96134dd565b5b828201905092915050565b60006132f0826133b4565b91506132fb836133b4565b92508261330b5761330a61350c565b5b828204905092915050565b6000613321826133b4565b915061332c836133b4565b92508282101561333f5761333e6134dd565b5b828203905092915050565b600061335582613394565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133eb5780820151818401526020810190506133d0565b838111156133fa576000848401525b50505050565b6000600282049050600182168061341857607f821691505b6020821081141561342c5761342b61353b565b5b50919050565b61343b82613599565b810181811067ffffffffffffffff8211171561345a5761345961356a565b5b80604052505050565b600061346e826133b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134a1576134a06134dd565b5b600182019050919050565b60006134b7826133b4565b91506134c2836133b4565b9250826134d2576134d161350c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613a0b8161334a565b8114613a1657600080fd5b50565b613a228161335c565b8114613a2d57600080fd5b50565b613a3981613368565b8114613a4457600080fd5b50565b613a50816133b4565b8114613a5b57600080fd5b5056fea2646970667358221220a638a4b660a2f79bfb9c344bdcc213ef8ef236974e228e40042d2f4844839d3d64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000006d719312bb7816ac622506794601444c572cb24800000000000000000000000000000000000000000000000000000000000000184d656b6173206f66204b72757074202d2047656e65736973000000000000000000000000000000000000000000000000000000000000000000000000000000034d4f4b0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636352211e116100f757806395d89b4111610095578063b88d4fde11610064578063b88d4fde146105f9578063c87b56dd14610622578063e985e9c51461065f578063f2fde38b1461069c576101c2565b806395d89b411461053d5780639b19251a14610568578063a22cb465146105a5578063a7f93ebd146105ce576101c2565b8063740d73f3116100d1578063740d73f3146104a7578063859c2af1146104d05780638680d87e146104e75780638da5cb5b14610512576101c2565b80636352211e1461041657806370a0823114610453578063715018a614610490576101c2565b806323b872dd1161016457806340d097c31161013e57806340d097c31461037d57806342842e0e146103995780634c0f38c2146103c257806355f804b3146103ed576101c2565b806323b872dd1461030057806324600fc31461032957806338e21cce14610340576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806309b15935146102955780630b64251e146102ac5780630e3ab61d146102d7576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612afa565b6106c5565b6040516101fb9190612f41565b60405180910390f35b34801561021057600080fd5b506102196106d7565b6040516102269190612f5c565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612b8d565b610769565b6040516102639190612eda565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612a7d565b6107ee565b005b3480156102a157600080fd5b506102aa610906565b005b3480156102b857600080fd5b506102c161099f565b6040516102ce9190612f41565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190612b8d565b6109b6565b005b34801561030c57600080fd5b5061032760048036038101906103229190612977565b610b35565b005b34801561033557600080fd5b5061033e610b95565b005b34801561034c57600080fd5b5061036760048036038101906103629190612912565b610c7c565b6040516103749190612f41565b60405180910390f35b61039760048036038101906103929190612912565b610c9c565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190612977565b610f15565b005b3480156103ce57600080fd5b506103d7610f35565b6040516103e4919061317e565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f9190612b4c565b610f3f565b005b34801561042257600080fd5b5061043d60048036038101906104389190612b8d565b610ff0565b60405161044a9190612eda565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612912565b6110a2565b604051610487919061317e565b60405180910390f35b34801561049c57600080fd5b506104a561115a565b005b3480156104b357600080fd5b506104ce60048036038101906104c99190612ab9565b6111e2565b005b3480156104dc57600080fd5b506104e5611319565b005b3480156104f357600080fd5b506104fc61145f565b6040516105099190612f41565b60405180910390f35b34801561051e57600080fd5b50610527611476565b6040516105349190612eda565b60405180910390f35b34801561054957600080fd5b506105526114a0565b60405161055f9190612f5c565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190612912565b611532565b60405161059c9190612f41565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190612a41565b611552565b005b3480156105da57600080fd5b506105e36116d3565b6040516105f0919061317e565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b91906129c6565b6116dd565b005b34801561062e57600080fd5b5061064960048036038101906106449190612b8d565b61173f565b6040516106569190612f5c565b60405180910390f35b34801561066b57600080fd5b506106866004803603810190610681919061293b565b6117e6565b6040516106939190612f41565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190612912565b61187a565b005b60006106d082611988565b9050919050565b6060600080546106e690613400565b80601f016020809104026020016040519081016040528092919081815260200182805461071290613400565b801561075f5780601f106107345761010080835404028352916020019161075f565b820191906000526020600020905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b600061077482611a6a565b6107b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107aa906130be565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107f982610ff0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108619061313e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610889611ad6565b73ffffffffffffffffffffffffffffffffffffffff1614806108b857506108b7816108b2611ad6565b6117e6565b5b6108f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ee9061303e565b60405180910390fd5b6109018383611ade565b505050565b61090e611ad6565b73ffffffffffffffffffffffffffffffffffffffff1661092c611476565b73ffffffffffffffffffffffffffffffffffffffff1614610982576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610979906130de565b60405180910390fd5b6001600d60016101000a81548160ff021916908315150217905550565b6000600d60009054906101000a900460ff16905090565b6109be611ad6565b73ffffffffffffffffffffffffffffffffffffffff166109dc611476565b73ffffffffffffffffffffffffffffffffffffffff1614610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a29906130de565b60405180910390fd5b60011515600d60009054906101000a900460ff1615151415610a80576040517f912ee23d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600d60029054906101000a900460ff1615151415610ace576040517fb313c7a000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67013fbe85edc90000811015610b10576040517ffcfc765e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a819055506001600d60006101000a81548160ff02191690831515021790555050565b610b46610b40611ad6565b82611b97565b610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c9061315e565b60405180910390fd5b610b90838383611c75565b505050565b610b9d611ad6565b73ffffffffffffffffffffffffffffffffffffffff16610bbb611476565b73ffffffffffffffffffffffffffffffffffffffff1614610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c08906130de565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c79573d6000803e3d6000fd5b50565b60096020528060005260406000206000915054906101000a900460ff1681565b60001515600d60009054906101000a900460ff1615151415610cea576040517f2d0a346e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015610d5d575060001515600d60019054906101000a900460ff161515145b15610d94576040517f522fc3bd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610e1f576040517f17f0618d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610e2b6007611ed1565b9050610378811115610e69576040517fadb00a1700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54341015610ea5576040517fa7924a1300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f076007611972565b610f118282611edf565b5050565b610f30838383604051806020016040528060008152506116dd565b505050565b6000610378905090565b610f47611ad6565b73ffffffffffffffffffffffffffffffffffffffff16610f65611476565b73ffffffffffffffffffffffffffffffffffffffff1614610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb2906130de565b60405180910390fd5b80600c9080519060200190610fd19291906126a0565b506001600d60026101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611099576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110909061307e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a9061305e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611162611ad6565b73ffffffffffffffffffffffffffffffffffffffff16611180611476565b73ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd906130de565b60405180910390fd5b6111e06000611efd565b565b6111ea611ad6565b73ffffffffffffffffffffffffffffffffffffffff16611208611476565b73ffffffffffffffffffffffffffffffffffffffff161461125e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611255906130de565b60405180910390fd5b60005b8151811015611315576001600860008484815181106112a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061130d90613463565b915050611261565b5050565b611321611ad6565b73ffffffffffffffffffffffffffffffffffffffff1661133f611476565b73ffffffffffffffffffffffffffffffffffffffff1614611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c906130de565b60405180910390fd5b60006113a1600e611ed1565b9050600281106113dd576040517f51c5dc2c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b60188110156114515760006113f56007611ed1565b90506103788111156114075750611451565b6114116007611972565b61143d600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611edf565b50808061144990613463565b9150506113e0565b5061145c600e611972565b50565b6000600d60019054906101000a900460ff16905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114af90613400565b80601f01602080910402602001604051908101604052809291908181526020018280546114db90613400565b80156115285780601f106114fd57610100808354040283529160200191611528565b820191906000526020600020905b81548152906001019060200180831161150b57829003601f168201915b5050505050905090565b60086020528060005260406000206000915054906101000a900460ff1681565b61155a611ad6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90612ffe565b60405180910390fd5b80600560006115d5611ad6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611682611ad6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116c79190612f41565b60405180910390a35050565b6000600a54905090565b6116ee6116e8611ad6565b83611b97565b61172d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117249061315e565b60405180910390fd5b61173984848484611fc3565b50505050565b606061174a82611a6a565b611789576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117809061311e565b60405180910390fd5b600061179361201f565b905060008151116117b357604051806020016040528060008152506117de565b806117bd846120b1565b6040516020016117ce929190612eb6565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611882611ad6565b73ffffffffffffffffffffffffffffffffffffffff166118a0611476565b73ffffffffffffffffffffffffffffffffffffffff16146118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed906130de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195d90612f9e565b60405180910390fd5b61196f81611efd565b50565b6001816000016000828254019250508190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a5357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a635750611a628261225e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b5183610ff0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ba282611a6a565b611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd89061301e565b60405180910390fd5b6000611bec83610ff0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c5b57508373ffffffffffffffffffffffffffffffffffffffff16611c4384610769565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c6c5750611c6b81856117e6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c9582610ff0565b73ffffffffffffffffffffffffffffffffffffffff1614611ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce2906130fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5290612fde565b60405180910390fd5b611d668383836122c8565b611d71600082611ade565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dc19190613316565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e18919061328f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b611ef98282604051806020016040528060008152506122cd565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fce848484611c75565b611fda84848484612328565b612019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201090612f7e565b60405180910390fd5b50505050565b6060600c805461202e90613400565b80601f016020809104026020016040519081016040528092919081815260200182805461205a90613400565b80156120a75780601f1061207c576101008083540402835291602001916120a7565b820191906000526020600020905b81548152906001019060200180831161208a57829003601f168201915b5050505050905090565b606060008214156120f9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612259565b600082905060005b6000821461212b57808061211490613463565b915050600a8261212491906132e5565b9150612101565b60008167ffffffffffffffff81111561216d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561219f5781602001600182028036833780820191505090505b5090505b60008514612252576001826121b89190613316565b9150600a856121c791906134ac565b60306121d3919061328f565b60f81b81838151811061220f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561224b91906132e5565b94506121a3565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6122d783836124bf565b6122e46000848484612328565b612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90612f7e565b60405180910390fd5b505050565b60006123498473ffffffffffffffffffffffffffffffffffffffff1661268d565b156124b2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612372611ad6565b8786866040518563ffffffff1660e01b81526004016123949493929190612ef5565b602060405180830381600087803b1580156123ae57600080fd5b505af19250505080156123df57506040513d601f19601f820116820180604052508101906123dc9190612b23565b60015b612462573d806000811461240f576040519150601f19603f3d011682016040523d82523d6000602084013e612414565b606091505b5060008151141561245a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245190612f7e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124b7565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561252f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125269061309e565b60405180910390fd5b61253881611a6a565b15612578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256f90612fbe565b60405180910390fd5b612584600083836122c8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125d4919061328f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546126ac90613400565b90600052602060002090601f0160209004810192826126ce5760008555612715565b82601f106126e757805160ff1916838001178555612715565b82800160010185558215612715579182015b828111156127145782518255916020019190600101906126f9565b5b5090506127229190612726565b5090565b5b8082111561273f576000816000905550600101612727565b5090565b6000612756612751846131be565b613199565b9050808382526020820190508285602086028201111561277557600080fd5b60005b858110156127a5578161278b888261282b565b845260208401935060208301925050600181019050612778565b5050509392505050565b60006127c26127bd846131ea565b613199565b9050828152602081018484840111156127da57600080fd5b6127e58482856133be565b509392505050565b60006128006127fb8461321b565b613199565b90508281526020810184848401111561281857600080fd5b6128238482856133be565b509392505050565b60008135905061283a81613a02565b92915050565b600082601f83011261285157600080fd5b8135612861848260208601612743565b91505092915050565b60008135905061287981613a19565b92915050565b60008135905061288e81613a30565b92915050565b6000815190506128a381613a30565b92915050565b600082601f8301126128ba57600080fd5b81356128ca8482602086016127af565b91505092915050565b600082601f8301126128e457600080fd5b81356128f48482602086016127ed565b91505092915050565b60008135905061290c81613a47565b92915050565b60006020828403121561292457600080fd5b60006129328482850161282b565b91505092915050565b6000806040838503121561294e57600080fd5b600061295c8582860161282b565b925050602061296d8582860161282b565b9150509250929050565b60008060006060848603121561298c57600080fd5b600061299a8682870161282b565b93505060206129ab8682870161282b565b92505060406129bc868287016128fd565b9150509250925092565b600080600080608085870312156129dc57600080fd5b60006129ea8782880161282b565b94505060206129fb8782880161282b565b9350506040612a0c878288016128fd565b925050606085013567ffffffffffffffff811115612a2957600080fd5b612a35878288016128a9565b91505092959194509250565b60008060408385031215612a5457600080fd5b6000612a628582860161282b565b9250506020612a738582860161286a565b9150509250929050565b60008060408385031215612a9057600080fd5b6000612a9e8582860161282b565b9250506020612aaf858286016128fd565b9150509250929050565b600060208284031215612acb57600080fd5b600082013567ffffffffffffffff811115612ae557600080fd5b612af184828501612840565b91505092915050565b600060208284031215612b0c57600080fd5b6000612b1a8482850161287f565b91505092915050565b600060208284031215612b3557600080fd5b6000612b4384828501612894565b91505092915050565b600060208284031215612b5e57600080fd5b600082013567ffffffffffffffff811115612b7857600080fd5b612b84848285016128d3565b91505092915050565b600060208284031215612b9f57600080fd5b6000612bad848285016128fd565b91505092915050565b612bbf8161334a565b82525050565b612bce8161335c565b82525050565b6000612bdf8261324c565b612be98185613262565b9350612bf98185602086016133cd565b612c0281613599565b840191505092915050565b6000612c1882613257565b612c228185613273565b9350612c328185602086016133cd565b612c3b81613599565b840191505092915050565b6000612c5182613257565b612c5b8185613284565b9350612c6b8185602086016133cd565b80840191505092915050565b6000612c84603283613273565b9150612c8f826135aa565b604082019050919050565b6000612ca7602683613273565b9150612cb2826135f9565b604082019050919050565b6000612cca601c83613273565b9150612cd582613648565b602082019050919050565b6000612ced602483613273565b9150612cf882613671565b604082019050919050565b6000612d10601983613273565b9150612d1b826136c0565b602082019050919050565b6000612d33602c83613273565b9150612d3e826136e9565b604082019050919050565b6000612d56603883613273565b9150612d6182613738565b604082019050919050565b6000612d79602a83613273565b9150612d8482613787565b604082019050919050565b6000612d9c602983613273565b9150612da7826137d6565b604082019050919050565b6000612dbf602083613273565b9150612dca82613825565b602082019050919050565b6000612de2602c83613273565b9150612ded8261384e565b604082019050919050565b6000612e05602083613273565b9150612e108261389d565b602082019050919050565b6000612e28602983613273565b9150612e33826138c6565b604082019050919050565b6000612e4b602f83613273565b9150612e5682613915565b604082019050919050565b6000612e6e602183613273565b9150612e7982613964565b604082019050919050565b6000612e91603183613273565b9150612e9c826139b3565b604082019050919050565b612eb0816133b4565b82525050565b6000612ec28285612c46565b9150612ece8284612c46565b91508190509392505050565b6000602082019050612eef6000830184612bb6565b92915050565b6000608082019050612f0a6000830187612bb6565b612f176020830186612bb6565b612f246040830185612ea7565b8181036060830152612f368184612bd4565b905095945050505050565b6000602082019050612f566000830184612bc5565b92915050565b60006020820190508181036000830152612f768184612c0d565b905092915050565b60006020820190508181036000830152612f9781612c77565b9050919050565b60006020820190508181036000830152612fb781612c9a565b9050919050565b60006020820190508181036000830152612fd781612cbd565b9050919050565b60006020820190508181036000830152612ff781612ce0565b9050919050565b6000602082019050818103600083015261301781612d03565b9050919050565b6000602082019050818103600083015261303781612d26565b9050919050565b6000602082019050818103600083015261305781612d49565b9050919050565b6000602082019050818103600083015261307781612d6c565b9050919050565b6000602082019050818103600083015261309781612d8f565b9050919050565b600060208201905081810360008301526130b781612db2565b9050919050565b600060208201905081810360008301526130d781612dd5565b9050919050565b600060208201905081810360008301526130f781612df8565b9050919050565b6000602082019050818103600083015261311781612e1b565b9050919050565b6000602082019050818103600083015261313781612e3e565b9050919050565b6000602082019050818103600083015261315781612e61565b9050919050565b6000602082019050818103600083015261317781612e84565b9050919050565b60006020820190506131936000830184612ea7565b92915050565b60006131a36131b4565b90506131af8282613432565b919050565b6000604051905090565b600067ffffffffffffffff8211156131d9576131d861356a565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156132055761320461356a565b5b61320e82613599565b9050602081019050919050565b600067ffffffffffffffff8211156132365761323561356a565b5b61323f82613599565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061329a826133b4565b91506132a5836133b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132da576132d96134dd565b5b828201905092915050565b60006132f0826133b4565b91506132fb836133b4565b92508261330b5761330a61350c565b5b828204905092915050565b6000613321826133b4565b915061332c836133b4565b92508282101561333f5761333e6134dd565b5b828203905092915050565b600061335582613394565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133eb5780820151818401526020810190506133d0565b838111156133fa576000848401525b50505050565b6000600282049050600182168061341857607f821691505b6020821081141561342c5761342b61353b565b5b50919050565b61343b82613599565b810181811067ffffffffffffffff8211171561345a5761345961356a565b5b80604052505050565b600061346e826133b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134a1576134a06134dd565b5b600182019050919050565b60006134b7826133b4565b91506134c2836133b4565b9250826134d2576134d161350c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613a0b8161334a565b8114613a1657600080fd5b50565b613a228161335c565b8114613a2d57600080fd5b50565b613a3981613368565b8114613a4457600080fd5b50565b613a50816133b4565b8114613a5b57600080fd5b5056fea2646970667358221220a638a4b660a2f79bfb9c344bdcc213ef8ef236974e228e40042d2f4844839d3d64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000006d719312bb7816ac622506794601444c572cb24800000000000000000000000000000000000000000000000000000000000000184d656b6173206f66204b72757074202d2047656e65736973000000000000000000000000000000000000000000000000000000000000000000000000000000034d4f4b0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Mekas of Krupt - Genesis
Arg [1] : symbol (string): MOK
Arg [2] : devTeamAddress (address): 0x6D719312BB7816ac622506794601444c572cb248

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000006d719312bb7816ac622506794601444c572cb248
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [4] : 4d656b6173206f66204b72757074202d2047656e657369730000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4d4f4b0000000000000000000000000000000000000000000000000000000000


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.