ETH Price: $2,719.90 (-3.10%)

Token

Case (CFT)
 

Overview

Max Total Supply

147 CFT

Holders

75

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
alex174.eth
Balance
1 CFT
0x7aC9C9135de57041095103d2aA8B5Be31B9aa415
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Case

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.7;


import '@openzeppelin/contracts/utils/math/SafeMath.sol';
import "@openzeppelin/contracts/access/Ownable.sol";
import '@openzeppelin/contracts/utils/Strings.sol';
import './SignerVerification.sol';
import "./ERC721ANonTradeable.sol";


contract Case is ERC721ANonTradeable {
    using Strings for uint256;
    using SafeMath for uint256;

    // Base URI
    string public baseURI = "ipfs://bafybeidv4fx6o4ssklfuwqcdgliiurgmw2zh43l7gxmfqsirqcfnzljxdm/case";

    // Token Supply
    uint256 public constant _totSupply = 8888;

    // Public sale start timestamp
//   uint public publicSaleStartTimestamp;

    // Date of release;
     uint public startPresaleTimestamp = 1655556900;

    struct Balances {
        address owner;
        uint256 balance;
    }

    event baseUriUpdated (
        string oldBaseUri,
        string newBaseUri
    );

    // Token Price
    uint256 public tokenPrice = 0.17 ether;
    uint256 public constant presalePrice = 0.15 ether;

    address[] public Buyers;

    mapping(address => Balances) private ownersNFT;

    // Contract Owner
    address private _signer;

    bool public preSaleActive = true;
    bool public publicSaleActive = false;

    constructor() ERC721ANonTradeable("Case", "CFT"){
        _signer = msg.sender;
    }

    function getCurrentPrice() public view returns (uint256) {
        require(preSaleActive||publicSaleActive, 'Sale is closed at this moment');
        return preSaleActive? presalePrice : tokenPrice;
    }

    function mintOnPresale(uint256 tokensNumber,bytes calldata signature)public payable{
        require(preSaleActive, "Sale is closed at this moment");
        require(block.timestamp>=startPresaleTimestamp, "Presale hasn't started yet");
        require(balanceOf(msg.sender)+tokensNumber <= 4, "You cannot purchase more than 4 tokens");
        require(SignerVerification.isMessageVerified(_signer, signature, _addressToString(msg.sender)), 'ECDSA: Invalid signature');

        _mint(tokensNumber, msg.sender);
    }

    function mintOnPublicsale(uint256 tokensNumber)public payable{
        require(publicSaleActive, "Sale is closed at this moment");
        require(balanceOf(msg.sender)+tokensNumber <= 10, "You cannot purchase more than 10 tokens");
        _mint(tokensNumber, msg.sender);
    }
    
    function _mint(uint256 tokensNumber, address buyer) internal{
        bool notInBuyerArray = true;

        require((tokensNumber.mul(getCurrentPrice())) == msg.value, "Received value doesnt match the requested tokens");
        require(totalSupply() + tokensNumber <= _totSupply, "You try to mint more tokens than totalSupply");

        _safeMint(buyer, tokensNumber);

        for(uint256 i=0; i<Buyers.length; i++){
            if(buyer==Buyers[i]){
                notInBuyerArray = false;
            }
        }

        ownersNFT[buyer] = Balances(buyer, _numberMinted(buyer));
        
        if(notInBuyerArray){
            Buyers.push(buyer);
        }
    }

    function getBuyers(uint256 start, uint256 end) public view returns(Balances[] memory tokens){
        uint256 actualEnd = end > Buyers.length? Buyers.length : end;
        
        Balances[] memory requestedTokens = new Balances[](actualEnd - start);

        uint256 counter;

        for(uint256 i = start; i < actualEnd; i++){
            requestedTokens[counter] = ownersNFT[Buyers[i]];
            counter++;
        }

        return requestedTokens;
    }

//    function setReleaseDate(uint _releaseTimestamp) public onlyOwner {
//        require(_releaseTimestamp > block.timestamp, 'timestamp should be greater than block timestamp');
//
//        releaseTimestamp = _releaseTimestamp;
//    }

    function togglePresale() public onlyOwner{
        require(!publicSaleActive, 'Public sale already active');

        preSaleActive = !preSaleActive;
    }

    function togglePublicSale() public onlyOwner {
        require(!preSaleActive, 'Deactivate pre-sale first');
        publicSaleActive = !publicSaleActive;
//        publicSaleStartTimestamp = block.timestamp;
    }

    function changeStartPresaleTimestamp(uint256 _startPresaleTimestamp) public onlyOwner {
        require(!publicSaleActive, "You can't change presale timestamp on public sale");
        startPresaleTimestamp = _startPresaleTimestamp;
    }

    function changeSignerAddress(address newSigner) public onlyOwner {
        _signer = newSigner;
    }

    function withdraw() public onlyOwner {
        uint256 value = address(this).balance;
        bool sent = payable(msg.sender).send(value);
        require(sent, 'Error during withdraw transfer');
    }

    function setBaseURI(string memory url) public onlyOwner {
        string memory currentURI = baseURI;
        baseURI = url;

        emit baseUriUpdated(currentURI, baseURI);
    }

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

        return string(abi.encodePacked(baseURI, ".json"));
    }

    function _addressToString(address _adr) internal pure returns (string memory) {
        bytes memory addressBytes = abi.encodePacked(_adr);

        bytes memory stringBytes = new bytes(42);

        stringBytes[0] = '0';
        stringBytes[1] = 'x';

        for (uint256 i = 0; i < 20; i++) {
            uint8 leftValue = uint8(addressBytes[i]) / 16;
            uint8 rightValue = uint8(addressBytes[i]) - 16 * leftValue;

            bytes1 leftChar = leftValue < 10 ? bytes1(leftValue + 48) : bytes1(leftValue + 87);
            bytes1 rightChar = rightValue < 10 ? bytes1(rightValue + 48) : bytes1(rightValue + 87);

            stringBytes[2 * i + 3] = rightChar;
            stringBytes[2 * i + 2] = leftChar;
        }

        return string(stringBytes);
    }
}

File 2 of 8 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 8 : SignerVerification.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import '@openzeppelin/contracts/utils/Strings.sol';

library SignerVerification {
    function isMessageVerified(
        address signer,
        bytes calldata signature,
        string calldata concatenatedParams
    ) external pure returns (bool) {
        return recoverSigner(getPrefixedHashMessage(concatenatedParams), signature) == signer;
    }

    function getSigner(bytes calldata signature, string calldata concatenatedParams) external pure returns (address) {
        return recoverSigner(getPrefixedHashMessage(concatenatedParams), signature);
    }

    function getPrefixedHashMessage(string calldata concatenatedParams) internal pure returns (bytes32) {
        uint256 messageLength = bytes(concatenatedParams).length;
        bytes memory prefix = abi.encodePacked('\x19Ethereum Signed Message:\n', Strings.toString(messageLength));
        return keccak256(abi.encodePacked(prefix, concatenatedParams));
    }

    function recoverSigner(bytes32 _ethSignedMessageHash, bytes memory _signature) internal pure returns (address) {
        (bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature);
        return ecrecover(_ethSignedMessageHash, v, r, s);
    }

    function splitSignature(bytes memory sig)
    internal
    pure
    returns (
        bytes32 r,
        bytes32 s,
        uint8 v
    )
    {
        require(sig.length == 65, 'invalid signature length');

        assembly {
            r := mload(add(sig, 32))
            s := mload(add(sig, 64))
            v := byte(0, mload(add(sig, 96)))
        }
    }
}

