ETH Price: $3,096.66 (-0.47%)
Gas: 2 Gwei

Token

Chickun (KUN)
 

Overview

Max Total Supply

2,222 KUN

Holders

846

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
denews-heimao.eth
Balance
1 KUN
0x036a90e8177f47fc9ab65f8672ef9ef629fc755a
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:
Chickun

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : Chickun.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721A.sol";

contract Chickun is ERC721A, Ownable {
  bool public active = false;
  bool public presale = false;

  string  public baseURI;
  bytes32 public waitlistRoot;

  mapping (address => uint) public waitListMinted;
  mapping (address => uint) public publicMinted;

  uint public maxSupply;

  bool public canOpen = false;
  string public unrevealURI = "https://pin.ski/3nTrNXr";

  constructor () ERC721A("Chickun", "KUN") {
    maxSupply = 2222;
    _safeMint(msg.sender, 222);
  }

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

  function setUnrevealURI(string memory _unrevealURI) public onlyOwner {
    unrevealURI = _unrevealURI;
  }

  function setCanOpen(bool _canOpen) public onlyOwner {
    canOpen = _canOpen;
  }

  function setWaitlistRoot(bytes32 _waitlistRoot) public onlyOwner {
    waitlistRoot = _waitlistRoot;
  }

  function setActive(bool _active) public onlyOwner {
    active = _active;
  }

  function setPresale(bool _presale) public onlyOwner {
    presale = _presale;
  }

  function setMaxSupply(uint _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function openWaitListMint() public onlyOwner {
    active = true;
    presale = true;
  }

  function openPublicMint() public onlyOwner{
    active = true;
    presale = false;
  }

  function waitListMint(bytes32[] calldata proof, uint _amount) public {
    require(active && presale, "Contract is not active");
    require(_amount <= 2 && totalSupply() + _amount <= maxSupply, "Exceed max mint number or out of supply");
    require(waitListMinted[msg.sender] + _amount <= 2, "You can only mint two tokens");
    require(MerkleProof.verify(proof, waitlistRoot, keccak256(abi.encodePacked(msg.sender))), "Invalid proof");

    waitListMinted[msg.sender] += _amount;
    _safeMint(msg.sender, _amount);
  }

  function publicMint(uint _amount) public {
    require(active && !presale, "Contract is not active");
    require(_amount <= 60 && totalSupply() + _amount <= maxSupply, "Exceed max mint number or out of supply");
    require(publicMinted[msg.sender] + _amount <= 60, "You can only mint 60 tokens");

    publicMinted[msg.sender] += _amount;
    _safeMint(msg.sender, _amount);
  }

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    if (!canOpen) return unrevealURI;
    if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

File 2 of 6 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// 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 {
    // Reference type for token approval.
    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 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 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 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 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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 4 of 6 : 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 5 of 6 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// 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;

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

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

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

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

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

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

    // =============================================================
    //                        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 6 of 6 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"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":"active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openWaitListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_canOpen","type":"bool"}],"name":"setCanOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_presale","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_unrevealURI","type":"string"}],"name":"setUnrevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_waitlistRoot","type":"bytes32"}],"name":"setWaitlistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"waitListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"waitListMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"waitlistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}]

60806040526000600860146101000a81548160ff0219169083151502179055506000600860156101000a81548160ff0219169083151502179055506000600e60006101000a81548160ff0219169083151502179055506040518060400160405280601781526020017f68747470733a2f2f70696e2e736b692f336e54724e5872000000000000000000815250600f90816200009b919062000988565b50348015620000a957600080fd5b506040518060400160405280600781526020017f436869636b756e000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4b554e0000000000000000000000000000000000000000000000000000000000815250816002908162000127919062000988565b50806003908162000139919062000988565b506200014a6200019460201b60201c565b600081905550505062000172620001666200019960201b60201c565b620001a160201b60201c565b6108ae600d819055506200018e3360de6200026760201b60201c565b62000c47565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002898282604051806020016040528060008152506200028d60201b60201c565b5050565b6200029f83836200033e60201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200033957600080549050600083820390505b620002e860008683806001019450866200052560201b60201c565b6200031f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620002cd5781600054146200033657600080fd5b50505b505050565b600080549050600082036200037f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200039460008483856200068660201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555062000423836200040560008660006200068c60201b60201c565b6200041685620006bc60201b60201c565b17620006cc60201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114620004c657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000489565b506000820362000502576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620005206000848385620006f760201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000553620006fd60201b60201c565b8786866040518563ffffffff1660e01b815260040162000577949392919062000b5f565b6020604051808303816000875af1925050508015620005b657506040513d601f19601f82011682018060405250810190620005b3919062000c15565b60015b62000633573d8060008114620005e9576040519150601f19603f3d011682016040523d82523d6000602084013e620005ee565b606091505b5060008151036200062b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e8620006ab8686846200070560201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200079057607f821691505b602082108103620007a657620007a562000748565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008107fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007d1565b6200081c8683620007d1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000869620008636200085d8462000834565b6200083e565b62000834565b9050919050565b6000819050919050565b620008858362000848565b6200089d620008948262000870565b848454620007de565b825550505050565b600090565b620008b4620008a5565b620008c18184846200087a565b505050565b5b81811015620008e957620008dd600082620008aa565b600181019050620008c7565b5050565b601f82111562000938576200090281620007ac565b6200090d84620007c1565b810160208510156200091d578190505b620009356200092c85620007c1565b830182620008c6565b50505b505050565b600082821c905092915050565b60006200095d600019846008026200093d565b1980831691505092915050565b60006200097883836200094a565b9150826002028217905092915050565b62000993826200070e565b67ffffffffffffffff811115620009af57620009ae62000719565b5b620009bb825462000777565b620009c8828285620008ed565b600060209050601f83116001811462000a005760008415620009eb578287015190505b620009f785826200096a565b86555062000a67565b601f19841662000a1086620007ac565b60005b8281101562000a3a5784890151825560018201915060208501945060208101905062000a13565b8683101562000a5a578489015162000a56601f8916826200094a565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a9c8262000a6f565b9050919050565b62000aae8162000a8f565b82525050565b62000abf8162000834565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000b0157808201518184015260208101905062000ae4565b60008484015250505050565b6000601f19601f8301169050919050565b600062000b2b8262000ac5565b62000b37818562000ad0565b935062000b4981856020860162000ae1565b62000b548162000b0d565b840191505092915050565b600060808201905062000b76600083018762000aa3565b62000b85602083018662000aa3565b62000b94604083018562000ab4565b818103606083015262000ba8818462000b1e565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000bef8162000bb8565b811462000bfb57600080fd5b50565b60008151905062000c0f8162000be4565b92915050565b60006020828403121562000c2e5762000c2d62000bb3565b5b600062000c3e8482850162000bfe565b91505092915050565b6133648062000c576000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063c54e73e3116100b8578063f0d4f97b1161007c578063f0d4f97b14610614578063f2fde38b14610644578063f9f1253514610660578063fdea8e0b1461067c578063ffaeb5821461069a57610227565b8063c54e73e31461055e578063c87b56dd1461057a578063d5abeb01146105aa578063e6ba14c6146105c8578063e985e9c5146105e457610227565b806397bc411c116100ff57806397bc411c146104d0578063a22cb465146104ec578063a6a4db9914610508578063acec338a14610526578063b88d4fde1461054257610227565b8063715018a6146104805780637557b9ef1461048a5780638da5cb5b1461049457806395d89b41146104b257610227565b806323b872dd116101b357806355f804b31161018257806355f804b3146103ca5780636352211e146103e65780636c0360eb146104165780636f8b44b01461043457806370a082311461045057610227565b806323b872dd1461036c5780632db115441461038857806342842e0e146103a457806345f7e06e146103c057610227565b8063095ea7b3116101fa578063095ea7b3146102c85780630def3ead146102e45780631015805b1461030057806318160ddd146103305780632126ea811461034e57610227565b806301ffc9a71461022c57806302fb0c5e1461025c57806306fdde031461027a578063081812fc14610298575b600080fd5b61024660048036038101906102419190612204565b6106b8565b604051610253919061224c565b60405180910390f35b61026461074a565b604051610271919061224c565b60405180910390f35b61028261075d565b60405161028f91906122f7565b60405180910390f35b6102b260048036038101906102ad919061234f565b6107ef565b6040516102bf91906123bd565b60405180910390f35b6102e260048036038101906102dd9190612404565b61086e565b005b6102fe60048036038101906102f99190612470565b6109b2565b005b61031a6004803603810190610315919061249d565b6109d7565b60405161032791906124d9565b60405180910390f35b6103386109ef565b60405161034591906124d9565b60405180910390f35b610356610a06565b60405161036391906122f7565b60405180910390f35b610386600480360381019061038191906124f4565b610a94565b005b6103a2600480360381019061039d919061234f565b610db6565b005b6103be60048036038101906103b991906124f4565b610f73565b005b6103c8610f93565b005b6103e460048036038101906103df919061267c565b610fd3565b005b61040060048036038101906103fb919061234f565b610fee565b60405161040d91906123bd565b60405180910390f35b61041e611000565b60405161042b91906122f7565b60405180910390f35b61044e6004803603810190610449919061234f565b61108e565b005b61046a6004803603810190610465919061249d565b6110a0565b60405161047791906124d9565b60405180910390f35b610488611158565b005b61049261116c565b005b61049c6111ac565b6040516104a991906123bd565b60405180910390f35b6104ba6111d6565b6040516104c791906122f7565b60405180910390f35b6104ea60048036038101906104e5919061267c565b611268565b005b610506600480360381019061050191906126c5565b611283565b005b61051061138e565b60405161051d919061271e565b60405180910390f35b610540600480360381019061053b9190612470565b611394565b005b61055c600480360381019061055791906127da565b6113b9565b005b61057860048036038101906105739190612470565b61142c565b005b610594600480360381019061058f919061234f565b611451565b6040516105a191906122f7565b60405180910390f35b6105b2611597565b6040516105bf91906124d9565b60405180910390f35b6105e260048036038101906105dd9190612889565b61159d565b005b6105fe60048036038101906105f991906128b6565b6115af565b60405161060b919061224c565b60405180910390f35b61062e6004803603810190610629919061249d565b611643565b60405161063b91906124d9565b60405180910390f35b61065e6004803603810190610659919061249d565b61165b565b005b61067a60048036038101906106759190612956565b6116de565b005b61068461194f565b604051610691919061224c565b60405180910390f35b6106a2611962565b6040516106af919061224c565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107435750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600860149054906101000a900460ff1681565b60606002805461076c906129e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610798906129e5565b80156107e55780601f106107ba576101008083540402835291602001916107e5565b820191906000526020600020905b8154815290600101906020018083116107c857829003601f168201915b5050505050905090565b60006107fa82611975565b610830576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087982610fee565b90508073ffffffffffffffffffffffffffffffffffffffff1661089a6119d4565b73ffffffffffffffffffffffffffffffffffffffff16146108fd576108c6816108c16119d4565b6115af565b6108fc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6109ba6119dc565b80600e60006101000a81548160ff02191690831515021790555050565b600c6020528060005260406000206000915090505481565b60006109f9611a5a565b6001546000540303905090565b600f8054610a13906129e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3f906129e5565b8015610a8c5780601f10610a6157610100808354040283529160200191610a8c565b820191906000526020600020905b815481529060010190602001808311610a6f57829003601f168201915b505050505081565b6000610a9f82611a5f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b06576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b1284611b2b565b91509150610b288187610b236119d4565b611b52565b610b7457610b3d86610b386119d4565b6115af565b610b73576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610bda576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be78686866001611b96565b8015610bf257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cc085610c9c888887611b9c565b7c020000000000000000000000000000000000000000000000000000000017611bc4565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d465760006001850190506000600460008381526020019081526020016000205403610d44576000548114610d43578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dae8686866001611bef565b505050505050565b600860149054906101000a900460ff168015610ddf5750600860159054906101000a900460ff16155b610e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1590612a62565b60405180910390fd5b603c8111158015610e435750600d5481610e366109ef565b610e409190612ab1565b11155b610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990612b57565b60405180910390fd5b603c81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ecf9190612ab1565b1115610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790612bc3565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f5f9190612ab1565b92505081905550610f703382611bf5565b50565b610f8e838383604051806020016040528060008152506113b9565b505050565b610f9b6119dc565b6001600860146101000a81548160ff0219169083151502179055506000600860156101000a81548160ff021916908315150217905550565b610fdb6119dc565b8060099081610fea9190612d8f565b5050565b6000610ff982611a5f565b9050919050565b6009805461100d906129e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611039906129e5565b80156110865780601f1061105b57610100808354040283529160200191611086565b820191906000526020600020905b81548152906001019060200180831161106957829003601f168201915b505050505081565b6110966119dc565b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611107576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111606119dc565b61116a6000611c13565b565b6111746119dc565b6001600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111e5906129e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611211906129e5565b801561125e5780601f106112335761010080835404028352916020019161125e565b820191906000526020600020905b81548152906001019060200180831161124157829003601f168201915b5050505050905090565b6112706119dc565b80600f908161127f9190612d8f565b5050565b80600760006112906119d4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133d6119d4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611382919061224c565b60405180910390a35050565b600a5481565b61139c6119dc565b80600860146101000a81548160ff02191690831515021790555050565b6113c4848484610a94565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611426576113ef84848484611cd9565b611425576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6114346119dc565b80600860156101000a81548160ff02191690831515021790555050565b6060600e60009054906101000a900460ff166114f957600f8054611474906129e5565b80601f01602080910402602001604051908101604052809291908181526020018280546114a0906129e5565b80156114ed5780601f106114c2576101008083540402835291602001916114ed565b820191906000526020600020905b8154815290600101906020018083116114d057829003601f168201915b50505050509050611592565b61150282611975565b611538576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060098054611547906129e5565b905003611563576040518060200160405280600081525061158f565b600961156e83611e29565b60405160200161157f929190612f6c565b6040516020818303038152906040525b90505b919050565b600d5481565b6115a56119dc565b80600a8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b6020528060005260406000206000915090505481565b6116636119dc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c99061300d565b60405180910390fd5b6116db81611c13565b50565b600860149054906101000a900460ff1680156117065750600860159054906101000a900460ff165b611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c90612a62565b60405180910390fd5b6002811115801561176a5750600d548161175d6109ef565b6117679190612ab1565b11155b6117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a090612b57565b60405180910390fd5b600281600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117f69190612ab1565b1115611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e90613079565b60405180910390fd5b6118ab838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a543360405160200161189091906130e1565b60405160208183030381529060405280519060200120611e70565b6118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190613148565b60405180910390fd5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119399190612ab1565b9250508190555061194a3382611bf5565b505050565b600860159054906101000a900460ff1681565b600e60009054906101000a900460ff1681565b600081611980611a5a565b1115801561198f575060005482105b80156119cd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6119e4611e87565b73ffffffffffffffffffffffffffffffffffffffff16611a026111ac565b73ffffffffffffffffffffffffffffffffffffffff1614611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f906131b4565b60405180910390fd5b565b600090565b60008082905080611a6e611a5a565b11611af457600054811015611af35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611af1575b60008103611ae7576004600083600190039350838152602001908152602001600020549050611abd565b8092505050611b26565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bb3868684611e8f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611c0f828260405180602001604052806000815250611e98565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cff6119d4565b8786866040518563ffffffff1660e01b8152600401611d219493929190613229565b6020604051808303816000875af1925050508015611d5d57506040513d601f19601f82011682018060405250810190611d5a919061328a565b60015b611dd6573d8060008114611d8d576040519150601f19603f3d011682016040523d82523d6000602084013e611d92565b606091505b506000815103611dce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060806040510190508060405280825b600115611e5c57600183039250600a81066030018353600a8104905080611e3a575b508181036020830392508083525050919050565b600082611e7d8584611f35565b1490509392505050565b600033905090565b60009392505050565b611ea28383611f8b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f3057600080549050600083820390505b611ee26000868380600101945086611cd9565b611f18576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ecf578160005414611f2d57600080fd5b50505b505050565b60008082905060005b8451811015611f8057611f6b82868381518110611f5e57611f5d6132b7565b5b6020026020010151612146565b91508080611f78906132e6565b915050611f3e565b508091505092915050565b60008054905060008203611fcb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fd86000848385611b96565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061204f836120406000866000611b9c565b61204985612171565b17611bc4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146120f057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120b5565b506000820361212b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121416000848385611bef565b505050565b600081831061215e576121598284612181565b612169565b6121688383612181565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121e1816121ac565b81146121ec57600080fd5b50565b6000813590506121fe816121d8565b92915050565b60006020828403121561221a576122196121a2565b5b6000612228848285016121ef565b91505092915050565b60008115159050919050565b61224681612231565b82525050565b6000602082019050612261600083018461223d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122a1578082015181840152602081019050612286565b60008484015250505050565b6000601f19601f8301169050919050565b60006122c982612267565b6122d38185612272565b93506122e3818560208601612283565b6122ec816122ad565b840191505092915050565b6000602082019050818103600083015261231181846122be565b905092915050565b6000819050919050565b61232c81612319565b811461233757600080fd5b50565b60008135905061234981612323565b92915050565b600060208284031215612365576123646121a2565b5b60006123738482850161233a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123a78261237c565b9050919050565b6123b78161239c565b82525050565b60006020820190506123d260008301846123ae565b92915050565b6123e18161239c565b81146123ec57600080fd5b50565b6000813590506123fe816123d8565b92915050565b6000806040838503121561241b5761241a6121a2565b5b6000612429858286016123ef565b925050602061243a8582860161233a565b9150509250929050565b61244d81612231565b811461245857600080fd5b50565b60008135905061246a81612444565b92915050565b600060208284031215612486576124856121a2565b5b60006124948482850161245b565b91505092915050565b6000602082840312156124b3576124b26121a2565b5b60006124c1848285016123ef565b91505092915050565b6124d381612319565b82525050565b60006020820190506124ee60008301846124ca565b92915050565b60008060006060848603121561250d5761250c6121a2565b5b600061251b868287016123ef565b935050602061252c868287016123ef565b925050604061253d8682870161233a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612589826122ad565b810181811067ffffffffffffffff821117156125a8576125a7612551565b5b80604052505050565b60006125bb612198565b90506125c78282612580565b919050565b600067ffffffffffffffff8211156125e7576125e6612551565b5b6125f0826122ad565b9050602081019050919050565b82818337600083830152505050565b600061261f61261a846125cc565b6125b1565b90508281526020810184848401111561263b5761263a61254c565b5b6126468482856125fd565b509392505050565b600082601f83011261266357612662612547565b5b813561267384826020860161260c565b91505092915050565b600060208284031215612692576126916121a2565b5b600082013567ffffffffffffffff8111156126b0576126af6121a7565b5b6126bc8482850161264e565b91505092915050565b600080604083850312156126dc576126db6121a2565b5b60006126ea858286016123ef565b92505060206126fb8582860161245b565b9150509250929050565b6000819050919050565b61271881612705565b82525050565b6000602082019050612733600083018461270f565b92915050565b600067ffffffffffffffff82111561275457612753612551565b5b61275d826122ad565b9050602081019050919050565b600061277d61277884612739565b6125b1565b9050828152602081018484840111156127995761279861254c565b5b6127a48482856125fd565b509392505050565b600082601f8301126127c1576127c0612547565b5b81356127d184826020860161276a565b91505092915050565b600080600080608085870312156127f4576127f36121a2565b5b6000612802878288016123ef565b9450506020612813878288016123ef565b93505060406128248782880161233a565b925050606085013567ffffffffffffffff811115612845576128446121a7565b5b612851878288016127ac565b91505092959194509250565b61286681612705565b811461287157600080fd5b50565b6000813590506128838161285d565b92915050565b60006020828403121561289f5761289e6121a2565b5b60006128ad84828501612874565b91505092915050565b600080604083850312156128cd576128cc6121a2565b5b60006128db858286016123ef565b92505060206128ec858286016123ef565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261291657612915612547565b5b8235905067ffffffffffffffff811115612933576129326128f6565b5b60208301915083602082028301111561294f5761294e6128fb565b5b9250929050565b60008060006040848603121561296f5761296e6121a2565b5b600084013567ffffffffffffffff81111561298d5761298c6121a7565b5b61299986828701612900565b935093505060206129ac8682870161233a565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129fd57607f821691505b602082108103612a1057612a0f6129b6565b5b50919050565b7f436f6e7472616374206973206e6f742061637469766500000000000000000000600082015250565b6000612a4c601683612272565b9150612a5782612a16565b602082019050919050565b60006020820190508181036000830152612a7b81612a3f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612abc82612319565b9150612ac783612319565b9250828201905080821115612adf57612ade612a82565b5b92915050565b7f457863656564206d6178206d696e74206e756d626572206f72206f7574206f6660008201527f20737570706c7900000000000000000000000000000000000000000000000000602082015250565b6000612b41602783612272565b9150612b4c82612ae5565b604082019050919050565b60006020820190508181036000830152612b7081612b34565b9050919050565b7f596f752063616e206f6e6c79206d696e7420363020746f6b656e730000000000600082015250565b6000612bad601b83612272565b9150612bb882612b77565b602082019050919050565b60006020820190508181036000830152612bdc81612ba0565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612c457fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612c08565b612c4f8683612c08565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612c8c612c87612c8284612319565b612c67565b612319565b9050919050565b6000819050919050565b612ca683612c71565b612cba612cb282612c93565b848454612c15565b825550505050565b600090565b612ccf612cc2565b612cda818484612c9d565b505050565b5b81811015612cfe57612cf3600082612cc7565b600181019050612ce0565b5050565b601f821115612d4357612d1481612be3565b612d1d84612bf8565b81016020851015612d2c578190505b612d40612d3885612bf8565b830182612cdf565b50505b505050565b600082821c905092915050565b6000612d6660001984600802612d48565b1980831691505092915050565b6000612d7f8383612d55565b9150826002028217905092915050565b612d9882612267565b67ffffffffffffffff811115612db157612db0612551565b5b612dbb82546129e5565b612dc6828285612d02565b600060209050601f831160018114612df95760008415612de7578287015190505b612df18582612d73565b865550612e59565b601f198416612e0786612be3565b60005b82811015612e2f57848901518255600182019150602085019450602081019050612e0a565b86831015612e4c5784890151612e48601f891682612d55565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60008154612e79816129e5565b612e838186612e61565b94506001821660008114612e9e5760018114612eb357612ee6565b60ff1983168652811515820286019350612ee6565b612ebc85612be3565b60005b83811015612ede57815481890152600182019150602081019050612ebf565b838801955050505b50505092915050565b6000612efa82612267565b612f048185612e61565b9350612f14818560208601612283565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612f56600583612e61565b9150612f6182612f20565b600582019050919050565b6000612f788285612e6c565b9150612f848284612eef565b9150612f8f82612f49565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ff7602683612272565b915061300282612f9b565b604082019050919050565b6000602082019050818103600083015261302681612fea565b9050919050565b7f596f752063616e206f6e6c79206d696e742074776f20746f6b656e7300000000600082015250565b6000613063601c83612272565b915061306e8261302d565b602082019050919050565b6000602082019050818103600083015261309281613056565b9050919050565b60008160601b9050919050565b60006130b182613099565b9050919050565b60006130c3826130a6565b9050919050565b6130db6130d68261239c565b6130b8565b82525050565b60006130ed82846130ca565b60148201915081905092915050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000613132600d83612272565b915061313d826130fc565b602082019050919050565b6000602082019050818103600083015261316181613125565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061319e602083612272565b91506131a982613168565b602082019050919050565b600060208201905081810360008301526131cd81613191565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006131fb826131d4565b61320581856131df565b9350613215818560208601612283565b61321e816122ad565b840191505092915050565b600060808201905061323e60008301876123ae565b61324b60208301866123ae565b61325860408301856124ca565b818103606083015261326a81846131f0565b905095945050505050565b600081519050613284816121d8565b92915050565b6000602082840312156132a05761329f6121a2565b5b60006132ae84828501613275565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006132f182612319565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361332357613322612a82565b5b60018201905091905056fea26469706673582212201de11f37bd83e08588a95c8ae0b345e844e6399da83de6bc2c1bced08a9d208664736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063c54e73e3116100b8578063f0d4f97b1161007c578063f0d4f97b14610614578063f2fde38b14610644578063f9f1253514610660578063fdea8e0b1461067c578063ffaeb5821461069a57610227565b8063c54e73e31461055e578063c87b56dd1461057a578063d5abeb01146105aa578063e6ba14c6146105c8578063e985e9c5146105e457610227565b806397bc411c116100ff57806397bc411c146104d0578063a22cb465146104ec578063a6a4db9914610508578063acec338a14610526578063b88d4fde1461054257610227565b8063715018a6146104805780637557b9ef1461048a5780638da5cb5b1461049457806395d89b41146104b257610227565b806323b872dd116101b357806355f804b31161018257806355f804b3146103ca5780636352211e146103e65780636c0360eb146104165780636f8b44b01461043457806370a082311461045057610227565b806323b872dd1461036c5780632db115441461038857806342842e0e146103a457806345f7e06e146103c057610227565b8063095ea7b3116101fa578063095ea7b3146102c85780630def3ead146102e45780631015805b1461030057806318160ddd146103305780632126ea811461034e57610227565b806301ffc9a71461022c57806302fb0c5e1461025c57806306fdde031461027a578063081812fc14610298575b600080fd5b61024660048036038101906102419190612204565b6106b8565b604051610253919061224c565b60405180910390f35b61026461074a565b604051610271919061224c565b60405180910390f35b61028261075d565b60405161028f91906122f7565b60405180910390f35b6102b260048036038101906102ad919061234f565b6107ef565b6040516102bf91906123bd565b60405180910390f35b6102e260048036038101906102dd9190612404565b61086e565b005b6102fe60048036038101906102f99190612470565b6109b2565b005b61031a6004803603810190610315919061249d565b6109d7565b60405161032791906124d9565b60405180910390f35b6103386109ef565b60405161034591906124d9565b60405180910390f35b610356610a06565b60405161036391906122f7565b60405180910390f35b610386600480360381019061038191906124f4565b610a94565b005b6103a2600480360381019061039d919061234f565b610db6565b005b6103be60048036038101906103b991906124f4565b610f73565b005b6103c8610f93565b005b6103e460048036038101906103df919061267c565b610fd3565b005b61040060048036038101906103fb919061234f565b610fee565b60405161040d91906123bd565b60405180910390f35b61041e611000565b60405161042b91906122f7565b60405180910390f35b61044e6004803603810190610449919061234f565b61108e565b005b61046a6004803603810190610465919061249d565b6110a0565b60405161047791906124d9565b60405180910390f35b610488611158565b005b61049261116c565b005b61049c6111ac565b6040516104a991906123bd565b60405180910390f35b6104ba6111d6565b6040516104c791906122f7565b60405180910390f35b6104ea60048036038101906104e5919061267c565b611268565b005b610506600480360381019061050191906126c5565b611283565b005b61051061138e565b60405161051d919061271e565b60405180910390f35b610540600480360381019061053b9190612470565b611394565b005b61055c600480360381019061055791906127da565b6113b9565b005b61057860048036038101906105739190612470565b61142c565b005b610594600480360381019061058f919061234f565b611451565b6040516105a191906122f7565b60405180910390f35b6105b2611597565b6040516105bf91906124d9565b60405180910390f35b6105e260048036038101906105dd9190612889565b61159d565b005b6105fe60048036038101906105f991906128b6565b6115af565b60405161060b919061224c565b60405180910390f35b61062e6004803603810190610629919061249d565b611643565b60405161063b91906124d9565b60405180910390f35b61065e6004803603810190610659919061249d565b61165b565b005b61067a60048036038101906106759190612956565b6116de565b005b61068461194f565b604051610691919061224c565b60405180910390f35b6106a2611962565b6040516106af919061224c565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107435750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600860149054906101000a900460ff1681565b60606002805461076c906129e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610798906129e5565b80156107e55780601f106107ba576101008083540402835291602001916107e5565b820191906000526020600020905b8154815290600101906020018083116107c857829003601f168201915b5050505050905090565b60006107fa82611975565b610830576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087982610fee565b90508073ffffffffffffffffffffffffffffffffffffffff1661089a6119d4565b73ffffffffffffffffffffffffffffffffffffffff16146108fd576108c6816108c16119d4565b6115af565b6108fc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6109ba6119dc565b80600e60006101000a81548160ff02191690831515021790555050565b600c6020528060005260406000206000915090505481565b60006109f9611a5a565b6001546000540303905090565b600f8054610a13906129e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3f906129e5565b8015610a8c5780601f10610a6157610100808354040283529160200191610a8c565b820191906000526020600020905b815481529060010190602001808311610a6f57829003601f168201915b505050505081565b6000610a9f82611a5f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b06576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b1284611b2b565b91509150610b288187610b236119d4565b611b52565b610b7457610b3d86610b386119d4565b6115af565b610b73576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610bda576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be78686866001611b96565b8015610bf257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cc085610c9c888887611b9c565b7c020000000000000000000000000000000000000000000000000000000017611bc4565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d465760006001850190506000600460008381526020019081526020016000205403610d44576000548114610d43578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dae8686866001611bef565b505050505050565b600860149054906101000a900460ff168015610ddf5750600860159054906101000a900460ff16155b610e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1590612a62565b60405180910390fd5b603c8111158015610e435750600d5481610e366109ef565b610e409190612ab1565b11155b610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990612b57565b60405180910390fd5b603c81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ecf9190612ab1565b1115610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790612bc3565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f5f9190612ab1565b92505081905550610f703382611bf5565b50565b610f8e838383604051806020016040528060008152506113b9565b505050565b610f9b6119dc565b6001600860146101000a81548160ff0219169083151502179055506000600860156101000a81548160ff021916908315150217905550565b610fdb6119dc565b8060099081610fea9190612d8f565b5050565b6000610ff982611a5f565b9050919050565b6009805461100d906129e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611039906129e5565b80156110865780601f1061105b57610100808354040283529160200191611086565b820191906000526020600020905b81548152906001019060200180831161106957829003601f168201915b505050505081565b6110966119dc565b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611107576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111606119dc565b61116a6000611c13565b565b6111746119dc565b6001600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111e5906129e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611211906129e5565b801561125e5780601f106112335761010080835404028352916020019161125e565b820191906000526020600020905b81548152906001019060200180831161124157829003601f168201915b5050505050905090565b6112706119dc565b80600f908161127f9190612d8f565b5050565b80600760006112906119d4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133d6119d4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611382919061224c565b60405180910390a35050565b600a5481565b61139c6119dc565b80600860146101000a81548160ff02191690831515021790555050565b6113c4848484610a94565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611426576113ef84848484611cd9565b611425576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6114346119dc565b80600860156101000a81548160ff02191690831515021790555050565b6060600e60009054906101000a900460ff166114f957600f8054611474906129e5565b80601f01602080910402602001604051908101604052809291908181526020018280546114a0906129e5565b80156114ed5780601f106114c2576101008083540402835291602001916114ed565b820191906000526020600020905b8154815290600101906020018083116114d057829003601f168201915b50505050509050611592565b61150282611975565b611538576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060098054611547906129e5565b905003611563576040518060200160405280600081525061158f565b600961156e83611e29565b60405160200161157f929190612f6c565b6040516020818303038152906040525b90505b919050565b600d5481565b6115a56119dc565b80600a8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b6020528060005260406000206000915090505481565b6116636119dc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c99061300d565b60405180910390fd5b6116db81611c13565b50565b600860149054906101000a900460ff1680156117065750600860159054906101000a900460ff165b611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c90612a62565b60405180910390fd5b6002811115801561176a5750600d548161175d6109ef565b6117679190612ab1565b11155b6117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a090612b57565b60405180910390fd5b600281600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117f69190612ab1565b1115611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e90613079565b60405180910390fd5b6118ab838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a543360405160200161189091906130e1565b60405160208183030381529060405280519060200120611e70565b6118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190613148565b60405180910390fd5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119399190612ab1565b9250508190555061194a3382611bf5565b505050565b600860159054906101000a900460ff1681565b600e60009054906101000a900460ff1681565b600081611980611a5a565b1115801561198f575060005482105b80156119cd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6119e4611e87565b73ffffffffffffffffffffffffffffffffffffffff16611a026111ac565b73ffffffffffffffffffffffffffffffffffffffff1614611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f906131b4565b60405180910390fd5b565b600090565b60008082905080611a6e611a5a565b11611af457600054811015611af35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611af1575b60008103611ae7576004600083600190039350838152602001908152602001600020549050611abd565b8092505050611b26565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bb3868684611e8f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611c0f828260405180602001604052806000815250611e98565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cff6119d4565b8786866040518563ffffffff1660e01b8152600401611d219493929190613229565b6020604051808303816000875af1925050508015611d5d57506040513d601f19601f82011682018060405250810190611d5a919061328a565b60015b611dd6573d8060008114611d8d576040519150601f19603f3d011682016040523d82523d6000602084013e611d92565b606091505b506000815103611dce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060806040510190508060405280825b600115611e5c57600183039250600a81066030018353600a8104905080611e3a575b508181036020830392508083525050919050565b600082611e7d8584611f35565b1490509392505050565b600033905090565b60009392505050565b611ea28383611f8b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f3057600080549050600083820390505b611ee26000868380600101945086611cd9565b611f18576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ecf578160005414611f2d57600080fd5b50505b505050565b60008082905060005b8451811015611f8057611f6b82868381518110611f5e57611f5d6132b7565b5b6020026020010151612146565b91508080611f78906132e6565b915050611f3e565b508091505092915050565b60008054905060008203611fcb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fd86000848385611b96565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061204f836120406000866000611b9c565b61204985612171565b17611bc4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146120f057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120b5565b506000820361212b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121416000848385611bef565b505050565b600081831061215e576121598284612181565b612169565b6121688383612181565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121e1816121ac565b81146121ec57600080fd5b50565b6000813590506121fe816121d8565b92915050565b60006020828403121561221a576122196121a2565b5b6000612228848285016121ef565b91505092915050565b60008115159050919050565b61224681612231565b82525050565b6000602082019050612261600083018461223d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122a1578082015181840152602081019050612286565b60008484015250505050565b6000601f19601f8301169050919050565b60006122c982612267565b6122d38185612272565b93506122e3818560208601612283565b6122ec816122ad565b840191505092915050565b6000602082019050818103600083015261231181846122be565b905092915050565b6000819050919050565b61232c81612319565b811461233757600080fd5b50565b60008135905061234981612323565b92915050565b600060208284031215612365576123646121a2565b5b60006123738482850161233a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123a78261237c565b9050919050565b6123b78161239c565b82525050565b60006020820190506123d260008301846123ae565b92915050565b6123e18161239c565b81146123ec57600080fd5b50565b6000813590506123fe816123d8565b92915050565b6000806040838503121561241b5761241a6121a2565b5b6000612429858286016123ef565b925050602061243a8582860161233a565b9150509250929050565b61244d81612231565b811461245857600080fd5b50565b60008135905061246a81612444565b92915050565b600060208284031215612486576124856121a2565b5b60006124948482850161245b565b91505092915050565b6000602082840312156124b3576124b26121a2565b5b60006124c1848285016123ef565b91505092915050565b6124d381612319565b82525050565b60006020820190506124ee60008301846124ca565b92915050565b60008060006060848603121561250d5761250c6121a2565b5b600061251b868287016123ef565b935050602061252c868287016123ef565b925050604061253d8682870161233a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612589826122ad565b810181811067ffffffffffffffff821117156125a8576125a7612551565b5b80604052505050565b60006125bb612198565b90506125c78282612580565b919050565b600067ffffffffffffffff8211156125e7576125e6612551565b5b6125f0826122ad565b9050602081019050919050565b82818337600083830152505050565b600061261f61261a846125cc565b6125b1565b90508281526020810184848401111561263b5761263a61254c565b5b6126468482856125fd565b509392505050565b600082601f83011261266357612662612547565b5b813561267384826020860161260c565b91505092915050565b600060208284031215612692576126916121a2565b5b600082013567ffffffffffffffff8111156126b0576126af6121a7565b5b6126bc8482850161264e565b91505092915050565b600080604083850312156126dc576126db6121a2565b5b60006126ea858286016123ef565b92505060206126fb8582860161245b565b9150509250929050565b6000819050919050565b61271881612705565b82525050565b6000602082019050612733600083018461270f565b92915050565b600067ffffffffffffffff82111561275457612753612551565b5b61275d826122ad565b9050602081019050919050565b600061277d61277884612739565b6125b1565b9050828152602081018484840111156127995761279861254c565b5b6127a48482856125fd565b509392505050565b600082601f8301126127c1576127c0612547565b5b81356127d184826020860161276a565b91505092915050565b600080600080608085870312156127f4576127f36121a2565b5b6000612802878288016123ef565b9450506020612813878288016123ef565b93505060406128248782880161233a565b925050606085013567ffffffffffffffff811115612845576128446121a7565b5b612851878288016127ac565b91505092959194509250565b61286681612705565b811461287157600080fd5b50565b6000813590506128838161285d565b92915050565b60006020828403121561289f5761289e6121a2565b5b60006128ad84828501612874565b91505092915050565b600080604083850312156128cd576128cc6121a2565b5b60006128db858286016123ef565b92505060206128ec858286016123ef565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261291657612915612547565b5b8235905067ffffffffffffffff811115612933576129326128f6565b5b60208301915083602082028301111561294f5761294e6128fb565b5b9250929050565b60008060006040848603121561296f5761296e6121a2565b5b600084013567ffffffffffffffff81111561298d5761298c6121a7565b5b61299986828701612900565b935093505060206129ac8682870161233a565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129fd57607f821691505b602082108103612a1057612a0f6129b6565b5b50919050565b7f436f6e7472616374206973206e6f742061637469766500000000000000000000600082015250565b6000612a4c601683612272565b9150612a5782612a16565b602082019050919050565b60006020820190508181036000830152612a7b81612a3f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612abc82612319565b9150612ac783612319565b9250828201905080821115612adf57612ade612a82565b5b92915050565b7f457863656564206d6178206d696e74206e756d626572206f72206f7574206f6660008201527f20737570706c7900000000000000000000000000000000000000000000000000602082015250565b6000612b41602783612272565b9150612b4c82612ae5565b604082019050919050565b60006020820190508181036000830152612b7081612b34565b9050919050565b7f596f752063616e206f6e6c79206d696e7420363020746f6b656e730000000000600082015250565b6000612bad601b83612272565b9150612bb882612b77565b602082019050919050565b60006020820190508181036000830152612bdc81612ba0565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612c457fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612c08565b612c4f8683612c08565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612c8c612c87612c8284612319565b612c67565b612319565b9050919050565b6000819050919050565b612ca683612c71565b612cba612cb282612c93565b848454612c15565b825550505050565b600090565b612ccf612cc2565b612cda818484612c9d565b505050565b5b81811015612cfe57612cf3600082612cc7565b600181019050612ce0565b5050565b601f821115612d4357612d1481612be3565b612d1d84612bf8565b81016020851015612d2c578190505b612d40612d3885612bf8565b830182612cdf565b50505b505050565b600082821c905092915050565b6000612d6660001984600802612d48565b1980831691505092915050565b6000612d7f8383612d55565b9150826002028217905092915050565b612d9882612267565b67ffffffffffffffff811115612db157612db0612551565b5b612dbb82546129e5565b612dc6828285612d02565b600060209050601f831160018114612df95760008415612de7578287015190505b612df18582612d73565b865550612e59565b601f198416612e0786612be3565b60005b82811015612e2f57848901518255600182019150602085019450602081019050612e0a565b86831015612e4c5784890151612e48601f891682612d55565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60008154612e79816129e5565b612e838186612e61565b94506001821660008114612e9e5760018114612eb357612ee6565b60ff1983168652811515820286019350612ee6565b612ebc85612be3565b60005b83811015612ede57815481890152600182019150602081019050612ebf565b838801955050505b50505092915050565b6000612efa82612267565b612f048185612e61565b9350612f14818560208601612283565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612f56600583612e61565b9150612f6182612f20565b600582019050919050565b6000612f788285612e6c565b9150612f848284612eef565b9150612f8f82612f49565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ff7602683612272565b915061300282612f9b565b604082019050919050565b6000602082019050818103600083015261302681612fea565b9050919050565b7f596f752063616e206f6e6c79206d696e742074776f20746f6b656e7300000000600082015250565b6000613063601c83612272565b915061306e8261302d565b602082019050919050565b6000602082019050818103600083015261309281613056565b9050919050565b60008160601b9050919050565b60006130b182613099565b9050919050565b60006130c3826130a6565b9050919050565b6130db6130d68261239c565b6130b8565b82525050565b60006130ed82846130ca565b60148201915081905092915050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000613132600d83612272565b915061313d826130fc565b602082019050919050565b6000602082019050818103600083015261316181613125565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061319e602083612272565b91506131a982613168565b602082019050919050565b600060208201905081810360008301526131cd81613191565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006131fb826131d4565b61320581856131df565b9350613215818560208601612283565b61321e816122ad565b840191505092915050565b600060808201905061323e60008301876123ae565b61324b60208301866123ae565b61325860408301856124ca565b818103606083015261326a81846131f0565b905095945050505050565b600081519050613284816121d8565b92915050565b6000602082840312156132a05761329f6121a2565b5b60006132ae84828501613275565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006132f182612319565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361332357613322612a82565b5b60018201905091905056fea26469706673582212201de11f37bd83e08588a95c8ae0b345e844e6399da83de6bc2c1bced08a9d208664736f6c63430008120033

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.