ETH Price: $3,308.12 (-3.67%)
Gas: 15 Gwei

Token

OMGKirby (OMG)
 

Overview

Max Total Supply

5,000 OMG

Holders

2,082

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 OMG
0xae89ad222e67205e8d947f131fdc9fa139828745
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OMGKirby

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : OMGKirby.sol
pragma solidity ^0.8.11;

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

error NotTokenOwner();

contract OMGKirby is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter public _nonClaimIds = Counters.Counter({
      _value: 3071
  });

  Counters.Counter private _totalSupply;
  
  // Timestamps
  uint public immutable claimStartTime;
  uint public immutable claimTimeLock;
  uint public immutable allowlistStartTime;
  uint public immutable allowlistTimeLock;

  // Constants
  uint256 public constant maxSupply = 5000;
  uint256 constant private mintAmount = 1;

  // Vars
  string public baseURI;
  string public baseExtension = ".json";
  bool public lockClaim = false;
  uint256 private teamClaimStartAmount = 3000;

  // Allowlist
  bytes32 public allowlistMerkleRoot;
  mapping(address => uint) public addressClaimed;

  // Addresses
  address public immutable dao;
  address public immutable genesisAddr;

  constructor(address _genesisAddr, uint _claimStartTime, uint _allowlistStartTime, address _dao) ERC721("OMGKirby", "OMG") {
    genesisAddr = _genesisAddr;
    _totalSupply.increment();
    claimStartTime = _claimStartTime;
    allowlistStartTime = _allowlistStartTime;
    allowlistTimeLock = allowlistStartTime + 2 hours;
    claimTimeLock = claimStartTime + 29 days;
    dao = _dao;
  }

  function claimMint(uint256[] memory _ids) external {
    require(block.timestamp <= claimTimeLock, "Claim period has expired");
    require(block.timestamp >= claimStartTime, "Claim has not started yet");
    IERC721 genesisContract = IERC721(genesisAddr);

    for (uint256 i = 0; i < _ids.length; i++) {
      if(genesisContract.ownerOf(_ids[i]) != msg.sender) revert NotTokenOwner();
    }

    for (uint256 i = 0; i < _ids.length; i++) {
      _mint(msg.sender, _ids[i]);
      _totalSupply.increment();
    }
  }

  function allowlistMint(bytes32[] calldata _merkleProof) public {
    require(addressClaimed[_msgSender()] + 1 <= mintAmount, "Exceeds wallet mint amt");
    require(_nonClaimIds.current() <= maxSupply, "allowlist mint has sold out");
    require(block.timestamp >= allowlistStartTime, "WL has not started yet");
    require(block.timestamp < allowlistTimeLock, "WL has ended");

    // Verify merkle proof
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, allowlistMerkleRoot, leaf), "Invalid proof");

    // Mark address as having claimed
    addressClaimed[_msgSender()] += 1;

    uint256 mintIndex = _nonClaimIds.current();
    _mint(msg.sender, mintIndex);
    _totalSupply.increment();
    _nonClaimIds.increment();
  }

  function publicMint() external {
    require(addressClaimed[_msgSender()] + 1 <= mintAmount, "Exceeds wallet mint amt");
    require(_nonClaimIds.current() <= maxSupply, "Public mint has sold out");
    require(tx.origin == msg.sender);
    require(block.timestamp > allowlistTimeLock, "Public mint has not started yet");
    addressClaimed[_msgSender()] += 1;

    uint256 mintIndex = _nonClaimIds.current();
    _mint(msg.sender, mintIndex);

    _nonClaimIds.increment();
    _totalSupply.increment();
  }

  function teamClaim(uint256 quantity) external onlyOwner{
    require(teamClaimStartAmount + quantity <= 3070, "Quantity requested exceeds team claim amount");

    for (uint256 i = 1; i <= quantity; i++) {
      teamClaimStartAmount = teamClaimStartAmount + 1;
      _mint(msg.sender, teamClaimStartAmount);
      _totalSupply.increment();
    }
  }

  function daoClaim(uint256[] memory _ids) external {
    require(msg.sender == dao, "Only DAO owner can claim!");
    require(block.timestamp > claimTimeLock, "Claim period hasn't ended");
    require(!lockClaim, "DAO cannot claim anymore!");

    for (uint256 i = 0; i < _ids.length; i++) {
      if(_ids[i] <= maxSupply){
        _mint(msg.sender, _ids[i]); 
        _totalSupply.increment();
      }
    }
  }

  function totalSupply() public view returns (uint256) {
    return _totalSupply.current() - 1;
  }

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

  function isClaimed(uint256 _tokenId) public view returns (bool){
    return _exists(_tokenId);
  }

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

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

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

  function setAllowlistMerkleRoot(bytes32 _allowlistMerkleRoot) external onlyOwner {
      allowlistMerkleRoot = _allowlistMerkleRoot;
  }

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

  function disableClaim() public {
    require(msg.sender == dao, "Only DAO owner can claim!");
    lockClaim = true;
  }
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_genesisAddr","type":"address"},{"internalType":"uint256","name":"_claimStartTime","type":"uint256"},{"internalType":"uint256","name":"_allowlistStartTime","type":"uint256"},{"internalType":"address","name":"_dao","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"NotTokenOwner","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":[],"name":"_nonClaimIds","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"allowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowlistStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistTimeLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"claimMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimTimeLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dao","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"daoClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genesisAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_allowlistMerkleRoot","type":"bytes32"}],"name":"setAllowlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"quantity","type":"uint256"}],"name":"teamClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101406040526040518060200160405280610bff81525060076000820151816000015550506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200007192919062000338565b506000600b60006101000a81548160ff021916908315150217905550610bb8600c55348015620000a057600080fd5b5060405162004fde38038062004fde8339818101604052810190620000c691906200048d565b6040518060400160405280600881526020017f4f4d474b697262790000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4f4d47000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200014a92919062000338565b5080600190805190602001906200016392919062000338565b505050620001866200017a6200025460201b60201c565b6200025c60201b60201c565b8373ffffffffffffffffffffffffffffffffffffffff166101208173ffffffffffffffffffffffffffffffffffffffff1681525050620001d260086200032260201b62001f091760201c565b82608081815250508160c08181525050611c2060c051620001f491906200052e565b60e0818152505062263b806080516200020e91906200052e565b60a081815250508073ffffffffffffffffffffffffffffffffffffffff166101008173ffffffffffffffffffffffffffffffffffffffff168152505050505050620005f0565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b8280546200034690620005ba565b90600052602060002090601f0160209004810192826200036a5760008555620003b6565b82601f106200038557805160ff1916838001178555620003b6565b82800160010185558215620003b6579182015b82811115620003b557825182559160200191906001019062000398565b5b509050620003c59190620003c9565b5090565b5b80821115620003e4576000816000905550600101620003ca565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200041a82620003ed565b9050919050565b6200042c816200040d565b81146200043857600080fd5b50565b6000815190506200044c8162000421565b92915050565b6000819050919050565b620004678162000452565b81146200047357600080fd5b50565b60008151905062000487816200045c565b92915050565b60008060008060808587031215620004aa57620004a9620003e8565b5b6000620004ba878288016200043b565b9450506020620004cd8782880162000476565b9350506040620004e08782880162000476565b9250506060620004f3878288016200043b565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200053b8262000452565b9150620005488362000452565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000580576200057f620004ff565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005d357607f821691505b60208210811415620005ea57620005e96200058b565b5b50919050565b60805160a05160c05160e051610100516101205161495f6200067f600039600081816107390152611ad6015260008181610cfb0152818161160e0152611825015260008181610c0601528181610e85015261119b015260008181610e2201526110c50152600081816113b80152818161169c0152611a0e0152600081816115ea0152611a71015261495f6000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c8063772dc32f1161013b578063b88d4fde116100b8578063d7d6287c1161007c578063d7d6287c14610697578063da3ef23f146106b3578063e985e9c5146106cf578063f2fde38b146106ff578063f95df4141461071b57610248565b8063b88d4fde14610605578063bf6b8adc14610621578063c66828621461062b578063c87b56dd14610649578063d5abeb011461067957610248565b80639e34070f116100ff5780639e34070f14610563578063a026da8c14610593578063a22cb465146105af578063a6a11bb1146105cb578063a7bf1a92146105e957610248565b8063772dc32f146104bb578063887f2be4146104eb5780638d50fa29146105095780638da5cb5b1461052757806395d89b411461054557610248565b806342842e0e116101c9578063661d0c121161018d578063661d0c121461042757806369d8a608146104455780636c0360eb1461046357806370a0823114610481578063715018a6146104b157610248565b806342842e0e14610385578063537924ef146103a157806355f804b3146103bd57806359d7bc4d146103d95780636352211e146103f757610248565b806318160ddd1161021057806318160ddd1461030557806323b872dd1461032357806326092b831461033f578063293108e0146103495780634162169f1461036757610248565b8063010072f51461024d57806301ffc9a71461026b57806306fdde031461029b578063081812fc146102b9578063095ea7b3146102e9575b600080fd5b610255610737565b6040516102629190612da1565b60405180910390f35b61028560048036038101906102809190612e28565b61075b565b6040516102929190612e70565b60405180910390f35b6102a361083d565b6040516102b09190612f24565b60405180910390f35b6102d360048036038101906102ce9190612f7c565b6108cf565b6040516102e09190612da1565b60405180910390f35b61030360048036038101906102fe9190612fd5565b610954565b005b61030d610a6c565b60405161031a9190613024565b60405180910390f35b61033d6004803603810190610338919061303f565b610a89565b005b610347610ae9565b005b610351610cf3565b60405161035e91906130ab565b60405180910390f35b61036f610cf9565b60405161037c9190612da1565b60405180910390f35b61039f600480360381019061039a919061303f565b610d1d565b005b6103bb60048036038101906103b6919061312b565b610d3d565b005b6103d760048036038101906103d291906132a8565b61102d565b005b6103e16110c3565b6040516103ee9190613024565b60405180910390f35b610411600480360381019061040c9190612f7c565b6110e7565b60405161041e9190612da1565b60405180910390f35b61042f611199565b60405161043c9190613024565b60405180910390f35b61044d6111bd565b60405161045a9190612e70565b60405180910390f35b61046b6111d0565b6040516104789190612f24565b60405180910390f35b61049b600480360381019061049691906132f1565b61125e565b6040516104a89190613024565b60405180910390f35b6104b9611316565b005b6104d560048036038101906104d091906132f1565b61139e565b6040516104e29190613024565b60405180910390f35b6104f36113b6565b6040516105009190613024565b60405180910390f35b6105116113da565b60405161051e9190613024565b60405180910390f35b61052f6113e6565b60405161053c9190612da1565b60405180910390f35b61054d611410565b60405161055a9190612f24565b60405180910390f35b61057d60048036038101906105789190612f7c565b6114a2565b60405161058a9190612e70565b60405180910390f35b6105ad60048036038101906105a89190612f7c565b6114b4565b005b6105c960048036038101906105c4919061334a565b6115d2565b005b6105d36115e8565b6040516105e09190613024565b60405180910390f35b61060360048036038101906105fe919061344d565b61160c565b005b61061f600480360381019061061a9190613537565b6117c1565b005b610629611823565b005b6106336118ce565b6040516106409190612f24565b60405180910390f35b610663600480360381019061065e9190612f7c565b61195c565b6040516106709190612f24565b60405180910390f35b610681611a06565b60405161068e9190613024565b60405180910390f35b6106b160048036038101906106ac919061344d565b611a0c565b005b6106cd60048036038101906106c891906132a8565b611c61565b005b6106e960048036038101906106e491906135ba565b611cf7565b6040516106f69190612e70565b60405180910390f35b610719600480360381019061071491906132f1565b611d8b565b005b61073560048036038101906107309190613626565b611e83565b005b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610836575061083582611f1f565b5b9050919050565b60606000805461084c90613682565b80601f016020809104026020016040519081016040528092919081815260200182805461087890613682565b80156108c55780601f1061089a576101008083540402835291602001916108c5565b820191906000526020600020905b8154815290600101906020018083116108a857829003601f168201915b5050505050905090565b60006108da82611f89565b610919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091090613726565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095f826110e7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c7906137b8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ef611ff5565b73ffffffffffffffffffffffffffffffffffffffff161480610a1e5750610a1d81610a18611ff5565b611cf7565b5b610a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a549061384a565b60405180910390fd5b610a678383611ffd565b505050565b60006001610a7a60086120b6565b610a849190613899565b905090565b610a9a610a94611ff5565b826120c4565b610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad09061393f565b60405180910390fd5b610ae48383836121a2565b505050565b600180600e6000610af8611ff5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b3d919061395f565b1115610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7590613a01565b60405180910390fd5b611388610b8b60076120b6565b1115610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc390613a6d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c0457600080fd5b7f00000000000000000000000000000000000000000000000000000000000000004211610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d90613ad9565b60405180910390fd5b6001600e6000610c74611ff5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cbd919061395f565b925050819055506000610cd060076120b6565b9050610cdc3382612409565b610ce66007611f09565b610cf06008611f09565b50565b600d5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b610d38838383604051806020016040528060008152506117c1565b505050565b600180600e6000610d4c611ff5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d91919061395f565b1115610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990613a01565b60405180910390fd5b611388610ddf60076120b6565b1115610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790613b45565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000421015610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90613bb1565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000004210610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90613c1d565b60405180910390fd5b600033604051602001610ef89190613c85565b604051602081830303815290604052805190602001209050610f5e838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d54836125e3565b610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9490613cec565b60405180910390fd5b6001600e6000610fab611ff5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff4919061395f565b92505081905550600061100760076120b6565b90506110133382612409565b61101d6008611f09565b6110276007611f09565b50505050565b611035611ff5565b73ffffffffffffffffffffffffffffffffffffffff166110536113e6565b73ffffffffffffffffffffffffffffffffffffffff16146110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090613d58565b60405180910390fd5b80600990805190602001906110bf929190612cbd565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118790613dea565b60405180910390fd5b80915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b600980546111dd90613682565b80601f016020809104026020016040519081016040528092919081815260200182805461120990613682565b80156112565780601f1061122b57610100808354040283529160200191611256565b820191906000526020600020905b81548152906001019060200180831161123957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c690613e7c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61131e611ff5565b73ffffffffffffffffffffffffffffffffffffffff1661133c6113e6565b73ffffffffffffffffffffffffffffffffffffffff1614611392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138990613d58565b60405180910390fd5b61139c60006125fa565b565b600e6020528060005260406000206000915090505481565b7f000000000000000000000000000000000000000000000000000000000000000081565b60078060000154905081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461141f90613682565b80601f016020809104026020016040519081016040528092919081815260200182805461144b90613682565b80156114985780601f1061146d57610100808354040283529160200191611498565b820191906000526020600020905b81548152906001019060200180831161147b57829003601f168201915b5050505050905090565b60006114ad82611f89565b9050919050565b6114bc611ff5565b73ffffffffffffffffffffffffffffffffffffffff166114da6113e6565b73ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152790613d58565b60405180910390fd5b610bfe81600c54611541919061395f565b1115611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990613f0e565b60405180910390fd5b6000600190505b8181116115ce576001600c5461159f919061395f565b600c819055506115b133600c54612409565b6115bb6008611f09565b80806115c690613f2e565b915050611589565b5050565b6115e46115dd611ff5565b83836126c0565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461169a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169190613fc3565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000042116116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f39061402f565b60405180910390fd5b600b60009054906101000a900460ff161561174c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117439061409b565b60405180910390fd5b60005b81518110156117bd5761138882828151811061176e5761176d6140bb565b5b6020026020010151116117aa5761179f33838381518110611792576117916140bb565b5b6020026020010151612409565b6117a96008611f09565b5b80806117b590613f2e565b91505061174f565b5050565b6117d26117cc611ff5565b836120c4565b611811576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118089061393f565b60405180910390fd5b61181d8484848461282d565b50505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a890613fc3565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b600a80546118db90613682565b80601f016020809104026020016040519081016040528092919081815260200182805461190790613682565b80156119545780601f1061192957610100808354040283529160200191611954565b820191906000526020600020905b81548152906001019060200180831161193757829003601f168201915b505050505081565b606061196782611f89565b6119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d9061415c565b60405180910390fd5b60006119b0612889565b905060008151116119d057604051806020016040528060008152506119fe565b806119da8461291b565b600a6040516020016119ee9392919061424c565b6040516020818303038152906040525b915050919050565b61138881565b7f0000000000000000000000000000000000000000000000000000000000000000421115611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a66906142c9565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000421015611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac990614335565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000905060005b8251811015611c0e573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16636352211e858481518110611b4957611b486140bb565b5b60200260200101516040518263ffffffff1660e01b8152600401611b6d9190613024565b602060405180830381865afa158015611b8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bae919061436a565b73ffffffffffffffffffffffffffffffffffffffff1614611bfb576040517f59dc379f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8080611c0690613f2e565b915050611afa565b5060005b8251811015611c5c57611c3f33848381518110611c3257611c316140bb565b5b6020026020010151612409565b611c496008611f09565b8080611c5490613f2e565b915050611c12565b505050565b611c69611ff5565b73ffffffffffffffffffffffffffffffffffffffff16611c876113e6565b73ffffffffffffffffffffffffffffffffffffffff1614611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd490613d58565b60405180910390fd5b80600a9080519060200190611cf3929190612cbd565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d93611ff5565b73ffffffffffffffffffffffffffffffffffffffff16611db16113e6565b73ffffffffffffffffffffffffffffffffffffffff1614611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe90613d58565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90614409565b60405180910390fd5b611e80816125fa565b50565b611e8b611ff5565b73ffffffffffffffffffffffffffffffffffffffff16611ea96113e6565b73ffffffffffffffffffffffffffffffffffffffff1614611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef690613d58565b60405180910390fd5b80600d8190555050565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612070836110e7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006120cf82611f89565b61210e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121059061449b565b60405180910390fd5b6000612119836110e7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061218857508373ffffffffffffffffffffffffffffffffffffffff16612170846108cf565b73ffffffffffffffffffffffffffffffffffffffff16145b8061219957506121988185611cf7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121c2826110e7565b73ffffffffffffffffffffffffffffffffffffffff1614612218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220f9061452d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227f906145bf565b60405180910390fd5b612293838383612a7c565b61229e600082611ffd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122ee9190613899565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612345919061395f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612404838383612a81565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612479576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124709061462b565b60405180910390fd5b61248281611f89565b156124c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b990614697565b60405180910390fd5b6124ce60008383612a7c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461251e919061395f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125df60008383612a81565b5050565b6000826125f08584612a86565b1490509392505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561272f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272690614703565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128209190612e70565b60405180910390a3505050565b6128388484846121a2565b61284484848484612afb565b612883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287a90614795565b60405180910390fd5b50505050565b60606009805461289890613682565b80601f01602080910402602001604051908101604052809291908181526020018280546128c490613682565b80156129115780601f106128e657610100808354040283529160200191612911565b820191906000526020600020905b8154815290600101906020018083116128f457829003601f168201915b5050505050905090565b60606000821415612963576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a77565b600082905060005b6000821461299557808061297e90613f2e565b915050600a8261298e91906147e4565b915061296b565b60008167ffffffffffffffff8111156129b1576129b061317d565b5b6040519080825280601f01601f1916602001820160405280156129e35781602001600182028036833780820191505090505b5090505b60008514612a70576001826129fc9190613899565b9150600a85612a0b9190614815565b6030612a17919061395f565b60f81b818381518110612a2d57612a2c6140bb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a6991906147e4565b94506129e7565b8093505050505b919050565b505050565b505050565b60008082905060005b8451811015612af0576000858281518110612aad57612aac6140bb565b5b60200260200101519050808311612acf57612ac88382612c83565b9250612adc565b612ad98184612c83565b92505b508080612ae890613f2e565b915050612a8f565b508091505092915050565b6000612b1c8473ffffffffffffffffffffffffffffffffffffffff16612c9a565b15612c76578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b45611ff5565b8786866040518563ffffffff1660e01b8152600401612b67949392919061489b565b6020604051808303816000875af1925050508015612ba357506040513d601f19601f82011682018060405250810190612ba091906148fc565b60015b612c26573d8060008114612bd3576040519150601f19603f3d011682016040523d82523d6000602084013e612bd8565b606091505b50600081511415612c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1590614795565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c7b565b600190505b949350505050565b600082600052816020526040600020905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612cc990613682565b90600052602060002090601f016020900481019282612ceb5760008555612d32565b82601f10612d0457805160ff1916838001178555612d32565b82800160010185558215612d32579182015b82811115612d31578251825591602001919060010190612d16565b5b509050612d3f9190612d43565b5090565b5b80821115612d5c576000816000905550600101612d44565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d8b82612d60565b9050919050565b612d9b81612d80565b82525050565b6000602082019050612db66000830184612d92565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e0581612dd0565b8114612e1057600080fd5b50565b600081359050612e2281612dfc565b92915050565b600060208284031215612e3e57612e3d612dc6565b5b6000612e4c84828501612e13565b91505092915050565b60008115159050919050565b612e6a81612e55565b82525050565b6000602082019050612e856000830184612e61565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ec5578082015181840152602081019050612eaa565b83811115612ed4576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ef682612e8b565b612f008185612e96565b9350612f10818560208601612ea7565b612f1981612eda565b840191505092915050565b60006020820190508181036000830152612f3e8184612eeb565b905092915050565b6000819050919050565b612f5981612f46565b8114612f6457600080fd5b50565b600081359050612f7681612f50565b92915050565b600060208284031215612f9257612f91612dc6565b5b6000612fa084828501612f67565b91505092915050565b612fb281612d80565b8114612fbd57600080fd5b50565b600081359050612fcf81612fa9565b92915050565b60008060408385031215612fec57612feb612dc6565b5b6000612ffa85828601612fc0565b925050602061300b85828601612f67565b9150509250929050565b61301e81612f46565b82525050565b60006020820190506130396000830184613015565b92915050565b60008060006060848603121561305857613057612dc6565b5b600061306686828701612fc0565b935050602061307786828701612fc0565b925050604061308886828701612f67565b9150509250925092565b6000819050919050565b6130a581613092565b82525050565b60006020820190506130c0600083018461309c565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126130eb576130ea6130c6565b5b8235905067ffffffffffffffff811115613108576131076130cb565b5b602083019150836020820283011115613124576131236130d0565b5b9250929050565b6000806020838503121561314257613141612dc6565b5b600083013567ffffffffffffffff8111156131605761315f612dcb565b5b61316c858286016130d5565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131b582612eda565b810181811067ffffffffffffffff821117156131d4576131d361317d565b5b80604052505050565b60006131e7612dbc565b90506131f382826131ac565b919050565b600067ffffffffffffffff8211156132135761321261317d565b5b61321c82612eda565b9050602081019050919050565b82818337600083830152505050565b600061324b613246846131f8565b6131dd565b90508281526020810184848401111561326757613266613178565b5b613272848285613229565b509392505050565b600082601f83011261328f5761328e6130c6565b5b813561329f848260208601613238565b91505092915050565b6000602082840312156132be576132bd612dc6565b5b600082013567ffffffffffffffff8111156132dc576132db612dcb565b5b6132e88482850161327a565b91505092915050565b60006020828403121561330757613306612dc6565b5b600061331584828501612fc0565b91505092915050565b61332781612e55565b811461333257600080fd5b50565b6000813590506133448161331e565b92915050565b6000806040838503121561336157613360612dc6565b5b600061336f85828601612fc0565b925050602061338085828601613335565b9150509250929050565b600067ffffffffffffffff8211156133a5576133a461317d565b5b602082029050602081019050919050565b60006133c96133c48461338a565b6131dd565b905080838252602082019050602084028301858111156133ec576133eb6130d0565b5b835b8181101561341557806134018882612f67565b8452602084019350506020810190506133ee565b5050509392505050565b600082601f830112613434576134336130c6565b5b81356134448482602086016133b6565b91505092915050565b60006020828403121561346357613462612dc6565b5b600082013567ffffffffffffffff81111561348157613480612dcb565b5b61348d8482850161341f565b91505092915050565b600067ffffffffffffffff8211156134b1576134b061317d565b5b6134ba82612eda565b9050602081019050919050565b60006134da6134d584613496565b6131dd565b9050828152602081018484840111156134f6576134f5613178565b5b613501848285613229565b509392505050565b600082601f83011261351e5761351d6130c6565b5b813561352e8482602086016134c7565b91505092915050565b6000806000806080858703121561355157613550612dc6565b5b600061355f87828801612fc0565b945050602061357087828801612fc0565b935050604061358187828801612f67565b925050606085013567ffffffffffffffff8111156135a2576135a1612dcb565b5b6135ae87828801613509565b91505092959194509250565b600080604083850312156135d1576135d0612dc6565b5b60006135df85828601612fc0565b92505060206135f085828601612fc0565b9150509250929050565b61360381613092565b811461360e57600080fd5b50565b600081359050613620816135fa565b92915050565b60006020828403121561363c5761363b612dc6565b5b600061364a84828501613611565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061369a57607f821691505b602082108114156136ae576136ad613653565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613710602c83612e96565b915061371b826136b4565b604082019050919050565b6000602082019050818103600083015261373f81613703565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006137a2602183612e96565b91506137ad82613746565b604082019050919050565b600060208201905081810360008301526137d181613795565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613834603883612e96565b915061383f826137d8565b604082019050919050565b6000602082019050818103600083015261386381613827565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138a482612f46565b91506138af83612f46565b9250828210156138c2576138c161386a565b5b828203905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613929603183612e96565b9150613934826138cd565b604082019050919050565b600060208201905081810360008301526139588161391c565b9050919050565b600061396a82612f46565b915061397583612f46565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139aa576139a961386a565b5b828201905092915050565b7f457863656564732077616c6c6574206d696e7420616d74000000000000000000600082015250565b60006139eb601783612e96565b91506139f6826139b5565b602082019050919050565b60006020820190508181036000830152613a1a816139de565b9050919050565b7f5075626c6963206d696e742068617320736f6c64206f75740000000000000000600082015250565b6000613a57601883612e96565b9150613a6282613a21565b602082019050919050565b60006020820190508181036000830152613a8681613a4a565b9050919050565b7f5075626c6963206d696e7420686173206e6f7420737461727465642079657400600082015250565b6000613ac3601f83612e96565b9150613ace82613a8d565b602082019050919050565b60006020820190508181036000830152613af281613ab6565b9050919050565b7f616c6c6f776c697374206d696e742068617320736f6c64206f75740000000000600082015250565b6000613b2f601b83612e96565b9150613b3a82613af9565b602082019050919050565b60006020820190508181036000830152613b5e81613b22565b9050919050565b7f574c20686173206e6f7420737461727465642079657400000000000000000000600082015250565b6000613b9b601683612e96565b9150613ba682613b65565b602082019050919050565b60006020820190508181036000830152613bca81613b8e565b9050919050565b7f574c2068617320656e6465640000000000000000000000000000000000000000600082015250565b6000613c07600c83612e96565b9150613c1282613bd1565b602082019050919050565b60006020820190508181036000830152613c3681613bfa565b9050919050565b60008160601b9050919050565b6000613c5582613c3d565b9050919050565b6000613c6782613c4a565b9050919050565b613c7f613c7a82612d80565b613c5c565b82525050565b6000613c918284613c6e565b60148201915081905092915050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000613cd6600d83612e96565b9150613ce182613ca0565b602082019050919050565b60006020820190508181036000830152613d0581613cc9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d42602083612e96565b9150613d4d82613d0c565b602082019050919050565b60006020820190508181036000830152613d7181613d35565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613dd4602983612e96565b9150613ddf82613d78565b604082019050919050565b60006020820190508181036000830152613e0381613dc7565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613e66602a83612e96565b9150613e7182613e0a565b604082019050919050565b60006020820190508181036000830152613e9581613e59565b9050919050565b7f5175616e74697479207265717565737465642065786365656473207465616d2060008201527f636c61696d20616d6f756e740000000000000000000000000000000000000000602082015250565b6000613ef8602c83612e96565b9150613f0382613e9c565b604082019050919050565b60006020820190508181036000830152613f2781613eeb565b9050919050565b6000613f3982612f46565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f6c57613f6b61386a565b5b600182019050919050565b7f4f6e6c792044414f206f776e65722063616e20636c61696d2100000000000000600082015250565b6000613fad601983612e96565b9150613fb882613f77565b602082019050919050565b60006020820190508181036000830152613fdc81613fa0565b9050919050565b7f436c61696d20706572696f64206861736e277420656e64656400000000000000600082015250565b6000614019601983612e96565b915061402482613fe3565b602082019050919050565b600060208201905081810360008301526140488161400c565b9050919050565b7f44414f2063616e6e6f7420636c61696d20616e796d6f72652100000000000000600082015250565b6000614085601983612e96565b91506140908261404f565b602082019050919050565b600060208201905081810360008301526140b481614078565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614146602f83612e96565b9150614151826140ea565b604082019050919050565b6000602082019050818103600083015261417581614139565b9050919050565b600081905092915050565b600061419282612e8b565b61419c818561417c565b93506141ac818560208601612ea7565b80840191505092915050565b60008190508160005260206000209050919050565b600081546141da81613682565b6141e4818661417c565b945060018216600081146141ff576001811461421057614243565b60ff19831686528186019350614243565b614219856141b8565b60005b8381101561423b5781548189015260018201915060208101905061421c565b838801955050505b50505092915050565b60006142588286614187565b91506142648285614187565b915061427082846141cd565b9150819050949350505050565b7f436c61696d20706572696f642068617320657870697265640000000000000000600082015250565b60006142b3601883612e96565b91506142be8261427d565b602082019050919050565b600060208201905081810360008301526142e2816142a6565b9050919050565b7f436c61696d20686173206e6f7420737461727465642079657400000000000000600082015250565b600061431f601983612e96565b915061432a826142e9565b602082019050919050565b6000602082019050818103600083015261434e81614312565b9050919050565b60008151905061436481612fa9565b92915050565b6000602082840312156143805761437f612dc6565b5b600061438e84828501614355565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143f3602683612e96565b91506143fe82614397565b604082019050919050565b60006020820190508181036000830152614422816143e6565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614485602c83612e96565b915061449082614429565b604082019050919050565b600060208201905081810360008301526144b481614478565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614517602583612e96565b9150614522826144bb565b604082019050919050565b600060208201905081810360008301526145468161450a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006145a9602483612e96565b91506145b48261454d565b604082019050919050565b600060208201905081810360008301526145d88161459c565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614615602083612e96565b9150614620826145df565b602082019050919050565b6000602082019050818103600083015261464481614608565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614681601c83612e96565b915061468c8261464b565b602082019050919050565b600060208201905081810360008301526146b081614674565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006146ed601983612e96565b91506146f8826146b7565b602082019050919050565b6000602082019050818103600083015261471c816146e0565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061477f603283612e96565b915061478a82614723565b604082019050919050565b600060208201905081810360008301526147ae81614772565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147ef82612f46565b91506147fa83612f46565b92508261480a576148096147b5565b5b828204905092915050565b600061482082612f46565b915061482b83612f46565b92508261483b5761483a6147b5565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061486d82614846565b6148778185614851565b9350614887818560208601612ea7565b61489081612eda565b840191505092915050565b60006080820190506148b06000830187612d92565b6148bd6020830186612d92565b6148ca6040830185613015565b81810360608301526148dc8184614862565b905095945050505050565b6000815190506148f681612dfc565b92915050565b60006020828403121561491257614911612dc6565b5b6000614920848285016148e7565b9150509291505056fea2646970667358221220ece07b9a22c80aeefab6fc41479a58c1d3aec7b08c18bbd66644bbe10d5e480364736f6c634300080b0033000000000000000000000000afef885027a59603dff7837c280dad772c476b820000000000000000000000000000000000000000000000000000000062978d00000000000000000000000000000000000000000000000000000000006297a9200000000000000000000000007291cc605653a9fcfbced63313156e654eaf259b

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102485760003560e01c8063772dc32f1161013b578063b88d4fde116100b8578063d7d6287c1161007c578063d7d6287c14610697578063da3ef23f146106b3578063e985e9c5146106cf578063f2fde38b146106ff578063f95df4141461071b57610248565b8063b88d4fde14610605578063bf6b8adc14610621578063c66828621461062b578063c87b56dd14610649578063d5abeb011461067957610248565b80639e34070f116100ff5780639e34070f14610563578063a026da8c14610593578063a22cb465146105af578063a6a11bb1146105cb578063a7bf1a92146105e957610248565b8063772dc32f146104bb578063887f2be4146104eb5780638d50fa29146105095780638da5cb5b1461052757806395d89b411461054557610248565b806342842e0e116101c9578063661d0c121161018d578063661d0c121461042757806369d8a608146104455780636c0360eb1461046357806370a0823114610481578063715018a6146104b157610248565b806342842e0e14610385578063537924ef146103a157806355f804b3146103bd57806359d7bc4d146103d95780636352211e146103f757610248565b806318160ddd1161021057806318160ddd1461030557806323b872dd1461032357806326092b831461033f578063293108e0146103495780634162169f1461036757610248565b8063010072f51461024d57806301ffc9a71461026b57806306fdde031461029b578063081812fc146102b9578063095ea7b3146102e9575b600080fd5b610255610737565b6040516102629190612da1565b60405180910390f35b61028560048036038101906102809190612e28565b61075b565b6040516102929190612e70565b60405180910390f35b6102a361083d565b6040516102b09190612f24565b60405180910390f35b6102d360048036038101906102ce9190612f7c565b6108cf565b6040516102e09190612da1565b60405180910390f35b61030360048036038101906102fe9190612fd5565b610954565b005b61030d610a6c565b60405161031a9190613024565b60405180910390f35b61033d6004803603810190610338919061303f565b610a89565b005b610347610ae9565b005b610351610cf3565b60405161035e91906130ab565b60405180910390f35b61036f610cf9565b60405161037c9190612da1565b60405180910390f35b61039f600480360381019061039a919061303f565b610d1d565b005b6103bb60048036038101906103b6919061312b565b610d3d565b005b6103d760048036038101906103d291906132a8565b61102d565b005b6103e16110c3565b6040516103ee9190613024565b60405180910390f35b610411600480360381019061040c9190612f7c565b6110e7565b60405161041e9190612da1565b60405180910390f35b61042f611199565b60405161043c9190613024565b60405180910390f35b61044d6111bd565b60405161045a9190612e70565b60405180910390f35b61046b6111d0565b6040516104789190612f24565b60405180910390f35b61049b600480360381019061049691906132f1565b61125e565b6040516104a89190613024565b60405180910390f35b6104b9611316565b005b6104d560048036038101906104d091906132f1565b61139e565b6040516104e29190613024565b60405180910390f35b6104f36113b6565b6040516105009190613024565b60405180910390f35b6105116113da565b60405161051e9190613024565b60405180910390f35b61052f6113e6565b60405161053c9190612da1565b60405180910390f35b61054d611410565b60405161055a9190612f24565b60405180910390f35b61057d60048036038101906105789190612f7c565b6114a2565b60405161058a9190612e70565b60405180910390f35b6105ad60048036038101906105a89190612f7c565b6114b4565b005b6105c960048036038101906105c4919061334a565b6115d2565b005b6105d36115e8565b6040516105e09190613024565b60405180910390f35b61060360048036038101906105fe919061344d565b61160c565b005b61061f600480360381019061061a9190613537565b6117c1565b005b610629611823565b005b6106336118ce565b6040516106409190612f24565b60405180910390f35b610663600480360381019061065e9190612f7c565b61195c565b6040516106709190612f24565b60405180910390f35b610681611a06565b60405161068e9190613024565b60405180910390f35b6106b160048036038101906106ac919061344d565b611a0c565b005b6106cd60048036038101906106c891906132a8565b611c61565b005b6106e960048036038101906106e491906135ba565b611cf7565b6040516106f69190612e70565b60405180910390f35b610719600480360381019061071491906132f1565b611d8b565b005b61073560048036038101906107309190613626565b611e83565b005b7f000000000000000000000000afef885027a59603dff7837c280dad772c476b8281565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610836575061083582611f1f565b5b9050919050565b60606000805461084c90613682565b80601f016020809104026020016040519081016040528092919081815260200182805461087890613682565b80156108c55780601f1061089a576101008083540402835291602001916108c5565b820191906000526020600020905b8154815290600101906020018083116108a857829003601f168201915b5050505050905090565b60006108da82611f89565b610919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091090613726565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095f826110e7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c7906137b8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ef611ff5565b73ffffffffffffffffffffffffffffffffffffffff161480610a1e5750610a1d81610a18611ff5565b611cf7565b5b610a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a549061384a565b60405180910390fd5b610a678383611ffd565b505050565b60006001610a7a60086120b6565b610a849190613899565b905090565b610a9a610a94611ff5565b826120c4565b610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad09061393f565b60405180910390fd5b610ae48383836121a2565b505050565b600180600e6000610af8611ff5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b3d919061395f565b1115610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7590613a01565b60405180910390fd5b611388610b8b60076120b6565b1115610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc390613a6d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c0457600080fd5b7f000000000000000000000000000000000000000000000000000000006297c5404211610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d90613ad9565b60405180910390fd5b6001600e6000610c74611ff5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cbd919061395f565b925050819055506000610cd060076120b6565b9050610cdc3382612409565b610ce66007611f09565b610cf06008611f09565b50565b600d5481565b7f0000000000000000000000007291cc605653a9fcfbced63313156e654eaf259b81565b610d38838383604051806020016040528060008152506117c1565b505050565b600180600e6000610d4c611ff5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d91919061395f565b1115610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990613a01565b60405180910390fd5b611388610ddf60076120b6565b1115610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790613b45565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000006297a920421015610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90613bb1565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000006297c5404210610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90613c1d565b60405180910390fd5b600033604051602001610ef89190613c85565b604051602081830303815290604052805190602001209050610f5e838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d54836125e3565b610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9490613cec565b60405180910390fd5b6001600e6000610fab611ff5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff4919061395f565b92505081905550600061100760076120b6565b90506110133382612409565b61101d6008611f09565b6110276007611f09565b50505050565b611035611ff5565b73ffffffffffffffffffffffffffffffffffffffff166110536113e6565b73ffffffffffffffffffffffffffffffffffffffff16146110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090613d58565b60405180910390fd5b80600990805190602001906110bf929190612cbd565b5050565b7f000000000000000000000000000000000000000000000000000000006297a92081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118790613dea565b60405180910390fd5b80915050919050565b7f000000000000000000000000000000000000000000000000000000006297c54081565b600b60009054906101000a900460ff1681565b600980546111dd90613682565b80601f016020809104026020016040519081016040528092919081815260200182805461120990613682565b80156112565780601f1061122b57610100808354040283529160200191611256565b820191906000526020600020905b81548152906001019060200180831161123957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c690613e7c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61131e611ff5565b73ffffffffffffffffffffffffffffffffffffffff1661133c6113e6565b73ffffffffffffffffffffffffffffffffffffffff1614611392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138990613d58565b60405180910390fd5b61139c60006125fa565b565b600e6020528060005260406000206000915090505481565b7f0000000000000000000000000000000000000000000000000000000062bdc88081565b60078060000154905081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461141f90613682565b80601f016020809104026020016040519081016040528092919081815260200182805461144b90613682565b80156114985780601f1061146d57610100808354040283529160200191611498565b820191906000526020600020905b81548152906001019060200180831161147b57829003601f168201915b5050505050905090565b60006114ad82611f89565b9050919050565b6114bc611ff5565b73ffffffffffffffffffffffffffffffffffffffff166114da6113e6565b73ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152790613d58565b60405180910390fd5b610bfe81600c54611541919061395f565b1115611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990613f0e565b60405180910390fd5b6000600190505b8181116115ce576001600c5461159f919061395f565b600c819055506115b133600c54612409565b6115bb6008611f09565b80806115c690613f2e565b915050611589565b5050565b6115e46115dd611ff5565b83836126c0565b5050565b7f0000000000000000000000000000000000000000000000000000000062978d0081565b7f0000000000000000000000007291cc605653a9fcfbced63313156e654eaf259b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461169a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169190613fc3565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000062bdc88042116116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f39061402f565b60405180910390fd5b600b60009054906101000a900460ff161561174c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117439061409b565b60405180910390fd5b60005b81518110156117bd5761138882828151811061176e5761176d6140bb565b5b6020026020010151116117aa5761179f33838381518110611792576117916140bb565b5b6020026020010151612409565b6117a96008611f09565b5b80806117b590613f2e565b91505061174f565b5050565b6117d26117cc611ff5565b836120c4565b611811576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118089061393f565b60405180910390fd5b61181d8484848461282d565b50505050565b7f0000000000000000000000007291cc605653a9fcfbced63313156e654eaf259b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a890613fc3565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b600a80546118db90613682565b80601f016020809104026020016040519081016040528092919081815260200182805461190790613682565b80156119545780601f1061192957610100808354040283529160200191611954565b820191906000526020600020905b81548152906001019060200180831161193757829003601f168201915b505050505081565b606061196782611f89565b6119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d9061415c565b60405180910390fd5b60006119b0612889565b905060008151116119d057604051806020016040528060008152506119fe565b806119da8461291b565b600a6040516020016119ee9392919061424c565b6040516020818303038152906040525b915050919050565b61138881565b7f0000000000000000000000000000000000000000000000000000000062bdc880421115611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a66906142c9565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000062978d00421015611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac990614335565b60405180910390fd5b60007f000000000000000000000000afef885027a59603dff7837c280dad772c476b82905060005b8251811015611c0e573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16636352211e858481518110611b4957611b486140bb565b5b60200260200101516040518263ffffffff1660e01b8152600401611b6d9190613024565b602060405180830381865afa158015611b8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bae919061436a565b73ffffffffffffffffffffffffffffffffffffffff1614611bfb576040517f59dc379f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8080611c0690613f2e565b915050611afa565b5060005b8251811015611c5c57611c3f33848381518110611c3257611c316140bb565b5b6020026020010151612409565b611c496008611f09565b8080611c5490613f2e565b915050611c12565b505050565b611c69611ff5565b73ffffffffffffffffffffffffffffffffffffffff16611c876113e6565b73ffffffffffffffffffffffffffffffffffffffff1614611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd490613d58565b60405180910390fd5b80600a9080519060200190611cf3929190612cbd565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d93611ff5565b73ffffffffffffffffffffffffffffffffffffffff16611db16113e6565b73ffffffffffffffffffffffffffffffffffffffff1614611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe90613d58565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90614409565b60405180910390fd5b611e80816125fa565b50565b611e8b611ff5565b73ffffffffffffffffffffffffffffffffffffffff16611ea96113e6565b73ffffffffffffffffffffffffffffffffffffffff1614611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef690613d58565b60405180910390fd5b80600d8190555050565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612070836110e7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006120cf82611f89565b61210e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121059061449b565b60405180910390fd5b6000612119836110e7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061218857508373ffffffffffffffffffffffffffffffffffffffff16612170846108cf565b73ffffffffffffffffffffffffffffffffffffffff16145b8061219957506121988185611cf7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121c2826110e7565b73ffffffffffffffffffffffffffffffffffffffff1614612218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220f9061452d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227f906145bf565b60405180910390fd5b612293838383612a7c565b61229e600082611ffd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122ee9190613899565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612345919061395f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612404838383612a81565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612479576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124709061462b565b60405180910390fd5b61248281611f89565b156124c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b990614697565b60405180910390fd5b6124ce60008383612a7c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461251e919061395f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125df60008383612a81565b5050565b6000826125f08584612a86565b1490509392505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561272f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272690614703565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128209190612e70565b60405180910390a3505050565b6128388484846121a2565b61284484848484612afb565b612883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287a90614795565b60405180910390fd5b50505050565b60606009805461289890613682565b80601f01602080910402602001604051908101604052809291908181526020018280546128c490613682565b80156129115780601f106128e657610100808354040283529160200191612911565b820191906000526020600020905b8154815290600101906020018083116128f457829003601f168201915b5050505050905090565b60606000821415612963576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a77565b600082905060005b6000821461299557808061297e90613f2e565b915050600a8261298e91906147e4565b915061296b565b60008167ffffffffffffffff8111156129b1576129b061317d565b5b6040519080825280601f01601f1916602001820160405280156129e35781602001600182028036833780820191505090505b5090505b60008514612a70576001826129fc9190613899565b9150600a85612a0b9190614815565b6030612a17919061395f565b60f81b818381518110612a2d57612a2c6140bb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a6991906147e4565b94506129e7565b8093505050505b919050565b505050565b505050565b60008082905060005b8451811015612af0576000858281518110612aad57612aac6140bb565b5b60200260200101519050808311612acf57612ac88382612c83565b9250612adc565b612ad98184612c83565b92505b508080612ae890613f2e565b915050612a8f565b508091505092915050565b6000612b1c8473ffffffffffffffffffffffffffffffffffffffff16612c9a565b15612c76578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b45611ff5565b8786866040518563ffffffff1660e01b8152600401612b67949392919061489b565b6020604051808303816000875af1925050508015612ba357506040513d601f19601f82011682018060405250810190612ba091906148fc565b60015b612c26573d8060008114612bd3576040519150601f19603f3d011682016040523d82523d6000602084013e612bd8565b606091505b50600081511415612c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1590614795565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c7b565b600190505b949350505050565b600082600052816020526040600020905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612cc990613682565b90600052602060002090601f016020900481019282612ceb5760008555612d32565b82601f10612d0457805160ff1916838001178555612d32565b82800160010185558215612d32579182015b82811115612d31578251825591602001919060010190612d16565b5b509050612d3f9190612d43565b5090565b5b80821115612d5c576000816000905550600101612d44565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d8b82612d60565b9050919050565b612d9b81612d80565b82525050565b6000602082019050612db66000830184612d92565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e0581612dd0565b8114612e1057600080fd5b50565b600081359050612e2281612dfc565b92915050565b600060208284031215612e3e57612e3d612dc6565b5b6000612e4c84828501612e13565b91505092915050565b60008115159050919050565b612e6a81612e55565b82525050565b6000602082019050612e856000830184612e61565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ec5578082015181840152602081019050612eaa565b83811115612ed4576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ef682612e8b565b612f008185612e96565b9350612f10818560208601612ea7565b612f1981612eda565b840191505092915050565b60006020820190508181036000830152612f3e8184612eeb565b905092915050565b6000819050919050565b612f5981612f46565b8114612f6457600080fd5b50565b600081359050612f7681612f50565b92915050565b600060208284031215612f9257612f91612dc6565b5b6000612fa084828501612f67565b91505092915050565b612fb281612d80565b8114612fbd57600080fd5b50565b600081359050612fcf81612fa9565b92915050565b60008060408385031215612fec57612feb612dc6565b5b6000612ffa85828601612fc0565b925050602061300b85828601612f67565b9150509250929050565b61301e81612f46565b82525050565b60006020820190506130396000830184613015565b92915050565b60008060006060848603121561305857613057612dc6565b5b600061306686828701612fc0565b935050602061307786828701612fc0565b925050604061308886828701612f67565b9150509250925092565b6000819050919050565b6130a581613092565b82525050565b60006020820190506130c0600083018461309c565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126130eb576130ea6130c6565b5b8235905067ffffffffffffffff811115613108576131076130cb565b5b602083019150836020820283011115613124576131236130d0565b5b9250929050565b6000806020838503121561314257613141612dc6565b5b600083013567ffffffffffffffff8111156131605761315f612dcb565b5b61316c858286016130d5565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131b582612eda565b810181811067ffffffffffffffff821117156131d4576131d361317d565b5b80604052505050565b60006131e7612dbc565b90506131f382826131ac565b919050565b600067ffffffffffffffff8211156132135761321261317d565b5b61321c82612eda565b9050602081019050919050565b82818337600083830152505050565b600061324b613246846131f8565b6131dd565b90508281526020810184848401111561326757613266613178565b5b613272848285613229565b509392505050565b600082601f83011261328f5761328e6130c6565b5b813561329f848260208601613238565b91505092915050565b6000602082840312156132be576132bd612dc6565b5b600082013567ffffffffffffffff8111156132dc576132db612dcb565b5b6132e88482850161327a565b91505092915050565b60006020828403121561330757613306612dc6565b5b600061331584828501612fc0565b91505092915050565b61332781612e55565b811461333257600080fd5b50565b6000813590506133448161331e565b92915050565b6000806040838503121561336157613360612dc6565b5b600061336f85828601612fc0565b925050602061338085828601613335565b9150509250929050565b600067ffffffffffffffff8211156133a5576133a461317d565b5b602082029050602081019050919050565b60006133c96133c48461338a565b6131dd565b905080838252602082019050602084028301858111156133ec576133eb6130d0565b5b835b8181101561341557806134018882612f67565b8452602084019350506020810190506133ee565b5050509392505050565b600082601f830112613434576134336130c6565b5b81356134448482602086016133b6565b91505092915050565b60006020828403121561346357613462612dc6565b5b600082013567ffffffffffffffff81111561348157613480612dcb565b5b61348d8482850161341f565b91505092915050565b600067ffffffffffffffff8211156134b1576134b061317d565b5b6134ba82612eda565b9050602081019050919050565b60006134da6134d584613496565b6131dd565b9050828152602081018484840111156134f6576134f5613178565b5b613501848285613229565b509392505050565b600082601f83011261351e5761351d6130c6565b5b813561352e8482602086016134c7565b91505092915050565b6000806000806080858703121561355157613550612dc6565b5b600061355f87828801612fc0565b945050602061357087828801612fc0565b935050604061358187828801612f67565b925050606085013567ffffffffffffffff8111156135a2576135a1612dcb565b5b6135ae87828801613509565b91505092959194509250565b600080604083850312156135d1576135d0612dc6565b5b60006135df85828601612fc0565b92505060206135f085828601612fc0565b9150509250929050565b61360381613092565b811461360e57600080fd5b50565b600081359050613620816135fa565b92915050565b60006020828403121561363c5761363b612dc6565b5b600061364a84828501613611565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061369a57607f821691505b602082108114156136ae576136ad613653565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613710602c83612e96565b915061371b826136b4565b604082019050919050565b6000602082019050818103600083015261373f81613703565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006137a2602183612e96565b91506137ad82613746565b604082019050919050565b600060208201905081810360008301526137d181613795565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613834603883612e96565b915061383f826137d8565b604082019050919050565b6000602082019050818103600083015261386381613827565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138a482612f46565b91506138af83612f46565b9250828210156138c2576138c161386a565b5b828203905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613929603183612e96565b9150613934826138cd565b604082019050919050565b600060208201905081810360008301526139588161391c565b9050919050565b600061396a82612f46565b915061397583612f46565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139aa576139a961386a565b5b828201905092915050565b7f457863656564732077616c6c6574206d696e7420616d74000000000000000000600082015250565b60006139eb601783612e96565b91506139f6826139b5565b602082019050919050565b60006020820190508181036000830152613a1a816139de565b9050919050565b7f5075626c6963206d696e742068617320736f6c64206f75740000000000000000600082015250565b6000613a57601883612e96565b9150613a6282613a21565b602082019050919050565b60006020820190508181036000830152613a8681613a4a565b9050919050565b7f5075626c6963206d696e7420686173206e6f7420737461727465642079657400600082015250565b6000613ac3601f83612e96565b9150613ace82613a8d565b602082019050919050565b60006020820190508181036000830152613af281613ab6565b9050919050565b7f616c6c6f776c697374206d696e742068617320736f6c64206f75740000000000600082015250565b6000613b2f601b83612e96565b9150613b3a82613af9565b602082019050919050565b60006020820190508181036000830152613b5e81613b22565b9050919050565b7f574c20686173206e6f7420737461727465642079657400000000000000000000600082015250565b6000613b9b601683612e96565b9150613ba682613b65565b602082019050919050565b60006020820190508181036000830152613bca81613b8e565b9050919050565b7f574c2068617320656e6465640000000000000000000000000000000000000000600082015250565b6000613c07600c83612e96565b9150613c1282613bd1565b602082019050919050565b60006020820190508181036000830152613c3681613bfa565b9050919050565b60008160601b9050919050565b6000613c5582613c3d565b9050919050565b6000613c6782613c4a565b9050919050565b613c7f613c7a82612d80565b613c5c565b82525050565b6000613c918284613c6e565b60148201915081905092915050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000613cd6600d83612e96565b9150613ce182613ca0565b602082019050919050565b60006020820190508181036000830152613d0581613cc9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d42602083612e96565b9150613d4d82613d0c565b602082019050919050565b60006020820190508181036000830152613d7181613d35565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613dd4602983612e96565b9150613ddf82613d78565b604082019050919050565b60006020820190508181036000830152613e0381613dc7565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613e66602a83612e96565b9150613e7182613e0a565b604082019050919050565b60006020820190508181036000830152613e9581613e59565b9050919050565b7f5175616e74697479207265717565737465642065786365656473207465616d2060008201527f636c61696d20616d6f756e740000000000000000000000000000000000000000602082015250565b6000613ef8602c83612e96565b9150613f0382613e9c565b604082019050919050565b60006020820190508181036000830152613f2781613eeb565b9050919050565b6000613f3982612f46565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f6c57613f6b61386a565b5b600182019050919050565b7f4f6e6c792044414f206f776e65722063616e20636c61696d2100000000000000600082015250565b6000613fad601983612e96565b9150613fb882613f77565b602082019050919050565b60006020820190508181036000830152613fdc81613fa0565b9050919050565b7f436c61696d20706572696f64206861736e277420656e64656400000000000000600082015250565b6000614019601983612e96565b915061402482613fe3565b602082019050919050565b600060208201905081810360008301526140488161400c565b9050919050565b7f44414f2063616e6e6f7420636c61696d20616e796d6f72652100000000000000600082015250565b6000614085601983612e96565b91506140908261404f565b602082019050919050565b600060208201905081810360008301526140b481614078565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614146602f83612e96565b9150614151826140ea565b604082019050919050565b6000602082019050818103600083015261417581614139565b9050919050565b600081905092915050565b600061419282612e8b565b61419c818561417c565b93506141ac818560208601612ea7565b80840191505092915050565b60008190508160005260206000209050919050565b600081546141da81613682565b6141e4818661417c565b945060018216600081146141ff576001811461421057614243565b60ff19831686528186019350614243565b614219856141b8565b60005b8381101561423b5781548189015260018201915060208101905061421c565b838801955050505b50505092915050565b60006142588286614187565b91506142648285614187565b915061427082846141cd565b9150819050949350505050565b7f436c61696d20706572696f642068617320657870697265640000000000000000600082015250565b60006142b3601883612e96565b91506142be8261427d565b602082019050919050565b600060208201905081810360008301526142e2816142a6565b9050919050565b7f436c61696d20686173206e6f7420737461727465642079657400000000000000600082015250565b600061431f601983612e96565b915061432a826142e9565b602082019050919050565b6000602082019050818103600083015261434e81614312565b9050919050565b60008151905061436481612fa9565b92915050565b6000602082840312156143805761437f612dc6565b5b600061438e84828501614355565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143f3602683612e96565b91506143fe82614397565b604082019050919050565b60006020820190508181036000830152614422816143e6565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614485602c83612e96565b915061449082614429565b604082019050919050565b600060208201905081810360008301526144b481614478565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614517602583612e96565b9150614522826144bb565b604082019050919050565b600060208201905081810360008301526145468161450a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006145a9602483612e96565b91506145b48261454d565b604082019050919050565b600060208201905081810360008301526145d88161459c565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614615602083612e96565b9150614620826145df565b602082019050919050565b6000602082019050818103600083015261464481614608565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614681601c83612e96565b915061468c8261464b565b602082019050919050565b600060208201905081810360008301526146b081614674565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006146ed601983612e96565b91506146f8826146b7565b602082019050919050565b6000602082019050818103600083015261471c816146e0565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061477f603283612e96565b915061478a82614723565b604082019050919050565b600060208201905081810360008301526147ae81614772565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147ef82612f46565b91506147fa83612f46565b92508261480a576148096147b5565b5b828204905092915050565b600061482082612f46565b915061482b83612f46565b92508261483b5761483a6147b5565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061486d82614846565b6148778185614851565b9350614887818560208601612ea7565b61489081612eda565b840191505092915050565b60006080820190506148b06000830187612d92565b6148bd6020830186612d92565b6148ca6040830185613015565b81810360608301526148dc8184614862565b905095945050505050565b6000815190506148f681612dfc565b92915050565b60006020828403121561491257614911612dc6565b5b6000614920848285016148e7565b9150509291505056fea2646970667358221220ece07b9a22c80aeefab6fc41479a58c1d3aec7b08c18bbd66644bbe10d5e480364736f6c634300080b0033

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

000000000000000000000000afef885027a59603dff7837c280dad772c476b820000000000000000000000000000000000000000000000000000000062978d00000000000000000000000000000000000000000000000000000000006297a9200000000000000000000000007291cc605653a9fcfbced63313156e654eaf259b

-----Decoded View---------------
Arg [0] : _genesisAddr (address): 0xAFeF885027A59603dfF7837C280DaD772c476b82
Arg [1] : _claimStartTime (uint256): 1654099200
Arg [2] : _allowlistStartTime (uint256): 1654106400
Arg [3] : _dao (address): 0x7291cc605653a9FCfbceD63313156E654eAF259b

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000afef885027a59603dff7837c280dad772c476b82
Arg [1] : 0000000000000000000000000000000000000000000000000000000062978d00
Arg [2] : 000000000000000000000000000000000000000000000000000000006297a920
Arg [3] : 0000000000000000000000007291cc605653a9fcfbced63313156e654eaf259b


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.