File 6 of 8 : ERC721ANonTradeable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './interfaces/IERC721NonTradeable.sol';
import "@openzeppelin/contracts/access/Ownable.sol";
/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 ERC721ANonTradeable is IERC721NonTradeable, Ownable {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    // Mapping from token ID to approved address.
    mapping(uint256 => 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();
    }

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
        interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
        interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
        interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

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

    /**
     * Sets the 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

    unchecked {
        if (_startTokenId() <= curr)
            if (curr < _currentIndex) {
                uint256 packed = _packedOwnerships[curr];
                // If not burned.
                if (packed & BITMASK_BURNED == 0) {
                    // Invariant:
                    // There will always be an 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.
                    //
                    // We can directly compare the packed value.
                    // If the address is zero, packed is zero.
                    while (packed == 0) {
                        packed = _packedOwnerships[--curr];
                    }
                    return packed;
                }
            }
    }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

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

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

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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 onlyOwner{
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override onlyOwner{
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            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 && // If within bounds,
        _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not 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 {
        // Updates:
        // - `balance += quantity`.
        // - `numberMinted += quantity`.
        //
        // We can directly add to the balance and number minted.
        _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

        // Updates:
        // - `address` to the owner.
        // - `startTimestamp` to the timestamp of minting.
        // - `burned` to `false`.
        // - `nextInitialized` to `quantity == 1`.
        _packedOwnerships[startTokenId] =
        _addressToUint256(to) |
        (block.timestamp << BITPOS_START_TIMESTAMP) |
        (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

        if (to.code.length != 0) {
            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 {
        // Updates:
        // - `balance += quantity`.
        // - `numberMinted += quantity`.
        //
        // We can directly add to the balance and number minted.
        _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

        // Updates:
        // - `address` to the owner.
        // - `startTimestamp` to the timestamp of minting.
        // - `burned` to `false`.
        // - `nextInitialized` to `quantity == 1`.
        _packedOwnerships[startTokenId] =
        _addressToUint256(to) |
        (block.timestamp << BITPOS_START_TIMESTAMP) |
        (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

        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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

        // Updates:
        // - `address` to the next owner.
        // - `startTimestamp` to the timestamp of transfering.
        // - `burned` to `false`.
        // - `nextInitialized` to `true`.
        _packedOwnerships[tokenId] =
        _addressToUint256(to) |
        (block.timestamp << BITPOS_START_TIMESTAMP) |
        BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

        // Updates:
        // - `address` to the last owner.
        // - `startTimestamp` to the timestamp of burning.
        // - `burned` to `true`.
        // - `nextInitialized` to `true`.
        _packedOwnerships[tokenId] =
        _addressToUint256(from) |
        (block.timestamp << BITPOS_START_TIMESTAMP) |
        BITMASK_BURNED |
        BITMASK_NEXT_INITIALIZED;

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

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

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

    /**
     * @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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
        // The maximum value of a uint256 contains 78 digits (1 byte per digit),
        // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
        // We will need 1 32-byte word to store the length,
        // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
        // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

        // We write the string from the rightmost digit to the leftmost digit.
        // The following is essentially a do-while loop that also handles the zero case.
        // Costs a bit more than early returning for the zero case,
        // but cheaper in terms of deployment and overall runtime costs.
            for {
            // Initialize and perform the first pass without check.
                let temp := value
            // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
            // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
            // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

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

pragma solidity ^0.8.0;

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

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

File 8 of 8 : IERC721NonTradeable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs
import "@openzeppelin/contracts/access/Ownable.sol";
pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721NonTradeable {
    /**
     * 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();

    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;
    }

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

    // ==============================
    //            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);

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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":"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"oldBaseUri","type":"string"},{"indexed":false,"internalType":"string","name":"newBaseUri","type":"string"}],"name":"baseUriUpdated","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"Buyers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"changeSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startPresaleTimestamp","type":"uint256"}],"name":"changeStartPresaleTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"getBuyers","outputs":[{"components":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"}],"internalType":"struct Case.Balances[]","name":"tokens","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokensNumber","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintOnPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokensNumber","type":"uint256"}],"name":"mintOnPublicsale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPresaleTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806047815260200162004a706047913960099080519060200190620000359291906200027c565b506362adcb24600a5567025bf6196bd10000600b556001600e60146101000a81548160ff0219169083151502179055506000600e60156101000a81548160ff0219169083151502179055503480156200008d57600080fd5b506040518060400160405280600481526020017f43617365000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f43465400000000000000000000000000000000000000000000000000000000008152506200011a6200010e620001ab60201b60201c565b620001b360201b60201c565b8160039080519060200190620001329291906200027c565b5080600490805190602001906200014b9291906200027c565b506200015c6200027760201b60201c565b600181905550505033600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000391565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b8280546200028a906200032c565b90600052602060002090601f016020900481019282620002ae5760008555620002fa565b82601f10620002c957805160ff1916838001178555620002fa565b82800160010185558215620002fa579182015b82811115620002f9578251825591602001919060010190620002dc565b5b5090506200030991906200030d565b5090565b5b80821115620003285760008160009055506001016200030e565b5090565b600060028204905060018216806200034557607f821691505b602082108114156200035c576200035b62000362565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6146cf80620003a16000396000f3fe6080604052600436106102035760003560e01c8063715018a611610118578063b88d4fde116100a0578063c87b56dd1161006f578063c87b56dd14610714578063e222c7f914610751578063e985e9c514610768578063eb91d37e146107a5578063f2fde38b146107d057610203565b8063b88d4fde1461066c578063bc8893b414610695578063c1915616146106c0578063c342e17f146106e957610203565b806390676da0116100e757806390676da01461057357806395d89b411461059e578063a17c1a53146105c9578063a22cb46514610606578063a443df941461062f57610203565b8063715018a6146104db5780637ff9b596146104f2578063844947081461051d5780638da5cb5b1461054857610203565b8063311f57391161019b57806355f804b31161016a57806355f804b3146103e45780635ea4b0961461040d5780636352211e146104365780636c0360eb1461047357806370a082311461049e57610203565b8063311f573914610371578063343937431461038d5780633ccfd60b146103a457806342842e0e146103bb57610203565b8063095ea7b3116101d7578063095ea7b3146102d857806318160ddd1461030157806323b872dd1461032c5780632d0ede441461035557610203565b80620e7fa81461020857806301ffc9a71461023357806306fdde0314610270578063081812fc1461029b575b600080fd5b34801561021457600080fd5b5061021d6107f9565b60405161022a9190613d02565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190613357565b610805565b6040516102679190613ace565b60405180910390f35b34801561027c57600080fd5b50610285610897565b6040516102929190613ae9565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd91906133fa565b610929565b6040516102cf91906139fe565b60405180910390f35b3480156102e457600080fd5b506102ff60048036038101906102fa91906132ea565b6109a5565b005b34801561030d57600080fd5b50610316610b4c565b6040516103239190613d02565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e91906131d4565b610b63565b005b61036f600480360381019061036a91906133fa565b610bef565b005b61038b60048036038101906103869190613427565b610ca2565b005b34801561039957600080fd5b506103a2610e92565b005b3480156103b057600080fd5b506103b9610f8a565b005b3480156103c757600080fd5b506103e260048036038101906103dd91906131d4565b611088565b005b3480156103f057600080fd5b5061040b600480360381019061040691906133b1565b611124565b005b34801561041957600080fd5b50610434600480360381019061042f91906133fa565b611284565b005b34801561044257600080fd5b5061045d600480360381019061045891906133fa565b61135a565b60405161046a91906139fe565b60405180910390f35b34801561047f57600080fd5b5061048861136c565b6040516104959190613ae9565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190613167565b6113fa565b6040516104d29190613d02565b60405180910390f35b3480156104e757600080fd5b506104f06114b3565b005b3480156104fe57600080fd5b5061050761153b565b6040516105149190613d02565b60405180910390f35b34801561052957600080fd5b50610532611541565b60405161053f9190613ace565b60405180910390f35b34801561055457600080fd5b5061055d611554565b60405161056a91906139fe565b60405180910390f35b34801561057f57600080fd5b5061058861157d565b6040516105959190613d02565b60405180910390f35b3480156105aa57600080fd5b506105b3611583565b6040516105c09190613ae9565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb9190613487565b611615565b6040516105fd9190613aac565b60405180910390f35b34801561061257600080fd5b5061062d600480360381019061062891906132aa565b6117da565b005b34801561063b57600080fd5b50610656600480360381019061065191906133fa565b611952565b60405161066391906139fe565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e9190613227565b611991565b005b3480156106a157600080fd5b506106aa611a80565b6040516106b79190613ace565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e29190613167565b611a93565b005b3480156106f557600080fd5b506106fe611b53565b60405161070b9190613d02565b60405180910390f35b34801561072057600080fd5b5061073b600480360381019061073691906133fa565b611b59565b6040516107489190613ae9565b60405180910390f35b34801561075d57600080fd5b50610766611bcb565b005b34801561077457600080fd5b5061078f600480360381019061078a9190613194565b611cc3565b60405161079c9190613ace565b60405180910390f35b3480156107b157600080fd5b506107ba611d57565b6040516107c79190613d02565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190613167565b611dea565b005b670214e8348c4f000081565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108905750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108a6906140d5565b80601f01602080910402602001604051908101604052809291908181526020018280546108d2906140d5565b801561091f5780601f106108f45761010080835404028352916020019161091f565b820191906000526020600020905b81548152906001019060200180831161090257829003601f168201915b5050505050905090565b600061093482611ee2565b61096a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b082611f41565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a18576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a3761200f565b73ffffffffffffffffffffffffffffffffffffffff1614610a9a57610a6381610a5e61200f565b611cc3565b610a99576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b56612017565b6002546001540303905090565b610b6b61201c565b73ffffffffffffffffffffffffffffffffffffffff16610b89611554565b73ffffffffffffffffffffffffffffffffffffffff1614610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613c22565b60405180910390fd5b610bea838383612024565b505050565b600e60159054906101000a900460ff16610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590613bc2565b60405180910390fd5b600a81610c4a336113fa565b610c549190613e57565b1115610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90613be2565b60405180910390fd5b610c9f81336123ce565b50565b600e60149054906101000a900460ff16610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890613bc2565b60405180910390fd5b600a54421015610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90613b62565b60405180910390fd5b600483610d42336113fa565b610d4c9190613e57565b1115610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490613ca2565b60405180910390fd5b734c6a8aeb2d21c640f8faaf480368d5c531fd85b9636cb80720600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168484610dd533612660565b6040518563ffffffff1660e01b8152600401610df49493929190613a65565b60206040518083038186803b158015610e0c57600080fd5b505af4158015610e20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e44919061332a565b610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90613ba2565b60405180910390fd5b610e8d83336123ce565b505050565b610e9a61201c565b73ffffffffffffffffffffffffffffffffffffffff16610eb8611554565b73ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590613c22565b60405180910390fd5b600e60159054906101000a900460ff1615610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590613cc2565b60405180910390fd5b600e60149054906101000a900460ff1615600e60146101000a81548160ff021916908315150217905550565b610f9261201c565b73ffffffffffffffffffffffffffffffffffffffff16610fb0611554565b73ffffffffffffffffffffffffffffffffffffffff1614611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90613c22565b60405180910390fd5b600047905060003373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050905080611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b90613c82565b60405180910390fd5b5050565b61109061201c565b73ffffffffffffffffffffffffffffffffffffffff166110ae611554565b73ffffffffffffffffffffffffffffffffffffffff1614611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb90613c22565b60405180910390fd5b61111f83838360405180602001604052806000815250611991565b505050565b61112c61201c565b73ffffffffffffffffffffffffffffffffffffffff1661114a611554565b73ffffffffffffffffffffffffffffffffffffffff16146111a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119790613c22565b60405180910390fd5b6000600980546111af906140d5565b80601f01602080910402602001604051908101604052809291908181526020018280546111db906140d5565b80156112285780601f106111fd57610100808354040283529160200191611228565b820191906000526020600020905b81548152906001019060200180831161120b57829003601f168201915b505050505090508160099080519060200190611245929190612ee0565b507f9f02bf4cb60375a0a74d238c76d002df33d30d2b85e9e677f03455a22d96c14d816009604051611278929190613b0b565b60405180910390a15050565b61128c61201c565b73ffffffffffffffffffffffffffffffffffffffff166112aa611554565b73ffffffffffffffffffffffffffffffffffffffff1614611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613c22565b60405180910390fd5b600e60159054906101000a900460ff1615611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790613ce2565b60405180910390fd5b80600a8190555050565b600061136582611f41565b9050919050565b60098054611379906140d5565b80601f01602080910402602001604051908101604052809291908181526020018280546113a5906140d5565b80156113f25780601f106113c7576101008083540402835291602001916113f2565b820191906000526020600020905b8154815290600101906020018083116113d557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611462576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114bb61201c565b73ffffffffffffffffffffffffffffffffffffffff166114d9611554565b73ffffffffffffffffffffffffffffffffffffffff161461152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690613c22565b60405180910390fd5b611539600061295b565b565b600b5481565b600e60149054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6122b881565b606060048054611592906140d5565b80601f01602080910402602001604051908101604052809291908181526020018280546115be906140d5565b801561160b5780601f106115e05761010080835404028352916020019161160b565b820191906000526020600020905b8154815290600101906020018083116115ee57829003601f168201915b5050505050905090565b60606000600c80549050831161162b5782611632565b600c805490505b9050600084826116429190613faa565b67ffffffffffffffff81111561165b5761165a614261565b5b60405190808252806020026020018201604052801561169457816020015b611681612f66565b8152602001906001900390816116795790505b5090506000808690505b838110156117cd57600d6000600c83815481106116be576116bd614232565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820154815250508383815181106117a1576117a0614232565b5b602002602001018190525081806117b790614138565b92505080806117c590614138565b91505061169e565b5081935050505092915050565b6117e261200f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611847576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061185461200f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661190161200f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119469190613ace565b60405180910390a35050565b600c818154811061196257600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61199961201c565b73ffffffffffffffffffffffffffffffffffffffff166119b7611554565b73ffffffffffffffffffffffffffffffffffffffff1614611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490613c22565b60405180910390fd5b611a18848484612024565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a7a57611a4384848484612a1f565b611a79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600e60159054906101000a900460ff1681565b611a9b61201c565b73ffffffffffffffffffffffffffffffffffffffff16611ab9611554565b73ffffffffffffffffffffffffffffffffffffffff1614611b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0690613c22565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b6060611b6482611ee2565b611ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9a90613c42565b60405180910390fd5b6009604051602001611bb591906139dc565b6040516020818303038152906040529050919050565b611bd361201c565b73ffffffffffffffffffffffffffffffffffffffff16611bf1611554565b73ffffffffffffffffffffffffffffffffffffffff1614611c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3e90613c22565b60405180910390fd5b600e60149054906101000a900460ff1615611c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8e90613c62565b60405180910390fd5b600e60159054906101000a900460ff1615600e60156101000a81548160ff021916908315150217905550565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600e60149054906101000a900460ff1680611d805750600e60159054906101000a900460ff165b611dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db690613bc2565b60405180910390fd5b600e60149054906101000a900460ff16611ddb57600b54611de5565b670214e8348c4f00005b905090565b611df261201c565b73ffffffffffffffffffffffffffffffffffffffff16611e10611554565b73ffffffffffffffffffffffffffffffffffffffff1614611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d90613c22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecd90613b82565b60405180910390fd5b611edf8161295b565b50565b600081611eed612017565b11158015611efc575060015482105b8015611f3a575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611f50612017565b11611fd857600154811015611fd75760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611fd5575b6000811415611fcb576005600083600190039350838152602001908152602001600020549050611fa0565b809250505061200a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600033905090565b600061202f82611f41565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612096576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166120b761200f565b73ffffffffffffffffffffffffffffffffffffffff1614806120e657506120e5856120e061200f565b611cc3565b5b8061212b57506120f461200f565b73ffffffffffffffffffffffffffffffffffffffff1661211384610929565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612164576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121cb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121d88585856001612b7f565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6122d586612b85565b1717600560008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561235f57600060018401905060006005600083815260200190815260200160002054141561235d57600154811461235c578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123c78585856001612b8f565b5050505050565b600060019050346123ef6123e0611d57565b85612b9590919063ffffffff16565b1461242f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242690613c02565b60405180910390fd5b6122b88361243b610b4c565b6124459190613e57565b1115612486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247d90613b42565b60405180910390fd5b6124908284612bab565b60005b600c8054905081101561252a57600c81815481106124b4576124b3614232565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561251757600091505b808061252290614138565b915050612493565b5060405180604001604052808373ffffffffffffffffffffffffffffffffffffffff16815260200161255b84612bc9565b815250600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155905050801561265b57600c829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b505050565b606060008260405160200161267591906139c1565b60405160208183030381529060405290506000602a67ffffffffffffffff8111156126a3576126a2614261565b5b6040519080825280601f01601f1916602001820160405280156126d55781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061270d5761270c614232565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061277157612770614232565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b601481101561295057600060108483815181106127c3576127c2614232565b5b602001015160f81c60f81b60f81c6127db9190613ee4565b905060008160106127ec9190613f6f565b8584815181106127ff576127fe614232565b5b602001015160f81c60f81b60f81c6128179190613fde565b90506000600a8360ff161061283b576057836128339190613ead565b60f81b61284c565b6030836128489190613ead565b60f81b5b90506000600a8360ff1610612870576057836128689190613ead565b60f81b612881565b60308361287d9190613ead565b60f81b5b9050808660038760026128949190613f15565b61289e9190613e57565b815181106128af576128ae614232565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350818660028760026128ef9190613f15565b6128f99190613e57565b8151811061290a57612909614232565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535050505050808061294890614138565b9150506127a3565b508092505050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a4561200f565b8786866040518563ffffffff1660e01b8152600401612a679493929190613a19565b602060405180830381600087803b158015612a8157600080fd5b505af1925050508015612ab257506040513d601f19601f82011682018060405250810190612aaf9190613384565b60015b612b2c573d8060008114612ae2576040519150601f19603f3d011682016040523d82523d6000602084013e612ae7565b606091505b50600081511415612b24576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b6000819050919050565b50505050565b60008183612ba39190613f15565b905092915050565b612bc5828260405180602001604052806000815250612c20565b5050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c8e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612cc9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cd66000858386612b7f565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612d3b60018514612ed6565b901b60a042901b612d4b86612b85565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612e4f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dff6000878480600101955087612a1f565b612e35576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612d90578260015414612e4a57600080fd5b612eba565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612e50575b816001819055505050612ed06000858386612b8f565b50505050565b6000819050919050565b828054612eec906140d5565b90600052602060002090601f016020900481019282612f0e5760008555612f55565b82601f10612f2757805160ff1916838001178555612f55565b82800160010185558215612f55579182015b82811115612f54578251825591602001919060010190612f39565b5b509050612f629190612f96565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600081525090565b5b80821115612faf576000816000905550600101612f97565b5090565b6000612fc6612fc184613d42565b613d1d565b905082815260208101848484011115612fe257612fe161429f565b5b612fed848285614093565b509392505050565b600061300861300384613d73565b613d1d565b9050828152602081018484840111156130245761302361429f565b5b61302f848285614093565b509392505050565b6000813590506130468161463d565b92915050565b60008135905061305b81614654565b92915050565b60008151905061307081614654565b92915050565b6000813590506130858161466b565b92915050565b60008151905061309a8161466b565b92915050565b60008083601f8401126130b6576130b5614295565b5b8235905067ffffffffffffffff8111156130d3576130d2614290565b5b6020830191508360018202830111156130ef576130ee61429a565b5b9250929050565b600082601f83011261310b5761310a614295565b5b813561311b848260208601612fb3565b91505092915050565b600082601f83011261313957613138614295565b5b8135613149848260208601612ff5565b91505092915050565b60008135905061316181614682565b92915050565b60006020828403121561317d5761317c6142a9565b5b600061318b84828501613037565b91505092915050565b600080604083850312156131ab576131aa6142a9565b5b60006131b985828601613037565b92505060206131ca85828601613037565b9150509250929050565b6000806000606084860312156131ed576131ec6142a9565b5b60006131fb86828701613037565b935050602061320c86828701613037565b925050604061321d86828701613152565b9150509250925092565b60008060008060808587031215613241576132406142a9565b5b600061324f87828801613037565b945050602061326087828801613037565b935050604061327187828801613152565b925050606085013567ffffffffffffffff811115613292576132916142a4565b5b61329e878288016130f6565b91505092959194509250565b600080604083850312156132c1576132c06142a9565b5b60006132cf85828601613037565b92505060206132e08582860161304c565b9150509250929050565b60008060408385031215613301576133006142a9565b5b600061330f85828601613037565b925050602061332085828601613152565b9150509250929050565b6000602082840312156133405761333f6142a9565b5b600061334e84828501613061565b91505092915050565b60006020828403121561336d5761336c6142a9565b5b600061337b84828501613076565b91505092915050565b60006020828403121561339a576133996142a9565b5b60006133a88482850161308b565b91505092915050565b6000602082840312156133c7576133c66142a9565b5b600082013567ffffffffffffffff8111156133e5576133e46142a4565b5b6133f184828501613124565b91505092915050565b6000602082840312156134105761340f6142a9565b5b600061341e84828501613152565b91505092915050565b6000806000604084860312156134405761343f6142a9565b5b600061344e86828701613152565b935050602084013567ffffffffffffffff81111561346f5761346e6142a4565b5b61347b868287016130a0565b92509250509250925092565b6000806040838503121561349e5761349d6142a9565b5b60006134ac85828601613152565b92505060206134bd85828601613152565b9150509250929050565b60006134d38383613974565b60408301905092915050565b6134e881614012565b82525050565b6134f781614012565b82525050565b61350681614012565b82525050565b61351d61351882614012565b614181565b82525050565b600061352e82613dc9565b6135388185613df7565b935061354383613da4565b8060005b8381101561357457815161355b88826134c7565b975061356683613dea565b925050600181019050613547565b5085935050505092915050565b61358a81614024565b82525050565b600061359c8385613e19565b93506135a9838584614093565b6135b2836142ae565b840190509392505050565b60006135c882613dd4565b6135d28185613e08565b93506135e28185602086016140a2565b6135eb816142ae565b840191505092915050565b600061360182613ddf565b61360b8185613e2a565b935061361b8185602086016140a2565b613624816142ae565b840191505092915050565b600061363a82613ddf565b6136448185613e3b565b93506136548185602086016140a2565b61365d816142ae565b840191505092915050565b60008154613675816140d5565b61367f8186613e2a565b9450600182166000811461369a57600181146136ac576136df565b60ff19831686526020860193506136df565b6136b585613db4565b60005b838110156136d7578154818901526001820191506020810190506136b8565b808801955050505b50505092915050565b600081546136f5816140d5565b6136ff8186613e4c565b9450600182166000811461371a576001811461372b5761375e565b60ff1983168652818601935061375e565b61373485613db4565b60005b8381101561375657815481890152600182019150602081019050613737565b838801955050505b50505092915050565b6000613774602c83613e2a565b915061377f826142cc565b604082019050919050565b6000613797601a83613e2a565b91506137a28261431b565b602082019050919050565b60006137ba602683613e2a565b91506137c582614344565b604082019050919050565b60006137dd601883613e2a565b91506137e882614393565b602082019050919050565b6000613800601d83613e2a565b915061380b826143bc565b602082019050919050565b6000613823602783613e2a565b915061382e826143e5565b604082019050919050565b6000613846603083613e2a565b915061385182614434565b604082019050919050565b6000613869600583613e4c565b915061387482614483565b600582019050919050565b600061388c602083613e2a565b9150613897826144ac565b602082019050919050565b60006138af602f83613e2a565b91506138ba826144d5565b604082019050919050565b60006138d2601983613e2a565b91506138dd82614524565b602082019050919050565b60006138f5601e83613e2a565b91506139008261454d565b602082019050919050565b6000613918602683613e2a565b915061392382614576565b604082019050919050565b600061393b601a83613e2a565b9150613946826145c5565b602082019050919050565b600061395e603183613e2a565b9150613969826145ee565b604082019050919050565b60408201600082015161398a60008501826134df565b50602082015161399d60208501826139a3565b50505050565b6139ac8161407c565b82525050565b6139bb8161407c565b82525050565b60006139cd828461350c565b60148201915081905092915050565b60006139e882846136e8565b91506139f38261385c565b915081905092915050565b6000602082019050613a1360008301846134ee565b92915050565b6000608082019050613a2e60008301876134ee565b613a3b60208301866134ee565b613a4860408301856139b2565b8181036060830152613a5a81846135bd565b905095945050505050565b6000606082019050613a7a60008301876134fd565b8181036020830152613a8d818587613590565b90508181036040830152613aa1818461362f565b905095945050505050565b60006020820190508181036000830152613ac68184613523565b905092915050565b6000602082019050613ae36000830184613581565b92915050565b60006020820190508181036000830152613b0381846135f6565b905092915050565b60006040820190508181036000830152613b2581856135f6565b90508181036020830152613b398184613668565b90509392505050565b60006020820190508181036000830152613b5b81613767565b9050919050565b60006020820190508181036000830152613b7b8161378a565b9050919050565b60006020820190508181036000830152613b9b816137ad565b9050919050565b60006020820190508181036000830152613bbb816137d0565b9050919050565b60006020820190508181036000830152613bdb816137f3565b9050919050565b60006020820190508181036000830152613bfb81613816565b9050919050565b60006020820190508181036000830152613c1b81613839565b9050919050565b60006020820190508181036000830152613c3b8161387f565b9050919050565b60006020820190508181036000830152613c5b816138a2565b9050919050565b60006020820190508181036000830152613c7b816138c5565b9050919050565b60006020820190508181036000830152613c9b816138e8565b9050919050565b60006020820190508181036000830152613cbb8161390b565b9050919050565b60006020820190508181036000830152613cdb8161392e565b9050919050565b60006020820190508181036000830152613cfb81613951565b9050919050565b6000602082019050613d1760008301846139b2565b92915050565b6000613d27613d38565b9050613d338282614107565b919050565b6000604051905090565b600067ffffffffffffffff821115613d5d57613d5c614261565b5b613d66826142ae565b9050602081019050919050565b600067ffffffffffffffff821115613d8e57613d8d614261565b5b613d97826142ae565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e628261407c565b9150613e6d8361407c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ea257613ea16141a5565b5b828201905092915050565b6000613eb882614086565b9150613ec383614086565b92508260ff03821115613ed957613ed86141a5565b5b828201905092915050565b6000613eef82614086565b9150613efa83614086565b925082613f0a57613f096141d4565b5b828204905092915050565b6000613f208261407c565b9150613f2b8361407c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f6457613f636141a5565b5b828202905092915050565b6000613f7a82614086565b9150613f8583614086565b92508160ff0483118215151615613f9f57613f9e6141a5565b5b828202905092915050565b6000613fb58261407c565b9150613fc08361407c565b925082821015613fd357613fd26141a5565b5b828203905092915050565b6000613fe982614086565b9150613ff483614086565b925082821015614007576140066141a5565b5b828203905092915050565b600061401d8261405c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156140c05780820151818401526020810190506140a5565b838111156140cf576000848401525b50505050565b600060028204905060018216806140ed57607f821691505b6020821081141561410157614100614203565b5b50919050565b614110826142ae565b810181811067ffffffffffffffff8211171561412f5761412e614261565b5b80604052505050565b60006141438261407c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614176576141756141a5565b5b600182019050919050565b600061418c82614193565b9050919050565b600061419e826142bf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f596f752074727920746f206d696e74206d6f726520746f6b656e73207468616e60008201527f20746f74616c537570706c790000000000000000000000000000000000000000602082015250565b7f50726573616c65206861736e2774207374617274656420796574000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20496e76616c6964207369676e61747572650000000000000000600082015250565b7f53616c6520697320636c6f7365642061742074686973206d6f6d656e74000000600082015250565b7f596f752063616e6e6f74207075726368617365206d6f7265207468616e20313060008201527f20746f6b656e7300000000000000000000000000000000000000000000000000602082015250565b7f52656365697665642076616c756520646f65736e74206d61746368207468652060008201527f72657175657374656420746f6b656e7300000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f44656163746976617465207072652d73616c6520666972737400000000000000600082015250565b7f4572726f7220647572696e67207769746864726177207472616e736665720000600082015250565b7f596f752063616e6e6f74207075726368617365206d6f7265207468616e20342060008201527f746f6b656e730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520616c726561647920616374697665000000000000600082015250565b7f596f752063616e2774206368616e67652070726573616c652074696d6573746160008201527f6d70206f6e207075626c69632073616c65000000000000000000000000000000602082015250565b61464681614012565b811461465157600080fd5b50565b61465d81614024565b811461466857600080fd5b50565b61467481614030565b811461467f57600080fd5b50565b61468b8161407c565b811461469657600080fd5b5056fea26469706673582212205ceb78e4879c72d1891c0aedcc90c385396ba6b4a62e5d675bb1ea42c01b167c64736f6c63430008070033697066733a2f2f626166796265696476346678366f3473736b6c667577716364676c69697572676d77327a6834336c3767786d66717369727163666e7a6c6a78646d2f63617365

Deployed Bytecode

0x6080604052600436106102035760003560e01c8063715018a611610118578063b88d4fde116100a0578063c87b56dd1161006f578063c87b56dd14610714578063e222c7f914610751578063e985e9c514610768578063eb91d37e146107a5578063f2fde38b146107d057610203565b8063b88d4fde1461066c578063bc8893b414610695578063c1915616146106c0578063c342e17f146106e957610203565b806390676da0116100e757806390676da01461057357806395d89b411461059e578063a17c1a53146105c9578063a22cb46514610606578063a443df941461062f57610203565b8063715018a6146104db5780637ff9b596146104f2578063844947081461051d5780638da5cb5b1461054857610203565b8063311f57391161019b57806355f804b31161016a57806355f804b3146103e45780635ea4b0961461040d5780636352211e146104365780636c0360eb1461047357806370a082311461049e57610203565b8063311f573914610371578063343937431461038d5780633ccfd60b146103a457806342842e0e146103bb57610203565b8063095ea7b3116101d7578063095ea7b3146102d857806318160ddd1461030157806323b872dd1461032c5780632d0ede441461035557610203565b80620e7fa81461020857806301ffc9a71461023357806306fdde0314610270578063081812fc1461029b575b600080fd5b34801561021457600080fd5b5061021d6107f9565b60405161022a9190613d02565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190613357565b610805565b6040516102679190613ace565b60405180910390f35b34801561027c57600080fd5b50610285610897565b6040516102929190613ae9565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd91906133fa565b610929565b6040516102cf91906139fe565b60405180910390f35b3480156102e457600080fd5b506102ff60048036038101906102fa91906132ea565b6109a5565b005b34801561030d57600080fd5b50610316610b4c565b6040516103239190613d02565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e91906131d4565b610b63565b005b61036f600480360381019061036a91906133fa565b610bef565b005b61038b60048036038101906103869190613427565b610ca2565b005b34801561039957600080fd5b506103a2610e92565b005b3480156103b057600080fd5b506103b9610f8a565b005b3480156103c757600080fd5b506103e260048036038101906103dd91906131d4565b611088565b005b3480156103f057600080fd5b5061040b600480360381019061040691906133b1565b611124565b005b34801561041957600080fd5b50610434600480360381019061042f91906133fa565b611284565b005b34801561044257600080fd5b5061045d600480360381019061045891906133fa565b61135a565b60405161046a91906139fe565b60405180910390f35b34801561047f57600080fd5b5061048861136c565b6040516104959190613ae9565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190613167565b6113fa565b6040516104d29190613d02565b60405180910390f35b3480156104e757600080fd5b506104f06114b3565b005b3480156104fe57600080fd5b5061050761153b565b6040516105149190613d02565b60405180910390f35b34801561052957600080fd5b50610532611541565b60405161053f9190613ace565b60405180910390f35b34801561055457600080fd5b5061055d611554565b60405161056a91906139fe565b60405180910390f35b34801561057f57600080fd5b5061058861157d565b6040516105959190613d02565b60405180910390f35b3480156105aa57600080fd5b506105b3611583565b6040516105c09190613ae9565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb9190613487565b611615565b6040516105fd9190613aac565b60405180910390f35b34801561061257600080fd5b5061062d600480360381019061062891906132aa565b6117da565b005b34801561063b57600080fd5b50610656600480360381019061065191906133fa565b611952565b60405161066391906139fe565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e9190613227565b611991565b005b3480156106a157600080fd5b506106aa611a80565b6040516106b79190613ace565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e29190613167565b611a93565b005b3480156106f557600080fd5b506106fe611b53565b60405161070b9190613d02565b60405180910390f35b34801561072057600080fd5b5061073b600480360381019061073691906133fa565b611b59565b6040516107489190613ae9565b60405180910390f35b34801561075d57600080fd5b50610766611bcb565b005b34801561077457600080fd5b5061078f600480360381019061078a9190613194565b611cc3565b60405161079c9190613ace565b60405180910390f35b3480156107b157600080fd5b506107ba611d57565b6040516107c79190613d02565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190613167565b611dea565b005b670214e8348c4f000081565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108905750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108a6906140d5565b80601f01602080910402602001604051908101604052809291908181526020018280546108d2906140d5565b801561091f5780601f106108f45761010080835404028352916020019161091f565b820191906000526020600020905b81548152906001019060200180831161090257829003601f168201915b5050505050905090565b600061093482611ee2565b61096a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b082611f41565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a18576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a3761200f565b73ffffffffffffffffffffffffffffffffffffffff1614610a9a57610a6381610a5e61200f565b611cc3565b610a99576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b56612017565b6002546001540303905090565b610b6b61201c565b73ffffffffffffffffffffffffffffffffffffffff16610b89611554565b73ffffffffffffffffffffffffffffffffffffffff1614610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613c22565b60405180910390fd5b610bea838383612024565b505050565b600e60159054906101000a900460ff16610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590613bc2565b60405180910390fd5b600a81610c4a336113fa565b610c549190613e57565b1115610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90613be2565b60405180910390fd5b610c9f81336123ce565b50565b600e60149054906101000a900460ff16610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890613bc2565b60405180910390fd5b600a54421015610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90613b62565b60405180910390fd5b600483610d42336113fa565b610d4c9190613e57565b1115610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490613ca2565b60405180910390fd5b734c6a8aeb2d21c640f8faaf480368d5c531fd85b9636cb80720600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168484610dd533612660565b6040518563ffffffff1660e01b8152600401610df49493929190613a65565b60206040518083038186803b158015610e0c57600080fd5b505af4158015610e20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e44919061332a565b610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90613ba2565b60405180910390fd5b610e8d83336123ce565b505050565b610e9a61201c565b73ffffffffffffffffffffffffffffffffffffffff16610eb8611554565b73ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590613c22565b60405180910390fd5b600e60159054906101000a900460ff1615610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590613cc2565b60405180910390fd5b600e60149054906101000a900460ff1615600e60146101000a81548160ff021916908315150217905550565b610f9261201c565b73ffffffffffffffffffffffffffffffffffffffff16610fb0611554565b73ffffffffffffffffffffffffffffffffffffffff1614611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90613c22565b60405180910390fd5b600047905060003373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050905080611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b90613c82565b60405180910390fd5b5050565b61109061201c565b73ffffffffffffffffffffffffffffffffffffffff166110ae611554565b73ffffffffffffffffffffffffffffffffffffffff1614611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb90613c22565b60405180910390fd5b61111f83838360405180602001604052806000815250611991565b505050565b61112c61201c565b73ffffffffffffffffffffffffffffffffffffffff1661114a611554565b73ffffffffffffffffffffffffffffffffffffffff16146111a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119790613c22565b60405180910390fd5b6000600980546111af906140d5565b80601f01602080910402602001604051908101604052809291908181526020018280546111db906140d5565b80156112285780601f106111fd57610100808354040283529160200191611228565b820191906000526020600020905b81548152906001019060200180831161120b57829003601f168201915b505050505090508160099080519060200190611245929190612ee0565b507f9f02bf4cb60375a0a74d238c76d002df33d30d2b85e9e677f03455a22d96c14d816009604051611278929190613b0b565b60405180910390a15050565b61128c61201c565b73ffffffffffffffffffffffffffffffffffffffff166112aa611554565b73ffffffffffffffffffffffffffffffffffffffff1614611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613c22565b60405180910390fd5b600e60159054906101000a900460ff1615611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790613ce2565b60405180910390fd5b80600a8190555050565b600061136582611f41565b9050919050565b60098054611379906140d5565b80601f01602080910402602001604051908101604052809291908181526020018280546113a5906140d5565b80156113f25780601f106113c7576101008083540402835291602001916113f2565b820191906000526020600020905b8154815290600101906020018083116113d557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611462576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114bb61201c565b73ffffffffffffffffffffffffffffffffffffffff166114d9611554565b73ffffffffffffffffffffffffffffffffffffffff161461152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690613c22565b60405180910390fd5b611539600061295b565b565b600b5481565b600e60149054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6122b881565b606060048054611592906140d5565b80601f01602080910402602001604051908101604052809291908181526020018280546115be906140d5565b801561160b5780601f106115e05761010080835404028352916020019161160b565b820191906000526020600020905b8154815290600101906020018083116115ee57829003601f168201915b5050505050905090565b60606000600c80549050831161162b5782611632565b600c805490505b9050600084826116429190613faa565b67ffffffffffffffff81111561165b5761165a614261565b5b60405190808252806020026020018201604052801561169457816020015b611681612f66565b8152602001906001900390816116795790505b5090506000808690505b838110156117cd57600d6000600c83815481106116be576116bd614232565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820154815250508383815181106117a1576117a0614232565b5b602002602001018190525081806117b790614138565b92505080806117c590614138565b91505061169e565b5081935050505092915050565b6117e261200f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611847576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061185461200f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661190161200f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119469190613ace565b60405180910390a35050565b600c818154811061196257600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61199961201c565b73ffffffffffffffffffffffffffffffffffffffff166119b7611554565b73ffffffffffffffffffffffffffffffffffffffff1614611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490613c22565b60405180910390fd5b611a18848484612024565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a7a57611a4384848484612a1f565b611a79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600e60159054906101000a900460ff1681565b611a9b61201c565b73ffffffffffffffffffffffffffffffffffffffff16611ab9611554565b73ffffffffffffffffffffffffffffffffffffffff1614611b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0690613c22565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b6060611b6482611ee2565b611ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9a90613c42565b60405180910390fd5b6009604051602001611bb591906139dc565b6040516020818303038152906040529050919050565b611bd361201c565b73ffffffffffffffffffffffffffffffffffffffff16611bf1611554565b73ffffffffffffffffffffffffffffffffffffffff1614611c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3e90613c22565b60405180910390fd5b600e60149054906101000a900460ff1615611c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8e90613c62565b60405180910390fd5b600e60159054906101000a900460ff1615600e60156101000a81548160ff021916908315150217905550565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600e60149054906101000a900460ff1680611d805750600e60159054906101000a900460ff165b611dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db690613bc2565b60405180910390fd5b600e60149054906101000a900460ff16611ddb57600b54611de5565b670214e8348c4f00005b905090565b611df261201c565b73ffffffffffffffffffffffffffffffffffffffff16611e10611554565b73ffffffffffffffffffffffffffffffffffffffff1614611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d90613c22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecd90613b82565b60405180910390fd5b611edf8161295b565b50565b600081611eed612017565b11158015611efc575060015482105b8015611f3a575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611f50612017565b11611fd857600154811015611fd75760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611fd5575b6000811415611fcb576005600083600190039350838152602001908152602001600020549050611fa0565b809250505061200a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600033905090565b600061202f82611f41565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612096576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166120b761200f565b73ffffffffffffffffffffffffffffffffffffffff1614806120e657506120e5856120e061200f565b611cc3565b5b8061212b57506120f461200f565b73ffffffffffffffffffffffffffffffffffffffff1661211384610929565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612164576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121cb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121d88585856001612b7f565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6122d586612b85565b1717600560008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561235f57600060018401905060006005600083815260200190815260200160002054141561235d57600154811461235c578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123c78585856001612b8f565b5050505050565b600060019050346123ef6123e0611d57565b85612b9590919063ffffffff16565b1461242f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242690613c02565b60405180910390fd5b6122b88361243b610b4c565b6124459190613e57565b1115612486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247d90613b42565b60405180910390fd5b6124908284612bab565b60005b600c8054905081101561252a57600c81815481106124b4576124b3614232565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561251757600091505b808061252290614138565b915050612493565b5060405180604001604052808373ffffffffffffffffffffffffffffffffffffffff16815260200161255b84612bc9565b815250600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155905050801561265b57600c829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b505050565b606060008260405160200161267591906139c1565b60405160208183030381529060405290506000602a67ffffffffffffffff8111156126a3576126a2614261565b5b6040519080825280601f01601f1916602001820160405280156126d55781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061270d5761270c614232565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061277157612770614232565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b601481101561295057600060108483815181106127c3576127c2614232565b5b602001015160f81c60f81b60f81c6127db9190613ee4565b905060008160106127ec9190613f6f565b8584815181106127ff576127fe614232565b5b602001015160f81c60f81b60f81c6128179190613fde565b90506000600a8360ff161061283b576057836128339190613ead565b60f81b61284c565b6030836128489190613ead565b60f81b5b90506000600a8360ff1610612870576057836128689190613ead565b60f81b612881565b60308361287d9190613ead565b60f81b5b9050808660038760026128949190613f15565b61289e9190613e57565b815181106128af576128ae614232565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350818660028760026128ef9190613f15565b6128f99190613e57565b8151811061290a57612909614232565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535050505050808061294890614138565b9150506127a3565b508092505050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a4561200f565b8786866040518563ffffffff1660e01b8152600401612a679493929190613a19565b602060405180830381600087803b158015612a8157600080fd5b505af1925050508015612ab257506040513d601f19601f82011682018060405250810190612aaf9190613384565b60015b612b2c573d8060008114612ae2576040519150601f19603f3d011682016040523d82523d6000602084013e612ae7565b606091505b50600081511415612b24576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b6000819050919050565b50505050565b60008183612ba39190613f15565b905092915050565b612bc5828260405180602001604052806000815250612c20565b5050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c8e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612cc9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cd66000858386612b7f565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612d3b60018514612ed6565b901b60a042901b612d4b86612b85565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612e4f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dff6000878480600101955087612a1f565b612e35576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612d90578260015414612e4a57600080fd5b612eba565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612e50575b816001819055505050612ed06000858386612b8f565b50505050565b6000819050919050565b828054612eec906140d5565b90600052602060002090601f016020900481019282612f0e5760008555612f55565b82601f10612f2757805160ff1916838001178555612f55565b82800160010185558215612f55579182015b82811115612f54578251825591602001919060010190612f39565b5b509050612f629190612f96565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600081525090565b5b80821115612faf576000816000905550600101612f97565b5090565b6000612fc6612fc184613d42565b613d1d565b905082815260208101848484011115612fe257612fe161429f565b5b612fed848285614093565b509392505050565b600061300861300384613d73565b613d1d565b9050828152602081018484840111156130245761302361429f565b5b61302f848285614093565b509392505050565b6000813590506130468161463d565b92915050565b60008135905061305b81614654565b92915050565b60008151905061307081614654565b92915050565b6000813590506130858161466b565b92915050565b60008151905061309a8161466b565b92915050565b60008083601f8401126130b6576130b5614295565b5b8235905067ffffffffffffffff8111156130d3576130d2614290565b5b6020830191508360018202830111156130ef576130ee61429a565b5b9250929050565b600082601f83011261310b5761310a614295565b5b813561311b848260208601612fb3565b91505092915050565b600082601f83011261313957613138614295565b5b8135613149848260208601612ff5565b91505092915050565b60008135905061316181614682565b92915050565b60006020828403121561317d5761317c6142a9565b5b600061318b84828501613037565b91505092915050565b600080604083850312156131ab576131aa6142a9565b5b60006131b985828601613037565b92505060206131ca85828601613037565b9150509250929050565b6000806000606084860312156131ed576131ec6142a9565b5b60006131fb86828701613037565b935050602061320c86828701613037565b925050604061321d86828701613152565b9150509250925092565b60008060008060808587031215613241576132406142a9565b5b600061324f87828801613037565b945050602061326087828801613037565b935050604061327187828801613152565b925050606085013567ffffffffffffffff811115613292576132916142a4565b5b61329e878288016130f6565b91505092959194509250565b600080604083850312156132c1576132c06142a9565b5b60006132cf85828601613037565b92505060206132e08582860161304c565b9150509250929050565b60008060408385031215613301576133006142a9565b5b600061330f85828601613037565b925050602061332085828601613152565b9150509250929050565b6000602082840312156133405761333f6142a9565b5b600061334e84828501613061565b91505092915050565b60006020828403121561336d5761336c6142a9565b5b600061337b84828501613076565b91505092915050565b60006020828403121561339a576133996142a9565b5b60006133a88482850161308b565b91505092915050565b6000602082840312156133c7576133c66142a9565b5b600082013567ffffffffffffffff8111156133e5576133e46142a4565b5b6133f184828501613124565b91505092915050565b6000602082840312156134105761340f6142a9565b5b600061341e84828501613152565b91505092915050565b6000806000604084860312156134405761343f6142a9565b5b600061344e86828701613152565b935050602084013567ffffffffffffffff81111561346f5761346e6142a4565b5b61347b868287016130a0565b92509250509250925092565b6000806040838503121561349e5761349d6142a9565b5b60006134ac85828601613152565b92505060206134bd85828601613152565b9150509250929050565b60006134d38383613974565b60408301905092915050565b6134e881614012565b82525050565b6134f781614012565b82525050565b61350681614012565b82525050565b61351d61351882614012565b614181565b82525050565b600061352e82613dc9565b6135388185613df7565b935061354383613da4565b8060005b8381101561357457815161355b88826134c7565b975061356683613dea565b925050600181019050613547565b5085935050505092915050565b61358a81614024565b82525050565b600061359c8385613e19565b93506135a9838584614093565b6135b2836142ae565b840190509392505050565b60006135c882613dd4565b6135d28185613e08565b93506135e28185602086016140a2565b6135eb816142ae565b840191505092915050565b600061360182613ddf565b61360b8185613e2a565b935061361b8185602086016140a2565b613624816142ae565b840191505092915050565b600061363a82613ddf565b6136448185613e3b565b93506136548185602086016140a2565b61365d816142ae565b840191505092915050565b60008154613675816140d5565b61367f8186613e2a565b9450600182166000811461369a57600181146136ac576136df565b60ff19831686526020860193506136df565b6136b585613db4565b60005b838110156136d7578154818901526001820191506020810190506136b8565b808801955050505b50505092915050565b600081546136f5816140d5565b6136ff8186613e4c565b9450600182166000811461371a576001811461372b5761375e565b60ff1983168652818601935061375e565b61373485613db4565b60005b8381101561375657815481890152600182019150602081019050613737565b838801955050505b50505092915050565b6000613774602c83613e2a565b915061377f826142cc565b604082019050919050565b6000613797601a83613e2a565b91506137a28261431b565b602082019050919050565b60006137ba602683613e2a565b91506137c582614344565b604082019050919050565b60006137dd601883613e2a565b91506137e882614393565b602082019050919050565b6000613800601d83613e2a565b915061380b826143bc565b602082019050919050565b6000613823602783613e2a565b915061382e826143e5565b604082019050919050565b6000613846603083613e2a565b915061385182614434565b604082019050919050565b6000613869600583613e4c565b915061387482614483565b600582019050919050565b600061388c602083613e2a565b9150613897826144ac565b602082019050919050565b60006138af602f83613e2a565b91506138ba826144d5565b604082019050919050565b60006138d2601983613e2a565b91506138dd82614524565b602082019050919050565b60006138f5601e83613e2a565b91506139008261454d565b602082019050919050565b6000613918602683613e2a565b915061392382614576565b604082019050919050565b600061393b601a83613e2a565b9150613946826145c5565b602082019050919050565b600061395e603183613e2a565b9150613969826145ee565b604082019050919050565b60408201600082015161398a60008501826134df565b50602082015161399d60208501826139a3565b50505050565b6139ac8161407c565b82525050565b6139bb8161407c565b82525050565b60006139cd828461350c565b60148201915081905092915050565b60006139e882846136e8565b91506139f38261385c565b915081905092915050565b6000602082019050613a1360008301846134ee565b92915050565b6000608082019050613a2e60008301876134ee565b613a3b60208301866134ee565b613a4860408301856139b2565b8181036060830152613a5a81846135bd565b905095945050505050565b6000606082019050613a7a60008301876134fd565b8181036020830152613a8d818587613590565b90508181036040830152613aa1818461362f565b905095945050505050565b60006020820190508181036000830152613ac68184613523565b905092915050565b6000602082019050613ae36000830184613581565b92915050565b60006020820190508181036000830152613b0381846135f6565b905092915050565b60006040820190508181036000830152613b2581856135f6565b90508181036020830152613b398184613668565b90509392505050565b60006020820190508181036000830152613b5b81613767565b9050919050565b60006020820190508181036000830152613b7b8161378a565b9050919050565b60006020820190508181036000830152613b9b816137ad565b9050919050565b60006020820190508181036000830152613bbb816137d0565b9050919050565b60006020820190508181036000830152613bdb816137f3565b9050919050565b60006020820190508181036000830152613bfb81613816565b9050919050565b60006020820190508181036000830152613c1b81613839565b9050919050565b60006020820190508181036000830152613c3b8161387f565b9050919050565b60006020820190508181036000830152613c5b816138a2565b9050919050565b60006020820190508181036000830152613c7b816138c5565b9050919050565b60006020820190508181036000830152613c9b816138e8565b9050919050565b60006020820190508181036000830152613cbb8161390b565b9050919050565b60006020820190508181036000830152613cdb8161392e565b9050919050565b60006020820190508181036000830152613cfb81613951565b9050919050565b6000602082019050613d1760008301846139b2565b92915050565b6000613d27613d38565b9050613d338282614107565b919050565b6000604051905090565b600067ffffffffffffffff821115613d5d57613d5c614261565b5b613d66826142ae565b9050602081019050919050565b600067ffffffffffffffff821115613d8e57613d8d614261565b5b613d97826142ae565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e628261407c565b9150613e6d8361407c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ea257613ea16141a5565b5b828201905092915050565b6000613eb882614086565b9150613ec383614086565b92508260ff03821115613ed957613ed86141a5565b5b828201905092915050565b6000613eef82614086565b9150613efa83614086565b925082613f0a57613f096141d4565b5b828204905092915050565b6000613f208261407c565b9150613f2b8361407c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f6457613f636141a5565b5b828202905092915050565b6000613f7a82614086565b9150613f8583614086565b92508160ff0483118215151615613f9f57613f9e6141a5565b5b828202905092915050565b6000613fb58261407c565b9150613fc08361407c565b925082821015613fd357613fd26141a5565b5b828203905092915050565b6000613fe982614086565b9150613ff483614086565b925082821015614007576140066141a5565b5b828203905092915050565b600061401d8261405c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156140c05780820151818401526020810190506140a5565b838111156140cf576000848401525b50505050565b600060028204905060018216806140ed57607f821691505b6020821081141561410157614100614203565b5b50919050565b614110826142ae565b810181811067ffffffffffffffff8211171561412f5761412e614261565b5b80604052505050565b60006141438261407c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614176576141756141a5565b5b600182019050919050565b600061418c82614193565b9050919050565b600061419e826142bf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f596f752074727920746f206d696e74206d6f726520746f6b656e73207468616e60008201527f20746f74616c537570706c790000000000000000000000000000000000000000602082015250565b7f50726573616c65206861736e2774207374617274656420796574000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20496e76616c6964207369676e61747572650000000000000000600082015250565b7f53616c6520697320636c6f7365642061742074686973206d6f6d656e74000000600082015250565b7f596f752063616e6e6f74207075726368617365206d6f7265207468616e20313060008201527f20746f6b656e7300000000000000000000000000000000000000000000000000602082015250565b7f52656365697665642076616c756520646f65736e74206d61746368207468652060008201527f72657175657374656420746f6b656e7300000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f44656163746976617465207072652d73616c6520666972737400000000000000600082015250565b7f4572726f7220647572696e67207769746864726177207472616e736665720000600082015250565b7f596f752063616e6e6f74207075726368617365206d6f7265207468616e20342060008201527f746f6b656e730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520616c726561647920616374697665000000000000600082015250565b7f596f752063616e2774206368616e67652070726573616c652074696d6573746160008201527f6d70206f6e207075626c69632073616c65000000000000000000000000000000602082015250565b61464681614012565b811461465157600080fd5b50565b61465d81614024565b811461466857600080fd5b50565b61467481614030565b811461467f57600080fd5b50565b61468b8161407c565b811461469657600080fd5b5056fea26469706673582212205ceb78e4879c72d1891c0aedcc90c385396ba6b4a62e5d675bb1ea42c01b167c64736f6c63430008070033

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.