ETH Price: $3,247.66 (-0.38%)
Gas: 3 Gwei

Token

Crazy Tigers (CT)
 

Overview

Max Total Supply

1,039 CT

Holders

462

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 CT
0xbabcdad3b3cda6ca7041a87253529d49658c7d59
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:
CrazyTigers

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : CrazyTigers.sol
//SPDX-License-Identifier: Unlicense
// Art by @walshe_steve // Copyright © Steve Walshe
// Code by @0xGeeLoko


/* 

             (`-')  (`-')  _   (`-')                 (`-')      _                (`-')  _   (`-')  (`-').-> 
 _        <-.(OO )  (OO ).-/   ( OO).->    .->       ( OO).->  (_)        .->    ( OO).-/<-.(OO )  ( OO)_   
 \-,-----.,------,) / ,---.  ,(_/----. ,--.'  ,-.    /    '._  ,-(`-') ,---(`-')(,------.,------,)(_)--\_)  
  |  .--./|   /`. ' | \ /`.\ |__,    |(`-')'.'  /    |'--...__)| ( OO)'  .-(OO ) |  .---'|   /`. '/    _ /  
 /_) (`-')|  |_.' | '-'|_.' | (_/   / (OO \    /     `--.  .--'|  |  )|  | .-, \(|  '--. |  |_.' |\_..`--.  
 ||  |OO )|  .   .'(|  .-.  | .'  .'_  |  /   /)        |  |  (|  |_/ |  | '.(_/ |  .--' |  .   .'.-._)   \ 
(_'  '--'\|  |\  \  |  | |  ||       | `-/   /`         |  |   |  |'->|  '-'  |  |  `---.|  |\  \ \       / 
   `-----'`--' '--' `--' `--'`-------'   `--'           `--'   `--'    `-----'   `------'`--' '--' `-----'  

 */

pragma solidity ^0.8.4;

import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./MerkleDistributor.sol";


contract CrazyTigers is ERC721A, MerkleDistributor, Ownable, ReentrancyGuard {
    using Strings for string;
    
    uint256 public mintPrice = 9000000000000000;
    uint256 public maxSupply = 3333;
    uint256 public maxReserve = 667;
    uint256 public maxDev = 333;
    uint256 public maxAllow = 2;
    uint256 public maxPublic = 6;
    uint256 public maxVip = 1;

    mapping(address => uint256) public vipWalletMints;
    address payable private founderWallet = payable(0xe03064F8fB12B6457A04166e1462889b98323931);
    address payable private artistWallet = payable(0x7fF7549e6594B24c88c4f08BCBb67Aa6fC549175);

    string internal baseTokenUri;
    bool public saleActive;
    bool public saleOver;
    uint256 public reserveSupply;
    uint256 public devSupply;

    
    
    

    
    constructor() ERC721A('Crazy Tigers','CT') {}


    modifier ableToMint(uint256 numberOfTokens) {
        require(totalSupply() + numberOfTokens <= maxSupply, 'Purchase would exceed Max Token Supply');
        _;
    }

    modifier ableToVipMint(uint256 numberOfTokens) {
        require(totalSupply() + numberOfTokens <= maxReserve, 'Purchase would exceed max VIP reserve');
        _;
    }
    
    modifier isPublicSaleActive() {
        require(saleActive, 'Public sale is not active');
        _;
    }
    modifier isVipSaleOver() {
        require(saleOver, 'Vip sale is not over');
        _;
    }
    /**
     * allow list
     */
    function setAllowListActive(bool allowListActive) external onlyOwner {
    _setAllowListActive(allowListActive);
    }
    
    function setAllowList(bytes32 merkleRoot) external onlyOwner {
        _setAllowList(merkleRoot);
    }
    

    /**
     * tokens
     */
    function setBaseTokenUri(string calldata baseTokenUri_) external onlyOwner {
        baseTokenUri = baseTokenUri_;
    }
    

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), 'Token does not exist!');
        return string(abi.encodePacked(baseTokenUri, Strings.toString(tokenId), '.json'));
    }


    /**
     * admin
     */
    
    function devMint(uint256 numberOfTokens) 
    external 
    onlyOwner
    ableToMint(numberOfTokens)
    nonReentrant {
        require(numberOfTokens > 0, "Must mint at least one");
        require(devSupply + numberOfTokens <= maxDev, 'minted out team reserve');
        
        devSupply += numberOfTokens;
        _safeMint(msg.sender, numberOfTokens);
    }
    

    function setSaleActive(bool state) external onlyOwner {
        saleActive = state;
    }

    function setVipSaleOver(bool state) external onlyOwner {
        saleOver = state;
    }
    

    /**
     * public
     */

    function vipMint(uint256 numberOfTokens, bytes32[] memory merkleProof) 
    external 
    isAllowListActive
    ableToClaim(msg.sender, merkleProof) 
    ableToVipMint(numberOfTokens)
    nonReentrant {
        require(numberOfTokens > 0, "Must mint at least one");
        require(reserveSupply + numberOfTokens <= maxReserve, 'minted out VIP reserve');
        require(vipWalletMints[msg.sender] + numberOfTokens <= maxVip, 'exceed max wallet');
        
        reserveSupply += numberOfTokens;
        vipWalletMints[msg.sender] += numberOfTokens;
        _safeMint(msg.sender, numberOfTokens);
    }

    function allowListMint(uint256 numberOfTokens, bytes32[] memory merkleProof) 
    external
    payable
    isAllowListActive
    isVipSaleOver
    ableToClaim(msg.sender, merkleProof)
    tokensAvailable(msg.sender, numberOfTokens, maxAllow)
    ableToMint(numberOfTokens)
    nonReentrant 
    {
        require(numberOfTokens > 0, "Must mint at least one");
        require(numberOfTokens * mintPrice == msg.value, 'Ether value sent is not correct');
        
        _setAllowListMinted(msg.sender, numberOfTokens);
        _safeMint(msg.sender, numberOfTokens);
    }

    function publicMint(uint256 numberOfTokens) 
    external
    payable
    isPublicSaleActive
    ableToMint(numberOfTokens)
    nonReentrant
    {
        require(numberOfTokens > 0, "Must mint at least one");
        require(numberOfTokens <= maxPublic, 'Exceeded max token purchase');
        require(numberOfTokens * mintPrice == msg.value, 'Ether value sent is not correct');
        
       
        _safeMint(msg.sender, numberOfTokens);

    }

    /**
     * withdraw
     */

    function withdraw() external nonReentrant
    {
        require(msg.sender == founderWallet || msg.sender == artistWallet || msg.sender == owner(), "Invalid sender");
        (bool success, ) = founderWallet.call{value: address(this).balance / 100 * 75}("");
        (bool success2, ) = artistWallet.call{value: address(this).balance / 100 * 40}(""); 
        (bool success3, ) = owner().call{value: address(this).balance}(""); 
        require(success, "Transfer 1 failed");
        require(success2, "Transfer 2 failed");
        require(success3, "Transfer 3 failed");
    }
    
}

