ETH Price: $3,438.41 (+7.72%)
Gas: 16 Gwei

Token

KeenSight (KNST)
 

Overview

Max Total Supply

494 KNST

Holders

101

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
divineentity.eth
Balance
1 KNST
0x1c9f5f148323aaa5db79416b4f77163495d66ae2
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:
KeenSight

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

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

pragma solidity >=0.8.17 <0.9.0;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";

contract KeenSight is DefaultOperatorFilterer, ERC721A, ReentrancyGuard, Ownable {
    using Strings for uint256;

    mapping(uint256 => bool) public tokenClaimed;
    mapping(address => bool) public whitelist;
    mapping(address => uint256) public preMinted;
    mapping(address => uint256) public publicMinted;
    mapping(address => string) public verifiedOrder;

    string public uriPrefix = "ipfs://";
    string public uriSuffix = ".json";
    string public uriClaimedPrefix = "ipfs://claimed";
    string public uriClaimedSuffix = ".json";
    string public hiddenMetadataUri;
    string public uriContract;

    uint256 public price = 0.042 ether;
    uint256 public maxSupply = 1500;
    uint256 public preMintTxLimit = 1;
    uint256 public publicMintTxLimit = 1;
    uint256 public maxPreMintAmount = 1;
    uint256 public maxPublicMintAmount = 1;
    uint256 public internalMintAmount = 250;

    bool public preMintPaused = true;
    bool public paused = true;
    bool public revealed = false;

    constructor(address[] memory _whiteListAddresses, address[] memory _internalAccounts, string memory _contractURI, string memory _hiddenMetadataURI) ERC721A("KeenSight", "KNST") {
        setHiddenMetadataUri(_hiddenMetadataURI);
        initializeWhiteList(_whiteListAddresses);
        setContractURI(_contractURI);
        for (uint256 i = 0; i < _internalAccounts.length; i++) {
            _safeMint(_internalAccounts[i], internalMintAmount);
        }
    }

    modifier publicMintCompliance(uint256 _mintAmount) {
        uint256 requestedAmount = totalSupply() + _mintAmount;
        require(_mintAmount > 0 && _mintAmount <= publicMintTxLimit, "You have exceeded the limit of mints per transaction");
        require(publicMinted[msg.sender] + _mintAmount <= maxPublicMintAmount, "You have already minted your limit");
        require(requestedAmount <= maxSupply, "SOLD OUT");
        require(!paused, "Minting is not currently allowed!");
        require(msg.value >= price * _mintAmount, "You did not send enough ETH");
        _;
    }

    modifier preMintCompliance(uint256 _mintAmount) {
        uint256 requestedAmount = totalSupply() + _mintAmount;
        require(_mintAmount > 0 && _mintAmount <= preMintTxLimit, "You have exceeded the limit of mints per transaction");
        require(preMinted[msg.sender] + _mintAmount <= maxPreMintAmount, "This transaction exceeds your whitelist mint limit");
        require(requestedAmount <= maxSupply, "SOLD OUT");
        require(!preMintPaused, "Minting is not currently allowed!");
        require(msg.value >= price * _mintAmount, "You did not send enough ETH");
        _;
    }
    
    modifier airDropCompliance(uint256 _mintAmount) {
        uint256 requestedAmount = totalSupply() + _mintAmount;
        require(requestedAmount <= maxSupply, "SOLD OUT");
        _;
    }

    function preMint( uint256  _mintAmount) public payable preMintCompliance(_mintAmount) nonReentrant {
        require(whitelist[msg.sender], "You are not on the list");
        preMinted[msg.sender] += _mintAmount;
        _safeMint(msg.sender, _mintAmount);
    }

    function mint(uint256 _mintAmount) public payable publicMintCompliance(_mintAmount) nonReentrant {
        publicMinted[msg.sender] += _mintAmount;
        _safeMint(msg.sender, _mintAmount);
    }

    function airDrop(uint256 _mintAmount, address _receiver) public airDropCompliance(_mintAmount) onlyOwner nonReentrant {
        _safeMint(_receiver, _mintAmount);
    }

    function burn(uint256 tokenId) public virtual {
        _burn(tokenId, true);
    }

    function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (revealed == false) {
            return hiddenMetadataUri;
        }
        if (tokenClaimed[_tokenId] == false) {
            string memory currentBaseURI = _baseURI();
            return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
            : "";
        }else{
            string memory currentBaseURI = _baseClaimedURI();
            return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriClaimedSuffix))
            : "";
        }
    }

    function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 0;
        uint256 ownedTokenIndex = 0;
        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
            address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
            currentTokenId++;
        }
        return ownedTokenIds;
    }

    function checkPreMintAvailableToMe() public view returns (uint256) {
        return (maxPreMintAmount - preMinted[msg.sender]);
    }

    function checkPublicMintAvailableToMe() public view returns (uint256) {
        return (maxPublicMintAmount - publicMinted[msg.sender]);
    }

    function setPrice(uint _price) public onlyOwner {
        price = _price;
    }

    function setPreMintTxLimit(uint256 _preMintTxLimit) public onlyOwner {
        preMintTxLimit = _preMintTxLimit;
    }

    function setPublicMintTxLimit(uint256 _publicMintTxLimit) public onlyOwner {
        publicMintTxLimit = _publicMintTxLimit;
    }

    function setMaxPreMintAmount(uint256 _maxPreMintAmount) public onlyOwner {
        maxPreMintAmount = _maxPreMintAmount;
    }

    function setMaxPublicMintAmount(uint256 _maxPublicMintAmount) public onlyOwner {
        maxPublicMintAmount = _maxPublicMintAmount;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setPreMintPaused(bool _state) public onlyOwner {
        preMintPaused = _state;
    }
    
    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function setUriClaimedPrefix(string memory _uriClaimedPrefix) public onlyOwner {
        uriClaimedPrefix = _uriClaimedPrefix;
    }

    function setUriClaimedSuffix(string memory _uriClaimedSuffix) public onlyOwner {
        uriClaimedSuffix = _uriClaimedSuffix;
    }

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

    function _baseClaimedURI() internal view virtual returns (string memory) {
        return uriClaimedPrefix;
    }

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

    function setContractURI(string memory _contractURI) public onlyOwner {
        uriContract = _contractURI;
    }

    function setTokenClaimed(uint256 _tokenId) public onlyOwner {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        tokenClaimed[_tokenId] = true;
    }

    function setTokenUnclaimed(uint256 _tokenId) public onlyOwner {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        tokenClaimed[_tokenId] = false;
    }

    function verifyOrder(string calldata _orderId) public{
        verifiedOrder[msg.sender] = _orderId;
    }

    function createWhiteList(address[] calldata _users) public onlyOwner{
        for(uint256 i = 0; i < _users.length; i++){
            whitelist[_users[i]] = true;
        }
    }

    function initializeWhiteList(address[] memory _users) private{
        for(uint256 i = 0; i < _users.length; i++){
            whitelist[_users[i]] = true;
        }
    }

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

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
    public
    payable
    override
    onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

File 2 of 10 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

File 3 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 5 of 10 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

File 6 of 10 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 7 of 10 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

    /**
     * @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 payable;

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @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);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 8 of 10 : 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 9 of 10 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

File 10 of 10 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_whiteListAddresses","type":"address[]"},{"internalType":"address[]","name":"_internalAccounts","type":"address[]"},{"internalType":"string","name":"_contractURI","type":"string"},{"internalType":"string","name":"_hiddenMetadataURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkPreMintAvailableToMe","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkPublicMintAvailableToMe","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"createWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"internalMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMintTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPreMintAmount","type":"uint256"}],"name":"setMaxPreMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPublicMintAmount","type":"uint256"}],"name":"setMaxPublicMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPreMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preMintTxLimit","type":"uint256"}],"name":"setPreMintTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMintTxLimit","type":"uint256"}],"name":"setPublicMintTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"setTokenClaimed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"setTokenUnclaimed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriClaimedPrefix","type":"string"}],"name":"setUriClaimedPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriClaimedSuffix","type":"string"}],"name":"setUriClaimedSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"","type":"uint256"}],"name":"tokenClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriClaimedPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriClaimedSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriContract","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"verifiedOrder","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_orderId","type":"string"}],"name":"verifyOrder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250600f90816200004a919062000ed3565b506040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506010908162000091919062000ed3565b506040518060400160405280600e81526020017f697066733a2f2f636c61696d656400000000000000000000000000000000000081525060119081620000d8919062000ed3565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250601290816200011f919062000ed3565b50669536c7089100006015556105dc6016556001601755600160185560016019556001601a5560fa601b556001601c60006101000a81548160ff0219169083151502179055506001601c60016101000a81548160ff0219169083151502179055506000601c60026101000a81548160ff021916908315150217905550348015620001a857600080fd5b5060405162006945380380620069458339818101604052810190620001ce91906200125e565b6040518060400160405280600981526020017f4b65656e536967687400000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b4e535400000000000000000000000000000000000000000000000000000000815250733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620004465780156200030c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620002d29291906200135d565b600060405180830381600087803b158015620002ed57600080fd5b505af115801562000302573d6000803e3d6000fd5b5050505062000445565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620003c6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200038c9291906200135d565b600060405180830381600087803b158015620003a757600080fd5b505af1158015620003bc573d6000803e3d6000fd5b5050505062000444565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200040f91906200138a565b600060405180830381600087803b1580156200042a57600080fd5b505af11580156200043f573d6000803e3d6000fd5b505050505b5b5b5050816002908162000459919062000ed3565b5080600390816200046b919062000ed3565b506200047c6200053e60201b60201c565b60008190555050506001600881905550620004ac620004a06200054360201b60201c565b6200054b60201b60201c565b620004bd816200061160201b60201c565b620004ce846200063660201b60201c565b620004df82620006d260201b60201c565b60005b835181101562000533576200051d848281518110620005065762000505620013a7565b5b6020026020010151601b54620006f760201b60201c565b80806200052a9062001405565b915050620004e2565b505050505062001626565b600090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006216200071d60201b60201c565b806013908162000632919062000ed3565b5050565b60005b8151811015620006ce576001600b60008484815181106200065f576200065e620013a7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080620006c59062001405565b91505062000639565b5050565b620006e26200071d60201b60201c565b8060149081620006f3919062000ed3565b5050565b62000719828260405180602001604052806000815250620007ae60201b60201c565b5050565b6200072d6200054360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007536200085f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007a390620014b3565b60405180910390fd5b565b620007c083836200088960201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200085a57600080549050600083820390505b62000809600086838060010194508662000a7060201b60201c565b62000840576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620007ee5781600054146200085757600080fd5b50505b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008054905060008203620008ca576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620008df600084838562000bd160201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200096e8362000950600086600062000bd760201b60201c565b620009618562000c0760201b60201c565b1762000c1760201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811462000a1157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050620009d4565b506000820362000a4d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505062000a6b600084838562000c4260201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000a9e62000c4860201b60201c565b8786866040518563ffffffff1660e01b815260040162000ac2949392919062001543565b6020604051808303816000875af192505050801562000b0157506040513d601f19601f8201168201806040525081019062000afe9190620015f4565b60015b62000b7e573d806000811462000b34576040519150601f19603f3d011682016040523d82523d6000602084013e62000b39565b606091505b50600081510362000b76576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e862000bf686868462000c5060201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000cdb57607f821691505b60208210810362000cf15762000cf062000c93565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d1c565b62000d67868362000d1c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000db462000dae62000da88462000d7f565b62000d89565b62000d7f565b9050919050565b6000819050919050565b62000dd08362000d93565b62000de862000ddf8262000dbb565b84845462000d29565b825550505050565b600090565b62000dff62000df0565b62000e0c81848462000dc5565b505050565b5b8181101562000e345762000e2860008262000df5565b60018101905062000e12565b5050565b601f82111562000e835762000e4d8162000cf7565b62000e588462000d0c565b8101602085101562000e68578190505b62000e8062000e778562000d0c565b83018262000e11565b50505b505050565b600082821c905092915050565b600062000ea86000198460080262000e88565b1980831691505092915050565b600062000ec3838362000e95565b9150826002028217905092915050565b62000ede8262000c59565b67ffffffffffffffff81111562000efa5762000ef962000c64565b5b62000f06825462000cc2565b62000f1382828562000e38565b600060209050601f83116001811462000f4b576000841562000f36578287015190505b62000f42858262000eb5565b86555062000fb2565b601f19841662000f5b8662000cf7565b60005b8281101562000f855784890151825560018201915060208501945060208101905062000f5e565b8683101562000fa5578489015162000fa1601f89168262000e95565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000fef8262000fd3565b810181811067ffffffffffffffff8211171562001011576200101062000c64565b5b80604052505050565b60006200102662000fba565b905062001034828262000fe4565b919050565b600067ffffffffffffffff82111562001057576200105662000c64565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200109a826200106d565b9050919050565b620010ac816200108d565b8114620010b857600080fd5b50565b600081519050620010cc81620010a1565b92915050565b6000620010e9620010e38462001039565b6200101a565b905080838252602082019050602084028301858111156200110f576200110e62001068565b5b835b818110156200113c5780620011278882620010bb565b84526020840193505060208101905062001111565b5050509392505050565b600082601f8301126200115e576200115d62000fce565b5b815162001170848260208601620010d2565b91505092915050565b600080fd5b600067ffffffffffffffff8211156200119c576200119b62000c64565b5b620011a78262000fd3565b9050602081019050919050565b60005b83811015620011d4578082015181840152602081019050620011b7565b60008484015250505050565b6000620011f7620011f1846200117e565b6200101a565b90508281526020810184848401111562001216576200121562001179565b5b62001223848285620011b4565b509392505050565b600082601f83011262001243576200124262000fce565b5b815162001255848260208601620011e0565b91505092915050565b600080600080608085870312156200127b576200127a62000fc4565b5b600085015167ffffffffffffffff8111156200129c576200129b62000fc9565b5b620012aa8782880162001146565b945050602085015167ffffffffffffffff811115620012ce57620012cd62000fc9565b5b620012dc8782880162001146565b935050604085015167ffffffffffffffff8111156200130057620012ff62000fc9565b5b6200130e878288016200122b565b925050606085015167ffffffffffffffff81111562001332576200133162000fc9565b5b62001340878288016200122b565b91505092959194509250565b62001357816200108d565b82525050565b60006040820190506200137460008301856200134c565b6200138360208301846200134c565b9392505050565b6000602082019050620013a160008301846200134c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620014128262000d7f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203620014475762001446620013d6565b5b600182019050919050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200149b60208362001452565b9150620014a88262001463565b602082019050919050565b60006020820190508181036000830152620014ce816200148c565b9050919050565b620014e08162000d7f565b82525050565b600081519050919050565b600082825260208201905092915050565b60006200150f82620014e6565b6200151b8185620014f1565b93506200152d818560208601620011b4565b620015388162000fd3565b840191505092915050565b60006080820190506200155a60008301876200134c565b6200156960208301866200134c565b620015786040830185620014d5565b81810360608301526200158c818462001502565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620015ce8162001597565b8114620015da57600080fd5b50565b600081519050620015ee81620015c3565b92915050565b6000602082840312156200160d576200160c62000fc4565b5b60006200161d84828501620015dd565b91505092915050565b61530f80620016366000396000f3fe6080604052600436106103d95760003560e01c8063715018a6116101fd578063a45ba8e711610118578063d8bd5b09116100ab578063e8a3d4851161007a578063e8a3d48514610e39578063e985e9c514610e64578063ea457d0f14610ea1578063f2fde38b14610eca578063fe86deca14610ef3576103d9565b8063d8bd5b0914610d91578063e0a8085314610dba578063e32b1bf414610de3578063e5b22cc714610e0e576103d9565b8063b88d4fde116100e7578063b88d4fde14610ce2578063c87b56dd14610cfe578063ce77fcc114610d3b578063d5abeb0114610d66576103d9565b8063a45ba8e714610c26578063aed3801514610c51578063b3d28a8d14610c7a578063b47fbd1714610cb7576103d9565b80639212960a116101905780639b19251a1161015f5780639b19251a14610b79578063a035b1fe14610bb6578063a0712d6814610be1578063a22cb46514610bfd576103d9565b80639212960a14610abf578063938e3d7b14610ae857806395d89b4114610b11578063963c417714610b3c576103d9565b80638aa37268116101cc5780638aa3726814610a245780638ad433ac14610a4f5780638da5cb5b14610a6b57806391b7f5ed14610a96576103d9565b8063715018a61461099257806379fcb984146109a95780637e4d7d33146109d25780637ec4a659146109fb576103d9565b80634148a433116102f85780634fdd43cb1161028b57806362b99ad41161025a57806362b99ad41461089957806362d7f2c2146108c45780636352211e146108ed57806368abfea91461092a57806370a0823114610955576103d9565b80634fdd43cb146107ef57806351830227146108185780635503a0e8146108435780635c975abb1461086e576103d9565b8063438b6300116102c7578063438b63001461073357806346def109146107705780634d1106aa1461079b5780634df3c52f146107c4576103d9565b80634148a4331461069a57806341f43434146106c357806342842e0e146106ee57806342966c681461070a576103d9565b806316ba10e01161037057806327198be91161033f57806327198be9146105f257806336ee1d8d1461061d5780633ccfd60b1461065a5780633ee212f514610671576103d9565b806316ba10e01461055957806316c38b3c1461058257806318160ddd146105ab57806323b872dd146105d6576103d9565b8063095ea7b3116103ac578063095ea7b3146104ae5780630b30df00146104ca5780630e82b63d146104f35780631015805b1461051c576103d9565b806301ffc9a7146103de57806303d8acef1461041b57806306fdde0314610446578063081812fc14610471575b600080fd5b3480156103ea57600080fd5b5061040560048036038101906104009190613bee565b610f1e565b6040516104129190613c36565b60405180910390f35b34801561042757600080fd5b50610430610fb0565b60405161043d9190613c6a565b60405180910390f35b34801561045257600080fd5b5061045b610fb6565b6040516104689190613d15565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190613d63565b611048565b6040516104a59190613dd1565b60405180910390f35b6104c860048036038101906104c39190613e18565b6110c7565b005b3480156104d657600080fd5b506104f160048036038101906104ec9190613f8d565b6110e0565b005b3480156104ff57600080fd5b5061051a60048036038101906105159190613d63565b6110fb565b005b34801561052857600080fd5b50610543600480360381019061053e9190613fd6565b61110d565b6040516105509190613c6a565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b9190613f8d565b611125565b005b34801561058e57600080fd5b506105a960048036038101906105a4919061402f565b611140565b005b3480156105b757600080fd5b506105c0611165565b6040516105cd9190613c6a565b60405180910390f35b6105f060048036038101906105eb919061405c565b61117c565b005b3480156105fe57600080fd5b506106076111cb565b6040516106149190613c6a565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f9190613d63565b6111d1565b6040516106519190613c36565b60405180910390f35b34801561066657600080fd5b5061066f6111f1565b005b34801561067d57600080fd5b5061069860048036038101906106939190613d63565b6112ce565b005b3480156106a657600080fd5b506106c160048036038101906106bc9190613d63565b6112e0565b005b3480156106cf57600080fd5b506106d861135f565b6040516106e5919061410e565b60405180910390f35b6107086004803603810190610703919061405c565b611371565b005b34801561071657600080fd5b50610731600480360381019061072c9190613d63565b6113c0565b005b34801561073f57600080fd5b5061075a60048036038101906107559190613fd6565b6113ce565b60405161076791906141e7565b60405180910390f35b34801561077c57600080fd5b506107856114d3565b6040516107929190613d15565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190613d63565b611561565b005b3480156107d057600080fd5b506107d96115e0565b6040516107e69190613c6a565b60405180910390f35b3480156107fb57600080fd5b5061081660048036038101906108119190613f8d565b6115e6565b005b34801561082457600080fd5b5061082d611601565b60405161083a9190613c36565b60405180910390f35b34801561084f57600080fd5b50610858611614565b6040516108659190613d15565b60405180910390f35b34801561087a57600080fd5b506108836116a2565b6040516108909190613c36565b60405180910390f35b3480156108a557600080fd5b506108ae6116b5565b6040516108bb9190613d15565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190613f8d565b611743565b005b3480156108f957600080fd5b50610914600480360381019061090f9190613d63565b61175e565b6040516109219190613dd1565b60405180910390f35b34801561093657600080fd5b5061093f611770565b60405161094c9190613c36565b60405180910390f35b34801561096157600080fd5b5061097c60048036038101906109779190613fd6565b611783565b6040516109899190613c6a565b60405180910390f35b34801561099e57600080fd5b506109a761183b565b005b3480156109b557600080fd5b506109d060048036038101906109cb9190613d63565b61184f565b005b3480156109de57600080fd5b506109f960048036038101906109f49190614269565b611861565b005b348015610a0757600080fd5b50610a226004803603810190610a1d9190613f8d565b6118b4565b005b348015610a3057600080fd5b50610a396118cf565b604051610a469190613d15565b60405180910390f35b610a696004803603810190610a649190613d63565b61195d565b005b348015610a7757600080fd5b50610a80611c80565b604051610a8d9190613dd1565b60405180910390f35b348015610aa257600080fd5b50610abd6004803603810190610ab89190613d63565b611caa565b005b348015610acb57600080fd5b50610ae66004803603810190610ae1919061430c565b611cbc565b005b348015610af457600080fd5b50610b0f6004803603810190610b0a9190613f8d565b611d69565b005b348015610b1d57600080fd5b50610b26611d84565b604051610b339190613d15565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e9190613fd6565b611e16565b604051610b709190613c6a565b60405180910390f35b348015610b8557600080fd5b50610ba06004803603810190610b9b9190613fd6565b611e2e565b604051610bad9190613c36565b60405180910390f35b348015610bc257600080fd5b50610bcb611e4e565b604051610bd89190613c6a565b60405180910390f35b610bfb6004803603810190610bf69190613d63565b611e54565b005b348015610c0957600080fd5b50610c246004803603810190610c1f9190614359565b6120eb565b005b348015610c3257600080fd5b50610c3b612104565b604051610c489190613d15565b60405180910390f35b348015610c5d57600080fd5b50610c786004803603810190610c739190614399565b612192565b005b348015610c8657600080fd5b50610ca16004803603810190610c9c9190613fd6565b61225c565b604051610cae9190613d15565b60405180910390f35b348015610cc357600080fd5b50610ccc6122fc565b604051610cd99190613c6a565b60405180910390f35b610cfc6004803603810190610cf7919061447a565b612302565b005b348015610d0a57600080fd5b50610d256004803603810190610d209190613d63565b612353565b604051610d329190613d15565b60405180910390f35b348015610d4757600080fd5b50610d50612537565b604051610d5d9190613c6a565b60405180910390f35b348015610d7257600080fd5b50610d7b61258b565b604051610d889190613c6a565b60405180910390f35b348015610d9d57600080fd5b50610db86004803603810190610db39190613d63565b612591565b005b348015610dc657600080fd5b50610de16004803603810190610ddc919061402f565b6125a3565b005b348015610def57600080fd5b50610df86125c8565b604051610e059190613c6a565b60405180910390f35b348015610e1a57600080fd5b50610e2361261c565b604051610e309190613d15565b60405180910390f35b348015610e4557600080fd5b50610e4e6126aa565b604051610e5b9190613d15565b60405180910390f35b348015610e7057600080fd5b50610e8b6004803603810190610e8691906144fd565b61273c565b604051610e989190613c36565b60405180910390f35b348015610ead57600080fd5b50610ec86004803603810190610ec3919061402f565b6127d0565b005b348015610ed657600080fd5b50610ef16004803603810190610eec9190613fd6565b6127f5565b005b348015610eff57600080fd5b50610f08612878565b604051610f159190613c6a565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f7957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610fa95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b601a5481565b606060028054610fc59061456c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff19061456c565b801561103e5780601f106110135761010080835404028352916020019161103e565b820191906000526020600020905b81548152906001019060200180831161102157829003601f168201915b5050505050905090565b60006110538261287e565b611089576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816110d1816128dd565b6110db83836129da565b505050565b6110e8612b1e565b80601190816110f7919061473f565b5050565b611103612b1e565b8060188190555050565b600d6020528060005260406000206000915090505481565b61112d612b1e565b806010908161113c919061473f565b5050565b611148612b1e565b80601c60016101000a81548160ff02191690831515021790555050565b600061116f612b9c565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111ba576111b9336128dd565b5b6111c5848484612ba1565b50505050565b601b5481565b600a6020528060005260406000206000915054906101000a900460ff1681565b6111f9612b1e565b60026008540361123e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112359061485d565b60405180910390fd5b60026008819055506000611250611c80565b73ffffffffffffffffffffffffffffffffffffffff1647604051611273906148ae565b60006040518083038185875af1925050503d80600081146112b0576040519150601f19603f3d011682016040523d82523d6000602084013e6112b5565b606091505b50509050806112c357600080fd5b506001600881905550565b6112d6612b1e565b8060178190555050565b6112e8612b1e565b6112f18161287e565b611330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132790614935565b60405180910390fd5b6000600a600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113af576113ae336128dd565b5b6113ba848484612ec3565b50505050565b6113cb816001612ee3565b50565b606060006113db83611783565b905060008167ffffffffffffffff8111156113f9576113f8613e62565b5b6040519080825280602002602001820160405280156114275781602001602082028036833780820191505090505b5090506000805b838110801561143f57506016548211155b156114c757600061144f8361175e565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114b3578284838151811061149857611497614955565b5b60200260200101818152505081806114af906149b3565b9250505b82806114be906149b3565b9350505061142e565b82945050505050919050565b601180546114e09061456c565b80601f016020809104026020016040519081016040528092919081815260200182805461150c9061456c565b80156115595780601f1061152e57610100808354040283529160200191611559565b820191906000526020600020905b81548152906001019060200180831161153c57829003601f168201915b505050505081565b611569612b1e565b6115728161287e565b6115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890614935565b60405180910390fd5b6001600a600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60175481565b6115ee612b1e565b80601390816115fd919061473f565b5050565b601c60029054906101000a900460ff1681565b601080546116219061456c565b80601f016020809104026020016040519081016040528092919081815260200182805461164d9061456c565b801561169a5780601f1061166f5761010080835404028352916020019161169a565b820191906000526020600020905b81548152906001019060200180831161167d57829003601f168201915b505050505081565b601c60019054906101000a900460ff1681565b600f80546116c29061456c565b80601f01602080910402602001604051908101604052809291908181526020018280546116ee9061456c565b801561173b5780601f106117105761010080835404028352916020019161173b565b820191906000526020600020905b81548152906001019060200180831161171e57829003601f168201915b505050505081565b61174b612b1e565b806012908161175a919061473f565b5050565b600061176982613135565b9050919050565b601c60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117ea576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611843612b1e565b61184d6000613201565b565b611857612b1e565b80601a8190555050565b8181600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002091826118af929190614a06565b505050565b6118bc612b1e565b80600f90816118cb919061473f565b5050565b601480546118dc9061456c565b80601f01602080910402602001604051908101604052809291908181526020018280546119089061456c565b80156119555780601f1061192a57610100808354040283529160200191611955565b820191906000526020600020905b81548152906001019060200180831161193857829003601f168201915b505050505081565b80600081611969611165565b6119739190614ad6565b905060008211801561198757506017548211155b6119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd90614b7c565b60405180910390fd5b60195482600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a149190614ad6565b1115611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90614c0e565b60405180910390fd5b601654811115611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190614c7a565b60405180910390fd5b601c60009054906101000a900460ff1615611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae190614d0c565b60405180910390fd5b81601554611af89190614d2c565b341015611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190614dba565b60405180910390fd5b600260085403611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b769061485d565b60405180910390fd5b6002600881905550600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a90614e26565b60405180910390fd5b82600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c629190614ad6565b92505081905550611c7333846132c7565b6001600881905550505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611cb2612b1e565b8060158190555050565b611cc4612b1e565b60005b82829050811015611d64576001600b6000858585818110611ceb57611cea614955565b5b9050602002016020810190611d009190613fd6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d5c906149b3565b915050611cc7565b505050565b611d71612b1e565b8060149081611d80919061473f565b5050565b606060038054611d939061456c565b80601f0160208091040260200160405190810160405280929190818152602001828054611dbf9061456c565b8015611e0c5780601f10611de157610100808354040283529160200191611e0c565b820191906000526020600020905b815481529060010190602001808311611def57829003601f168201915b5050505050905090565b600c6020528060005260406000206000915090505481565b600b6020528060005260406000206000915054906101000a900460ff1681565b60155481565b80600081611e60611165565b611e6a9190614ad6565b9050600082118015611e7e57506018548211155b611ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb490614b7c565b60405180910390fd5b601a5482600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f0b9190614ad6565b1115611f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4390614eb8565b60405180910390fd5b601654811115611f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8890614c7a565b60405180910390fd5b601c60019054906101000a900460ff1615611fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd890614d0c565b60405180910390fd5b81601554611fef9190614d2c565b341015612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890614dba565b60405180910390fd5b600260085403612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d9061485d565b60405180910390fd5b600260088190555082600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120cd9190614ad6565b925050819055506120de33846132c7565b6001600881905550505050565b816120f5816128dd565b6120ff83836132e5565b505050565b601380546121119061456c565b80601f016020809104026020016040519081016040528092919081815260200182805461213d9061456c565b801561218a5780601f1061215f5761010080835404028352916020019161218a565b820191906000526020600020905b81548152906001019060200180831161216d57829003601f168201915b505050505081565b8160008161219e611165565b6121a89190614ad6565b90506016548111156121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e690614c7a565b60405180910390fd5b6121f7612b1e565b60026008540361223c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122339061485d565b60405180910390fd5b600260088190555061224e83856132c7565b600160088190555050505050565b600e602052806000526040600020600091509050805461227b9061456c565b80601f01602080910402602001604051908101604052809291908181526020018280546122a79061456c565b80156122f45780601f106122c9576101008083540402835291602001916122f4565b820191906000526020600020905b8154815290600101906020018083116122d757829003601f168201915b505050505081565b60195481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146123405761233f336128dd565b5b61234c858585856133f0565b5050505050565b606061235e8261287e565b61239d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239490614935565b60405180910390fd5b60001515601c60029054906101000a900460ff1615150361244a57601380546123c59061456c565b80601f01602080910402602001604051908101604052809291908181526020018280546123f19061456c565b801561243e5780601f106124135761010080835404028352916020019161243e565b820191906000526020600020905b81548152906001019060200180831161242157829003601f168201915b50505050509050612532565b60001515600a600084815260200190815260200160002060009054906101000a900460ff161515036124d6576000612480613463565b905060008151116124a057604051806020016040528060008152506124ce565b806124aa846134f5565b60106040516020016124be93929190614f97565b6040516020818303038152906040525b915050612532565b60006124e0613655565b90506000815111612500576040518060200160405280600081525061252e565b8061250a846134f5565b601260405160200161251e93929190614f97565b6040516020818303038152906040525b9150505b919050565b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601a546125869190614fc8565b905090565b60165481565b612599612b1e565b8060198190555050565b6125ab612b1e565b80601c60026101000a81548160ff02191690831515021790555050565b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546019546126179190614fc8565b905090565b601280546126299061456c565b80601f01602080910402602001604051908101604052809291908181526020018280546126559061456c565b80156126a25780601f10612677576101008083540402835291602001916126a2565b820191906000526020600020905b81548152906001019060200180831161268557829003601f168201915b505050505081565b6060601480546126b99061456c565b80601f01602080910402602001604051908101604052809291908181526020018280546126e59061456c565b80156127325780601f1061270757610100808354040283529160200191612732565b820191906000526020600020905b81548152906001019060200180831161271557829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127d8612b1e565b80601c60006101000a81548160ff02191690831515021790555050565b6127fd612b1e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361286c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128639061506e565b60405180910390fd5b61287581613201565b50565b60185481565b600081612889612b9c565b11158015612898575060005482105b80156128d6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156129d7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161295492919061508e565b602060405180830381865afa158015612971573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061299591906150cc565b6129d657806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016129cd9190613dd1565b60405180910390fd5b5b50565b60006129e58261175e565b90508073ffffffffffffffffffffffffffffffffffffffff16612a066136e7565b73ffffffffffffffffffffffffffffffffffffffff1614612a6957612a3281612a2d6136e7565b61273c565b612a68576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612b266136ef565b73ffffffffffffffffffffffffffffffffffffffff16612b44611c80565b73ffffffffffffffffffffffffffffffffffffffff1614612b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9190615145565b60405180910390fd5b565b600090565b6000612bac82613135565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612c13576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612c1f846136f7565b91509150612c358187612c306136e7565b61371e565b612c8157612c4a86612c456136e7565b61273c565b612c80576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612ce7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cf48686866001613762565b8015612cff57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612dcd85612da9888887613768565b7c020000000000000000000000000000000000000000000000000000000017613790565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612e535760006001850190506000600460008381526020019081526020016000205403612e51576000548114612e50578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ebb86868660016137bb565b505050505050565b612ede83838360405180602001604052806000815250612302565b505050565b6000612eee83613135565b90506000819050600080612f01866136f7565b915091508415612f6a57612f1d8184612f186136e7565b61371e565b612f6957612f3283612f2d6136e7565b61273c565b612f68576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612f78836000886001613762565b8015612f8357600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061302b83612fe885600088613768565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717613790565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036130b157600060018701905060006004600083815260200190815260200160002054036130af5760005481146130ae578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461311b8360008860016137bb565b600160008154809291906001019190505550505050505050565b60008082905080613144612b9c565b116131ca576000548110156131c95760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036131c7575b600081036131bd576004600083600190039350838152602001908152602001600020549050613193565b80925050506131fc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6132e18282604051806020016040528060008152506137c1565b5050565b80600760006132f26136e7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661339f6136e7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516133e49190613c36565b60405180910390a35050565b6133fb84848461117c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461345d576134268484848461385e565b61345c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600f80546134729061456c565b80601f016020809104026020016040519081016040528092919081815260200182805461349e9061456c565b80156134eb5780601f106134c0576101008083540402835291602001916134eb565b820191906000526020600020905b8154815290600101906020018083116134ce57829003601f168201915b5050505050905090565b60606000820361353c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613650565b600082905060005b6000821461356e578080613557906149b3565b915050600a826135679190615194565b9150613544565b60008167ffffffffffffffff81111561358a57613589613e62565b5b6040519080825280601f01601f1916602001820160405280156135bc5781602001600182028036833780820191505090505b5090505b60008514613649576001826135d59190614fc8565b9150600a856135e491906151c5565b60306135f09190614ad6565b60f81b81838151811061360657613605614955565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136429190615194565b94506135c0565b8093505050505b919050565b6060601180546136649061456c565b80601f01602080910402602001604051908101604052809291908181526020018280546136909061456c565b80156136dd5780601f106136b2576101008083540402835291602001916136dd565b820191906000526020600020905b8154815290600101906020018083116136c057829003601f168201915b5050505050905090565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861377f8686846139ae565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6137cb83836139b7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461385957600080549050600083820390505b61380b600086838060010194508661385e565b613841576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106137f857816000541461385657600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026138846136e7565b8786866040518563ffffffff1660e01b81526004016138a6949392919061524b565b6020604051808303816000875af19250505080156138e257506040513d601f19601f820116820180604052508101906138df91906152ac565b60015b61395b573d8060008114613912576040519150601f19603f3d011682016040523d82523d6000602084013e613917565b606091505b506000815103613953576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036139f7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613a046000848385613762565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613a7b83613a6c6000866000613768565b613a7585613b72565b17613790565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613b1c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613ae1565b5060008203613b57576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613b6d60008483856137bb565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613bcb81613b96565b8114613bd657600080fd5b50565b600081359050613be881613bc2565b92915050565b600060208284031215613c0457613c03613b8c565b5b6000613c1284828501613bd9565b91505092915050565b60008115159050919050565b613c3081613c1b565b82525050565b6000602082019050613c4b6000830184613c27565b92915050565b6000819050919050565b613c6481613c51565b82525050565b6000602082019050613c7f6000830184613c5b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cbf578082015181840152602081019050613ca4565b60008484015250505050565b6000601f19601f8301169050919050565b6000613ce782613c85565b613cf18185613c90565b9350613d01818560208601613ca1565b613d0a81613ccb565b840191505092915050565b60006020820190508181036000830152613d2f8184613cdc565b905092915050565b613d4081613c51565b8114613d4b57600080fd5b50565b600081359050613d5d81613d37565b92915050565b600060208284031215613d7957613d78613b8c565b5b6000613d8784828501613d4e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613dbb82613d90565b9050919050565b613dcb81613db0565b82525050565b6000602082019050613de66000830184613dc2565b92915050565b613df581613db0565b8114613e0057600080fd5b50565b600081359050613e1281613dec565b92915050565b60008060408385031215613e2f57613e2e613b8c565b5b6000613e3d85828601613e03565b9250506020613e4e85828601613d4e565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e9a82613ccb565b810181811067ffffffffffffffff82111715613eb957613eb8613e62565b5b80604052505050565b6000613ecc613b82565b9050613ed88282613e91565b919050565b600067ffffffffffffffff821115613ef857613ef7613e62565b5b613f0182613ccb565b9050602081019050919050565b82818337600083830152505050565b6000613f30613f2b84613edd565b613ec2565b905082815260208101848484011115613f4c57613f4b613e5d565b5b613f57848285613f0e565b509392505050565b600082601f830112613f7457613f73613e58565b5b8135613f84848260208601613f1d565b91505092915050565b600060208284031215613fa357613fa2613b8c565b5b600082013567ffffffffffffffff811115613fc157613fc0613b91565b5b613fcd84828501613f5f565b91505092915050565b600060208284031215613fec57613feb613b8c565b5b6000613ffa84828501613e03565b91505092915050565b61400c81613c1b565b811461401757600080fd5b50565b60008135905061402981614003565b92915050565b60006020828403121561404557614044613b8c565b5b60006140538482850161401a565b91505092915050565b60008060006060848603121561407557614074613b8c565b5b600061408386828701613e03565b935050602061409486828701613e03565b92505060406140a586828701613d4e565b9150509250925092565b6000819050919050565b60006140d46140cf6140ca84613d90565b6140af565b613d90565b9050919050565b60006140e6826140b9565b9050919050565b60006140f8826140db565b9050919050565b614108816140ed565b82525050565b600060208201905061412360008301846140ff565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61415e81613c51565b82525050565b60006141708383614155565b60208301905092915050565b6000602082019050919050565b600061419482614129565b61419e8185614134565b93506141a983614145565b8060005b838110156141da5781516141c18882614164565b97506141cc8361417c565b9250506001810190506141ad565b5085935050505092915050565b600060208201905081810360008301526142018184614189565b905092915050565b600080fd5b600080fd5b60008083601f84011261422957614228613e58565b5b8235905067ffffffffffffffff81111561424657614245614209565b5b6020830191508360018202830111156142625761426161420e565b5b9250929050565b600080602083850312156142805761427f613b8c565b5b600083013567ffffffffffffffff81111561429e5761429d613b91565b5b6142aa85828601614213565b92509250509250929050565b60008083601f8401126142cc576142cb613e58565b5b8235905067ffffffffffffffff8111156142e9576142e8614209565b5b6020830191508360208202830111156143055761430461420e565b5b9250929050565b6000806020838503121561432357614322613b8c565b5b600083013567ffffffffffffffff81111561434157614340613b91565b5b61434d858286016142b6565b92509250509250929050565b600080604083850312156143705761436f613b8c565b5b600061437e85828601613e03565b925050602061438f8582860161401a565b9150509250929050565b600080604083850312156143b0576143af613b8c565b5b60006143be85828601613d4e565b92505060206143cf85828601613e03565b9150509250929050565b600067ffffffffffffffff8211156143f4576143f3613e62565b5b6143fd82613ccb565b9050602081019050919050565b600061441d614418846143d9565b613ec2565b90508281526020810184848401111561443957614438613e5d565b5b614444848285613f0e565b509392505050565b600082601f83011261446157614460613e58565b5b813561447184826020860161440a565b91505092915050565b6000806000806080858703121561449457614493613b8c565b5b60006144a287828801613e03565b94505060206144b387828801613e03565b93505060406144c487828801613d4e565b925050606085013567ffffffffffffffff8111156144e5576144e4613b91565b5b6144f18782880161444c565b91505092959194509250565b6000806040838503121561451457614513613b8c565b5b600061452285828601613e03565b925050602061453385828601613e03565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061458457607f821691505b6020821081036145975761459661453d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026145ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826145c2565b61460986836145c2565b95508019841693508086168417925050509392505050565b600061463c61463761463284613c51565b6140af565b613c51565b9050919050565b6000819050919050565b61465683614621565b61466a61466282614643565b8484546145cf565b825550505050565b600090565b61467f614672565b61468a81848461464d565b505050565b5b818110156146ae576146a3600082614677565b600181019050614690565b5050565b601f8211156146f3576146c48161459d565b6146cd846145b2565b810160208510156146dc578190505b6146f06146e8856145b2565b83018261468f565b50505b505050565b600082821c905092915050565b6000614716600019846008026146f8565b1980831691505092915050565b600061472f8383614705565b9150826002028217905092915050565b61474882613c85565b67ffffffffffffffff81111561476157614760613e62565b5b61476b825461456c565b6147768282856146b2565b600060209050601f8311600181146147a95760008415614797578287015190505b6147a18582614723565b865550614809565b601f1984166147b78661459d565b60005b828110156147df578489015182556001820191506020850194506020810190506147ba565b868310156147fc57848901516147f8601f891682614705565b8355505b6001600288020188555050505b505050505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614847601f83613c90565b915061485282614811565b602082019050919050565b600060208201905081810360008301526148768161483a565b9050919050565b600081905092915050565b50565b600061489860008361487d565b91506148a382614888565b600082019050919050565b60006148b98261488b565b9150819050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061491f602f83613c90565b915061492a826148c3565b604082019050919050565b6000602082019050818103600083015261494e81614912565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149be82613c51565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036149f0576149ef614984565b5b600182019050919050565b600082905092915050565b614a1083836149fb565b67ffffffffffffffff811115614a2957614a28613e62565b5b614a33825461456c565b614a3e8282856146b2565b6000601f831160018114614a6d5760008415614a5b578287013590505b614a658582614723565b865550614acd565b601f198416614a7b8661459d565b60005b82811015614aa357848901358255600182019150602085019450602081019050614a7e565b86831015614ac05784890135614abc601f891682614705565b8355505b6001600288020188555050505b50505050505050565b6000614ae182613c51565b9150614aec83613c51565b9250828201905080821115614b0457614b03614984565b5b92915050565b7f596f75206861766520657863656564656420746865206c696d6974206f66206d60008201527f696e747320706572207472616e73616374696f6e000000000000000000000000602082015250565b6000614b66603483613c90565b9150614b7182614b0a565b604082019050919050565b60006020820190508181036000830152614b9581614b59565b9050919050565b7f54686973207472616e73616374696f6e206578636565647320796f757220776860008201527f6974656c697374206d696e74206c696d69740000000000000000000000000000602082015250565b6000614bf8603283613c90565b9150614c0382614b9c565b604082019050919050565b60006020820190508181036000830152614c2781614beb565b9050919050565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b6000614c64600883613c90565b9150614c6f82614c2e565b602082019050919050565b60006020820190508181036000830152614c9381614c57565b9050919050565b7f4d696e74696e67206973206e6f742063757272656e746c7920616c6c6f77656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cf6602183613c90565b9150614d0182614c9a565b604082019050919050565b60006020820190508181036000830152614d2581614ce9565b9050919050565b6000614d3782613c51565b9150614d4283613c51565b9250828202614d5081613c51565b91508282048414831517614d6757614d66614984565b5b5092915050565b7f596f7520646964206e6f742073656e6420656e6f756768204554480000000000600082015250565b6000614da4601b83613c90565b9150614daf82614d6e565b602082019050919050565b60006020820190508181036000830152614dd381614d97565b9050919050565b7f596f7520617265206e6f74206f6e20746865206c697374000000000000000000600082015250565b6000614e10601783613c90565b9150614e1b82614dda565b602082019050919050565b60006020820190508181036000830152614e3f81614e03565b9050919050565b7f596f75206861766520616c7265616479206d696e74656420796f7572206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ea2602283613c90565b9150614ead82614e46565b604082019050919050565b60006020820190508181036000830152614ed181614e95565b9050919050565b600081905092915050565b6000614eee82613c85565b614ef88185614ed8565b9350614f08818560208601613ca1565b80840191505092915050565b60008154614f218161456c565b614f2b8186614ed8565b94506001821660008114614f465760018114614f5b57614f8e565b60ff1983168652811515820286019350614f8e565b614f648561459d565b60005b83811015614f8657815481890152600182019150602081019050614f67565b838801955050505b50505092915050565b6000614fa38286614ee3565b9150614faf8285614ee3565b9150614fbb8284614f14565b9150819050949350505050565b6000614fd382613c51565b9150614fde83613c51565b9250828203905081811115614ff657614ff5614984565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615058602683613c90565b915061506382614ffc565b604082019050919050565b600060208201905081810360008301526150878161504b565b9050919050565b60006040820190506150a36000830185613dc2565b6150b06020830184613dc2565b9392505050565b6000815190506150c681614003565b92915050565b6000602082840312156150e2576150e1613b8c565b5b60006150f0848285016150b7565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061512f602083613c90565b915061513a826150f9565b602082019050919050565b6000602082019050818103600083015261515e81615122565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061519f82613c51565b91506151aa83613c51565b9250826151ba576151b9615165565b5b828204905092915050565b60006151d082613c51565b91506151db83613c51565b9250826151eb576151ea615165565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061521d826151f6565b6152278185615201565b9350615237818560208601613ca1565b61524081613ccb565b840191505092915050565b60006080820190506152606000830187613dc2565b61526d6020830186613dc2565b61527a6040830185613c5b565b818103606083015261528c8184615212565b905095945050505050565b6000815190506152a681613bc2565b92915050565b6000602082840312156152c2576152c1613b8c565b5b60006152d084828501615297565b9150509291505056fea2646970667358221220ef53bbd417ca933ac6c145d318111bf64aea46082194bd283ffad0640236e2c364736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000005000000000000000000000000dc9eef462bd661d5a14146dfa05f5cdb6db5fecf00000000000000000000000046052da6baa43d8bcc0324c22249628ee19442410000000000000000000000006e6a95f26dd2818abeef71c7212b48afa9aabd38000000000000000000000000a47407884255afb0262651c3512391765ec2e86c00000000000000000000000070997970c51812dc3a010c7d01b50e0d17dc79c80000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a47407884255afb0262651c3512391765ec2e86c0000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d575742674e6e55596e6e656136696e76684a485559563948736242436d45794e5a68374c4d4378654468573300000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d4e6d3964796b65695452414a6a3841426b7a564465554564616771375533636a63476938534468694a3259730000000000000000000000

Deployed Bytecode

0x6080604052600436106103d95760003560e01c8063715018a6116101fd578063a45ba8e711610118578063d8bd5b09116100ab578063e8a3d4851161007a578063e8a3d48514610e39578063e985e9c514610e64578063ea457d0f14610ea1578063f2fde38b14610eca578063fe86deca14610ef3576103d9565b8063d8bd5b0914610d91578063e0a8085314610dba578063e32b1bf414610de3578063e5b22cc714610e0e576103d9565b8063b88d4fde116100e7578063b88d4fde14610ce2578063c87b56dd14610cfe578063ce77fcc114610d3b578063d5abeb0114610d66576103d9565b8063a45ba8e714610c26578063aed3801514610c51578063b3d28a8d14610c7a578063b47fbd1714610cb7576103d9565b80639212960a116101905780639b19251a1161015f5780639b19251a14610b79578063a035b1fe14610bb6578063a0712d6814610be1578063a22cb46514610bfd576103d9565b80639212960a14610abf578063938e3d7b14610ae857806395d89b4114610b11578063963c417714610b3c576103d9565b80638aa37268116101cc5780638aa3726814610a245780638ad433ac14610a4f5780638da5cb5b14610a6b57806391b7f5ed14610a96576103d9565b8063715018a61461099257806379fcb984146109a95780637e4d7d33146109d25780637ec4a659146109fb576103d9565b80634148a433116102f85780634fdd43cb1161028b57806362b99ad41161025a57806362b99ad41461089957806362d7f2c2146108c45780636352211e146108ed57806368abfea91461092a57806370a0823114610955576103d9565b80634fdd43cb146107ef57806351830227146108185780635503a0e8146108435780635c975abb1461086e576103d9565b8063438b6300116102c7578063438b63001461073357806346def109146107705780634d1106aa1461079b5780634df3c52f146107c4576103d9565b80634148a4331461069a57806341f43434146106c357806342842e0e146106ee57806342966c681461070a576103d9565b806316ba10e01161037057806327198be91161033f57806327198be9146105f257806336ee1d8d1461061d5780633ccfd60b1461065a5780633ee212f514610671576103d9565b806316ba10e01461055957806316c38b3c1461058257806318160ddd146105ab57806323b872dd146105d6576103d9565b8063095ea7b3116103ac578063095ea7b3146104ae5780630b30df00146104ca5780630e82b63d146104f35780631015805b1461051c576103d9565b806301ffc9a7146103de57806303d8acef1461041b57806306fdde0314610446578063081812fc14610471575b600080fd5b3480156103ea57600080fd5b5061040560048036038101906104009190613bee565b610f1e565b6040516104129190613c36565b60405180910390f35b34801561042757600080fd5b50610430610fb0565b60405161043d9190613c6a565b60405180910390f35b34801561045257600080fd5b5061045b610fb6565b6040516104689190613d15565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190613d63565b611048565b6040516104a59190613dd1565b60405180910390f35b6104c860048036038101906104c39190613e18565b6110c7565b005b3480156104d657600080fd5b506104f160048036038101906104ec9190613f8d565b6110e0565b005b3480156104ff57600080fd5b5061051a60048036038101906105159190613d63565b6110fb565b005b34801561052857600080fd5b50610543600480360381019061053e9190613fd6565b61110d565b6040516105509190613c6a565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b9190613f8d565b611125565b005b34801561058e57600080fd5b506105a960048036038101906105a4919061402f565b611140565b005b3480156105b757600080fd5b506105c0611165565b6040516105cd9190613c6a565b60405180910390f35b6105f060048036038101906105eb919061405c565b61117c565b005b3480156105fe57600080fd5b506106076111cb565b6040516106149190613c6a565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f9190613d63565b6111d1565b6040516106519190613c36565b60405180910390f35b34801561066657600080fd5b5061066f6111f1565b005b34801561067d57600080fd5b5061069860048036038101906106939190613d63565b6112ce565b005b3480156106a657600080fd5b506106c160048036038101906106bc9190613d63565b6112e0565b005b3480156106cf57600080fd5b506106d861135f565b6040516106e5919061410e565b60405180910390f35b6107086004803603810190610703919061405c565b611371565b005b34801561071657600080fd5b50610731600480360381019061072c9190613d63565b6113c0565b005b34801561073f57600080fd5b5061075a60048036038101906107559190613fd6565b6113ce565b60405161076791906141e7565b60405180910390f35b34801561077c57600080fd5b506107856114d3565b6040516107929190613d15565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190613d63565b611561565b005b3480156107d057600080fd5b506107d96115e0565b6040516107e69190613c6a565b60405180910390f35b3480156107fb57600080fd5b5061081660048036038101906108119190613f8d565b6115e6565b005b34801561082457600080fd5b5061082d611601565b60405161083a9190613c36565b60405180910390f35b34801561084f57600080fd5b50610858611614565b6040516108659190613d15565b60405180910390f35b34801561087a57600080fd5b506108836116a2565b6040516108909190613c36565b60405180910390f35b3480156108a557600080fd5b506108ae6116b5565b6040516108bb9190613d15565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190613f8d565b611743565b005b3480156108f957600080fd5b50610914600480360381019061090f9190613d63565b61175e565b6040516109219190613dd1565b60405180910390f35b34801561093657600080fd5b5061093f611770565b60405161094c9190613c36565b60405180910390f35b34801561096157600080fd5b5061097c60048036038101906109779190613fd6565b611783565b6040516109899190613c6a565b60405180910390f35b34801561099e57600080fd5b506109a761183b565b005b3480156109b557600080fd5b506109d060048036038101906109cb9190613d63565b61184f565b005b3480156109de57600080fd5b506109f960048036038101906109f49190614269565b611861565b005b348015610a0757600080fd5b50610a226004803603810190610a1d9190613f8d565b6118b4565b005b348015610a3057600080fd5b50610a396118cf565b604051610a469190613d15565b60405180910390f35b610a696004803603810190610a649190613d63565b61195d565b005b348015610a7757600080fd5b50610a80611c80565b604051610a8d9190613dd1565b60405180910390f35b348015610aa257600080fd5b50610abd6004803603810190610ab89190613d63565b611caa565b005b348015610acb57600080fd5b50610ae66004803603810190610ae1919061430c565b611cbc565b005b348015610af457600080fd5b50610b0f6004803603810190610b0a9190613f8d565b611d69565b005b348015610b1d57600080fd5b50610b26611d84565b604051610b339190613d15565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e9190613fd6565b611e16565b604051610b709190613c6a565b60405180910390f35b348015610b8557600080fd5b50610ba06004803603810190610b9b9190613fd6565b611e2e565b604051610bad9190613c36565b60405180910390f35b348015610bc257600080fd5b50610bcb611e4e565b604051610bd89190613c6a565b60405180910390f35b610bfb6004803603810190610bf69190613d63565b611e54565b005b348015610c0957600080fd5b50610c246004803603810190610c1f9190614359565b6120eb565b005b348015610c3257600080fd5b50610c3b612104565b604051610c489190613d15565b60405180910390f35b348015610c5d57600080fd5b50610c786004803603810190610c739190614399565b612192565b005b348015610c8657600080fd5b50610ca16004803603810190610c9c9190613fd6565b61225c565b604051610cae9190613d15565b60405180910390f35b348015610cc357600080fd5b50610ccc6122fc565b604051610cd99190613c6a565b60405180910390f35b610cfc6004803603810190610cf7919061447a565b612302565b005b348015610d0a57600080fd5b50610d256004803603810190610d209190613d63565b612353565b604051610d329190613d15565b60405180910390f35b348015610d4757600080fd5b50610d50612537565b604051610d5d9190613c6a565b60405180910390f35b348015610d7257600080fd5b50610d7b61258b565b604051610d889190613c6a565b60405180910390f35b348015610d9d57600080fd5b50610db86004803603810190610db39190613d63565b612591565b005b348015610dc657600080fd5b50610de16004803603810190610ddc919061402f565b6125a3565b005b348015610def57600080fd5b50610df86125c8565b604051610e059190613c6a565b60405180910390f35b348015610e1a57600080fd5b50610e2361261c565b604051610e309190613d15565b60405180910390f35b348015610e4557600080fd5b50610e4e6126aa565b604051610e5b9190613d15565b60405180910390f35b348015610e7057600080fd5b50610e8b6004803603810190610e8691906144fd565b61273c565b604051610e989190613c36565b60405180910390f35b348015610ead57600080fd5b50610ec86004803603810190610ec3919061402f565b6127d0565b005b348015610ed657600080fd5b50610ef16004803603810190610eec9190613fd6565b6127f5565b005b348015610eff57600080fd5b50610f08612878565b604051610f159190613c6a565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f7957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610fa95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b601a5481565b606060028054610fc59061456c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff19061456c565b801561103e5780601f106110135761010080835404028352916020019161103e565b820191906000526020600020905b81548152906001019060200180831161102157829003601f168201915b5050505050905090565b60006110538261287e565b611089576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816110d1816128dd565b6110db83836129da565b505050565b6110e8612b1e565b80601190816110f7919061473f565b5050565b611103612b1e565b8060188190555050565b600d6020528060005260406000206000915090505481565b61112d612b1e565b806010908161113c919061473f565b5050565b611148612b1e565b80601c60016101000a81548160ff02191690831515021790555050565b600061116f612b9c565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111ba576111b9336128dd565b5b6111c5848484612ba1565b50505050565b601b5481565b600a6020528060005260406000206000915054906101000a900460ff1681565b6111f9612b1e565b60026008540361123e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112359061485d565b60405180910390fd5b60026008819055506000611250611c80565b73ffffffffffffffffffffffffffffffffffffffff1647604051611273906148ae565b60006040518083038185875af1925050503d80600081146112b0576040519150601f19603f3d011682016040523d82523d6000602084013e6112b5565b606091505b50509050806112c357600080fd5b506001600881905550565b6112d6612b1e565b8060178190555050565b6112e8612b1e565b6112f18161287e565b611330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132790614935565b60405180910390fd5b6000600a600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113af576113ae336128dd565b5b6113ba848484612ec3565b50505050565b6113cb816001612ee3565b50565b606060006113db83611783565b905060008167ffffffffffffffff8111156113f9576113f8613e62565b5b6040519080825280602002602001820160405280156114275781602001602082028036833780820191505090505b5090506000805b838110801561143f57506016548211155b156114c757600061144f8361175e565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114b3578284838151811061149857611497614955565b5b60200260200101818152505081806114af906149b3565b9250505b82806114be906149b3565b9350505061142e565b82945050505050919050565b601180546114e09061456c565b80601f016020809104026020016040519081016040528092919081815260200182805461150c9061456c565b80156115595780601f1061152e57610100808354040283529160200191611559565b820191906000526020600020905b81548152906001019060200180831161153c57829003601f168201915b505050505081565b611569612b1e565b6115728161287e565b6115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890614935565b60405180910390fd5b6001600a600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60175481565b6115ee612b1e565b80601390816115fd919061473f565b5050565b601c60029054906101000a900460ff1681565b601080546116219061456c565b80601f016020809104026020016040519081016040528092919081815260200182805461164d9061456c565b801561169a5780601f1061166f5761010080835404028352916020019161169a565b820191906000526020600020905b81548152906001019060200180831161167d57829003601f168201915b505050505081565b601c60019054906101000a900460ff1681565b600f80546116c29061456c565b80601f01602080910402602001604051908101604052809291908181526020018280546116ee9061456c565b801561173b5780601f106117105761010080835404028352916020019161173b565b820191906000526020600020905b81548152906001019060200180831161171e57829003601f168201915b505050505081565b61174b612b1e565b806012908161175a919061473f565b5050565b600061176982613135565b9050919050565b601c60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117ea576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611843612b1e565b61184d6000613201565b565b611857612b1e565b80601a8190555050565b8181600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002091826118af929190614a06565b505050565b6118bc612b1e565b80600f90816118cb919061473f565b5050565b601480546118dc9061456c565b80601f01602080910402602001604051908101604052809291908181526020018280546119089061456c565b80156119555780601f1061192a57610100808354040283529160200191611955565b820191906000526020600020905b81548152906001019060200180831161193857829003601f168201915b505050505081565b80600081611969611165565b6119739190614ad6565b905060008211801561198757506017548211155b6119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd90614b7c565b60405180910390fd5b60195482600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a149190614ad6565b1115611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90614c0e565b60405180910390fd5b601654811115611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190614c7a565b60405180910390fd5b601c60009054906101000a900460ff1615611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae190614d0c565b60405180910390fd5b81601554611af89190614d2c565b341015611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190614dba565b60405180910390fd5b600260085403611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b769061485d565b60405180910390fd5b6002600881905550600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a90614e26565b60405180910390fd5b82600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c629190614ad6565b92505081905550611c7333846132c7565b6001600881905550505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611cb2612b1e565b8060158190555050565b611cc4612b1e565b60005b82829050811015611d64576001600b6000858585818110611ceb57611cea614955565b5b9050602002016020810190611d009190613fd6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d5c906149b3565b915050611cc7565b505050565b611d71612b1e565b8060149081611d80919061473f565b5050565b606060038054611d939061456c565b80601f0160208091040260200160405190810160405280929190818152602001828054611dbf9061456c565b8015611e0c5780601f10611de157610100808354040283529160200191611e0c565b820191906000526020600020905b815481529060010190602001808311611def57829003601f168201915b5050505050905090565b600c6020528060005260406000206000915090505481565b600b6020528060005260406000206000915054906101000a900460ff1681565b60155481565b80600081611e60611165565b611e6a9190614ad6565b9050600082118015611e7e57506018548211155b611ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb490614b7c565b60405180910390fd5b601a5482600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f0b9190614ad6565b1115611f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4390614eb8565b60405180910390fd5b601654811115611f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8890614c7a565b60405180910390fd5b601c60019054906101000a900460ff1615611fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd890614d0c565b60405180910390fd5b81601554611fef9190614d2c565b341015612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890614dba565b60405180910390fd5b600260085403612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d9061485d565b60405180910390fd5b600260088190555082600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120cd9190614ad6565b925050819055506120de33846132c7565b6001600881905550505050565b816120f5816128dd565b6120ff83836132e5565b505050565b601380546121119061456c565b80601f016020809104026020016040519081016040528092919081815260200182805461213d9061456c565b801561218a5780601f1061215f5761010080835404028352916020019161218a565b820191906000526020600020905b81548152906001019060200180831161216d57829003601f168201915b505050505081565b8160008161219e611165565b6121a89190614ad6565b90506016548111156121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e690614c7a565b60405180910390fd5b6121f7612b1e565b60026008540361223c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122339061485d565b60405180910390fd5b600260088190555061224e83856132c7565b600160088190555050505050565b600e602052806000526040600020600091509050805461227b9061456c565b80601f01602080910402602001604051908101604052809291908181526020018280546122a79061456c565b80156122f45780601f106122c9576101008083540402835291602001916122f4565b820191906000526020600020905b8154815290600101906020018083116122d757829003601f168201915b505050505081565b60195481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146123405761233f336128dd565b5b61234c858585856133f0565b5050505050565b606061235e8261287e565b61239d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239490614935565b60405180910390fd5b60001515601c60029054906101000a900460ff1615150361244a57601380546123c59061456c565b80601f01602080910402602001604051908101604052809291908181526020018280546123f19061456c565b801561243e5780601f106124135761010080835404028352916020019161243e565b820191906000526020600020905b81548152906001019060200180831161242157829003601f168201915b50505050509050612532565b60001515600a600084815260200190815260200160002060009054906101000a900460ff161515036124d6576000612480613463565b905060008151116124a057604051806020016040528060008152506124ce565b806124aa846134f5565b60106040516020016124be93929190614f97565b6040516020818303038152906040525b915050612532565b60006124e0613655565b90506000815111612500576040518060200160405280600081525061252e565b8061250a846134f5565b601260405160200161251e93929190614f97565b6040516020818303038152906040525b9150505b919050565b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601a546125869190614fc8565b905090565b60165481565b612599612b1e565b8060198190555050565b6125ab612b1e565b80601c60026101000a81548160ff02191690831515021790555050565b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546019546126179190614fc8565b905090565b601280546126299061456c565b80601f01602080910402602001604051908101604052809291908181526020018280546126559061456c565b80156126a25780601f10612677576101008083540402835291602001916126a2565b820191906000526020600020905b81548152906001019060200180831161268557829003601f168201915b505050505081565b6060601480546126b99061456c565b80601f01602080910402602001604051908101604052809291908181526020018280546126e59061456c565b80156127325780601f1061270757610100808354040283529160200191612732565b820191906000526020600020905b81548152906001019060200180831161271557829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127d8612b1e565b80601c60006101000a81548160ff02191690831515021790555050565b6127fd612b1e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361286c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128639061506e565b60405180910390fd5b61287581613201565b50565b60185481565b600081612889612b9c565b11158015612898575060005482105b80156128d6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156129d7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161295492919061508e565b602060405180830381865afa158015612971573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061299591906150cc565b6129d657806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016129cd9190613dd1565b60405180910390fd5b5b50565b60006129e58261175e565b90508073ffffffffffffffffffffffffffffffffffffffff16612a066136e7565b73ffffffffffffffffffffffffffffffffffffffff1614612a6957612a3281612a2d6136e7565b61273c565b612a68576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612b266136ef565b73ffffffffffffffffffffffffffffffffffffffff16612b44611c80565b73ffffffffffffffffffffffffffffffffffffffff1614612b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9190615145565b60405180910390fd5b565b600090565b6000612bac82613135565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612c13576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612c1f846136f7565b91509150612c358187612c306136e7565b61371e565b612c8157612c4a86612c456136e7565b61273c565b612c80576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612ce7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cf48686866001613762565b8015612cff57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612dcd85612da9888887613768565b7c020000000000000000000000000000000000000000000000000000000017613790565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612e535760006001850190506000600460008381526020019081526020016000205403612e51576000548114612e50578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ebb86868660016137bb565b505050505050565b612ede83838360405180602001604052806000815250612302565b505050565b6000612eee83613135565b90506000819050600080612f01866136f7565b915091508415612f6a57612f1d8184612f186136e7565b61371e565b612f6957612f3283612f2d6136e7565b61273c565b612f68576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612f78836000886001613762565b8015612f8357600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061302b83612fe885600088613768565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717613790565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036130b157600060018701905060006004600083815260200190815260200160002054036130af5760005481146130ae578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461311b8360008860016137bb565b600160008154809291906001019190505550505050505050565b60008082905080613144612b9c565b116131ca576000548110156131c95760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036131c7575b600081036131bd576004600083600190039350838152602001908152602001600020549050613193565b80925050506131fc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6132e18282604051806020016040528060008152506137c1565b5050565b80600760006132f26136e7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661339f6136e7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516133e49190613c36565b60405180910390a35050565b6133fb84848461117c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461345d576134268484848461385e565b61345c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600f80546134729061456c565b80601f016020809104026020016040519081016040528092919081815260200182805461349e9061456c565b80156134eb5780601f106134c0576101008083540402835291602001916134eb565b820191906000526020600020905b8154815290600101906020018083116134ce57829003601f168201915b5050505050905090565b60606000820361353c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613650565b600082905060005b6000821461356e578080613557906149b3565b915050600a826135679190615194565b9150613544565b60008167ffffffffffffffff81111561358a57613589613e62565b5b6040519080825280601f01601f1916602001820160405280156135bc5781602001600182028036833780820191505090505b5090505b60008514613649576001826135d59190614fc8565b9150600a856135e491906151c5565b60306135f09190614ad6565b60f81b81838151811061360657613605614955565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136429190615194565b94506135c0565b8093505050505b919050565b6060601180546136649061456c565b80601f01602080910402602001604051908101604052809291908181526020018280546136909061456c565b80156136dd5780601f106136b2576101008083540402835291602001916136dd565b820191906000526020600020905b8154815290600101906020018083116136c057829003601f168201915b5050505050905090565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861377f8686846139ae565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6137cb83836139b7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461385957600080549050600083820390505b61380b600086838060010194508661385e565b613841576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106137f857816000541461385657600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026138846136e7565b8786866040518563ffffffff1660e01b81526004016138a6949392919061524b565b6020604051808303816000875af19250505080156138e257506040513d601f19601f820116820180604052508101906138df91906152ac565b60015b61395b573d8060008114613912576040519150601f19603f3d011682016040523d82523d6000602084013e613917565b606091505b506000815103613953576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036139f7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613a046000848385613762565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613a7b83613a6c6000866000613768565b613a7585613b72565b17613790565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613b1c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613ae1565b5060008203613b57576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613b6d60008483856137bb565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613bcb81613b96565b8114613bd657600080fd5b50565b600081359050613be881613bc2565b92915050565b600060208284031215613c0457613c03613b8c565b5b6000613c1284828501613bd9565b91505092915050565b60008115159050919050565b613c3081613c1b565b82525050565b6000602082019050613c4b6000830184613c27565b92915050565b6000819050919050565b613c6481613c51565b82525050565b6000602082019050613c7f6000830184613c5b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cbf578082015181840152602081019050613ca4565b60008484015250505050565b6000601f19601f8301169050919050565b6000613ce782613c85565b613cf18185613c90565b9350613d01818560208601613ca1565b613d0a81613ccb565b840191505092915050565b60006020820190508181036000830152613d2f8184613cdc565b905092915050565b613d4081613c51565b8114613d4b57600080fd5b50565b600081359050613d5d81613d37565b92915050565b600060208284031215613d7957613d78613b8c565b5b6000613d8784828501613d4e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613dbb82613d90565b9050919050565b613dcb81613db0565b82525050565b6000602082019050613de66000830184613dc2565b92915050565b613df581613db0565b8114613e0057600080fd5b50565b600081359050613e1281613dec565b92915050565b60008060408385031215613e2f57613e2e613b8c565b5b6000613e3d85828601613e03565b9250506020613e4e85828601613d4e565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e9a82613ccb565b810181811067ffffffffffffffff82111715613eb957613eb8613e62565b5b80604052505050565b6000613ecc613b82565b9050613ed88282613e91565b919050565b600067ffffffffffffffff821115613ef857613ef7613e62565b5b613f0182613ccb565b9050602081019050919050565b82818337600083830152505050565b6000613f30613f2b84613edd565b613ec2565b905082815260208101848484011115613f4c57613f4b613e5d565b5b613f57848285613f0e565b509392505050565b600082601f830112613f7457613f73613e58565b5b8135613f84848260208601613f1d565b91505092915050565b600060208284031215613fa357613fa2613b8c565b5b600082013567ffffffffffffffff811115613fc157613fc0613b91565b5b613fcd84828501613f5f565b91505092915050565b600060208284031215613fec57613feb613b8c565b5b6000613ffa84828501613e03565b91505092915050565b61400c81613c1b565b811461401757600080fd5b50565b60008135905061402981614003565b92915050565b60006020828403121561404557614044613b8c565b5b60006140538482850161401a565b91505092915050565b60008060006060848603121561407557614074613b8c565b5b600061408386828701613e03565b935050602061409486828701613e03565b92505060406140a586828701613d4e565b9150509250925092565b6000819050919050565b60006140d46140cf6140ca84613d90565b6140af565b613d90565b9050919050565b60006140e6826140b9565b9050919050565b60006140f8826140db565b9050919050565b614108816140ed565b82525050565b600060208201905061412360008301846140ff565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61415e81613c51565b82525050565b60006141708383614155565b60208301905092915050565b6000602082019050919050565b600061419482614129565b61419e8185614134565b93506141a983614145565b8060005b838110156141da5781516141c18882614164565b97506141cc8361417c565b9250506001810190506141ad565b5085935050505092915050565b600060208201905081810360008301526142018184614189565b905092915050565b600080fd5b600080fd5b60008083601f84011261422957614228613e58565b5b8235905067ffffffffffffffff81111561424657614245614209565b5b6020830191508360018202830111156142625761426161420e565b5b9250929050565b600080602083850312156142805761427f613b8c565b5b600083013567ffffffffffffffff81111561429e5761429d613b91565b5b6142aa85828601614213565b92509250509250929050565b60008083601f8401126142cc576142cb613e58565b5b8235905067ffffffffffffffff8111156142e9576142e8614209565b5b6020830191508360208202830111156143055761430461420e565b5b9250929050565b6000806020838503121561432357614322613b8c565b5b600083013567ffffffffffffffff81111561434157614340613b91565b5b61434d858286016142b6565b92509250509250929050565b600080604083850312156143705761436f613b8c565b5b600061437e85828601613e03565b925050602061438f8582860161401a565b9150509250929050565b600080604083850312156143b0576143af613b8c565b5b60006143be85828601613d4e565b92505060206143cf85828601613e03565b9150509250929050565b600067ffffffffffffffff8211156143f4576143f3613e62565b5b6143fd82613ccb565b9050602081019050919050565b600061441d614418846143d9565b613ec2565b90508281526020810184848401111561443957614438613e5d565b5b614444848285613f0e565b509392505050565b600082601f83011261446157614460613e58565b5b813561447184826020860161440a565b91505092915050565b6000806000806080858703121561449457614493613b8c565b5b60006144a287828801613e03565b94505060206144b387828801613e03565b93505060406144c487828801613d4e565b925050606085013567ffffffffffffffff8111156144e5576144e4613b91565b5b6144f18782880161444c565b91505092959194509250565b6000806040838503121561451457614513613b8c565b5b600061452285828601613e03565b925050602061453385828601613e03565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061458457607f821691505b6020821081036145975761459661453d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026145ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826145c2565b61460986836145c2565b95508019841693508086168417925050509392505050565b600061463c61463761463284613c51565b6140af565b613c51565b9050919050565b6000819050919050565b61465683614621565b61466a61466282614643565b8484546145cf565b825550505050565b600090565b61467f614672565b61468a81848461464d565b505050565b5b818110156146ae576146a3600082614677565b600181019050614690565b5050565b601f8211156146f3576146c48161459d565b6146cd846145b2565b810160208510156146dc578190505b6146f06146e8856145b2565b83018261468f565b50505b505050565b600082821c905092915050565b6000614716600019846008026146f8565b1980831691505092915050565b600061472f8383614705565b9150826002028217905092915050565b61474882613c85565b67ffffffffffffffff81111561476157614760613e62565b5b61476b825461456c565b6147768282856146b2565b600060209050601f8311600181146147a95760008415614797578287015190505b6147a18582614723565b865550614809565b601f1984166147b78661459d565b60005b828110156147df578489015182556001820191506020850194506020810190506147ba565b868310156147fc57848901516147f8601f891682614705565b8355505b6001600288020188555050505b505050505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614847601f83613c90565b915061485282614811565b602082019050919050565b600060208201905081810360008301526148768161483a565b9050919050565b600081905092915050565b50565b600061489860008361487d565b91506148a382614888565b600082019050919050565b60006148b98261488b565b9150819050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061491f602f83613c90565b915061492a826148c3565b604082019050919050565b6000602082019050818103600083015261494e81614912565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149be82613c51565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036149f0576149ef614984565b5b600182019050919050565b600082905092915050565b614a1083836149fb565b67ffffffffffffffff811115614a2957614a28613e62565b5b614a33825461456c565b614a3e8282856146b2565b6000601f831160018114614a6d5760008415614a5b578287013590505b614a658582614723565b865550614acd565b601f198416614a7b8661459d565b60005b82811015614aa357848901358255600182019150602085019450602081019050614a7e565b86831015614ac05784890135614abc601f891682614705565b8355505b6001600288020188555050505b50505050505050565b6000614ae182613c51565b9150614aec83613c51565b9250828201905080821115614b0457614b03614984565b5b92915050565b7f596f75206861766520657863656564656420746865206c696d6974206f66206d60008201527f696e747320706572207472616e73616374696f6e000000000000000000000000602082015250565b6000614b66603483613c90565b9150614b7182614b0a565b604082019050919050565b60006020820190508181036000830152614b9581614b59565b9050919050565b7f54686973207472616e73616374696f6e206578636565647320796f757220776860008201527f6974656c697374206d696e74206c696d69740000000000000000000000000000602082015250565b6000614bf8603283613c90565b9150614c0382614b9c565b604082019050919050565b60006020820190508181036000830152614c2781614beb565b9050919050565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b6000614c64600883613c90565b9150614c6f82614c2e565b602082019050919050565b60006020820190508181036000830152614c9381614c57565b9050919050565b7f4d696e74696e67206973206e6f742063757272656e746c7920616c6c6f77656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cf6602183613c90565b9150614d0182614c9a565b604082019050919050565b60006020820190508181036000830152614d2581614ce9565b9050919050565b6000614d3782613c51565b9150614d4283613c51565b9250828202614d5081613c51565b91508282048414831517614d6757614d66614984565b5b5092915050565b7f596f7520646964206e6f742073656e6420656e6f756768204554480000000000600082015250565b6000614da4601b83613c90565b9150614daf82614d6e565b602082019050919050565b60006020820190508181036000830152614dd381614d97565b9050919050565b7f596f7520617265206e6f74206f6e20746865206c697374000000000000000000600082015250565b6000614e10601783613c90565b9150614e1b82614dda565b602082019050919050565b60006020820190508181036000830152614e3f81614e03565b9050919050565b7f596f75206861766520616c7265616479206d696e74656420796f7572206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ea2602283613c90565b9150614ead82614e46565b604082019050919050565b60006020820190508181036000830152614ed181614e95565b9050919050565b600081905092915050565b6000614eee82613c85565b614ef88185614ed8565b9350614f08818560208601613ca1565b80840191505092915050565b60008154614f218161456c565b614f2b8186614ed8565b94506001821660008114614f465760018114614f5b57614f8e565b60ff1983168652811515820286019350614f8e565b614f648561459d565b60005b83811015614f8657815481890152600182019150602081019050614f67565b838801955050505b50505092915050565b6000614fa38286614ee3565b9150614faf8285614ee3565b9150614fbb8284614f14565b9150819050949350505050565b6000614fd382613c51565b9150614fde83613c51565b9250828203905081811115614ff657614ff5614984565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615058602683613c90565b915061506382614ffc565b604082019050919050565b600060208201905081810360008301526150878161504b565b9050919050565b60006040820190506150a36000830185613dc2565b6150b06020830184613dc2565b9392505050565b6000815190506150c681614003565b92915050565b6000602082840312156150e2576150e1613b8c565b5b60006150f0848285016150b7565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061512f602083613c90565b915061513a826150f9565b602082019050919050565b6000602082019050818103600083015261515e81615122565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061519f82613c51565b91506151aa83613c51565b9250826151ba576151b9615165565b5b828204905092915050565b60006151d082613c51565b91506151db83613c51565b9250826151eb576151ea615165565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061521d826151f6565b6152278185615201565b9350615237818560208601613ca1565b61524081613ccb565b840191505092915050565b60006080820190506152606000830187613dc2565b61526d6020830186613dc2565b61527a6040830185613c5b565b818103606083015261528c8184615212565b905095945050505050565b6000815190506152a681613bc2565b92915050565b6000602082840312156152c2576152c1613b8c565b5b60006152d084828501615297565b9150509291505056fea2646970667358221220ef53bbd417ca933ac6c145d318111bf64aea46082194bd283ffad0640236e2c364736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000005000000000000000000000000dc9eef462bd661d5a14146dfa05f5cdb6db5fecf00000000000000000000000046052da6baa43d8bcc0324c22249628ee19442410000000000000000000000006e6a95f26dd2818abeef71c7212b48afa9aabd38000000000000000000000000a47407884255afb0262651c3512391765ec2e86c00000000000000000000000070997970c51812dc3a010c7d01b50e0d17dc79c80000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a47407884255afb0262651c3512391765ec2e86c0000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d575742674e6e55596e6e656136696e76684a485559563948736242436d45794e5a68374c4d4378654468573300000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d4e6d3964796b65695452414a6a3841426b7a564465554564616771375533636a63476938534468694a3259730000000000000000000000

-----Decoded View---------------
Arg [0] : _whiteListAddresses (address[]): 0xDC9eeF462bD661D5a14146dFA05f5cdB6Db5Fecf,0x46052Da6Baa43D8bCC0324c22249628Ee1944241,0x6E6a95F26dD2818ABeEF71c7212B48aFa9aaBD38,0xA47407884255AFB0262651C3512391765ec2e86C,0x70997970C51812dc3A010C7d01b50e0d17dc79C8
Arg [1] : _internalAccounts (address[]): 0xA47407884255AFB0262651C3512391765ec2e86C
Arg [2] : _contractURI (string): ipfs://QmWWBgNnUYnnea6invhJHUYV9HsbBCmEyNZh7LMCxeDhW3
Arg [3] : _hiddenMetadataURI (string): ipfs://QmNm9dykeiTRAJj8ABkzVDeUEdagq7U3cjcGi8SDhiJ2Ys

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 000000000000000000000000dc9eef462bd661d5a14146dfa05f5cdb6db5fecf
Arg [6] : 00000000000000000000000046052da6baa43d8bcc0324c22249628ee1944241
Arg [7] : 0000000000000000000000006e6a95f26dd2818abeef71c7212b48afa9aabd38
Arg [8] : 000000000000000000000000a47407884255afb0262651c3512391765ec2e86c
Arg [9] : 00000000000000000000000070997970c51812dc3a010c7d01b50e0d17dc79c8
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [11] : 000000000000000000000000a47407884255afb0262651c3512391765ec2e86c
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [13] : 697066733a2f2f516d575742674e6e55596e6e656136696e76684a4855595639
Arg [14] : 48736242436d45794e5a68374c4d437865446857330000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [16] : 697066733a2f2f516d4e6d3964796b65695452414a6a3841426b7a5644655545
Arg [17] : 64616771375533636a63476938534468694a3259730000000000000000000000


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.