File 2 of 15 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary 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 {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

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

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

File 3 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 6 of 15 : MerkleDistributor.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';

contract MerkleDistributor {
    bytes32 public merkleRoot;
    bool public allowListActive = false;

    mapping(address => uint256) private _allowListNumMinted;

    /**
     * @dev emitted when an account has claimed some tokens
     */
    event Claimed(address indexed account, uint256 amount);

    /**
     * @dev emitted when the merkle root has changed
     */
    event MerkleRootChanged(bytes32 merkleRoot);

    /**
     * @dev throws when allow list is not active
     */
    modifier isAllowListActive() {
        require(allowListActive, 'Allow list is not active');
        _;
    }

    /**
     * @dev throws when number of tokens exceeds total token amount
     */
    modifier tokensAvailable(
        address to,
        uint256 numberOfTokens,
        uint256 totalTokenAmount
    ) {
        uint256 claimed = getAllowListMinted(to);
        require(claimed + numberOfTokens <= totalTokenAmount, 'Purchase would exceed number of tokens allotted');
        _;
    }

    /**
     * @dev throws when parameters sent by claimer is incorrect
     */
    modifier ableToClaim(address claimer, bytes32[] memory proof) {
        require(onAllowList(claimer, proof), 'Not on allow list');
        _;
    }

    /**
     * @dev sets the state of the allow list
     */
    function _setAllowListActive(bool allowListActive_) internal virtual {
        allowListActive = allowListActive_;
    }

    /**
     * @dev sets the merkle root
     */
    function _setAllowList(bytes32 merkleRoot_) internal virtual {
        merkleRoot = merkleRoot_;

        emit MerkleRootChanged(merkleRoot);
    }

    /**
     * @dev adds the number of tokens to the incoming address
     */
    function _setAllowListMinted(address to, uint256 numberOfTokens) internal virtual {
        _allowListNumMinted[to] += numberOfTokens;

        emit Claimed(to, numberOfTokens);
    }

    /**
     * @dev gets the number of tokens from the address
     */
    function getAllowListMinted(address from) public view virtual returns (uint256) {
        return _allowListNumMinted[from];
    }

    /**
     * @dev checks if the claimer has a valid proof
     */
    function onAllowList(address claimer, bytes32[] memory proof) public view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(claimer));
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }
}

File 7 of 15 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

File 8 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 9 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @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 have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * 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.
 */
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 proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _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}
     *
     * _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 the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _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}
     *
     * _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)
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"MerkleRootChanged","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":"allowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"allowListMint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"getAllowListMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxAllow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxVip","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"claimer","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveSupply","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":"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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleOver","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"allowListActive","type":"bool"}],"name":"setAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenUri_","type":"string"}],"name":"setBaseTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setVipSaleOver","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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"vipMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"vipWalletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600960006101000a81548160ff021916908315150217905550661ff973cafa8000600d55610d05600e5561029b600f5561014d60105560026011556006601255600160135573e03064f8fb12b6457a04166e1462889b98323931601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737ff7549e6594b24c88c4f08bcbb67aa6fc549175601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200010257600080fd5b506040518060400160405280600c81526020017f4372617a792054696765727300000000000000000000000000000000000000008152506040518060400160405280600281526020017f4354000000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000187929190620002ba565b508060039080519060200190620001a0929190620002ba565b50620001b1620001e760201b60201c565b6000819055505050620001d9620001cd620001ec60201b60201c565b620001f460201b60201c565b6001600c81905550620003cf565b600090565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c8906200036a565b90600052602060002090601f016020900481019282620002ec576000855562000338565b82601f106200030757805160ff191683800117855562000338565b8280016001018555821562000338579182015b82811115620003375782518255916020019190600101906200031a565b5b5090506200034791906200034b565b5090565b5b80821115620003665760008160009055506001016200034c565b5090565b600060028204905060018216806200038357607f821691505b602082108114156200039a5762000399620003a0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614bb580620003df6000396000f3fe60806040526004361061025c5760003560e01c80636352211e1161014457806395d89b41116100b6578063c87b56dd1161007a578063c87b56dd146108c7578063d5abeb0114610904578063e985e9c51461092f578063ec8bda8e1461096c578063f2fde38b14610988578063f3b3a9fa146109b15761025c565b806395d89b41146107e25780639f18b4d21461080d578063a22cb46514610838578063b32c568014610861578063b88d4fde1461089e5761025c565b80637dc42975116101085780637dc42975146106e8578063841718a61461071357806384584d071461073c57806388ef0018146107655780638da5cb5b1461078e57806395652cfa146107b95761025c565b80636352211e146106015780636817c76c1461063e57806368428a1b1461066957806370a0823114610694578063715018a6146106d15761025c565b80632a52a54a116101dd5780633ccfd60b116101a15780633ccfd60b1461050357806341c66d0a1461051a57806342842e0e1461054557806343a4ccee1461056e578063457dbf21146105995780635ea1ef52146105c45761025c565b80632a52a54a1461042d5780632db115441461046a5780632eb4a7ab14610486578063375a069a146104b15780633a73c58d146104da5761025c565b8063095ea7b311610224578063095ea7b31461035a578063105c55821461038357806318160ddd146103ae57806323b80995146103d957806323b872dd146104045761025c565b806301ffc9a71461026157806303d41eb61461029e57806306fdde03146102c957806307f3dba8146102f4578063081812fc1461031d575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906138cf565b6109dc565b6040516102959190613f43565b60405180910390f35b3480156102aa57600080fd5b506102b3610abe565b6040516102c0919061423b565b60405180910390f35b3480156102d557600080fd5b506102de610ac4565b6040516102eb9190613f79565b60405180910390f35b34801561030057600080fd5b5061031b6004803603810190610316919061387d565b610b56565b005b34801561032957600080fd5b50610344600480360381019061033f9190613966565b610b7b565b6040516103519190613edc565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190613841565b610bf7565b005b34801561038f57600080fd5b50610398610cfc565b6040516103a5919061423b565b60405180910390f35b3480156103ba57600080fd5b506103c3610d02565b6040516103d0919061423b565b60405180910390f35b3480156103e557600080fd5b506103ee610d19565b6040516103fb9190613f43565b60405180910390f35b34801561041057600080fd5b5061042b600480360381019061042691906136e7565b610d2c565b005b34801561043957600080fd5b50610454600480360381019061044f9190613682565b610d3c565b604051610461919061423b565b60405180910390f35b610484600480360381019061047f9190613966565b610d54565b005b34801561049257600080fd5b5061049b610f36565b6040516104a89190613f5e565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d39190613966565b610f3c565b005b3480156104e657600080fd5b5061050160048036038101906104fc919061387d565b6110ae565b005b34801561050f57600080fd5b506105186110c2565b005b34801561052657600080fd5b5061052f6114c1565b60405161053c919061423b565b60405180910390f35b34801561055157600080fd5b5061056c600480360381019061056791906136e7565b6114c7565b005b34801561057a57600080fd5b506105836114e7565b604051610590919061423b565b60405180910390f35b3480156105a557600080fd5b506105ae6114ed565b6040516105bb9190613f43565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190613682565b611500565b6040516105f8919061423b565b60405180910390f35b34801561060d57600080fd5b5061062860048036038101906106239190613966565b611549565b6040516106359190613edc565b60405180910390f35b34801561064a57600080fd5b5061065361155f565b604051610660919061423b565b60405180910390f35b34801561067557600080fd5b5061067e611565565b60405161068b9190613f43565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190613682565b611578565b6040516106c8919061423b565b60405180910390f35b3480156106dd57600080fd5b506106e6611648565b005b3480156106f457600080fd5b506106fd61165c565b60405161070a919061423b565b60405180910390f35b34801561071f57600080fd5b5061073a6004803603810190610735919061387d565b611662565b005b34801561074857600080fd5b50610763600480360381019061075e91906138a6565b611687565b005b34801561077157600080fd5b5061078c6004803603810190610787919061398f565b61169b565b005b34801561079a57600080fd5b506107a3611987565b6040516107b09190613edc565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db9190613921565b6119b1565b005b3480156107ee57600080fd5b506107f76119cf565b6040516108049190613f79565b60405180910390f35b34801561081957600080fd5b50610822611a61565b60405161082f919061423b565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a9190613805565b611a67565b005b34801561086d57600080fd5b50610888600480360381019061088391906137b1565b611bdf565b6040516108959190613f43565b60405180910390f35b3480156108aa57600080fd5b506108c560048036038101906108c09190613736565b611c21565b005b3480156108d357600080fd5b506108ee60048036038101906108e99190613966565b611c99565b6040516108fb9190613f79565b60405180910390f35b34801561091057600080fd5b50610919611d15565b604051610926919061423b565b60405180910390f35b34801561093b57600080fd5b50610956600480360381019061095191906136ab565b611d1b565b6040516109639190613f43565b60405180910390f35b6109866004803603810190610981919061398f565b611daf565b005b34801561099457600080fd5b506109af60048036038101906109aa9190613682565b612057565b005b3480156109bd57600080fd5b506109c66120db565b6040516109d3919061423b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab75750610ab6826120e1565b5b9050919050565b60195481565b606060028054610ad390614510565b80601f0160208091040260200160405190810160405280929190818152602001828054610aff90614510565b8015610b4c5780601f10610b2157610100808354040283529160200191610b4c565b820191906000526020600020905b815481529060010190602001808311610b2f57829003601f168201915b5050505050905090565b610b5e61214b565b80601860016101000a81548160ff02191690831515021790555050565b6000610b86826121c9565b610bbc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c0282611549565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c6a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c89612217565b73ffffffffffffffffffffffffffffffffffffffff1614610cec57610cb581610cb0612217565b611d1b565b610ceb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610cf783838361221f565b505050565b60135481565b6000610d0c6122d1565b6001546000540303905090565b601860019054906101000a900460ff1681565b610d378383836122d6565b505050565b60146020528060005260406000206000915090505481565b601860009054906101000a900460ff16610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a906140db565b60405180910390fd5b80600e5481610db0610d02565b610dba919061433b565b1115610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df29061417b565b60405180910390fd5b6002600c541415610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e38906141bb565b60405180910390fd5b6002600c8190555060008211610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e83906141fb565b60405180910390fd5b601254821115610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec89061415b565b60405180910390fd5b34600d5483610ee091906143c2565b14610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f179061405b565b60405180910390fd5b610f2a338361278c565b6001600c819055505050565b60085481565b610f4461214b565b80600e5481610f51610d02565b610f5b919061433b565b1115610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f939061417b565b60405180910390fd5b6002600c541415610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd9906141bb565b60405180910390fd5b6002600c819055506000821161102d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611024906141fb565b60405180910390fd5b60105482601a5461103e919061433b565b111561107f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110769061401b565b60405180910390fd5b81601a6000828254611091919061433b565b925050819055506110a2338361278c565b6001600c819055505050565b6110b661214b565b6110bf816127aa565b50565b6002600c541415611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff906141bb565b60405180910390fd5b6002600c81905550601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806111b95750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806111f657506111c7611987565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c906140bb565b60405180910390fd5b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16604b60644761127f9190614391565b61128991906143c2565b60405161129590613ec7565b60006040518083038185875af1925050503d80600081146112d2576040519150601f19603f3d011682016040523d82523d6000602084013e6112d7565b606091505b505090506000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660286064476113259190614391565b61132f91906143c2565b60405161133b90613ec7565b60006040518083038185875af1925050503d8060008114611378576040519150601f19603f3d011682016040523d82523d6000602084013e61137d565b606091505b50509050600061138b611987565b73ffffffffffffffffffffffffffffffffffffffff16476040516113ae90613ec7565b60006040518083038185875af1925050503d80600081146113eb576040519150601f19603f3d011682016040523d82523d6000602084013e6113f0565b606091505b5050905082611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b9061407b565b60405180910390fd5b81611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b906140fb565b60405180910390fd5b806114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab90613fbb565b60405180910390fd5b5050506001600c81905550565b601a5481565b6114e283838360405180602001604052806000815250611c21565b505050565b60105481565b600960009054906101000a900460ff1681565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000611554826127c7565b600001519050919050565b600d5481565b601860009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61165061214b565b61165a6000612a52565b565b60125481565b61166a61214b565b80601860006101000a81548160ff02191690831515021790555050565b61168f61214b565b61169881612b18565b50565b600960009054906101000a900460ff166116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e19061419b565b60405180910390fd5b33816116f68282611bdf565b611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c90613fdb565b60405180910390fd5b83600f5481611742610d02565b61174c919061433b565b111561178d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117849061409b565b60405180910390fd5b6002600c5414156117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ca906141bb565b60405180910390fd5b6002600c819055506000851161181e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611815906141fb565b60405180910390fd5b600f548560195461182f919061433b565b1115611870576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118679061421b565b60405180910390fd5b60135485601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118be919061433b565b11156118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f69061411b565b60405180910390fd5b8460196000828254611911919061433b565b9250508190555084601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611967919061433b565b92505081905550611978338661278c565b6001600c819055505050505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119b961214b565b8181601791906119ca9291906133d6565b505050565b6060600380546119de90614510565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0a90614510565b8015611a575780601f10611a2c57610100808354040283529160200191611a57565b820191906000526020600020905b815481529060010190602001808311611a3a57829003601f168201915b5050505050905090565b60115481565b611a6f612217565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ad4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ae1612217565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b8e612217565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bd39190613f43565b60405180910390a35050565b60008083604051602001611bf39190613e7d565b604051602081830303815290604052805190602001209050611c188360085483612b5b565b91505092915050565b611c2c8484846122d6565b611c4b8373ffffffffffffffffffffffffffffffffffffffff16612b72565b15611c9357611c5c84848484612b95565b611c92576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611ca4826121c9565b611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda906141db565b60405180910390fd5b6017611cee83612cf5565b604051602001611cff929190613e98565b6040516020818303038152906040529050919050565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600960009054906101000a900460ff16611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df59061419b565b60405180910390fd5b601860019054906101000a900460ff16611e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4490613f9b565b60405180910390fd5b3381611e598282611bdf565b611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f90613fdb565b60405180910390fd5b33846011546000611ea884611500565b9050818382611eb7919061433b565b1115611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef9061403b565b60405180910390fd5b87600e5481611f05610d02565b611f0f919061433b565b1115611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f479061417b565b60405180910390fd5b6002600c541415611f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8d906141bb565b60405180910390fd5b6002600c8190555060008911611fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd8906141fb565b60405180910390fd5b34600d548a611ff091906143c2565b14612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120279061405b565b60405180910390fd5b61203a338a612ea2565b612044338a61278c565b6001600c81905550505050505050505050565b61205f61214b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c690613ffb565b60405180910390fd5b6120d881612a52565b50565b600f5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612153612217565b73ffffffffffffffffffffffffffffffffffffffff16612171611987565b73ffffffffffffffffffffffffffffffffffffffff16146121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be9061413b565b60405180910390fd5b565b6000816121d46122d1565b111580156121e3575060005482105b8015612210575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006122e1826127c7565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461234c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661236d612217565b73ffffffffffffffffffffffffffffffffffffffff16148061239c575061239b85612396612217565b611d1b565b5b806123e157506123aa612217565b73ffffffffffffffffffffffffffffffffffffffff166123c984610b7b565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061241a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612481576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61248e8585856001612f4a565b61249a6000848761221f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561271a57600054821461271957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127858585856001612f50565b5050505050565b6127a6828260405180602001604052806000815250612f56565b5050565b80600960006101000a81548160ff02191690831515021790555050565b6127cf61345c565b6000829050806127dd6122d1565b11612a1b57600054811015612a1a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612a1857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128fc578092505050612a4d565b5b600115612a1757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a12578092505050612a4d565b6128fd565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806008819055507f1b930366dfeaa7eb3b325021e4ae81e36527063452ee55b86c95f85b36f4c31c600854604051612b509190613f5e565b60405180910390a150565b600082612b688584613318565b1490509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bbb612217565b8786866040518563ffffffff1660e01b8152600401612bdd9493929190613ef7565b602060405180830381600087803b158015612bf757600080fd5b505af1925050508015612c2857506040513d601f19601f82011682018060405250810190612c2591906138f8565b60015b612ca2573d8060008114612c58576040519150601f19603f3d011682016040523d82523d6000602084013e612c5d565b606091505b50600081511415612c9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612d3d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e9d565b600082905060005b60008214612d6f578080612d5890614573565b915050600a82612d689190614391565b9150612d45565b60008167ffffffffffffffff811115612db1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612de35781602001600182028036833780820191505090505b5090505b60008514612e9657600182612dfc919061441c565b9150600a85612e0b91906145e0565b6030612e17919061433b565b60f81b818381518110612e53577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e8f9190614391565b9450612de7565b8093505050505b919050565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ef1919061433b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff167fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a82604051612f3e919061423b565b60405180910390a25050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fc3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612ffe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61300b6000858386612f4a565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506131cc8673ffffffffffffffffffffffffffffffffffffffff16612b72565b15613291575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132416000878480600101955087612b95565b613277576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106131d257826000541461328c57600080fd5b6132fc565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613292575b8160008190555050506133126000858386612f50565b50505050565b60008082905060005b84518110156133895761337482868381518110613367577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151613394565b9150808061338190614573565b915050613321565b508091505092915050565b60008183106133ac576133a782846133bf565b6133b7565b6133b683836133bf565b5b905092915050565b600082600052816020526040600020905092915050565b8280546133e290614510565b90600052602060002090601f016020900481019282613404576000855561344b565b82601f1061341d57803560ff191683800117855561344b565b8280016001018555821561344b579182015b8281111561344a57823582559160200191906001019061342f565b5b509050613458919061349f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156134b85760008160009055506001016134a0565b5090565b60006134cf6134ca8461427b565b614256565b905080838252602082019050828560208602820111156134ee57600080fd5b60005b8581101561351e578161350488826135ba565b8452602084019350602083019250506001810190506134f1565b5050509392505050565b600061353b613536846142a7565b614256565b90508281526020810184848401111561355357600080fd5b61355e8482856144ce565b509392505050565b60008135905061357581614b0c565b92915050565b600082601f83011261358c57600080fd5b813561359c8482602086016134bc565b91505092915050565b6000813590506135b481614b23565b92915050565b6000813590506135c981614b3a565b92915050565b6000813590506135de81614b51565b92915050565b6000815190506135f381614b51565b92915050565b600082601f83011261360a57600080fd5b813561361a848260208601613528565b91505092915050565b60008083601f84011261363557600080fd5b8235905067ffffffffffffffff81111561364e57600080fd5b60208301915083600182028301111561366657600080fd5b9250929050565b60008135905061367c81614b68565b92915050565b60006020828403121561369457600080fd5b60006136a284828501613566565b91505092915050565b600080604083850312156136be57600080fd5b60006136cc85828601613566565b92505060206136dd85828601613566565b9150509250929050565b6000806000606084860312156136fc57600080fd5b600061370a86828701613566565b935050602061371b86828701613566565b925050604061372c8682870161366d565b9150509250925092565b6000806000806080858703121561374c57600080fd5b600061375a87828801613566565b945050602061376b87828801613566565b935050604061377c8782880161366d565b925050606085013567ffffffffffffffff81111561379957600080fd5b6137a5878288016135f9565b91505092959194509250565b600080604083850312156137c457600080fd5b60006137d285828601613566565b925050602083013567ffffffffffffffff8111156137ef57600080fd5b6137fb8582860161357b565b9150509250929050565b6000806040838503121561381857600080fd5b600061382685828601613566565b9250506020613837858286016135a5565b9150509250929050565b6000806040838503121561385457600080fd5b600061386285828601613566565b92505060206138738582860161366d565b9150509250929050565b60006020828403121561388f57600080fd5b600061389d848285016135a5565b91505092915050565b6000602082840312156138b857600080fd5b60006138c6848285016135ba565b91505092915050565b6000602082840312156138e157600080fd5b60006138ef848285016135cf565b91505092915050565b60006020828403121561390a57600080fd5b6000613918848285016135e4565b91505092915050565b6000806020838503121561393457600080fd5b600083013567ffffffffffffffff81111561394e57600080fd5b61395a85828601613623565b92509250509250929050565b60006020828403121561397857600080fd5b60006139868482850161366d565b91505092915050565b600080604083850312156139a257600080fd5b60006139b08582860161366d565b925050602083013567ffffffffffffffff8111156139cd57600080fd5b6139d98582860161357b565b9150509250929050565b6139ec81614450565b82525050565b613a036139fe82614450565b6145bc565b82525050565b613a1281614462565b82525050565b613a218161446e565b82525050565b6000613a32826142ed565b613a3c8185614303565b9350613a4c8185602086016144dd565b613a55816146cd565b840191505092915050565b6000613a6b826142f8565b613a75818561431f565b9350613a858185602086016144dd565b613a8e816146cd565b840191505092915050565b6000613aa4826142f8565b613aae8185614330565b9350613abe8185602086016144dd565b80840191505092915050565b60008154613ad781614510565b613ae18186614330565b94506001821660008114613afc5760018114613b0d57613b40565b60ff19831686528186019350613b40565b613b16856142d8565b60005b83811015613b3857815481890152600182019150602081019050613b19565b838801955050505b50505092915050565b6000613b5660148361431f565b9150613b61826146eb565b602082019050919050565b6000613b7960118361431f565b9150613b8482614714565b602082019050919050565b6000613b9c60118361431f565b9150613ba78261473d565b602082019050919050565b6000613bbf60268361431f565b9150613bca82614766565b604082019050919050565b6000613be260178361431f565b9150613bed826147b5565b602082019050919050565b6000613c05602f8361431f565b9150613c10826147de565b604082019050919050565b6000613c28601f8361431f565b9150613c338261482d565b602082019050919050565b6000613c4b60118361431f565b9150613c5682614856565b602082019050919050565b6000613c6e60258361431f565b9150613c798261487f565b604082019050919050565b6000613c91600e8361431f565b9150613c9c826148ce565b602082019050919050565b6000613cb460198361431f565b9150613cbf826148f7565b602082019050919050565b6000613cd760118361431f565b9150613ce282614920565b602082019050919050565b6000613cfa600583614330565b9150613d0582614949565b600582019050919050565b6000613d1d60118361431f565b9150613d2882614972565b602082019050919050565b6000613d4060208361431f565b9150613d4b8261499b565b602082019050919050565b6000613d63601b8361431f565b9150613d6e826149c4565b602082019050919050565b6000613d8660268361431f565b9150613d91826149ed565b604082019050919050565b6000613da9600083614314565b9150613db482614a3c565b600082019050919050565b6000613dcc60188361431f565b9150613dd782614a3f565b602082019050919050565b6000613def601f8361431f565b9150613dfa82614a68565b602082019050919050565b6000613e1260158361431f565b9150613e1d82614a91565b602082019050919050565b6000613e3560168361431f565b9150613e4082614aba565b602082019050919050565b6000613e5860168361431f565b9150613e6382614ae3565b602082019050919050565b613e77816144c4565b82525050565b6000613e8982846139f2565b60148201915081905092915050565b6000613ea48285613aca565b9150613eb08284613a99565b9150613ebb82613ced565b91508190509392505050565b6000613ed282613d9c565b9150819050919050565b6000602082019050613ef160008301846139e3565b92915050565b6000608082019050613f0c60008301876139e3565b613f1960208301866139e3565b613f266040830185613e6e565b8181036060830152613f388184613a27565b905095945050505050565b6000602082019050613f586000830184613a09565b92915050565b6000602082019050613f736000830184613a18565b92915050565b60006020820190508181036000830152613f938184613a60565b905092915050565b60006020820190508181036000830152613fb481613b49565b9050919050565b60006020820190508181036000830152613fd481613b6c565b9050919050565b60006020820190508181036000830152613ff481613b8f565b9050919050565b6000602082019050818103600083015261401481613bb2565b9050919050565b6000602082019050818103600083015261403481613bd5565b9050919050565b6000602082019050818103600083015261405481613bf8565b9050919050565b6000602082019050818103600083015261407481613c1b565b9050919050565b6000602082019050818103600083015261409481613c3e565b9050919050565b600060208201905081810360008301526140b481613c61565b9050919050565b600060208201905081810360008301526140d481613c84565b9050919050565b600060208201905081810360008301526140f481613ca7565b9050919050565b6000602082019050818103600083015261411481613cca565b9050919050565b6000602082019050818103600083015261413481613d10565b9050919050565b6000602082019050818103600083015261415481613d33565b9050919050565b6000602082019050818103600083015261417481613d56565b9050919050565b6000602082019050818103600083015261419481613d79565b9050919050565b600060208201905081810360008301526141b481613dbf565b9050919050565b600060208201905081810360008301526141d481613de2565b9050919050565b600060208201905081810360008301526141f481613e05565b9050919050565b6000602082019050818103600083015261421481613e28565b9050919050565b6000602082019050818103600083015261423481613e4b565b9050919050565b60006020820190506142506000830184613e6e565b92915050565b6000614260614271565b905061426c8282614542565b919050565b6000604051905090565b600067ffffffffffffffff8211156142965761429561469e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156142c2576142c161469e565b5b6142cb826146cd565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614346826144c4565b9150614351836144c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561438657614385614611565b5b828201905092915050565b600061439c826144c4565b91506143a7836144c4565b9250826143b7576143b6614640565b5b828204905092915050565b60006143cd826144c4565b91506143d8836144c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561441157614410614611565b5b828202905092915050565b6000614427826144c4565b9150614432836144c4565b92508282101561444557614444614611565b5b828203905092915050565b600061445b826144a4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156144fb5780820151818401526020810190506144e0565b8381111561450a576000848401525b50505050565b6000600282049050600182168061452857607f821691505b6020821081141561453c5761453b61466f565b5b50919050565b61454b826146cd565b810181811067ffffffffffffffff8211171561456a5761456961469e565b5b80604052505050565b600061457e826144c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145b1576145b0614611565b5b600182019050919050565b60006145c7826145ce565b9050919050565b60006145d9826146de565b9050919050565b60006145eb826144c4565b91506145f6836144c4565b92508261460657614605614640565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5669702073616c65206973206e6f74206f766572000000000000000000000000600082015250565b7f5472616e736665722033206661696c6564000000000000000000000000000000600082015250565b7f4e6f74206f6e20616c6c6f77206c697374000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d696e746564206f7574207465616d2072657365727665000000000000000000600082015250565b7f507572636861736520776f756c6420657863656564206e756d626572206f662060008201527f746f6b656e7320616c6c6f747465640000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f5472616e736665722031206661696c6564000000000000000000000000000000600082015250565b7f507572636861736520776f756c6420657863656564206d61782056495020726560008201527f7365727665000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642073656e646572000000000000000000000000000000000000600082015250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b7f5472616e736665722032206661696c6564000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f657863656564206d61782077616c6c6574000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f507572636861736520776f756c6420657863656564204d617820546f6b656e2060008201527f537570706c790000000000000000000000000000000000000000000000000000602082015250565b50565b7f416c6c6f77206c697374206973206e6f74206163746976650000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f546f6b656e20646f6573206e6f74206578697374210000000000000000000000600082015250565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b7f6d696e746564206f757420564950207265736572766500000000000000000000600082015250565b614b1581614450565b8114614b2057600080fd5b50565b614b2c81614462565b8114614b3757600080fd5b50565b614b438161446e565b8114614b4e57600080fd5b50565b614b5a81614478565b8114614b6557600080fd5b50565b614b71816144c4565b8114614b7c57600080fd5b5056fea26469706673582212200191c84876dca484c2692796540cb94303687aeef5719557a8a907e42f86d6f564736f6c63430008040033

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80636352211e1161014457806395d89b41116100b6578063c87b56dd1161007a578063c87b56dd146108c7578063d5abeb0114610904578063e985e9c51461092f578063ec8bda8e1461096c578063f2fde38b14610988578063f3b3a9fa146109b15761025c565b806395d89b41146107e25780639f18b4d21461080d578063a22cb46514610838578063b32c568014610861578063b88d4fde1461089e5761025c565b80637dc42975116101085780637dc42975146106e8578063841718a61461071357806384584d071461073c57806388ef0018146107655780638da5cb5b1461078e57806395652cfa146107b95761025c565b80636352211e146106015780636817c76c1461063e57806368428a1b1461066957806370a0823114610694578063715018a6146106d15761025c565b80632a52a54a116101dd5780633ccfd60b116101a15780633ccfd60b1461050357806341c66d0a1461051a57806342842e0e1461054557806343a4ccee1461056e578063457dbf21146105995780635ea1ef52146105c45761025c565b80632a52a54a1461042d5780632db115441461046a5780632eb4a7ab14610486578063375a069a146104b15780633a73c58d146104da5761025c565b8063095ea7b311610224578063095ea7b31461035a578063105c55821461038357806318160ddd146103ae57806323b80995146103d957806323b872dd146104045761025c565b806301ffc9a71461026157806303d41eb61461029e57806306fdde03146102c957806307f3dba8146102f4578063081812fc1461031d575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906138cf565b6109dc565b6040516102959190613f43565b60405180910390f35b3480156102aa57600080fd5b506102b3610abe565b6040516102c0919061423b565b60405180910390f35b3480156102d557600080fd5b506102de610ac4565b6040516102eb9190613f79565b60405180910390f35b34801561030057600080fd5b5061031b6004803603810190610316919061387d565b610b56565b005b34801561032957600080fd5b50610344600480360381019061033f9190613966565b610b7b565b6040516103519190613edc565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190613841565b610bf7565b005b34801561038f57600080fd5b50610398610cfc565b6040516103a5919061423b565b60405180910390f35b3480156103ba57600080fd5b506103c3610d02565b6040516103d0919061423b565b60405180910390f35b3480156103e557600080fd5b506103ee610d19565b6040516103fb9190613f43565b60405180910390f35b34801561041057600080fd5b5061042b600480360381019061042691906136e7565b610d2c565b005b34801561043957600080fd5b50610454600480360381019061044f9190613682565b610d3c565b604051610461919061423b565b60405180910390f35b610484600480360381019061047f9190613966565b610d54565b005b34801561049257600080fd5b5061049b610f36565b6040516104a89190613f5e565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d39190613966565b610f3c565b005b3480156104e657600080fd5b5061050160048036038101906104fc919061387d565b6110ae565b005b34801561050f57600080fd5b506105186110c2565b005b34801561052657600080fd5b5061052f6114c1565b60405161053c919061423b565b60405180910390f35b34801561055157600080fd5b5061056c600480360381019061056791906136e7565b6114c7565b005b34801561057a57600080fd5b506105836114e7565b604051610590919061423b565b60405180910390f35b3480156105a557600080fd5b506105ae6114ed565b6040516105bb9190613f43565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190613682565b611500565b6040516105f8919061423b565b60405180910390f35b34801561060d57600080fd5b5061062860048036038101906106239190613966565b611549565b6040516106359190613edc565b60405180910390f35b34801561064a57600080fd5b5061065361155f565b604051610660919061423b565b60405180910390f35b34801561067557600080fd5b5061067e611565565b60405161068b9190613f43565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190613682565b611578565b6040516106c8919061423b565b60405180910390f35b3480156106dd57600080fd5b506106e6611648565b005b3480156106f457600080fd5b506106fd61165c565b60405161070a919061423b565b60405180910390f35b34801561071f57600080fd5b5061073a6004803603810190610735919061387d565b611662565b005b34801561074857600080fd5b50610763600480360381019061075e91906138a6565b611687565b005b34801561077157600080fd5b5061078c6004803603810190610787919061398f565b61169b565b005b34801561079a57600080fd5b506107a3611987565b6040516107b09190613edc565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db9190613921565b6119b1565b005b3480156107ee57600080fd5b506107f76119cf565b6040516108049190613f79565b60405180910390f35b34801561081957600080fd5b50610822611a61565b60405161082f919061423b565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a9190613805565b611a67565b005b34801561086d57600080fd5b50610888600480360381019061088391906137b1565b611bdf565b6040516108959190613f43565b60405180910390f35b3480156108aa57600080fd5b506108c560048036038101906108c09190613736565b611c21565b005b3480156108d357600080fd5b506108ee60048036038101906108e99190613966565b611c99565b6040516108fb9190613f79565b60405180910390f35b34801561091057600080fd5b50610919611d15565b604051610926919061423b565b60405180910390f35b34801561093b57600080fd5b50610956600480360381019061095191906136ab565b611d1b565b6040516109639190613f43565b60405180910390f35b6109866004803603810190610981919061398f565b611daf565b005b34801561099457600080fd5b506109af60048036038101906109aa9190613682565b612057565b005b3480156109bd57600080fd5b506109c66120db565b6040516109d3919061423b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab75750610ab6826120e1565b5b9050919050565b60195481565b606060028054610ad390614510565b80601f0160208091040260200160405190810160405280929190818152602001828054610aff90614510565b8015610b4c5780601f10610b2157610100808354040283529160200191610b4c565b820191906000526020600020905b815481529060010190602001808311610b2f57829003601f168201915b5050505050905090565b610b5e61214b565b80601860016101000a81548160ff02191690831515021790555050565b6000610b86826121c9565b610bbc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c0282611549565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c6a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c89612217565b73ffffffffffffffffffffffffffffffffffffffff1614610cec57610cb581610cb0612217565b611d1b565b610ceb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610cf783838361221f565b505050565b60135481565b6000610d0c6122d1565b6001546000540303905090565b601860019054906101000a900460ff1681565b610d378383836122d6565b505050565b60146020528060005260406000206000915090505481565b601860009054906101000a900460ff16610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a906140db565b60405180910390fd5b80600e5481610db0610d02565b610dba919061433b565b1115610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df29061417b565b60405180910390fd5b6002600c541415610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e38906141bb565b60405180910390fd5b6002600c8190555060008211610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e83906141fb565b60405180910390fd5b601254821115610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec89061415b565b60405180910390fd5b34600d5483610ee091906143c2565b14610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f179061405b565b60405180910390fd5b610f2a338361278c565b6001600c819055505050565b60085481565b610f4461214b565b80600e5481610f51610d02565b610f5b919061433b565b1115610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f939061417b565b60405180910390fd5b6002600c541415610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd9906141bb565b60405180910390fd5b6002600c819055506000821161102d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611024906141fb565b60405180910390fd5b60105482601a5461103e919061433b565b111561107f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110769061401b565b60405180910390fd5b81601a6000828254611091919061433b565b925050819055506110a2338361278c565b6001600c819055505050565b6110b661214b565b6110bf816127aa565b50565b6002600c541415611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff906141bb565b60405180910390fd5b6002600c81905550601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806111b95750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b806111f657506111c7611987565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c906140bb565b60405180910390fd5b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16604b60644761127f9190614391565b61128991906143c2565b60405161129590613ec7565b60006040518083038185875af1925050503d80600081146112d2576040519150601f19603f3d011682016040523d82523d6000602084013e6112d7565b606091505b505090506000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660286064476113259190614391565b61132f91906143c2565b60405161133b90613ec7565b60006040518083038185875af1925050503d8060008114611378576040519150601f19603f3d011682016040523d82523d6000602084013e61137d565b606091505b50509050600061138b611987565b73ffffffffffffffffffffffffffffffffffffffff16476040516113ae90613ec7565b60006040518083038185875af1925050503d80600081146113eb576040519150601f19603f3d011682016040523d82523d6000602084013e6113f0565b606091505b5050905082611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b9061407b565b60405180910390fd5b81611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b906140fb565b60405180910390fd5b806114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab90613fbb565b60405180910390fd5b5050506001600c81905550565b601a5481565b6114e283838360405180602001604052806000815250611c21565b505050565b60105481565b600960009054906101000a900460ff1681565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000611554826127c7565b600001519050919050565b600d5481565b601860009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61165061214b565b61165a6000612a52565b565b60125481565b61166a61214b565b80601860006101000a81548160ff02191690831515021790555050565b61168f61214b565b61169881612b18565b50565b600960009054906101000a900460ff166116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e19061419b565b60405180910390fd5b33816116f68282611bdf565b611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c90613fdb565b60405180910390fd5b83600f5481611742610d02565b61174c919061433b565b111561178d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117849061409b565b60405180910390fd5b6002600c5414156117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ca906141bb565b60405180910390fd5b6002600c819055506000851161181e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611815906141fb565b60405180910390fd5b600f548560195461182f919061433b565b1115611870576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118679061421b565b60405180910390fd5b60135485601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118be919061433b565b11156118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f69061411b565b60405180910390fd5b8460196000828254611911919061433b565b9250508190555084601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611967919061433b565b92505081905550611978338661278c565b6001600c819055505050505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119b961214b565b8181601791906119ca9291906133d6565b505050565b6060600380546119de90614510565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0a90614510565b8015611a575780601f10611a2c57610100808354040283529160200191611a57565b820191906000526020600020905b815481529060010190602001808311611a3a57829003601f168201915b5050505050905090565b60115481565b611a6f612217565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ad4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ae1612217565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b8e612217565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bd39190613f43565b60405180910390a35050565b60008083604051602001611bf39190613e7d565b604051602081830303815290604052805190602001209050611c188360085483612b5b565b91505092915050565b611c2c8484846122d6565b611c4b8373ffffffffffffffffffffffffffffffffffffffff16612b72565b15611c9357611c5c84848484612b95565b611c92576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611ca4826121c9565b611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda906141db565b60405180910390fd5b6017611cee83612cf5565b604051602001611cff929190613e98565b6040516020818303038152906040529050919050565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600960009054906101000a900460ff16611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df59061419b565b60405180910390fd5b601860019054906101000a900460ff16611e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4490613f9b565b60405180910390fd5b3381611e598282611bdf565b611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f90613fdb565b60405180910390fd5b33846011546000611ea884611500565b9050818382611eb7919061433b565b1115611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef9061403b565b60405180910390fd5b87600e5481611f05610d02565b611f0f919061433b565b1115611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f479061417b565b60405180910390fd5b6002600c541415611f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8d906141bb565b60405180910390fd5b6002600c8190555060008911611fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd8906141fb565b60405180910390fd5b34600d548a611ff091906143c2565b14612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120279061405b565b60405180910390fd5b61203a338a612ea2565b612044338a61278c565b6001600c81905550505050505050505050565b61205f61214b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c690613ffb565b60405180910390fd5b6120d881612a52565b50565b600f5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612153612217565b73ffffffffffffffffffffffffffffffffffffffff16612171611987565b73ffffffffffffffffffffffffffffffffffffffff16146121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be9061413b565b60405180910390fd5b565b6000816121d46122d1565b111580156121e3575060005482105b8015612210575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006122e1826127c7565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461234c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661236d612217565b73ffffffffffffffffffffffffffffffffffffffff16148061239c575061239b85612396612217565b611d1b565b5b806123e157506123aa612217565b73ffffffffffffffffffffffffffffffffffffffff166123c984610b7b565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061241a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612481576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61248e8585856001612f4a565b61249a6000848761221f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561271a57600054821461271957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127858585856001612f50565b5050505050565b6127a6828260405180602001604052806000815250612f56565b5050565b80600960006101000a81548160ff02191690831515021790555050565b6127cf61345c565b6000829050806127dd6122d1565b11612a1b57600054811015612a1a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612a1857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128fc578092505050612a4d565b5b600115612a1757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a12578092505050612a4d565b6128fd565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806008819055507f1b930366dfeaa7eb3b325021e4ae81e36527063452ee55b86c95f85b36f4c31c600854604051612b509190613f5e565b60405180910390a150565b600082612b688584613318565b1490509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bbb612217565b8786866040518563ffffffff1660e01b8152600401612bdd9493929190613ef7565b602060405180830381600087803b158015612bf757600080fd5b505af1925050508015612c2857506040513d601f19601f82011682018060405250810190612c2591906138f8565b60015b612ca2573d8060008114612c58576040519150601f19603f3d011682016040523d82523d6000602084013e612c5d565b606091505b50600081511415612c9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612d3d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e9d565b600082905060005b60008214612d6f578080612d5890614573565b915050600a82612d689190614391565b9150612d45565b60008167ffffffffffffffff811115612db1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612de35781602001600182028036833780820191505090505b5090505b60008514612e9657600182612dfc919061441c565b9150600a85612e0b91906145e0565b6030612e17919061433b565b60f81b818381518110612e53577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e8f9190614391565b9450612de7565b8093505050505b919050565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ef1919061433b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff167fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a82604051612f3e919061423b565b60405180910390a25050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fc3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612ffe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61300b6000858386612f4a565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506131cc8673ffffffffffffffffffffffffffffffffffffffff16612b72565b15613291575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132416000878480600101955087612b95565b613277576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106131d257826000541461328c57600080fd5b6132fc565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613292575b8160008190555050506133126000858386612f50565b50505050565b60008082905060005b84518110156133895761337482868381518110613367577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151613394565b9150808061338190614573565b915050613321565b508091505092915050565b60008183106133ac576133a782846133bf565b6133b7565b6133b683836133bf565b5b905092915050565b600082600052816020526040600020905092915050565b8280546133e290614510565b90600052602060002090601f016020900481019282613404576000855561344b565b82601f1061341d57803560ff191683800117855561344b565b8280016001018555821561344b579182015b8281111561344a57823582559160200191906001019061342f565b5b509050613458919061349f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156134b85760008160009055506001016134a0565b5090565b60006134cf6134ca8461427b565b614256565b905080838252602082019050828560208602820111156134ee57600080fd5b60005b8581101561351e578161350488826135ba565b8452602084019350602083019250506001810190506134f1565b5050509392505050565b600061353b613536846142a7565b614256565b90508281526020810184848401111561355357600080fd5b61355e8482856144ce565b509392505050565b60008135905061357581614b0c565b92915050565b600082601f83011261358c57600080fd5b813561359c8482602086016134bc565b91505092915050565b6000813590506135b481614b23565b92915050565b6000813590506135c981614b3a565b92915050565b6000813590506135de81614b51565b92915050565b6000815190506135f381614b51565b92915050565b600082601f83011261360a57600080fd5b813561361a848260208601613528565b91505092915050565b60008083601f84011261363557600080fd5b8235905067ffffffffffffffff81111561364e57600080fd5b60208301915083600182028301111561366657600080fd5b9250929050565b60008135905061367c81614b68565b92915050565b60006020828403121561369457600080fd5b60006136a284828501613566565b91505092915050565b600080604083850312156136be57600080fd5b60006136cc85828601613566565b92505060206136dd85828601613566565b9150509250929050565b6000806000606084860312156136fc57600080fd5b600061370a86828701613566565b935050602061371b86828701613566565b925050604061372c8682870161366d565b9150509250925092565b6000806000806080858703121561374c57600080fd5b600061375a87828801613566565b945050602061376b87828801613566565b935050604061377c8782880161366d565b925050606085013567ffffffffffffffff81111561379957600080fd5b6137a5878288016135f9565b91505092959194509250565b600080604083850312156137c457600080fd5b60006137d285828601613566565b925050602083013567ffffffffffffffff8111156137ef57600080fd5b6137fb8582860161357b565b9150509250929050565b6000806040838503121561381857600080fd5b600061382685828601613566565b9250506020613837858286016135a5565b9150509250929050565b6000806040838503121561385457600080fd5b600061386285828601613566565b92505060206138738582860161366d565b9150509250929050565b60006020828403121561388f57600080fd5b600061389d848285016135a5565b91505092915050565b6000602082840312156138b857600080fd5b60006138c6848285016135ba565b91505092915050565b6000602082840312156138e157600080fd5b60006138ef848285016135cf565b91505092915050565b60006020828403121561390a57600080fd5b6000613918848285016135e4565b91505092915050565b6000806020838503121561393457600080fd5b600083013567ffffffffffffffff81111561394e57600080fd5b61395a85828601613623565b92509250509250929050565b60006020828403121561397857600080fd5b60006139868482850161366d565b91505092915050565b600080604083850312156139a257600080fd5b60006139b08582860161366d565b925050602083013567ffffffffffffffff8111156139cd57600080fd5b6139d98582860161357b565b9150509250929050565b6139ec81614450565b82525050565b613a036139fe82614450565b6145bc565b82525050565b613a1281614462565b82525050565b613a218161446e565b82525050565b6000613a32826142ed565b613a3c8185614303565b9350613a4c8185602086016144dd565b613a55816146cd565b840191505092915050565b6000613a6b826142f8565b613a75818561431f565b9350613a858185602086016144dd565b613a8e816146cd565b840191505092915050565b6000613aa4826142f8565b613aae8185614330565b9350613abe8185602086016144dd565b80840191505092915050565b60008154613ad781614510565b613ae18186614330565b94506001821660008114613afc5760018114613b0d57613b40565b60ff19831686528186019350613b40565b613b16856142d8565b60005b83811015613b3857815481890152600182019150602081019050613b19565b838801955050505b50505092915050565b6000613b5660148361431f565b9150613b61826146eb565b602082019050919050565b6000613b7960118361431f565b9150613b8482614714565b602082019050919050565b6000613b9c60118361431f565b9150613ba78261473d565b602082019050919050565b6000613bbf60268361431f565b9150613bca82614766565b604082019050919050565b6000613be260178361431f565b9150613bed826147b5565b602082019050919050565b6000613c05602f8361431f565b9150613c10826147de565b604082019050919050565b6000613c28601f8361431f565b9150613c338261482d565b602082019050919050565b6000613c4b60118361431f565b9150613c5682614856565b602082019050919050565b6000613c6e60258361431f565b9150613c798261487f565b604082019050919050565b6000613c91600e8361431f565b9150613c9c826148ce565b602082019050919050565b6000613cb460198361431f565b9150613cbf826148f7565b602082019050919050565b6000613cd760118361431f565b9150613ce282614920565b602082019050919050565b6000613cfa600583614330565b9150613d0582614949565b600582019050919050565b6000613d1d60118361431f565b9150613d2882614972565b602082019050919050565b6000613d4060208361431f565b9150613d4b8261499b565b602082019050919050565b6000613d63601b8361431f565b9150613d6e826149c4565b602082019050919050565b6000613d8660268361431f565b9150613d91826149ed565b604082019050919050565b6000613da9600083614314565b9150613db482614a3c565b600082019050919050565b6000613dcc60188361431f565b9150613dd782614a3f565b602082019050919050565b6000613def601f8361431f565b9150613dfa82614a68565b602082019050919050565b6000613e1260158361431f565b9150613e1d82614a91565b602082019050919050565b6000613e3560168361431f565b9150613e4082614aba565b602082019050919050565b6000613e5860168361431f565b9150613e6382614ae3565b602082019050919050565b613e77816144c4565b82525050565b6000613e8982846139f2565b60148201915081905092915050565b6000613ea48285613aca565b9150613eb08284613a99565b9150613ebb82613ced565b91508190509392505050565b6000613ed282613d9c565b9150819050919050565b6000602082019050613ef160008301846139e3565b92915050565b6000608082019050613f0c60008301876139e3565b613f1960208301866139e3565b613f266040830185613e6e565b8181036060830152613f388184613a27565b905095945050505050565b6000602082019050613f586000830184613a09565b92915050565b6000602082019050613f736000830184613a18565b92915050565b60006020820190508181036000830152613f938184613a60565b905092915050565b60006020820190508181036000830152613fb481613b49565b9050919050565b60006020820190508181036000830152613fd481613b6c565b9050919050565b60006020820190508181036000830152613ff481613b8f565b9050919050565b6000602082019050818103600083015261401481613bb2565b9050919050565b6000602082019050818103600083015261403481613bd5565b9050919050565b6000602082019050818103600083015261405481613bf8565b9050919050565b6000602082019050818103600083015261407481613c1b565b9050919050565b6000602082019050818103600083015261409481613c3e565b9050919050565b600060208201905081810360008301526140b481613c61565b9050919050565b600060208201905081810360008301526140d481613c84565b9050919050565b600060208201905081810360008301526140f481613ca7565b9050919050565b6000602082019050818103600083015261411481613cca565b9050919050565b6000602082019050818103600083015261413481613d10565b9050919050565b6000602082019050818103600083015261415481613d33565b9050919050565b6000602082019050818103600083015261417481613d56565b9050919050565b6000602082019050818103600083015261419481613d79565b9050919050565b600060208201905081810360008301526141b481613dbf565b9050919050565b600060208201905081810360008301526141d481613de2565b9050919050565b600060208201905081810360008301526141f481613e05565b9050919050565b6000602082019050818103600083015261421481613e28565b9050919050565b6000602082019050818103600083015261423481613e4b565b9050919050565b60006020820190506142506000830184613e6e565b92915050565b6000614260614271565b905061426c8282614542565b919050565b6000604051905090565b600067ffffffffffffffff8211156142965761429561469e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156142c2576142c161469e565b5b6142cb826146cd565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614346826144c4565b9150614351836144c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561438657614385614611565b5b828201905092915050565b600061439c826144c4565b91506143a7836144c4565b9250826143b7576143b6614640565b5b828204905092915050565b60006143cd826144c4565b91506143d8836144c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561441157614410614611565b5b828202905092915050565b6000614427826144c4565b9150614432836144c4565b92508282101561444557614444614611565b5b828203905092915050565b600061445b826144a4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156144fb5780820151818401526020810190506144e0565b8381111561450a576000848401525b50505050565b6000600282049050600182168061452857607f821691505b6020821081141561453c5761453b61466f565b5b50919050565b61454b826146cd565b810181811067ffffffffffffffff8211171561456a5761456961469e565b5b80604052505050565b600061457e826144c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145b1576145b0614611565b5b600182019050919050565b60006145c7826145ce565b9050919050565b60006145d9826146de565b9050919050565b60006145eb826144c4565b91506145f6836144c4565b92508261460657614605614640565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5669702073616c65206973206e6f74206f766572000000000000000000000000600082015250565b7f5472616e736665722033206661696c6564000000000000000000000000000000600082015250565b7f4e6f74206f6e20616c6c6f77206c697374000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d696e746564206f7574207465616d2072657365727665000000000000000000600082015250565b7f507572636861736520776f756c6420657863656564206e756d626572206f662060008201527f746f6b656e7320616c6c6f747465640000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f5472616e736665722031206661696c6564000000000000000000000000000000600082015250565b7f507572636861736520776f756c6420657863656564206d61782056495020726560008201527f7365727665000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642073656e646572000000000000000000000000000000000000600082015250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b7f5472616e736665722032206661696c6564000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f657863656564206d61782077616c6c6574000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f507572636861736520776f756c6420657863656564204d617820546f6b656e2060008201527f537570706c790000000000000000000000000000000000000000000000000000602082015250565b50565b7f416c6c6f77206c697374206973206e6f74206163746976650000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f546f6b656e20646f6573206e6f74206578697374210000000000000000000000600082015250565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b7f6d696e746564206f757420564950207265736572766500000000000000000000600082015250565b614b1581614450565b8114614b2057600080fd5b50565b614b2c81614462565b8114614b3757600080fd5b50565b614b438161446e565b8114614b4e57600080fd5b50565b614b5a81614478565b8114614b6557600080fd5b50565b614b71816144c4565b8114614b7c57600080fd5b5056fea26469706673582212200191c84876dca484c2692796540cb94303687aeef5719557a8a907e42f86d6f564736f6c63430008040033

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.