ETH Price: $2,682.04 (-0.51%)

Token

TradersClubDAO (TCDAO)
 

Overview

Max Total Supply

172 TCDAO

Holders

99

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TCDAO
0x2be195ef4c10b78efafaba2b558cca446c2376c6
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TradersClubDAO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-30
*/

// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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




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




// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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




// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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




// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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




// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}




// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}




pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            pop(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x00))
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}




pragma solidity ^0.8.7;







error ExceedAmount();
error InvalidInput();
error InvalidTime();
error InvalidAddress();
error InvalidSignature();
error TokenNotExist();

contract TradersClubDAO is 
    OperatorFilterer,
    ERC721A, 
    Ownable, 
    ReentrancyGuard,
    EIP712
{
    using Strings for uint256;

    uint256 public immutable maxSupply;
    uint256 public immutable amountForDevs;
    
    string public baseURI;
    string public uriSuffix;

    /// Set with #setWhitelistMintPhase
    uint256 public mintWhitelistStartTime;
    uint256 public mintWhitelistEndTime;
    
    address public teamAddress;

    // OpenSea
    bool public operatorFilteringEnabled;

    // This event is triggered whenever a call to #setWhitelistMintPhase
    event PhaseSet(uint256 _startTime, uint256 _endTime, string _type);
    // This event is triggered whenever a call to #withdraw
    event FundWithdraw(uint256 _amount, address _treasury);
    // This event is triggered whenever a call to #setBaseURI succeeds.
    event URISet(string _context, string _type);
    // This event is triggered whenever a call to #setTeamAddress.
    event TeamMintSet(address _teamAddress);

    constructor(
        uint256 _maxSupply, 
        uint256 _amountForDev, 
        address _teamAddress
    ) 
        ERC721A("TradersClubDAO", "TCDAO")
        EIP712("TradersClubDAO", '1')
    {
        if (_maxSupply < 1) {
            revert InvalidInput();
        }


        maxSupply = _maxSupply;
        amountForDevs = _amountForDev;
        teamAddress = _teamAddress;
        
        _registerForOperatorFiltering();
        operatorFilteringEnabled = true;

        baseURI = "https://nft.tradersclubdao.com/";
        emit URISet(baseURI, "BaseURI");
        
       
    }

    modifier mintWhitelistActive() {
        // If it's not yet or after the public mint time
        if (block.timestamp <= mintWhitelistStartTime || block.timestamp >= mintWhitelistEndTime) {
            revert InvalidTime();
        }
        _;
    }
    
    modifier setTimeCheck(uint256 _startTime, uint256 _endTime) {
        // If we set the start time before end time
        if (_startTime > _endTime) {
            revert InvalidInput();
        }
        _;
    }

    modifier onlyTeam() {
        // If we set the start time before end time
        if (msg.sender != teamAddress) {
            revert InvalidAddress();
        }
        _;
    }


    /**
     * @dev Check whether an address is in the list
     * @dev Check whether the signature generation process is abnormal
     * @param _signature Signature used to verify the address is in the list
     */
    function verify(
        bytes calldata _signature
    ) 
        public
        view
        returns(bool _whitelisted)
    {
          bytes32 hash = _hashTypedDataV4(keccak256(
                            abi.encode(
                                keccak256("IssueTCDAO(string mint,string issuer,address to)"),
                                keccak256(bytes("Please sign this message to mint your NFT")),
                                keccak256(bytes("TradersClubDAO")),
                                msg.sender           
                            )
                    )
           );


        return ECDSA.recover(hash, _signature) == owner();
    }
    /**
     * @dev Mint tokens as whitelisted addresses
     * @param _signature Signature used to verify the address is in the whitelist
     */
    function whitelistMint(
        bytes calldata _signature
    )
        external
        mintWhitelistActive
    {

        // If this signature is from a valid signer
        if (!verify(_signature)) {
            revert InvalidSignature();
        }     

        // If mint quantity exceed maximum mintable amount
        if (_numberMinted(msg.sender) >=  1) {
            revert ExceedAmount();
        }

        _safeMint(msg.sender, 1);
    }

    /**
     * @dev Mint for internal team.
     * @param _quantity Quantity of tokens that the address wants to mint
     */
    function teamMint(uint256 _quantity) 
        external
        onlyTeam
    {
        // If mint quantity exceed maximum mintable amount
        if (_numberMinted(msg.sender) + _quantity > amountForDevs) {
            revert ExceedAmount();
        }

        _safeMint(msg.sender, _quantity);
    }

    /**
     * @dev Internal minting called by #whitelistMint and #teamMint
     * @param _to Address to mint tokens
     * @param _quantity Amount of tokens
     */
    function _safeMint(
        address _to, 
        uint256 _quantity
    ) 
        internal 
        override
        nonReentrant
    {
        // Check if the mint amount will exceed the maximum token supply
        if (_totalMinted() + _quantity > maxSupply) {
            revert ExceedAmount();
        }

        super._safeMint(_to, _quantity);
    }

    /** 
     * @dev Retrieve token URI to get the metadata of a token
     * @param _tokenId TokenId which caller wants to get the metadata of
     */
	function tokenURI(uint256 _tokenId) 
        public 
        view 
        override
        returns (string memory _tokenURI) 
    {
        if (!_exists(_tokenId)) {
            revert TokenNotExist();
        }
        
		return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, _tokenId.toString(), uriSuffix))
            : '';
	}

    /** 
     * @dev Set the mint time for whitelist users
     * @param _startTime After this timestamp the mint phase will be enabled
     * @param _endTime After this timestamp the mint phase will be disabled
     */
    function setWhitelistMintPhase(
        uint256 _startTime,
        uint256 _endTime
    ) 
        external
        onlyOwner
        setTimeCheck(_startTime, _endTime)
    {        
        mintWhitelistStartTime = _startTime;
        mintWhitelistEndTime = _endTime;
        emit PhaseSet(_startTime, _endTime, "Whitelist");
    }
    
    /**
     * @dev Set the team address for team mint
     * @param _teamAddress Team address to mint team NFT
     */
    function setTeamAddress(
        address _teamAddress
    )
        external   
        onlyOwner
    {
        teamAddress = _teamAddress;
        emit TeamMintSet(_teamAddress);
    }

    /** 
     * @dev Set the base URI for tokenURI, which returns the metadata of the tokens
     * @param _baseURI Base URI that caller wants to set with tokenURI
     */
    function setBaseURI(string memory _baseURI)
        external
        onlyOwner
    {
        baseURI = _baseURI;
        emit URISet(_baseURI, "BaseURI");
    }

    /** 
     * @dev Set the URI suffix for tokenURI, which returns the metadata of the tokens
     * @param _uriSuffix URI suffix that caller wants to set with tokenURI
     */
    function setURISuffix(string memory _uriSuffix)
        external
        onlyOwner
    {
        uriSuffix = _uriSuffix;
        emit URISet(_uriSuffix, "Suffix");
    }
    
    /** 
     * @dev Retrieve fund from this contract to the treasury with the according amount
     * @param _amount The amount of fund that the caller wants to retrieve
     */
    function withdraw(uint256 _amount)
        external
        onlyOwner
    {
        payable(teamAddress).transfer(_amount);
        emit FundWithdraw(_amount, teamAddress);
    }     

    /** 
     * @dev Burn an NFT
     * @param _tokenId The NFT token id to burn 
     */
    function whitelistBurn(uint256 _tokenId)
        external
        onlyOwner
    {
        _burn(_tokenId);
    }
    

    /**
     *
     * OpenSea Filterer
     *
     */
    function repeatRegistration() public {
        _registerForOperatorFiltering();
    }

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

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

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

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

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

    function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function _operatorFilteringEnabled() internal view virtual override returns (bool) {
        return operatorFilteringEnabled;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_amountForDev","type":"uint256"},{"internalType":"address","name":"_teamAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ExceedAmount","type":"error"},{"inputs":[],"name":"InvalidAddress","type":"error"},{"inputs":[],"name":"InvalidInput","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[],"name":"InvalidTime","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TokenNotExist","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"_treasury","type":"address"}],"name":"FundWithdraw","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":false,"internalType":"uint256","name":"_startTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_endTime","type":"uint256"},{"indexed":false,"internalType":"string","name":"_type","type":"string"}],"name":"PhaseSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_teamAddress","type":"address"}],"name":"TeamMintSet","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":"_context","type":"string"},{"indexed":false,"internalType":"string","name":"_type","type":"string"}],"name":"URISet","type":"event"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintWhitelistEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintWhitelistStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"repeatRegistration","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamAddress","type":"address"}],"name":"setTeamAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setURISuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"name":"setWhitelistMintPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"verify","outputs":[{"internalType":"bool","name":"_whitelisted","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"whitelistBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101806040523480156200001257600080fd5b5060405162004bed38038062004bed8339818101604052810190620000389190620005fa565b6040518060400160405280600e81526020017f54726164657273436c756244414f0000000000000000000000000000000000008152506040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600e81526020017f54726164657273436c756244414f0000000000000000000000000000000000008152506040518060400160405280600581526020017f544344414f0000000000000000000000000000000000000000000000000000008152508160029080519060200190620001289291906200051c565b508060039080519060200190620001419291906200051c565b50620001526200038260201b60201c565b60008190555050506200017a6200016e6200038760201b60201c565b6200038f60201b60201c565b600160098190555060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001eb8184846200045560201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508061012081815250505050505050600183101562000273576040517fb4fa3fb300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82610140818152505081610160818152505080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002d66200049160201b60201c565b6001600e60146101000a81548160ff0219169083151502179055506040518060400160405280601f81526020017f68747470733a2f2f6e66742e74726164657273636c756264616f2e636f6d2f00815250600a90805190602001906200033e9291906200051c565b507f0e34f618521d6b391596557c60180d51e440208b6c02367bb8b829a06c58cda7600a60405162000371919062000799565b60405180910390a150505062000907565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008383834630604051602001620004729594939291906200073c565b6040516020818303038152906040528051906020012090509392505050565b620004b8733cc6cdda760b79bafa08df41ecfa224f810dceb66001620004ba60201b60201c565b565b637d3e3dbe8260601b60601c925081620004e95782620004e157634420e4869050620004e9565b63a0af290390505b8060e01b600052306004528260245260008060446000806daaeb6d7670e522a718067333cd4e5af1506000602452505050565b8280546200052a9062000840565b90600052602060002090601f0160209004810192826200054e57600085556200059a565b82601f106200056957805160ff19168380011785556200059a565b828001600101855582156200059a579182015b82811115620005995782518255916020019190600101906200057c565b5b509050620005a99190620005ad565b5090565b5b80821115620005c8576000816000905550600101620005ae565b5090565b600081519050620005dd81620008d3565b92915050565b600081519050620005f481620008ed565b92915050565b600080600060608486031215620006165762000615620008a5565b5b60006200062686828701620005e3565b93505060206200063986828701620005e3565b92505060406200064c86828701620005cc565b9150509250925092565b6200066181620007f8565b82525050565b62000672816200080c565b82525050565b60008154620006878162000840565b620006938186620007e7565b94506001821660008114620006b15760018114620006c457620006fb565b60ff1983168652602086019350620006fb565b620006cf85620007d2565b60005b83811015620006f357815481890152600182019150602081019050620006d2565b808801955050505b50505092915050565b600062000713600783620007e7565b91506200072082620008aa565b602082019050919050565b620007368162000836565b82525050565b600060a08201905062000753600083018862000667565b62000762602083018762000667565b62000771604083018662000667565b6200078060608301856200072b565b6200078f608083018462000656565b9695505050505050565b60006040820190508181036000830152620007b5818462000678565b90508181036020830152620007ca8162000704565b905092915050565b60008190508160005260206000209050919050565b600082825260208201905092915050565b6000620008058262000816565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200085957607f821691505b6020821081141562000870576200086f62000876565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f4261736555524900000000000000000000000000000000000000000000000000600082015250565b620008de81620007f8565b8114620008ea57600080fd5b50565b620008f88162000836565b81146200090457600080fd5b50565b60805160a05160c05160601c60e0516101005161012051610140516101605161426f6200097e60003960008181610c10015261165c0152600081816114760152611ce0015260006126c101526000612703015260006126e2015260006126170152600061266d01526000612696015261426f6000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c51461073f578063ed3425011461077c578063f2fde38b146107a5578063fb796e6c146107ce578063fbe1aa51146107f95761020f565b8063b88d4fde14610690578063c87b56dd146106ac578063d5abeb01146106e9578063dd591c29146107145761020f565b80638e760afe116100e75780638e760afe146105ab57806395d89b41146105e8578063a22cb46514610613578063ac4aa53b1461063c578063b7c0b8e8146106675761020f565b806370a0823114610503578063715018a61461054057806381b3e575146105575780638da5cb5b146105805761020f565b80632fbba1151161019b57806355f804b31161016a57806355f804b3146104325780635e1c07461461045b5780636352211e146104725780636690864e146104af5780636c0360eb146104d85761020f565b80632fbba1151461039957806337bc4c0b146103c257806342842e0e146103eb5780635503a0e8146104075761020f565b806318160ddd116101e257806318160ddd146102d55780631c75f085146103005780632042f1271461032b57806323b872dd146103545780632e1a7d4d146103705761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906132d3565b610824565b6040516102489190613804565b60405180910390f35b34801561025d57600080fd5b506102666108b6565b60405161027391906138fc565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906133c3565b610948565b6040516102b0919061379d565b60405180910390f35b6102d360048036038101906102ce9190613266565b6109c7565b005b3480156102e157600080fd5b506102ea6109fc565b6040516102f79190613a68565b60405180910390f35b34801561030c57600080fd5b50610315610a13565b604051610322919061379d565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906133c3565b610a39565b005b61036e60048036038101906103699190613150565b610a4d565b005b34801561037c57600080fd5b50610397600480360381019061039291906133c3565b610ab8565b005b3480156103a557600080fd5b506103c060048036038101906103bb91906133c3565b610b87565b005b3480156103ce57600080fd5b506103e960048036038101906103e4919061332d565b610c88565b005b61040560048036038101906104009190613150565b610d63565b005b34801561041357600080fd5b5061041c610dce565b60405161042991906138fc565b60405180910390f35b34801561043e57600080fd5b506104596004803603810190610454919061337a565b610e5c565b005b34801561046757600080fd5b50610470610eb5565b005b34801561047e57600080fd5b50610499600480360381019061049491906133c3565b610ebf565b6040516104a6919061379d565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d191906130e3565b610ed1565b005b3480156104e457600080fd5b506104ed610f54565b6040516104fa91906138fc565b60405180910390f35b34801561050f57600080fd5b5061052a600480360381019061052591906130e3565b610fe2565b6040516105379190613a68565b60405180910390f35b34801561054c57600080fd5b5061055561109b565b005b34801561056357600080fd5b5061057e6004803603810190610579919061337a565b6110af565b005b34801561058c57600080fd5b50610595611108565b6040516105a2919061379d565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd919061332d565b611132565b6040516105df9190613804565b60405180910390f35b3480156105f457600080fd5b506105fd611273565b60405161060a91906138fc565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190613226565b611305565b005b34801561064857600080fd5b5061065161133a565b60405161065e9190613a68565b60405180910390f35b34801561067357600080fd5b5061068e600480360381019061068991906132a6565b611340565b005b6106aa60048036038101906106a591906131a3565b611365565b005b3480156106b857600080fd5b506106d360048036038101906106ce91906133c3565b6113d2565b6040516106e091906138fc565b60405180910390f35b3480156106f557600080fd5b506106fe611474565b60405161070b9190613a68565b60405180910390f35b34801561072057600080fd5b50610729611498565b6040516107369190613a68565b60405180910390f35b34801561074b57600080fd5b5061076660048036038101906107619190613110565b61149e565b6040516107739190613804565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e91906133f0565b611532565b005b3480156107b157600080fd5b506107cc60048036038101906107c791906130e3565b6115c3565b005b3480156107da57600080fd5b506107e3611647565b6040516107f09190613804565b60405180910390f35b34801561080557600080fd5b5061080e61165a565b60405161081b9190613a68565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108af5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108c590613d4f565b80601f01602080910402602001604051908101604052809291908181526020018280546108f190613d4f565b801561093e5780601f106109135761010080835404028352916020019161093e565b820191906000526020600020905b81548152906001019060200180831161092157829003601f168201915b5050505050905090565b60006109538261167e565b610989576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816109d1816116dd565b6109ed576109dd6116e4565b156109ec576109eb816116fb565b5b5b6109f7838361173f565b505050565b6000610a06611883565b6001546000540303905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a41611888565b610a4a81611906565b50565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aa757610a8a336116dd565b610aa657610a966116e4565b15610aa557610aa4336116fb565b5b5b5b610ab2848484611914565b50505050565b610ac0611888565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b28573d6000803e3d6000fd5b507f762a1dcd34d83e028e3a33f2f61733f2a00746b58e932bf3210cf3771414df6781600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051610b7c929190613a83565b60405180910390a150565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c0e576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081610c3933611c39565b610c439190613bc7565b1115610c7b576040517fe9d1b1a400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c853382611c90565b50565b600c5442111580610c9b5750600d544210155b15610cd2576040517f6f7eac2600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cdc8282611132565b610d12576040517f8baa579f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001610d1d33611c39565b10610d54576040517fe9d1b1a400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d5f336001611c90565b5050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dbd57610da0336116dd565b610dbc57610dac6116e4565b15610dbb57610dba336116fb565b5b5b5b610dc8848484611d60565b50505050565b600b8054610ddb90613d4f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0790613d4f565b8015610e545780601f10610e2957610100808354040283529160200191610e54565b820191906000526020600020905b815481529060010190602001808311610e3757829003601f168201915b505050505081565b610e64611888565b80600a9080519060200190610e7a929190612ea1565b507f0e34f618521d6b391596557c60180d51e440208b6c02367bb8b829a06c58cda781604051610eaa919061391e565b60405180910390a150565b610ebd611d80565b565b6000610eca82611da1565b9050919050565b610ed9611888565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fe05cc256306682305675a198894c9b23c723ac068f6509d963d9aa945c8a7e0381604051610f49919061379d565b60405180910390a150565b600a8054610f6190613d4f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8d90613d4f565b8015610fda5780601f10610faf57610100808354040283529160200191610fda565b820191906000526020600020905b815481529060010190602001808311610fbd57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110a3611888565b6110ad6000611e6f565b565b6110b7611888565b80600b90805190602001906110cd929190612ea1565b507f0e34f618521d6b391596557c60180d51e440208b6c02367bb8b829a06c58cda7816040516110fd9190613953565b60405180910390a150565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000806111e57fb678af686fc960713449ae458355b13018045be74fa80bcd5fb39afae5fe782360405180606001604052806029815260200161421160299139805190602001206040518060400160405280600e81526020017f54726164657273436c756244414f00000000000000000000000000000000000081525080519060200120336040516020016111ca949392919061381f565b60405160208183030381529060405280519060200120611f35565b90506111ef611108565b73ffffffffffffffffffffffffffffffffffffffff166112538286868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611f4f565b73ffffffffffffffffffffffffffffffffffffffff161491505092915050565b60606003805461128290613d4f565b80601f01602080910402602001604051908101604052809291908181526020018280546112ae90613d4f565b80156112fb5780601f106112d0576101008083540402835291602001916112fb565b820191906000526020600020905b8154815290600101906020018083116112de57829003601f168201915b5050505050905090565b8161130f816116dd565b61132b5761131b6116e4565b1561132a57611329816116fb565b5b5b6113358383611f76565b505050565b600d5481565b611348611888565b80600e60146101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113bf576113a2336116dd565b6113be576113ae6116e4565b156113bd576113bc336116fb565b5b5b5b6113cb85858585612081565b5050505050565b60606113dd8261167e565b611413576040517f4494362200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600a805461142290613d4f565b90501161143e576040518060200160405280600081525061146d565b600a611449836120f4565b600b60405160200161145d93929190613735565b6040516020818303038152906040525b9050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61153a611888565b818180821115611576576040517fb4fa3fb300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83600c8190555082600d819055507f4a09b8d9133b26914e8d8acf9ab35456f919c6513ded3d7fce2c88c4eb8bd0e984846040516115b5929190613aac565b60405180910390a150505050565b6115cb611888565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561163b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611632906139c8565b60405180910390fd5b61164481611e6f565b50565b600e60149054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600081611689611883565b11158015611698575060005482105b80156116d6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000919050565b6000600e60149054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611737573d6000803e3d6000fd5b6000603a5250565b600061174a82610ebf565b90508073ffffffffffffffffffffffffffffffffffffffff1661176b612255565b73ffffffffffffffffffffffffffffffffffffffff16146117ce5761179781611792612255565b61149e565b6117cd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61189061225d565b73ffffffffffffffffffffffffffffffffffffffff166118ae611108565b73ffffffffffffffffffffffffffffffffffffffff1614611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb90613a28565b60405180910390fd5b565b611911816000612265565b50565b600061191f82611da1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611986576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611992846124b9565b915091506119a881876119a3612255565b6124e0565b6119f4576119bd866119b8612255565b61149e565b6119f3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611a5b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a688686866001612524565b8015611a7357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611b4185611b1d88888761252a565b7c020000000000000000000000000000000000000000000000000000000017612552565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611bc9576000600185019050600060046000838152602001908152602001600020541415611bc7576000548114611bc6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c31868686600161257d565b505050505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60026009541415611cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccd90613a48565b60405180910390fd5b60026009819055507f000000000000000000000000000000000000000000000000000000000000000081611d08612583565b611d129190613bc7565b1115611d4a576040517fe9d1b1a400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d548282612596565b60016009819055505050565b611d7b83838360405180602001604052806000815250611365565b505050565b611d9f733cc6cdda760b79bafa08df41ecfa224f810dceb660016125b4565b565b60008082905080611db0611883565b11611e3857600054811015611e375760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e35575b6000811415611e2b576004600083600190039350838152602001908152602001600020549050611e00565b8092505050611e6a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611f48611f42612613565b8361272d565b9050919050565b6000806000611f5e8585612760565b91509150611f6b816127b2565b819250505092915050565b8060076000611f83612255565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612030612255565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120759190613804565b60405180910390a35050565b61208c848484610a4d565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120ee576120b784848484612987565b6120ed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600082141561213c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612250565b600082905060005b6000821461216e57808061215790613db2565b915050600a826121679190613c1d565b9150612144565b60008167ffffffffffffffff81111561218a57612189613f21565b5b6040519080825280601f01601f1916602001820160405280156121bc5781602001600182028036833780820191505090505b5090505b60008514612249576001826121d59190613c4e565b9150600a856121e49190613e05565b60306121f09190613bc7565b60f81b81838151811061220657612205613ef2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122429190613c1d565b94506121c0565b8093505050505b919050565b600033905090565b600033905090565b600061227083611da1565b90506000819050600080612283866124b9565b9150915084156122ec5761229f818461229a612255565b6124e0565b6122eb576122b4836122af612255565b61149e565b6122ea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6122fa836000886001612524565b801561230557600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123ad8361236a8560008861252a565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612552565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085161415612435576000600187019050600060046000838152602001908152602001600020541415612433576000548114612432578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461249f83600088600161257d565b600160008154809291906001019190505550505050505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612541868684612ae7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600061258d611883565b60005403905090565b6125b0828260405180602001604052806000815250612af0565b5050565b637d3e3dbe8260601b60601c9250816125e057826125d857634420e48690506125e0565b63a0af290390505b8060e01b600052306004528260245260008060446000806daaeb6d7670e522a718067333cd4e5af1506000602452505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561268f57507f000000000000000000000000000000000000000000000000000000000000000046145b156126bc577f0000000000000000000000000000000000000000000000000000000000000000905061272a565b6127277f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000612b8d565b90505b90565b60008282604051602001612742929190613766565b60405160208183030381529060405280519060200120905092915050565b6000806041835114156127a25760008060006020860151925060408601519150606086015160001a905061279687828585612bc7565b945094505050506127ab565b60006002915091505b9250929050565b600060048111156127c6576127c5613e94565b5b8160048111156127d9576127d8613e94565b5b14156127e457612984565b600160048111156127f8576127f7613e94565b5b81600481111561280b5761280a613e94565b5b141561284c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284390613988565b60405180910390fd5b600260048111156128605761285f613e94565b5b81600481111561287357612872613e94565b5b14156128b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ab906139a8565b60405180910390fd5b600360048111156128c8576128c7613e94565b5b8160048111156128db576128da613e94565b5b141561291c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612913906139e8565b60405180910390fd5b60048081111561292f5761292e613e94565b5b81600481111561294257612941613e94565b5b1415612983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297a90613a08565b60405180910390fd5b5b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129ad612255565b8786866040518563ffffffff1660e01b81526004016129cf94939291906137b8565b602060405180830381600087803b1580156129e957600080fd5b505af1925050508015612a1a57506040513d601f19601f82011682018060405250810190612a179190613300565b60015b612a94573d8060008114612a4a576040519150601f19603f3d011682016040523d82523d6000602084013e612a4f565b606091505b50600081511415612a8c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b612afa8383612cd4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612b8857600080549050600083820390505b612b3a6000868380600101945086612987565b612b70576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612b27578160005414612b8557600080fd5b50505b505050565b60008383834630604051602001612ba8959493929190613864565b6040516020818303038152906040528051906020012090509392505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612c02576000600391509150612ccb565b601b8560ff1614158015612c1a5750601c8560ff1614155b15612c2c576000600491509150612ccb565b600060018787878760405160008152602001604052604051612c5194939291906138b7565b6020604051602081039080840390855afa158015612c73573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cc257600060019250925050612ccb565b80600092509250505b94509492505050565b6000805490506000821415612d15576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d226000848385612524565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612d9983612d8a600086600061252a565b612d9385612e91565b17612552565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612e3a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612dff565b506000821415612e76576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612e8c600084838561257d565b505050565b60006001821460e11b9050919050565b828054612ead90613d4f565b90600052602060002090601f016020900481019282612ecf5760008555612f16565b82601f10612ee857805160ff1916838001178555612f16565b82800160010185558215612f16579182015b82811115612f15578251825591602001919060010190612efa565b5b509050612f239190612f27565b5090565b5b80821115612f40576000816000905550600101612f28565b5090565b6000612f57612f5284613b0d565b613ae8565b905082815260208101848484011115612f7357612f72613f5f565b5b612f7e848285613d0d565b509392505050565b6000612f99612f9484613b3e565b613ae8565b905082815260208101848484011115612fb557612fb4613f5f565b5b612fc0848285613d0d565b509392505050565b600081359050612fd7816141b4565b92915050565b600081359050612fec816141cb565b92915050565b600081359050613001816141e2565b92915050565b600081519050613016816141e2565b92915050565b60008083601f84011261303257613031613f55565b5b8235905067ffffffffffffffff81111561304f5761304e613f50565b5b60208301915083600182028301111561306b5761306a613f5a565b5b9250929050565b600082601f83011261308757613086613f55565b5b8135613097848260208601612f44565b91505092915050565b600082601f8301126130b5576130b4613f55565b5b81356130c5848260208601612f86565b91505092915050565b6000813590506130dd816141f9565b92915050565b6000602082840312156130f9576130f8613f69565b5b600061310784828501612fc8565b91505092915050565b6000806040838503121561312757613126613f69565b5b600061313585828601612fc8565b925050602061314685828601612fc8565b9150509250929050565b60008060006060848603121561316957613168613f69565b5b600061317786828701612fc8565b935050602061318886828701612fc8565b9250506040613199868287016130ce565b9150509250925092565b600080600080608085870312156131bd576131bc613f69565b5b60006131cb87828801612fc8565b94505060206131dc87828801612fc8565b93505060406131ed878288016130ce565b925050606085013567ffffffffffffffff81111561320e5761320d613f64565b5b61321a87828801613072565b91505092959194509250565b6000806040838503121561323d5761323c613f69565b5b600061324b85828601612fc8565b925050602061325c85828601612fdd565b9150509250929050565b6000806040838503121561327d5761327c613f69565b5b600061328b85828601612fc8565b925050602061329c858286016130ce565b9150509250929050565b6000602082840312156132bc576132bb613f69565b5b60006132ca84828501612fdd565b91505092915050565b6000602082840312156132e9576132e8613f69565b5b60006132f784828501612ff2565b91505092915050565b60006020828403121561331657613315613f69565b5b600061332484828501613007565b91505092915050565b6000806020838503121561334457613343613f69565b5b600083013567ffffffffffffffff81111561336257613361613f64565b5b61336e8582860161301c565b92509250509250929050565b6000602082840312156133905761338f613f69565b5b600082013567ffffffffffffffff8111156133ae576133ad613f64565b5b6133ba848285016130a0565b91505092915050565b6000602082840312156133d9576133d8613f69565b5b60006133e7848285016130ce565b91505092915050565b6000806040838503121561340757613406613f69565b5b6000613415858286016130ce565b9250506020613426858286016130ce565b9150509250929050565b61343981613c82565b82525050565b61344881613c94565b82525050565b61345781613ca0565b82525050565b61346e61346982613ca0565b613dfb565b82525050565b600061347f82613b84565b6134898185613b9a565b9350613499818560208601613d1c565b6134a281613f6e565b840191505092915050565b60006134b882613b8f565b6134c28185613bab565b93506134d2818560208601613d1c565b6134db81613f6e565b840191505092915050565b60006134f182613b8f565b6134fb8185613bbc565b935061350b818560208601613d1c565b80840191505092915050565b6000815461352481613d4f565b61352e8186613bbc565b94506001821660008114613549576001811461355a5761358d565b60ff1983168652818601935061358d565b61356385613b6f565b60005b8381101561358557815481890152600182019150602081019050613566565b838801955050505b50505092915050565b60006135a3601883613bab565b91506135ae82613f7f565b602082019050919050565b60006135c6600783613bab565b91506135d182613fa8565b602082019050919050565b60006135e9601f83613bab565b91506135f482613fd1565b602082019050919050565b600061360c602683613bab565b915061361782613ffa565b604082019050919050565b600061362f600283613bbc565b915061363a82614049565b600282019050919050565b6000613652602283613bab565b915061365d82614072565b604082019050919050565b6000613675602283613bab565b9150613680826140c1565b604082019050919050565b6000613698602083613bab565b91506136a382614110565b602082019050919050565b60006136bb600983613bab565b91506136c682614139565b602082019050919050565b60006136de600683613bab565b91506136e982614162565b602082019050919050565b6000613701601f83613bab565b915061370c8261418b565b602082019050919050565b61372081613cf6565b82525050565b61372f81613d00565b82525050565b60006137418286613517565b915061374d82856134e6565b91506137598284613517565b9150819050949350505050565b600061377182613622565b915061377d828561345d565b60208201915061378d828461345d565b6020820191508190509392505050565b60006020820190506137b26000830184613430565b92915050565b60006080820190506137cd6000830187613430565b6137da6020830186613430565b6137e76040830185613717565b81810360608301526137f98184613474565b905095945050505050565b6000602082019050613819600083018461343f565b92915050565b6000608082019050613834600083018761344e565b613841602083018661344e565b61384e604083018561344e565b61385b6060830184613430565b95945050505050565b600060a082019050613879600083018861344e565b613886602083018761344e565b613893604083018661344e565b6138a06060830185613717565b6138ad6080830184613430565b9695505050505050565b60006080820190506138cc600083018761344e565b6138d96020830186613726565b6138e6604083018561344e565b6138f3606083018461344e565b95945050505050565b6000602082019050818103600083015261391681846134ad565b905092915050565b6000604082019050818103600083015261393881846134ad565b9050818103602083015261394b816135b9565b905092915050565b6000604082019050818103600083015261396d81846134ad565b90508181036020830152613980816136d1565b905092915050565b600060208201905081810360008301526139a181613596565b9050919050565b600060208201905081810360008301526139c1816135dc565b9050919050565b600060208201905081810360008301526139e1816135ff565b9050919050565b60006020820190508181036000830152613a0181613645565b9050919050565b60006020820190508181036000830152613a2181613668565b9050919050565b60006020820190508181036000830152613a418161368b565b9050919050565b60006020820190508181036000830152613a61816136f4565b9050919050565b6000602082019050613a7d6000830184613717565b92915050565b6000604082019050613a986000830185613717565b613aa56020830184613430565b9392505050565b6000606082019050613ac16000830185613717565b613ace6020830184613717565b8181036040830152613adf816136ae565b90509392505050565b6000613af2613b03565b9050613afe8282613d81565b919050565b6000604051905090565b600067ffffffffffffffff821115613b2857613b27613f21565b5b613b3182613f6e565b9050602081019050919050565b600067ffffffffffffffff821115613b5957613b58613f21565b5b613b6282613f6e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bd282613cf6565b9150613bdd83613cf6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c1257613c11613e36565b5b828201905092915050565b6000613c2882613cf6565b9150613c3383613cf6565b925082613c4357613c42613e65565b5b828204905092915050565b6000613c5982613cf6565b9150613c6483613cf6565b925082821015613c7757613c76613e36565b5b828203905092915050565b6000613c8d82613cd6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613d3a578082015181840152602081019050613d1f565b83811115613d49576000848401525b50505050565b60006002820490506001821680613d6757607f821691505b60208210811415613d7b57613d7a613ec3565b5b50919050565b613d8a82613f6e565b810181811067ffffffffffffffff82111715613da957613da8613f21565b5b80604052505050565b6000613dbd82613cf6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613df057613def613e36565b5b600182019050919050565b6000819050919050565b6000613e1082613cf6565b9150613e1b83613cf6565b925082613e2b57613e2a613e65565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4261736555524900000000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f57686974656c6973740000000000000000000000000000000000000000000000600082015250565b7f5375666669780000000000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6141bd81613c82565b81146141c857600080fd5b50565b6141d481613c94565b81146141df57600080fd5b50565b6141eb81613caa565b81146141f657600080fd5b50565b61420281613cf6565b811461420d57600080fd5b5056fe506c65617365207369676e2074686973206d65737361676520746f206d696e7420796f7572204e4654a264697066735822122064841dcd6d99911c1ebad7df3f3bf9bd5586a11e16183a85e0013c1b8915528f64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000001388000000000000000000000000e458c0227eb2cddc35e1f5a42702d9b3441c2281

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806370a0823111610118578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c51461073f578063ed3425011461077c578063f2fde38b146107a5578063fb796e6c146107ce578063fbe1aa51146107f95761020f565b8063b88d4fde14610690578063c87b56dd146106ac578063d5abeb01146106e9578063dd591c29146107145761020f565b80638e760afe116100e75780638e760afe146105ab57806395d89b41146105e8578063a22cb46514610613578063ac4aa53b1461063c578063b7c0b8e8146106675761020f565b806370a0823114610503578063715018a61461054057806381b3e575146105575780638da5cb5b146105805761020f565b80632fbba1151161019b57806355f804b31161016a57806355f804b3146104325780635e1c07461461045b5780636352211e146104725780636690864e146104af5780636c0360eb146104d85761020f565b80632fbba1151461039957806337bc4c0b146103c257806342842e0e146103eb5780635503a0e8146104075761020f565b806318160ddd116101e257806318160ddd146102d55780631c75f085146103005780632042f1271461032b57806323b872dd146103545780632e1a7d4d146103705761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906132d3565b610824565b6040516102489190613804565b60405180910390f35b34801561025d57600080fd5b506102666108b6565b60405161027391906138fc565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906133c3565b610948565b6040516102b0919061379d565b60405180910390f35b6102d360048036038101906102ce9190613266565b6109c7565b005b3480156102e157600080fd5b506102ea6109fc565b6040516102f79190613a68565b60405180910390f35b34801561030c57600080fd5b50610315610a13565b604051610322919061379d565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906133c3565b610a39565b005b61036e60048036038101906103699190613150565b610a4d565b005b34801561037c57600080fd5b50610397600480360381019061039291906133c3565b610ab8565b005b3480156103a557600080fd5b506103c060048036038101906103bb91906133c3565b610b87565b005b3480156103ce57600080fd5b506103e960048036038101906103e4919061332d565b610c88565b005b61040560048036038101906104009190613150565b610d63565b005b34801561041357600080fd5b5061041c610dce565b60405161042991906138fc565b60405180910390f35b34801561043e57600080fd5b506104596004803603810190610454919061337a565b610e5c565b005b34801561046757600080fd5b50610470610eb5565b005b34801561047e57600080fd5b50610499600480360381019061049491906133c3565b610ebf565b6040516104a6919061379d565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d191906130e3565b610ed1565b005b3480156104e457600080fd5b506104ed610f54565b6040516104fa91906138fc565b60405180910390f35b34801561050f57600080fd5b5061052a600480360381019061052591906130e3565b610fe2565b6040516105379190613a68565b60405180910390f35b34801561054c57600080fd5b5061055561109b565b005b34801561056357600080fd5b5061057e6004803603810190610579919061337a565b6110af565b005b34801561058c57600080fd5b50610595611108565b6040516105a2919061379d565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd919061332d565b611132565b6040516105df9190613804565b60405180910390f35b3480156105f457600080fd5b506105fd611273565b60405161060a91906138fc565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190613226565b611305565b005b34801561064857600080fd5b5061065161133a565b60405161065e9190613a68565b60405180910390f35b34801561067357600080fd5b5061068e600480360381019061068991906132a6565b611340565b005b6106aa60048036038101906106a591906131a3565b611365565b005b3480156106b857600080fd5b506106d360048036038101906106ce91906133c3565b6113d2565b6040516106e091906138fc565b60405180910390f35b3480156106f557600080fd5b506106fe611474565b60405161070b9190613a68565b60405180910390f35b34801561072057600080fd5b50610729611498565b6040516107369190613a68565b60405180910390f35b34801561074b57600080fd5b5061076660048036038101906107619190613110565b61149e565b6040516107739190613804565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e91906133f0565b611532565b005b3480156107b157600080fd5b506107cc60048036038101906107c791906130e3565b6115c3565b005b3480156107da57600080fd5b506107e3611647565b6040516107f09190613804565b60405180910390f35b34801561080557600080fd5b5061080e61165a565b60405161081b9190613a68565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108af5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108c590613d4f565b80601f01602080910402602001604051908101604052809291908181526020018280546108f190613d4f565b801561093e5780601f106109135761010080835404028352916020019161093e565b820191906000526020600020905b81548152906001019060200180831161092157829003601f168201915b5050505050905090565b60006109538261167e565b610989576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816109d1816116dd565b6109ed576109dd6116e4565b156109ec576109eb816116fb565b5b5b6109f7838361173f565b505050565b6000610a06611883565b6001546000540303905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a41611888565b610a4a81611906565b50565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aa757610a8a336116dd565b610aa657610a966116e4565b15610aa557610aa4336116fb565b5b5b5b610ab2848484611914565b50505050565b610ac0611888565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b28573d6000803e3d6000fd5b507f762a1dcd34d83e028e3a33f2f61733f2a00746b58e932bf3210cf3771414df6781600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051610b7c929190613a83565b60405180910390a150565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c0e576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000138881610c3933611c39565b610c439190613bc7565b1115610c7b576040517fe9d1b1a400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c853382611c90565b50565b600c5442111580610c9b5750600d544210155b15610cd2576040517f6f7eac2600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cdc8282611132565b610d12576040517f8baa579f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001610d1d33611c39565b10610d54576040517fe9d1b1a400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d5f336001611c90565b5050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dbd57610da0336116dd565b610dbc57610dac6116e4565b15610dbb57610dba336116fb565b5b5b5b610dc8848484611d60565b50505050565b600b8054610ddb90613d4f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0790613d4f565b8015610e545780601f10610e2957610100808354040283529160200191610e54565b820191906000526020600020905b815481529060010190602001808311610e3757829003601f168201915b505050505081565b610e64611888565b80600a9080519060200190610e7a929190612ea1565b507f0e34f618521d6b391596557c60180d51e440208b6c02367bb8b829a06c58cda781604051610eaa919061391e565b60405180910390a150565b610ebd611d80565b565b6000610eca82611da1565b9050919050565b610ed9611888565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fe05cc256306682305675a198894c9b23c723ac068f6509d963d9aa945c8a7e0381604051610f49919061379d565b60405180910390a150565b600a8054610f6190613d4f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8d90613d4f565b8015610fda5780601f10610faf57610100808354040283529160200191610fda565b820191906000526020600020905b815481529060010190602001808311610fbd57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110a3611888565b6110ad6000611e6f565b565b6110b7611888565b80600b90805190602001906110cd929190612ea1565b507f0e34f618521d6b391596557c60180d51e440208b6c02367bb8b829a06c58cda7816040516110fd9190613953565b60405180910390a150565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000806111e57fb678af686fc960713449ae458355b13018045be74fa80bcd5fb39afae5fe782360405180606001604052806029815260200161421160299139805190602001206040518060400160405280600e81526020017f54726164657273436c756244414f00000000000000000000000000000000000081525080519060200120336040516020016111ca949392919061381f565b60405160208183030381529060405280519060200120611f35565b90506111ef611108565b73ffffffffffffffffffffffffffffffffffffffff166112538286868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611f4f565b73ffffffffffffffffffffffffffffffffffffffff161491505092915050565b60606003805461128290613d4f565b80601f01602080910402602001604051908101604052809291908181526020018280546112ae90613d4f565b80156112fb5780601f106112d0576101008083540402835291602001916112fb565b820191906000526020600020905b8154815290600101906020018083116112de57829003601f168201915b5050505050905090565b8161130f816116dd565b61132b5761131b6116e4565b1561132a57611329816116fb565b5b5b6113358383611f76565b505050565b600d5481565b611348611888565b80600e60146101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113bf576113a2336116dd565b6113be576113ae6116e4565b156113bd576113bc336116fb565b5b5b5b6113cb85858585612081565b5050505050565b60606113dd8261167e565b611413576040517f4494362200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600a805461142290613d4f565b90501161143e576040518060200160405280600081525061146d565b600a611449836120f4565b600b60405160200161145d93929190613735565b6040516020818303038152906040525b9050919050565b7f000000000000000000000000000000000000000000000000000000000000138881565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61153a611888565b818180821115611576576040517fb4fa3fb300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83600c8190555082600d819055507f4a09b8d9133b26914e8d8acf9ab35456f919c6513ded3d7fce2c88c4eb8bd0e984846040516115b5929190613aac565b60405180910390a150505050565b6115cb611888565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561163b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611632906139c8565b60405180910390fd5b61164481611e6f565b50565b600e60149054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000138881565b600081611689611883565b11158015611698575060005482105b80156116d6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000919050565b6000600e60149054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611737573d6000803e3d6000fd5b6000603a5250565b600061174a82610ebf565b90508073ffffffffffffffffffffffffffffffffffffffff1661176b612255565b73ffffffffffffffffffffffffffffffffffffffff16146117ce5761179781611792612255565b61149e565b6117cd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61189061225d565b73ffffffffffffffffffffffffffffffffffffffff166118ae611108565b73ffffffffffffffffffffffffffffffffffffffff1614611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb90613a28565b60405180910390fd5b565b611911816000612265565b50565b600061191f82611da1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611986576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611992846124b9565b915091506119a881876119a3612255565b6124e0565b6119f4576119bd866119b8612255565b61149e565b6119f3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611a5b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a688686866001612524565b8015611a7357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611b4185611b1d88888761252a565b7c020000000000000000000000000000000000000000000000000000000017612552565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611bc9576000600185019050600060046000838152602001908152602001600020541415611bc7576000548114611bc6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c31868686600161257d565b505050505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60026009541415611cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccd90613a48565b60405180910390fd5b60026009819055507f000000000000000000000000000000000000000000000000000000000000138881611d08612583565b611d129190613bc7565b1115611d4a576040517fe9d1b1a400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d548282612596565b60016009819055505050565b611d7b83838360405180602001604052806000815250611365565b505050565b611d9f733cc6cdda760b79bafa08df41ecfa224f810dceb660016125b4565b565b60008082905080611db0611883565b11611e3857600054811015611e375760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e35575b6000811415611e2b576004600083600190039350838152602001908152602001600020549050611e00565b8092505050611e6a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611f48611f42612613565b8361272d565b9050919050565b6000806000611f5e8585612760565b91509150611f6b816127b2565b819250505092915050565b8060076000611f83612255565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612030612255565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120759190613804565b60405180910390a35050565b61208c848484610a4d565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120ee576120b784848484612987565b6120ed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600082141561213c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612250565b600082905060005b6000821461216e57808061215790613db2565b915050600a826121679190613c1d565b9150612144565b60008167ffffffffffffffff81111561218a57612189613f21565b5b6040519080825280601f01601f1916602001820160405280156121bc5781602001600182028036833780820191505090505b5090505b60008514612249576001826121d59190613c4e565b9150600a856121e49190613e05565b60306121f09190613bc7565b60f81b81838151811061220657612205613ef2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122429190613c1d565b94506121c0565b8093505050505b919050565b600033905090565b600033905090565b600061227083611da1565b90506000819050600080612283866124b9565b9150915084156122ec5761229f818461229a612255565b6124e0565b6122eb576122b4836122af612255565b61149e565b6122ea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6122fa836000886001612524565b801561230557600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123ad8361236a8560008861252a565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612552565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085161415612435576000600187019050600060046000838152602001908152602001600020541415612433576000548114612432578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461249f83600088600161257d565b600160008154809291906001019190505550505050505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612541868684612ae7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600061258d611883565b60005403905090565b6125b0828260405180602001604052806000815250612af0565b5050565b637d3e3dbe8260601b60601c9250816125e057826125d857634420e48690506125e0565b63a0af290390505b8060e01b600052306004528260245260008060446000806daaeb6d7670e522a718067333cd4e5af1506000602452505050565b60007f000000000000000000000000b77401ccff7b036b22d7781bfa618e8b2e02324473ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561268f57507f000000000000000000000000000000000000000000000000000000000000000146145b156126bc577f423e44e578960abce036dfe29fba9105becc6ae02482dc50f8508a302e33fc73905061272a565b6127277f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f422280ac31c7968a2ab79774b5dca048b8e6111c22171494062fbf7c362b8e287fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6612b8d565b90505b90565b60008282604051602001612742929190613766565b60405160208183030381529060405280519060200120905092915050565b6000806041835114156127a25760008060006020860151925060408601519150606086015160001a905061279687828585612bc7565b945094505050506127ab565b60006002915091505b9250929050565b600060048111156127c6576127c5613e94565b5b8160048111156127d9576127d8613e94565b5b14156127e457612984565b600160048111156127f8576127f7613e94565b5b81600481111561280b5761280a613e94565b5b141561284c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284390613988565b60405180910390fd5b600260048111156128605761285f613e94565b5b81600481111561287357612872613e94565b5b14156128b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ab906139a8565b60405180910390fd5b600360048111156128c8576128c7613e94565b5b8160048111156128db576128da613e94565b5b141561291c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612913906139e8565b60405180910390fd5b60048081111561292f5761292e613e94565b5b81600481111561294257612941613e94565b5b1415612983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297a90613a08565b60405180910390fd5b5b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129ad612255565b8786866040518563ffffffff1660e01b81526004016129cf94939291906137b8565b602060405180830381600087803b1580156129e957600080fd5b505af1925050508015612a1a57506040513d601f19601f82011682018060405250810190612a179190613300565b60015b612a94573d8060008114612a4a576040519150601f19603f3d011682016040523d82523d6000602084013e612a4f565b606091505b50600081511415612a8c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b612afa8383612cd4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612b8857600080549050600083820390505b612b3a6000868380600101945086612987565b612b70576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612b27578160005414612b8557600080fd5b50505b505050565b60008383834630604051602001612ba8959493929190613864565b6040516020818303038152906040528051906020012090509392505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612c02576000600391509150612ccb565b601b8560ff1614158015612c1a5750601c8560ff1614155b15612c2c576000600491509150612ccb565b600060018787878760405160008152602001604052604051612c5194939291906138b7565b6020604051602081039080840390855afa158015612c73573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cc257600060019250925050612ccb565b80600092509250505b94509492505050565b6000805490506000821415612d15576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d226000848385612524565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612d9983612d8a600086600061252a565b612d9385612e91565b17612552565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612e3a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612dff565b506000821415612e76576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612e8c600084838561257d565b505050565b60006001821460e11b9050919050565b828054612ead90613d4f565b90600052602060002090601f016020900481019282612ecf5760008555612f16565b82601f10612ee857805160ff1916838001178555612f16565b82800160010185558215612f16579182015b82811115612f15578251825591602001919060010190612efa565b5b509050612f239190612f27565b5090565b5b80821115612f40576000816000905550600101612f28565b5090565b6000612f57612f5284613b0d565b613ae8565b905082815260208101848484011115612f7357612f72613f5f565b5b612f7e848285613d0d565b509392505050565b6000612f99612f9484613b3e565b613ae8565b905082815260208101848484011115612fb557612fb4613f5f565b5b612fc0848285613d0d565b509392505050565b600081359050612fd7816141b4565b92915050565b600081359050612fec816141cb565b92915050565b600081359050613001816141e2565b92915050565b600081519050613016816141e2565b92915050565b60008083601f84011261303257613031613f55565b5b8235905067ffffffffffffffff81111561304f5761304e613f50565b5b60208301915083600182028301111561306b5761306a613f5a565b5b9250929050565b600082601f83011261308757613086613f55565b5b8135613097848260208601612f44565b91505092915050565b600082601f8301126130b5576130b4613f55565b5b81356130c5848260208601612f86565b91505092915050565b6000813590506130dd816141f9565b92915050565b6000602082840312156130f9576130f8613f69565b5b600061310784828501612fc8565b91505092915050565b6000806040838503121561312757613126613f69565b5b600061313585828601612fc8565b925050602061314685828601612fc8565b9150509250929050565b60008060006060848603121561316957613168613f69565b5b600061317786828701612fc8565b935050602061318886828701612fc8565b9250506040613199868287016130ce565b9150509250925092565b600080600080608085870312156131bd576131bc613f69565b5b60006131cb87828801612fc8565b94505060206131dc87828801612fc8565b93505060406131ed878288016130ce565b925050606085013567ffffffffffffffff81111561320e5761320d613f64565b5b61321a87828801613072565b91505092959194509250565b6000806040838503121561323d5761323c613f69565b5b600061324b85828601612fc8565b925050602061325c85828601612fdd565b9150509250929050565b6000806040838503121561327d5761327c613f69565b5b600061328b85828601612fc8565b925050602061329c858286016130ce565b9150509250929050565b6000602082840312156132bc576132bb613f69565b5b60006132ca84828501612fdd565b91505092915050565b6000602082840312156132e9576132e8613f69565b5b60006132f784828501612ff2565b91505092915050565b60006020828403121561331657613315613f69565b5b600061332484828501613007565b91505092915050565b6000806020838503121561334457613343613f69565b5b600083013567ffffffffffffffff81111561336257613361613f64565b5b61336e8582860161301c565b92509250509250929050565b6000602082840312156133905761338f613f69565b5b600082013567ffffffffffffffff8111156133ae576133ad613f64565b5b6133ba848285016130a0565b91505092915050565b6000602082840312156133d9576133d8613f69565b5b60006133e7848285016130ce565b91505092915050565b6000806040838503121561340757613406613f69565b5b6000613415858286016130ce565b9250506020613426858286016130ce565b9150509250929050565b61343981613c82565b82525050565b61344881613c94565b82525050565b61345781613ca0565b82525050565b61346e61346982613ca0565b613dfb565b82525050565b600061347f82613b84565b6134898185613b9a565b9350613499818560208601613d1c565b6134a281613f6e565b840191505092915050565b60006134b882613b8f565b6134c28185613bab565b93506134d2818560208601613d1c565b6134db81613f6e565b840191505092915050565b60006134f182613b8f565b6134fb8185613bbc565b935061350b818560208601613d1c565b80840191505092915050565b6000815461352481613d4f565b61352e8186613bbc565b94506001821660008114613549576001811461355a5761358d565b60ff1983168652818601935061358d565b61356385613b6f565b60005b8381101561358557815481890152600182019150602081019050613566565b838801955050505b50505092915050565b60006135a3601883613bab565b91506135ae82613f7f565b602082019050919050565b60006135c6600783613bab565b91506135d182613fa8565b602082019050919050565b60006135e9601f83613bab565b91506135f482613fd1565b602082019050919050565b600061360c602683613bab565b915061361782613ffa565b604082019050919050565b600061362f600283613bbc565b915061363a82614049565b600282019050919050565b6000613652602283613bab565b915061365d82614072565b604082019050919050565b6000613675602283613bab565b9150613680826140c1565b604082019050919050565b6000613698602083613bab565b91506136a382614110565b602082019050919050565b60006136bb600983613bab565b91506136c682614139565b602082019050919050565b60006136de600683613bab565b91506136e982614162565b602082019050919050565b6000613701601f83613bab565b915061370c8261418b565b602082019050919050565b61372081613cf6565b82525050565b61372f81613d00565b82525050565b60006137418286613517565b915061374d82856134e6565b91506137598284613517565b9150819050949350505050565b600061377182613622565b915061377d828561345d565b60208201915061378d828461345d565b6020820191508190509392505050565b60006020820190506137b26000830184613430565b92915050565b60006080820190506137cd6000830187613430565b6137da6020830186613430565b6137e76040830185613717565b81810360608301526137f98184613474565b905095945050505050565b6000602082019050613819600083018461343f565b92915050565b6000608082019050613834600083018761344e565b613841602083018661344e565b61384e604083018561344e565b61385b6060830184613430565b95945050505050565b600060a082019050613879600083018861344e565b613886602083018761344e565b613893604083018661344e565b6138a06060830185613717565b6138ad6080830184613430565b9695505050505050565b60006080820190506138cc600083018761344e565b6138d96020830186613726565b6138e6604083018561344e565b6138f3606083018461344e565b95945050505050565b6000602082019050818103600083015261391681846134ad565b905092915050565b6000604082019050818103600083015261393881846134ad565b9050818103602083015261394b816135b9565b905092915050565b6000604082019050818103600083015261396d81846134ad565b90508181036020830152613980816136d1565b905092915050565b600060208201905081810360008301526139a181613596565b9050919050565b600060208201905081810360008301526139c1816135dc565b9050919050565b600060208201905081810360008301526139e1816135ff565b9050919050565b60006020820190508181036000830152613a0181613645565b9050919050565b60006020820190508181036000830152613a2181613668565b9050919050565b60006020820190508181036000830152613a418161368b565b9050919050565b60006020820190508181036000830152613a61816136f4565b9050919050565b6000602082019050613a7d6000830184613717565b92915050565b6000604082019050613a986000830185613717565b613aa56020830184613430565b9392505050565b6000606082019050613ac16000830185613717565b613ace6020830184613717565b8181036040830152613adf816136ae565b90509392505050565b6000613af2613b03565b9050613afe8282613d81565b919050565b6000604051905090565b600067ffffffffffffffff821115613b2857613b27613f21565b5b613b3182613f6e565b9050602081019050919050565b600067ffffffffffffffff821115613b5957613b58613f21565b5b613b6282613f6e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bd282613cf6565b9150613bdd83613cf6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c1257613c11613e36565b5b828201905092915050565b6000613c2882613cf6565b9150613c3383613cf6565b925082613c4357613c42613e65565b5b828204905092915050565b6000613c5982613cf6565b9150613c6483613cf6565b925082821015613c7757613c76613e36565b5b828203905092915050565b6000613c8d82613cd6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613d3a578082015181840152602081019050613d1f565b83811115613d49576000848401525b50505050565b60006002820490506001821680613d6757607f821691505b60208210811415613d7b57613d7a613ec3565b5b50919050565b613d8a82613f6e565b810181811067ffffffffffffffff82111715613da957613da8613f21565b5b80604052505050565b6000613dbd82613cf6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613df057613def613e36565b5b600182019050919050565b6000819050919050565b6000613e1082613cf6565b9150613e1b83613cf6565b925082613e2b57613e2a613e65565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4261736555524900000000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f57686974656c6973740000000000000000000000000000000000000000000000600082015250565b7f5375666669780000000000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6141bd81613c82565b81146141c857600080fd5b50565b6141d481613c94565b81146141df57600080fd5b50565b6141eb81613caa565b81146141f657600080fd5b50565b61420281613cf6565b811461420d57600080fd5b5056fe506c65617365207369676e2074686973206d65737361676520746f206d696e7420796f7572204e4654a264697066735822122064841dcd6d99911c1ebad7df3f3bf9bd5586a11e16183a85e0013c1b8915528f64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000001388000000000000000000000000e458c0227eb2cddc35e1f5a42702d9b3441c2281

-----Decoded View---------------
Arg [0] : _maxSupply (uint256): 5000
Arg [1] : _amountForDev (uint256): 5000
Arg [2] : _teamAddress (address): 0xe458c0227eB2CdDc35e1f5A42702d9B3441c2281

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [2] : 000000000000000000000000e458c0227eb2cddc35e1f5a42702d9b3441c2281


Deployed Bytecode Sourcemap

79074:9196:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18350:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19252:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25743:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87092:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15003:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79516:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86591:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87306:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86300:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83095:309;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82490:467;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87526:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79351:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85574:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86781:87;;;;;;;;;;;;;:::i;:::-;;20645:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85197:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79323:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16187:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54054:103;;;;;;;;;;;;;:::i;:::-;;85930:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53406:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81650:683;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19428:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86876:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79468:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88007:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87754:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84114:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79231:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79424:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26692:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84717:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54312:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79567:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79272:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18350:639;18435:4;18774:10;18759:25;;:11;:25;;;;:102;;;;18851:10;18836:25;;:11;:25;;;;18759:102;:179;;;;18928:10;18913:25;;:11;:25;;;;18759:179;18739:199;;18350:639;;;:::o;19252:100::-;19306:13;19339:5;19332:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19252:100;:::o;25743:218::-;25819:7;25844:16;25852:7;25844;:16::i;:::-;25839:64;;25869:34;;;;;;;;;;;;;;25839:64;25923:15;:24;25939:7;25923:24;;;;;;;;;;;:30;;;;;;;;;;;;25916:37;;25743:218;;;:::o;87092:206::-;87232:8;76721:29;76741:8;76721:19;:29::i;:::-;76716:122;;76771:27;:25;:27::i;:::-;76767:59;;;76800:26;76817:8;76800:16;:26::i;:::-;76767:59;76716:122;87258:32:::1;87272:8;87282:7;87258:13;:32::i;:::-;87092:206:::0;;;:::o;15003:323::-;15064:7;15292:15;:13;:15::i;:::-;15277:12;;15261:13;;:28;:46;15254:53;;15003:323;:::o;79516:26::-;;;;;;;;;;;;;:::o;86591:117::-;53292:13;:11;:13::i;:::-;86685:15:::1;86691:8;86685:5;:15::i;:::-;86591:117:::0;:::o;87306:212::-;87451:4;76364:10;76356:18;;:4;:18;;;76352:184;;76396:31;76416:10;76396:19;:31::i;:::-;76391:134;;76452:27;:25;:27::i;:::-;76448:61;;;76481:28;76498:10;76481:16;:28::i;:::-;76448:61;76391:134;76352:184;87473:37:::1;87492:4;87498:2;87502:7;87473:18;:37::i;:::-;87306:212:::0;;;;:::o;86300:184::-;53292:13;:11;:13::i;:::-;86396:11:::1;;;;;;;;;;;86388:29;;:38;86418:7;86388:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;86442:34;86455:7;86464:11;;;;;;;;;;;86442:34;;;;;;;:::i;:::-;;;;;;;;86300:184:::0;:::o;83095:309::-;81337:11;;;;;;;;;;;81323:25;;:10;:25;;;81319:81;;81372:16;;;;;;;;;;;;;;81319:81;83289:13:::1;83277:9;83249:25;83263:10;83249:13;:25::i;:::-;:37;;;;:::i;:::-;:53;83245:107;;;83326:14;;;;;;;;;;;;;;83245:107;83364:32;83374:10;83386:9;83364;:32::i;:::-;83095:309:::0;:::o;82490:467::-;80864:22;;80845:15;:41;;:84;;;;80909:20;;80890:15;:39;;80845:84;80841:137;;;80953:13;;;;;;;;;;;;;;80841:137;82679:18:::1;82686:10;;82679:6;:18::i;:::-;82674:77;;82721:18;;;;;;;;;;;;;;82674:77;82862:1;82832:25;82846:10;82832:13;:25::i;:::-;:31;82828:85;;82887:14;;;;;;;;;;;;;;82828:85;82925:24;82935:10;82947:1;82925:9;:24::i;:::-;82490:467:::0;;:::o;87526:220::-;87675:4;76364:10;76356:18;;:4;:18;;;76352:184;;76396:31;76416:10;76396:19;:31::i;:::-;76391:134;;76452:27;:25;:27::i;:::-;76448:61;;;76481:28;76498:10;76481:16;:28::i;:::-;76448:61;76391:134;76352:184;87697:41:::1;87720:4;87726:2;87730:7;87697:22;:41::i;:::-;87526:220:::0;;;;:::o;79351:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;85574:166::-;53292:13;:11;:13::i;:::-;85681:8:::1;85671:7;:18;;;;;;;;;;;;:::i;:::-;;85705:27;85712:8;85705:27;;;;;;:::i;:::-;;;;;;;;85574:166:::0;:::o;86781:87::-;86829:31;:29;:31::i;:::-;86781:87::o;20645:152::-;20717:7;20760:27;20779:7;20760:18;:27::i;:::-;20737:52;;20645:152;;;:::o;85197:193::-;53292:13;:11;:13::i;:::-;85329:12:::1;85315:11;;:26;;;;;;;;;;;;;;;;;;85357:25;85369:12;85357:25;;;;;;:::i;:::-;;;;;;;;85197:193:::0;:::o;79323:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16187:233::-;16259:7;16300:1;16283:19;;:5;:19;;;16279:60;;;16311:28;;;;;;;;;;;;;;16279:60;10346:13;16357:18;:25;16376:5;16357:25;;;;;;;;;;;;;;;;:55;16350:62;;16187:233;;;:::o;54054:103::-;53292:13;:11;:13::i;:::-;54119:30:::1;54146:1;54119:18;:30::i;:::-;54054:103::o:0;85930:175::-;53292:13;:11;:13::i;:::-;86043:10:::1;86031:9;:22;;;;;;;;;;;;:::i;:::-;;86069:28;86076:10;86069:28;;;;;;:::i;:::-;;;;;;;;85930:175:::0;:::o;53406:87::-;53452:7;53479:6;;;;;;;;;;;53472:13;;53406:87;:::o;81650:683::-;81757:17;81794:12;81809:452;81911:61;82017:50;;;;;;;;;;;;;;;;;82007:61;;;;;;82113:23;;;;;;;;;;;;;;;;;82103:34;;;;;;82172:10;81866:358;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81826:421;;;;;;81809:16;:452::i;:::-;81794:467;;82318:7;:5;:7::i;:::-;82283:42;;:31;82297:4;82303:10;;82283:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:13;:31::i;:::-;:42;;;82276:49;;;81650:683;;;;:::o;19428:104::-;19484:13;19517:7;19510:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19428:104;:::o;86876:208::-;87007:8;76721:29;76741:8;76721:19;:29::i;:::-;76716:122;;76771:27;:25;:27::i;:::-;76767:59;;;76800:26;76817:8;76800:16;:26::i;:::-;76767:59;76716:122;87033:43:::1;87057:8;87067;87033:23;:43::i;:::-;86876:208:::0;;;:::o;79468:35::-;;;;:::o;88007:117::-;53292:13;:11;:13::i;:::-;88111:5:::1;88084:24;;:32;;;;;;;;;;;;;;;;;;88007:117:::0;:::o;87754:245::-;87922:4;76364:10;76356:18;;:4;:18;;;76352:184;;76396:31;76416:10;76396:19;:31::i;:::-;76391:134;;76452:27;:25;:27::i;:::-;76448:61;;;76481:28;76498:10;76481:16;:28::i;:::-;76448:61;76391:134;76352:184;87944:47:::1;87967:4;87973:2;87977:7;87986:4;87944:22;:47::i;:::-;87754:245:::0;;;;;:::o;84114:370::-;84219:23;84266:17;84274:8;84266:7;:17::i;:::-;84261:73;;84307:15;;;;;;;;;;;;;;84261:73;84379:1;84361:7;84355:21;;;;;:::i;:::-;;;:25;:124;;;;;;;;;;;;;;;;;84420:7;84429:19;:8;:17;:19::i;:::-;84450:9;84403:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84355:124;84348:131;;84114:370;;;:::o;79231:34::-;;;:::o;79424:37::-;;;;:::o;26692:164::-;26789:4;26813:18;:25;26832:5;26813:25;;;;;;;;;;;;;;;:35;26839:8;26813:35;;;;;;;;;;;;;;;;;;;;;;;;;26806:42;;26692:164;;;;:::o;84717:344::-;53292:13;:11;:13::i;:::-;84871:10:::1;84883:8;81150;81137:10;:21;81133:75;;;81182:14;;;;;;;;;;;;;;81133:75;84942:10:::2;84917:22;:35;;;;84986:8;84963:20;:31;;;;85010:43;85019:10;85031:8;85010:43;;;;;;;:::i;:::-;;;;;;;;53316:1:::1;;84717:344:::0;;:::o;54312:201::-;53292:13;:11;:13::i;:::-;54421:1:::1;54401:22;;:8;:22;;;;54393:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54477:28;54496:8;54477:18;:28::i;:::-;54312:201:::0;:::o;79567:36::-;;;;;;;;;;;;;:::o;79272:38::-;;;:::o;27114:282::-;27179:4;27235:7;27216:15;:13;:15::i;:::-;:26;;:66;;;;;27269:13;;27259:7;:23;27216:66;:153;;;;;27368:1;11122:8;27320:17;:26;27338:7;27320:26;;;;;;;;;;;;:44;:49;27216:153;27196:173;;27114:282;;;:::o;78770:106::-;78839:4;78770:106;;;:::o;88132:133::-;88209:4;88233:24;;;;;;;;;;;88226:31;;88132:133;:::o;76954:1359::-;77347:22;77341:4;77334:36;77440:9;77434:4;77427:23;77515:8;77509:4;77502:22;77692:4;77686;77680;77674;77647:25;77640:5;77629:68;77619:274;;77813:16;77807:4;77801;77786:44;77861:16;77855:4;77848:30;77619:274;78293:1;78287:4;78280:15;76954:1359;:::o;25176:408::-;25265:13;25281:16;25289:7;25281;:16::i;:::-;25265:32;;25337:5;25314:28;;:19;:17;:19::i;:::-;:28;;;25310:175;;25362:44;25379:5;25386:19;:17;:19::i;:::-;25362:16;:44::i;:::-;25357:128;;25434:35;;;;;;;;;;;;;;25357:128;25310:175;25530:2;25497:15;:24;25513:7;25497:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25568:7;25564:2;25548:28;;25557:5;25548:28;;;;;;;;;;;;25254:330;25176:408;;:::o;14519:92::-;14575:7;14519:92;:::o;53571:132::-;53646:12;:10;:12::i;:::-;53635:23;;:7;:5;:7::i;:::-;:23;;;53627:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53571:132::o;43633:89::-;43693:21;43699:7;43708:5;43693;:21::i;:::-;43633:89;:::o;29382:2825::-;29524:27;29554;29573:7;29554:18;:27::i;:::-;29524:57;;29639:4;29598:45;;29614:19;29598:45;;;29594:86;;29652:28;;;;;;;;;;;;;;29594:86;29694:27;29723:23;29750:35;29777:7;29750:26;:35::i;:::-;29693:92;;;;29885:68;29910:15;29927:4;29933:19;:17;:19::i;:::-;29885:24;:68::i;:::-;29880:180;;29973:43;29990:4;29996:19;:17;:19::i;:::-;29973:16;:43::i;:::-;29968:92;;30025:35;;;;;;;;;;;;;;29968:92;29880:180;30091:1;30077:16;;:2;:16;;;30073:52;;;30102:23;;;;;;;;;;;;;;30073:52;30138:43;30160:4;30166:2;30170:7;30179:1;30138:21;:43::i;:::-;30274:15;30271:160;;;30414:1;30393:19;30386:30;30271:160;30811:18;:24;30830:4;30811:24;;;;;;;;;;;;;;;;30809:26;;;;;;;;;;;;30880:18;:22;30899:2;30880:22;;;;;;;;;;;;;;;;30878:24;;;;;;;;;;;31202:146;31239:2;31288:45;31303:4;31309:2;31313:19;31288:14;:45::i;:::-;11402:8;31260:73;31202:18;:146::i;:::-;31173:17;:26;31191:7;31173:26;;;;;;;;;;;:175;;;;31519:1;11402:8;31468:19;:47;:52;31464:627;;;31541:19;31573:1;31563:7;:11;31541:33;;31730:1;31696:17;:30;31714:11;31696:30;;;;;;;;;;;;:35;31692:384;;;31834:13;;31819:11;:28;31815:242;;32014:19;31981:17;:30;31999:11;31981:30;;;;;;;;;;;:52;;;;31815:242;31692:384;31522:569;31464:627;32138:7;32134:2;32119:27;;32128:4;32119:27;;;;;;;;;;;;32157:42;32178:4;32184:2;32188:7;32197:1;32157:20;:42::i;:::-;29513:2694;;;29382:2825;;;:::o;16502:178::-;16563:7;10346:13;10484:2;16591:18;:25;16610:5;16591:25;;;;;;;;;;;;;;;;:50;;16590:82;16583:89;;16502:178;;;:::o;83583:370::-;59069:1;59667:7;;:19;;59659:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;59069:1;59800:7;:18;;;;83843:9:::1;83831;83814:14;:12;:14::i;:::-;:26;;;;:::i;:::-;:38;83810:92;;;83876:14;;;;;;;;;;;;;;83810:92;83914:31;83930:3;83935:9;83914:15;:31::i;:::-;59025:1:::0;59979:7;:22;;;;83583:370;;:::o;32303:193::-;32449:39;32466:4;32472:2;32476:7;32449:39;;;;;;;;;;;;:16;:39::i;:::-;32303:193;;;:::o;74392:135::-;74461:58;73956:42;74514:4;74461:29;:58::i;:::-;74392:135::o;21800:1275::-;21867:7;21887:12;21902:7;21887:22;;21970:4;21951:15;:13;:15::i;:::-;:23;21947:1061;;22004:13;;21997:4;:20;21993:1015;;;22042:14;22059:17;:23;22077:4;22059:23;;;;;;;;;;;;22042:40;;22176:1;11122:8;22148:6;:24;:29;22144:845;;;22813:113;22830:1;22820:6;:11;22813:113;;;22873:17;:25;22891:6;;;;;;;22873:25;;;;;;;;;;;;22864:34;;22813:113;;;22959:6;22952:13;;;;;;22144:845;22019:989;21993:1015;21947:1061;23036:31;;;;;;;;;;;;;;21800:1275;;;;:::o;54673:191::-;54747:16;54766:6;;;;;;;;;;;54747:25;;54792:8;54783:6;;:17;;;;;;;;;;;;;;;;;;54847:8;54816:40;;54837:8;54816:40;;;;;;;;;;;;54736:128;54673:191;:::o;73313:167::-;73390:7;73417:55;73439:20;:18;:20::i;:::-;73461:10;73417:21;:55::i;:::-;73410:62;;73313:167;;;:::o;63809:231::-;63887:7;63908:17;63927:18;63949:27;63960:4;63966:9;63949:10;:27::i;:::-;63907:69;;;;63987:18;63999:5;63987:11;:18::i;:::-;64023:9;64016:16;;;;63809:231;;;;:::o;26301:234::-;26448:8;26396:18;:39;26415:19;:17;:19::i;:::-;26396:39;;;;;;;;;;;;;;;:49;26436:8;26396:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26508:8;26472:55;;26487:19;:17;:19::i;:::-;26472:55;;;26518:8;26472:55;;;;;;:::i;:::-;;;;;;;;26301:234;;:::o;33094:407::-;33269:31;33282:4;33288:2;33292:7;33269:12;:31::i;:::-;33333:1;33315:2;:14;;;:19;33311:183;;33354:56;33385:4;33391:2;33395:7;33404:5;33354:30;:56::i;:::-;33349:145;;33438:40;;;;;;;;;;;;;;33349:145;33311:183;33094:407;;;;:::o;55251:723::-;55307:13;55537:1;55528:5;:10;55524:53;;;55555:10;;;;;;;;;;;;;;;;;;;;;55524:53;55587:12;55602:5;55587:20;;55618:14;55643:78;55658:1;55650:4;:9;55643:78;;55676:8;;;;;:::i;:::-;;;;55707:2;55699:10;;;;;:::i;:::-;;;55643:78;;;55731:19;55763:6;55753:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55731:39;;55781:154;55797:1;55788:5;:10;55781:154;;55825:1;55815:11;;;;;:::i;:::-;;;55892:2;55884:5;:10;;;;:::i;:::-;55871:2;:24;;;;:::i;:::-;55858:39;;55841:6;55848;55841:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;55921:2;55912:11;;;;;:::i;:::-;;;55781:154;;;55959:6;55945:21;;;;;55251:723;;;;:::o;49422:105::-;49482:7;49509:10;49502:17;;49422:105;:::o;52010:98::-;52063:7;52090:10;52083:17;;52010:98;:::o;43951:3081::-;44031:27;44061;44080:7;44061:18;:27::i;:::-;44031:57;;44101:12;44132:19;44101:52;;44167:27;44196:23;44223:35;44250:7;44223:26;:35::i;:::-;44166:92;;;;44275:13;44271:316;;;44396:68;44421:15;44438:4;44444:19;:17;:19::i;:::-;44396:24;:68::i;:::-;44391:184;;44488:43;44505:4;44511:19;:17;:19::i;:::-;44488:16;:43::i;:::-;44483:92;;44540:35;;;;;;;;;;;;;;44483:92;44391:184;44271:316;44599:51;44621:4;44635:1;44639:7;44648:1;44599:21;:51::i;:::-;44743:15;44740:160;;;44883:1;44862:19;44855:30;44740:160;45561:1;10611:3;45531:1;:26;;45530:32;45502:18;:24;45521:4;45502:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;45829:176;45866:4;45937:53;45952:4;45966:1;45970:19;45937:14;:53::i;:::-;11402:8;11122;45890:43;45889:101;45829:18;:176::i;:::-;45800:17;:26;45818:7;45800:26;;;;;;;;;;;:205;;;;46176:1;11402:8;46125:19;:47;:52;46121:627;;;46198:19;46230:1;46220:7;:11;46198:33;;46387:1;46353:17;:30;46371:11;46353:30;;;;;;;;;;;;:35;46349:384;;;46491:13;;46476:11;:28;46472:242;;46671:19;46638:17;:30;46656:11;46638:30;;;;;;;;;;;:52;;;;46472:242;46349:384;46179:569;46121:627;46803:7;46799:1;46776:35;;46785:4;46776:35;;;;;;;;;;;;46822:50;46843:4;46857:1;46861:7;46870:1;46822:20;:50::i;:::-;46999:12;;:14;;;;;;;;;;;;;44020:3012;;;;43951:3081;;:::o;28277:485::-;28379:27;28408:23;28449:38;28490:15;:24;28506:7;28490:24;;;;;;;;;;;28449:65;;28667:18;28644:41;;28724:19;28718:26;28699:45;;28629:126;28277:485;;;:::o;27505:659::-;27654:11;27819:16;27812:5;27808:28;27799:37;;27979:16;27968:9;27964:32;27951:45;;28129:15;28118:9;28115:30;28107:5;28096:9;28093:20;28090:56;28080:66;;27505:659;;;;;:::o;34163:159::-;;;;;:::o;48731:311::-;48866:7;48886:16;11526:3;48912:19;:41;;48886:68;;11526:3;48980:31;48991:4;48997:2;49001:9;48980:10;:31::i;:::-;48972:40;;:62;;48965:69;;;48731:311;;;;;:::o;23623:450::-;23703:14;23871:16;23864:5;23860:28;23851:37;;24048:5;24034:11;24009:23;24005:41;24002:52;23995:5;23992:63;23982:73;;23623:450;;;;:::o;34987:158::-;;;;;:::o;15424:296::-;15479:7;15686:15;:13;:15::i;:::-;15670:13;;:31;15663:38;;15424:296;:::o;43254:112::-;43331:27;43341:2;43345:8;43331:27;;;;;;;;;;;;:9;:27::i;:::-;43254:112;;:::o;74697:1494::-;74935:10;75155:30;75151:2;75147:39;75143:2;75139:48;75105:82;;75217:9;75203:344;;75260:30;75250:165;;75335:10;75315:30;;75391:5;;75250:165;75453:10;75433:30;;75203:344;75628:16;75623:3;75619:26;75613:4;75606:40;75716:9;75710:4;75703:23;75813:30;75807:4;75800:44;75966:4;75960;75954;75948;75945:1;75918:25;75911:5;75906:65;75902:70;76171:1;76165:4;76158:15;74896:1288;74697:1494;;:::o;72086:314::-;72139:7;72180:12;72163:29;;72171:4;72163:29;;;:66;;;;;72213:16;72196:13;:33;72163:66;72159:234;;;72253:24;72246:31;;;;72159:234;72317:64;72339:10;72351:12;72365:15;72317:21;:64::i;:::-;72310:71;;72086:314;;:::o;68723:196::-;68816:7;68882:15;68899:10;68853:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68843:68;;;;;;68836:75;;68723:196;;;;:::o;62260:747::-;62341:7;62350:12;62399:2;62379:9;:16;:22;62375:625;;;62418:9;62442;62466:7;62723:4;62712:9;62708:20;62702:27;62697:32;;62773:4;62762:9;62758:20;62752:27;62747:32;;62831:4;62820:9;62816:20;62810:27;62807:1;62802:36;62797:41;;62874:25;62885:4;62891:1;62894;62897;62874:10;:25::i;:::-;62867:32;;;;;;;;;62375:625;62948:1;62952:35;62932:56;;;;62260:747;;;;;;:::o;60531:643::-;60609:20;60600:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;60596:571;;;60646:7;;60596:571;60707:29;60698:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;60694:473;;;60753:34;;;;;;;;;;:::i;:::-;;;;;;;;60694:473;60818:35;60809:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;60805:362;;;60870:41;;;;;;;;;;:::i;:::-;;;;;;;;60805:362;60942:30;60933:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;60929:238;;;60989:44;;;;;;;;;;:::i;:::-;;;;;;;;60929:238;61064:30;61055:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;61051:116;;;61111:44;;;;;;;;;;:::i;:::-;;;;;;;;61051:116;60531:643;;:::o;35585:716::-;35748:4;35794:2;35769:45;;;35815:19;:17;:19::i;:::-;35836:4;35842:7;35851:5;35769:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35765:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36069:1;36052:6;:13;:18;36048:235;;;36098:40;;;;;;;;;;;;;;36048:235;36241:6;36235:13;36226:6;36222:2;36218:15;36211:38;35765:529;35938:54;;;35928:64;;;:6;:64;;;;35921:71;;;35585:716;;;;;;:::o;48432:147::-;48569:6;48432:147;;;;;:::o;42481:689::-;42612:19;42618:2;42622:8;42612:5;:19::i;:::-;42691:1;42673:2;:14;;;:19;42669:483;;42713:11;42727:13;;42713:27;;42759:13;42781:8;42775:3;:14;42759:30;;42808:233;42839:62;42878:1;42882:2;42886:7;;;;;;42895:5;42839:30;:62::i;:::-;42834:167;;42937:40;;;;;;;;;;;;;;42834:167;43036:3;43028:5;:11;42808:233;;43123:3;43106:13;;:20;43102:34;;43128:8;;;43102:34;42694:458;;42669:483;42481:689;;;:::o;72408:263::-;72552:7;72600:8;72610;72620:11;72633:13;72656:4;72589:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72579:84;;;;;;72572:91;;72408:263;;;;;:::o;65261:1632::-;65392:7;65401:12;66326:66;66321:1;66313:10;;:79;66309:163;;;66425:1;66429:30;66409:51;;;;;;66309:163;66491:2;66486:1;:7;;;;:18;;;;;66502:2;66497:1;:7;;;;66486:18;66482:102;;;66537:1;66541:30;66521:51;;;;;;66482:102;66681:14;66698:24;66708:4;66714:1;66717;66720;66698:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66681:41;;66755:1;66737:20;;:6;:20;;;66733:103;;;66790:1;66794:29;66774:50;;;;;;;66733:103;66856:6;66864:20;66848:37;;;;;65261:1632;;;;;;;;:::o;36763:2966::-;36836:20;36859:13;;36836:36;;36899:1;36887:8;:13;36883:44;;;36909:18;;;;;;;;;;;;;;36883:44;36940:61;36970:1;36974:2;36978:12;36992:8;36940:21;:61::i;:::-;37484:1;10484:2;37454:1;:26;;37453:32;37441:8;:45;37415:18;:22;37434:2;37415:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37763:139;37800:2;37854:33;37877:1;37881:2;37885:1;37854:14;:33::i;:::-;37821:30;37842:8;37821:20;:30::i;:::-;:66;37763:18;:139::i;:::-;37729:17;:31;37747:12;37729:31;;;;;;;;;;;:173;;;;37919:16;37950:11;37979:8;37964:12;:23;37950:37;;38500:16;38496:2;38492:25;38480:37;;38872:12;38832:8;38791:1;38729:25;38670:1;38609;38582:335;39243:1;39229:12;39225:20;39183:346;39284:3;39275:7;39272:16;39183:346;;39502:7;39492:8;39489:1;39462:25;39459:1;39456;39451:59;39337:1;39328:7;39324:15;39313:26;;39183:346;;;39187:77;39574:1;39562:8;:13;39558:45;;;39584:19;;;;;;;;;;;;;;39558:45;39636:3;39620:13;:19;;;;37189:2462;;39661:60;39690:1;39694:2;39698:12;39712:8;39661:20;:60::i;:::-;36825:2904;36763:2966;;:::o;24175:324::-;24245:14;24478:1;24468:8;24465:15;24439:24;24435:46;24425:56;;24175:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:552::-;1485:8;1495:6;1545:3;1538:4;1530:6;1526:17;1522:27;1512:122;;1553:79;;:::i;:::-;1512:122;1666:6;1653:20;1643:30;;1696:18;1688:6;1685:30;1682:117;;;1718:79;;:::i;:::-;1682:117;1832:4;1824:6;1820:17;1808:29;;1886:3;1878:4;1870:6;1866:17;1856:8;1852:32;1849:41;1846:128;;;1893:79;;:::i;:::-;1846:128;1428:552;;;;;:::o;1999:338::-;2054:5;2103:3;2096:4;2088:6;2084:17;2080:27;2070:122;;2111:79;;:::i;:::-;2070:122;2228:6;2215:20;2253:78;2327:3;2319:6;2312:4;2304:6;2300:17;2253:78;:::i;:::-;2244:87;;2060:277;1999:338;;;;:::o;2357:340::-;2413:5;2462:3;2455:4;2447:6;2443:17;2439:27;2429:122;;2470:79;;:::i;:::-;2429:122;2587:6;2574:20;2612:79;2687:3;2679:6;2672:4;2664:6;2660:17;2612:79;:::i;:::-;2603:88;;2419:278;2357:340;;;;:::o;2703:139::-;2749:5;2787:6;2774:20;2765:29;;2803:33;2830:5;2803:33;:::i;:::-;2703:139;;;;:::o;2848:329::-;2907:6;2956:2;2944:9;2935:7;2931:23;2927:32;2924:119;;;2962:79;;:::i;:::-;2924:119;3082:1;3107:53;3152:7;3143:6;3132:9;3128:22;3107:53;:::i;:::-;3097:63;;3053:117;2848:329;;;;:::o;3183:474::-;3251:6;3259;3308:2;3296:9;3287:7;3283:23;3279:32;3276:119;;;3314:79;;:::i;:::-;3276:119;3434:1;3459:53;3504:7;3495:6;3484:9;3480:22;3459:53;:::i;:::-;3449:63;;3405:117;3561:2;3587:53;3632:7;3623:6;3612:9;3608:22;3587:53;:::i;:::-;3577:63;;3532:118;3183:474;;;;;:::o;3663:619::-;3740:6;3748;3756;3805:2;3793:9;3784:7;3780:23;3776:32;3773:119;;;3811:79;;:::i;:::-;3773:119;3931:1;3956:53;4001:7;3992:6;3981:9;3977:22;3956:53;:::i;:::-;3946:63;;3902:117;4058:2;4084:53;4129:7;4120:6;4109:9;4105:22;4084:53;:::i;:::-;4074:63;;4029:118;4186:2;4212:53;4257:7;4248:6;4237:9;4233:22;4212:53;:::i;:::-;4202:63;;4157:118;3663:619;;;;;:::o;4288:943::-;4383:6;4391;4399;4407;4456:3;4444:9;4435:7;4431:23;4427:33;4424:120;;;4463:79;;:::i;:::-;4424:120;4583:1;4608:53;4653:7;4644:6;4633:9;4629:22;4608:53;:::i;:::-;4598:63;;4554:117;4710:2;4736:53;4781:7;4772:6;4761:9;4757:22;4736:53;:::i;:::-;4726:63;;4681:118;4838:2;4864:53;4909:7;4900:6;4889:9;4885:22;4864:53;:::i;:::-;4854:63;;4809:118;4994:2;4983:9;4979:18;4966:32;5025:18;5017:6;5014:30;5011:117;;;5047:79;;:::i;:::-;5011:117;5152:62;5206:7;5197:6;5186:9;5182:22;5152:62;:::i;:::-;5142:72;;4937:287;4288:943;;;;;;;:::o;5237:468::-;5302:6;5310;5359:2;5347:9;5338:7;5334:23;5330:32;5327:119;;;5365:79;;:::i;:::-;5327:119;5485:1;5510:53;5555:7;5546:6;5535:9;5531:22;5510:53;:::i;:::-;5500:63;;5456:117;5612:2;5638:50;5680:7;5671:6;5660:9;5656:22;5638:50;:::i;:::-;5628:60;;5583:115;5237:468;;;;;:::o;5711:474::-;5779:6;5787;5836:2;5824:9;5815:7;5811:23;5807:32;5804:119;;;5842:79;;:::i;:::-;5804:119;5962:1;5987:53;6032:7;6023:6;6012:9;6008:22;5987:53;:::i;:::-;5977:63;;5933:117;6089:2;6115:53;6160:7;6151:6;6140:9;6136:22;6115:53;:::i;:::-;6105:63;;6060:118;5711:474;;;;;:::o;6191:323::-;6247:6;6296:2;6284:9;6275:7;6271:23;6267:32;6264:119;;;6302:79;;:::i;:::-;6264:119;6422:1;6447:50;6489:7;6480:6;6469:9;6465:22;6447:50;:::i;:::-;6437:60;;6393:114;6191:323;;;;:::o;6520:327::-;6578:6;6627:2;6615:9;6606:7;6602:23;6598:32;6595:119;;;6633:79;;:::i;:::-;6595:119;6753:1;6778:52;6822:7;6813:6;6802:9;6798:22;6778:52;:::i;:::-;6768:62;;6724:116;6520:327;;;;:::o;6853:349::-;6922:6;6971:2;6959:9;6950:7;6946:23;6942:32;6939:119;;;6977:79;;:::i;:::-;6939:119;7097:1;7122:63;7177:7;7168:6;7157:9;7153:22;7122:63;:::i;:::-;7112:73;;7068:127;6853:349;;;;:::o;7208:527::-;7278:6;7286;7335:2;7323:9;7314:7;7310:23;7306:32;7303:119;;;7341:79;;:::i;:::-;7303:119;7489:1;7478:9;7474:17;7461:31;7519:18;7511:6;7508:30;7505:117;;;7541:79;;:::i;:::-;7505:117;7654:64;7710:7;7701:6;7690:9;7686:22;7654:64;:::i;:::-;7636:82;;;;7432:296;7208:527;;;;;:::o;7741:509::-;7810:6;7859:2;7847:9;7838:7;7834:23;7830:32;7827:119;;;7865:79;;:::i;:::-;7827:119;8013:1;8002:9;7998:17;7985:31;8043:18;8035:6;8032:30;8029:117;;;8065:79;;:::i;:::-;8029:117;8170:63;8225:7;8216:6;8205:9;8201:22;8170:63;:::i;:::-;8160:73;;7956:287;7741:509;;;;:::o;8256:329::-;8315:6;8364:2;8352:9;8343:7;8339:23;8335:32;8332:119;;;8370:79;;:::i;:::-;8332:119;8490:1;8515:53;8560:7;8551:6;8540:9;8536:22;8515:53;:::i;:::-;8505:63;;8461:117;8256:329;;;;:::o;8591:474::-;8659:6;8667;8716:2;8704:9;8695:7;8691:23;8687:32;8684:119;;;8722:79;;:::i;:::-;8684:119;8842:1;8867:53;8912:7;8903:6;8892:9;8888:22;8867:53;:::i;:::-;8857:63;;8813:117;8969:2;8995:53;9040:7;9031:6;9020:9;9016:22;8995:53;:::i;:::-;8985:63;;8940:118;8591:474;;;;;:::o;9071:118::-;9158:24;9176:5;9158:24;:::i;:::-;9153:3;9146:37;9071:118;;:::o;9195:109::-;9276:21;9291:5;9276:21;:::i;:::-;9271:3;9264:34;9195:109;;:::o;9310:118::-;9397:24;9415:5;9397:24;:::i;:::-;9392:3;9385:37;9310:118;;:::o;9434:157::-;9539:45;9559:24;9577:5;9559:24;:::i;:::-;9539:45;:::i;:::-;9534:3;9527:58;9434:157;;:::o;9597:360::-;9683:3;9711:38;9743:5;9711:38;:::i;:::-;9765:70;9828:6;9823:3;9765:70;:::i;:::-;9758:77;;9844:52;9889:6;9884:3;9877:4;9870:5;9866:16;9844:52;:::i;:::-;9921:29;9943:6;9921:29;:::i;:::-;9916:3;9912:39;9905:46;;9687:270;9597:360;;;;:::o;9963:364::-;10051:3;10079:39;10112:5;10079:39;:::i;:::-;10134:71;10198:6;10193:3;10134:71;:::i;:::-;10127:78;;10214:52;10259:6;10254:3;10247:4;10240:5;10236:16;10214:52;:::i;:::-;10291:29;10313:6;10291:29;:::i;:::-;10286:3;10282:39;10275:46;;10055:272;9963:364;;;;:::o;10333:377::-;10439:3;10467:39;10500:5;10467:39;:::i;:::-;10522:89;10604:6;10599:3;10522:89;:::i;:::-;10515:96;;10620:52;10665:6;10660:3;10653:4;10646:5;10642:16;10620:52;:::i;:::-;10697:6;10692:3;10688:16;10681:23;;10443:267;10333:377;;;;:::o;10740:845::-;10843:3;10880:5;10874:12;10909:36;10935:9;10909:36;:::i;:::-;10961:89;11043:6;11038:3;10961:89;:::i;:::-;10954:96;;11081:1;11070:9;11066:17;11097:1;11092:137;;;;11243:1;11238:341;;;;11059:520;;11092:137;11176:4;11172:9;11161;11157:25;11152:3;11145:38;11212:6;11207:3;11203:16;11196:23;;11092:137;;11238:341;11305:38;11337:5;11305:38;:::i;:::-;11365:1;11379:154;11393:6;11390:1;11387:13;11379:154;;;11467:7;11461:14;11457:1;11452:3;11448:11;11441:35;11517:1;11508:7;11504:15;11493:26;;11415:4;11412:1;11408:12;11403:17;;11379:154;;;11562:6;11557:3;11553:16;11546:23;;11245:334;;11059:520;;10847:738;;10740:845;;;;:::o;11591:366::-;11733:3;11754:67;11818:2;11813:3;11754:67;:::i;:::-;11747:74;;11830:93;11919:3;11830:93;:::i;:::-;11948:2;11943:3;11939:12;11932:19;;11591:366;;;:::o;11963:365::-;12105:3;12126:66;12190:1;12185:3;12126:66;:::i;:::-;12119:73;;12201:93;12290:3;12201:93;:::i;:::-;12319:2;12314:3;12310:12;12303:19;;11963:365;;;:::o;12334:366::-;12476:3;12497:67;12561:2;12556:3;12497:67;:::i;:::-;12490:74;;12573:93;12662:3;12573:93;:::i;:::-;12691:2;12686:3;12682:12;12675:19;;12334:366;;;:::o;12706:::-;12848:3;12869:67;12933:2;12928:3;12869:67;:::i;:::-;12862:74;;12945:93;13034:3;12945:93;:::i;:::-;13063:2;13058:3;13054:12;13047:19;;12706:366;;;:::o;13078:400::-;13238:3;13259:84;13341:1;13336:3;13259:84;:::i;:::-;13252:91;;13352:93;13441:3;13352:93;:::i;:::-;13470:1;13465:3;13461:11;13454:18;;13078:400;;;:::o;13484:366::-;13626:3;13647:67;13711:2;13706:3;13647:67;:::i;:::-;13640:74;;13723:93;13812:3;13723:93;:::i;:::-;13841:2;13836:3;13832:12;13825:19;;13484:366;;;:::o;13856:::-;13998:3;14019:67;14083:2;14078:3;14019:67;:::i;:::-;14012:74;;14095:93;14184:3;14095:93;:::i;:::-;14213:2;14208:3;14204:12;14197:19;;13856:366;;;:::o;14228:::-;14370:3;14391:67;14455:2;14450:3;14391:67;:::i;:::-;14384:74;;14467:93;14556:3;14467:93;:::i;:::-;14585:2;14580:3;14576:12;14569:19;;14228:366;;;:::o;14600:365::-;14742:3;14763:66;14827:1;14822:3;14763:66;:::i;:::-;14756:73;;14838:93;14927:3;14838:93;:::i;:::-;14956:2;14951:3;14947:12;14940:19;;14600:365;;;:::o;14971:::-;15113:3;15134:66;15198:1;15193:3;15134:66;:::i;:::-;15127:73;;15209:93;15298:3;15209:93;:::i;:::-;15327:2;15322:3;15318:12;15311:19;;14971:365;;;:::o;15342:366::-;15484:3;15505:67;15569:2;15564:3;15505:67;:::i;:::-;15498:74;;15581:93;15670:3;15581:93;:::i;:::-;15699:2;15694:3;15690:12;15683:19;;15342:366;;;:::o;15714:118::-;15801:24;15819:5;15801:24;:::i;:::-;15796:3;15789:37;15714:118;;:::o;15838:112::-;15921:22;15937:5;15921:22;:::i;:::-;15916:3;15909:35;15838:112;;:::o;15956:583::-;16178:3;16200:92;16288:3;16279:6;16200:92;:::i;:::-;16193:99;;16309:95;16400:3;16391:6;16309:95;:::i;:::-;16302:102;;16421:92;16509:3;16500:6;16421:92;:::i;:::-;16414:99;;16530:3;16523:10;;15956:583;;;;;;:::o;16545:663::-;16786:3;16808:148;16952:3;16808:148;:::i;:::-;16801:155;;16966:75;17037:3;17028:6;16966:75;:::i;:::-;17066:2;17061:3;17057:12;17050:19;;17079:75;17150:3;17141:6;17079:75;:::i;:::-;17179:2;17174:3;17170:12;17163:19;;17199:3;17192:10;;16545:663;;;;;:::o;17214:222::-;17307:4;17345:2;17334:9;17330:18;17322:26;;17358:71;17426:1;17415:9;17411:17;17402:6;17358:71;:::i;:::-;17214:222;;;;:::o;17442:640::-;17637:4;17675:3;17664:9;17660:19;17652:27;;17689:71;17757:1;17746:9;17742:17;17733:6;17689:71;:::i;:::-;17770:72;17838:2;17827:9;17823:18;17814:6;17770:72;:::i;:::-;17852;17920:2;17909:9;17905:18;17896:6;17852:72;:::i;:::-;17971:9;17965:4;17961:20;17956:2;17945:9;17941:18;17934:48;17999:76;18070:4;18061:6;17999:76;:::i;:::-;17991:84;;17442:640;;;;;;;:::o;18088:210::-;18175:4;18213:2;18202:9;18198:18;18190:26;;18226:65;18288:1;18277:9;18273:17;18264:6;18226:65;:::i;:::-;18088:210;;;;:::o;18304:553::-;18481:4;18519:3;18508:9;18504:19;18496:27;;18533:71;18601:1;18590:9;18586:17;18577:6;18533:71;:::i;:::-;18614:72;18682:2;18671:9;18667:18;18658:6;18614:72;:::i;:::-;18696;18764:2;18753:9;18749:18;18740:6;18696:72;:::i;:::-;18778;18846:2;18835:9;18831:18;18822:6;18778:72;:::i;:::-;18304:553;;;;;;;:::o;18863:664::-;19068:4;19106:3;19095:9;19091:19;19083:27;;19120:71;19188:1;19177:9;19173:17;19164:6;19120:71;:::i;:::-;19201:72;19269:2;19258:9;19254:18;19245:6;19201:72;:::i;:::-;19283;19351:2;19340:9;19336:18;19327:6;19283:72;:::i;:::-;19365;19433:2;19422:9;19418:18;19409:6;19365:72;:::i;:::-;19447:73;19515:3;19504:9;19500:19;19491:6;19447:73;:::i;:::-;18863:664;;;;;;;;:::o;19533:545::-;19706:4;19744:3;19733:9;19729:19;19721:27;;19758:71;19826:1;19815:9;19811:17;19802:6;19758:71;:::i;:::-;19839:68;19903:2;19892:9;19888:18;19879:6;19839:68;:::i;:::-;19917:72;19985:2;19974:9;19970:18;19961:6;19917:72;:::i;:::-;19999;20067:2;20056:9;20052:18;20043:6;19999:72;:::i;:::-;19533:545;;;;;;;:::o;20084:313::-;20197:4;20235:2;20224:9;20220:18;20212:26;;20284:9;20278:4;20274:20;20270:1;20259:9;20255:17;20248:47;20312:78;20385:4;20376:6;20312:78;:::i;:::-;20304:86;;20084:313;;;;:::o;20403:620::-;20617:4;20655:2;20644:9;20640:18;20632:26;;20704:9;20698:4;20694:20;20690:1;20679:9;20675:17;20668:47;20732:78;20805:4;20796:6;20732:78;:::i;:::-;20724:86;;20857:9;20851:4;20847:20;20842:2;20831:9;20827:18;20820:48;20885:131;21011:4;20885:131;:::i;:::-;20877:139;;20403:620;;;;:::o;21029:::-;21243:4;21281:2;21270:9;21266:18;21258:26;;21330:9;21324:4;21320:20;21316:1;21305:9;21301:17;21294:47;21358:78;21431:4;21422:6;21358:78;:::i;:::-;21350:86;;21483:9;21477:4;21473:20;21468:2;21457:9;21453:18;21446:48;21511:131;21637:4;21511:131;:::i;:::-;21503:139;;21029:620;;;;:::o;21655:419::-;21821:4;21859:2;21848:9;21844:18;21836:26;;21908:9;21902:4;21898:20;21894:1;21883:9;21879:17;21872:47;21936:131;22062:4;21936:131;:::i;:::-;21928:139;;21655:419;;;:::o;22080:::-;22246:4;22284:2;22273:9;22269:18;22261:26;;22333:9;22327:4;22323:20;22319:1;22308:9;22304:17;22297:47;22361:131;22487:4;22361:131;:::i;:::-;22353:139;;22080:419;;;:::o;22505:::-;22671:4;22709:2;22698:9;22694:18;22686:26;;22758:9;22752:4;22748:20;22744:1;22733:9;22729:17;22722:47;22786:131;22912:4;22786:131;:::i;:::-;22778:139;;22505:419;;;:::o;22930:::-;23096:4;23134:2;23123:9;23119:18;23111:26;;23183:9;23177:4;23173:20;23169:1;23158:9;23154:17;23147:47;23211:131;23337:4;23211:131;:::i;:::-;23203:139;;22930:419;;;:::o;23355:::-;23521:4;23559:2;23548:9;23544:18;23536:26;;23608:9;23602:4;23598:20;23594:1;23583:9;23579:17;23572:47;23636:131;23762:4;23636:131;:::i;:::-;23628:139;;23355:419;;;:::o;23780:::-;23946:4;23984:2;23973:9;23969:18;23961:26;;24033:9;24027:4;24023:20;24019:1;24008:9;24004:17;23997:47;24061:131;24187:4;24061:131;:::i;:::-;24053:139;;23780:419;;;:::o;24205:::-;24371:4;24409:2;24398:9;24394:18;24386:26;;24458:9;24452:4;24448:20;24444:1;24433:9;24429:17;24422:47;24486:131;24612:4;24486:131;:::i;:::-;24478:139;;24205:419;;;:::o;24630:222::-;24723:4;24761:2;24750:9;24746:18;24738:26;;24774:71;24842:1;24831:9;24827:17;24818:6;24774:71;:::i;:::-;24630:222;;;;:::o;24858:332::-;24979:4;25017:2;25006:9;25002:18;24994:26;;25030:71;25098:1;25087:9;25083:17;25074:6;25030:71;:::i;:::-;25111:72;25179:2;25168:9;25164:18;25155:6;25111:72;:::i;:::-;24858:332;;;;;:::o;25196:639::-;25418:4;25456:2;25445:9;25441:18;25433:26;;25469:71;25537:1;25526:9;25522:17;25513:6;25469:71;:::i;:::-;25550:72;25618:2;25607:9;25603:18;25594:6;25550:72;:::i;:::-;25669:9;25663:4;25659:20;25654:2;25643:9;25639:18;25632:48;25697:131;25823:4;25697:131;:::i;:::-;25689:139;;25196:639;;;;;:::o;25841:129::-;25875:6;25902:20;;:::i;:::-;25892:30;;25931:33;25959:4;25951:6;25931:33;:::i;:::-;25841:129;;;:::o;25976:75::-;26009:6;26042:2;26036:9;26026:19;;25976:75;:::o;26057:307::-;26118:4;26208:18;26200:6;26197:30;26194:56;;;26230:18;;:::i;:::-;26194:56;26268:29;26290:6;26268:29;:::i;:::-;26260:37;;26352:4;26346;26342:15;26334:23;;26057:307;;;:::o;26370:308::-;26432:4;26522:18;26514:6;26511:30;26508:56;;;26544:18;;:::i;:::-;26508:56;26582:29;26604:6;26582:29;:::i;:::-;26574:37;;26666:4;26660;26656:15;26648:23;;26370:308;;;:::o;26684:141::-;26733:4;26756:3;26748:11;;26779:3;26776:1;26769:14;26813:4;26810:1;26800:18;26792:26;;26684:141;;;:::o;26831:98::-;26882:6;26916:5;26910:12;26900:22;;26831:98;;;:::o;26935:99::-;26987:6;27021:5;27015:12;27005:22;;26935:99;;;:::o;27040:168::-;27123:11;27157:6;27152:3;27145:19;27197:4;27192:3;27188:14;27173:29;;27040:168;;;;:::o;27214:169::-;27298:11;27332:6;27327:3;27320:19;27372:4;27367:3;27363:14;27348:29;;27214:169;;;;:::o;27389:148::-;27491:11;27528:3;27513:18;;27389:148;;;;:::o;27543:305::-;27583:3;27602:20;27620:1;27602:20;:::i;:::-;27597:25;;27636:20;27654:1;27636:20;:::i;:::-;27631:25;;27790:1;27722:66;27718:74;27715:1;27712:81;27709:107;;;27796:18;;:::i;:::-;27709:107;27840:1;27837;27833:9;27826:16;;27543:305;;;;:::o;27854:185::-;27894:1;27911:20;27929:1;27911:20;:::i;:::-;27906:25;;27945:20;27963:1;27945:20;:::i;:::-;27940:25;;27984:1;27974:35;;27989:18;;:::i;:::-;27974:35;28031:1;28028;28024:9;28019:14;;27854:185;;;;:::o;28045:191::-;28085:4;28105:20;28123:1;28105:20;:::i;:::-;28100:25;;28139:20;28157:1;28139:20;:::i;:::-;28134:25;;28178:1;28175;28172:8;28169:34;;;28183:18;;:::i;:::-;28169:34;28228:1;28225;28221:9;28213:17;;28045:191;;;;:::o;28242:96::-;28279:7;28308:24;28326:5;28308:24;:::i;:::-;28297:35;;28242:96;;;:::o;28344:90::-;28378:7;28421:5;28414:13;28407:21;28396:32;;28344:90;;;:::o;28440:77::-;28477:7;28506:5;28495:16;;28440:77;;;:::o;28523:149::-;28559:7;28599:66;28592:5;28588:78;28577:89;;28523:149;;;:::o;28678:126::-;28715:7;28755:42;28748:5;28744:54;28733:65;;28678:126;;;:::o;28810:77::-;28847:7;28876:5;28865:16;;28810:77;;;:::o;28893:86::-;28928:7;28968:4;28961:5;28957:16;28946:27;;28893:86;;;:::o;28985:154::-;29069:6;29064:3;29059;29046:30;29131:1;29122:6;29117:3;29113:16;29106:27;28985:154;;;:::o;29145:307::-;29213:1;29223:113;29237:6;29234:1;29231:13;29223:113;;;29322:1;29317:3;29313:11;29307:18;29303:1;29298:3;29294:11;29287:39;29259:2;29256:1;29252:10;29247:15;;29223:113;;;29354:6;29351:1;29348:13;29345:101;;;29434:1;29425:6;29420:3;29416:16;29409:27;29345:101;29194:258;29145:307;;;:::o;29458:320::-;29502:6;29539:1;29533:4;29529:12;29519:22;;29586:1;29580:4;29576:12;29607:18;29597:81;;29663:4;29655:6;29651:17;29641:27;;29597:81;29725:2;29717:6;29714:14;29694:18;29691:38;29688:84;;;29744:18;;:::i;:::-;29688:84;29509:269;29458:320;;;:::o;29784:281::-;29867:27;29889:4;29867:27;:::i;:::-;29859:6;29855:40;29997:6;29985:10;29982:22;29961:18;29949:10;29946:34;29943:62;29940:88;;;30008:18;;:::i;:::-;29940:88;30048:10;30044:2;30037:22;29827:238;29784:281;;:::o;30071:233::-;30110:3;30133:24;30151:5;30133:24;:::i;:::-;30124:33;;30179:66;30172:5;30169:77;30166:103;;;30249:18;;:::i;:::-;30166:103;30296:1;30289:5;30285:13;30278:20;;30071:233;;;:::o;30310:79::-;30349:7;30378:5;30367:16;;30310:79;;;:::o;30395:176::-;30427:1;30444:20;30462:1;30444:20;:::i;:::-;30439:25;;30478:20;30496:1;30478:20;:::i;:::-;30473:25;;30517:1;30507:35;;30522:18;;:::i;:::-;30507:35;30563:1;30560;30556:9;30551:14;;30395:176;;;;:::o;30577:180::-;30625:77;30622:1;30615:88;30722:4;30719:1;30712:15;30746:4;30743:1;30736:15;30763:180;30811:77;30808:1;30801:88;30908:4;30905:1;30898:15;30932:4;30929:1;30922:15;30949:180;30997:77;30994:1;30987:88;31094:4;31091:1;31084:15;31118:4;31115:1;31108:15;31135:180;31183:77;31180:1;31173:88;31280:4;31277:1;31270:15;31304:4;31301:1;31294:15;31321:180;31369:77;31366:1;31359:88;31466:4;31463:1;31456:15;31490:4;31487:1;31480:15;31507:180;31555:77;31552:1;31545:88;31652:4;31649:1;31642:15;31676:4;31673:1;31666:15;31693:117;31802:1;31799;31792:12;31816:117;31925:1;31922;31915:12;31939:117;32048:1;32045;32038:12;32062:117;32171:1;32168;32161:12;32185:117;32294:1;32291;32284:12;32308:117;32417:1;32414;32407:12;32431:102;32472:6;32523:2;32519:7;32514:2;32507:5;32503:14;32499:28;32489:38;;32431:102;;;:::o;32539:174::-;32679:26;32675:1;32667:6;32663:14;32656:50;32539:174;:::o;32719:157::-;32859:9;32855:1;32847:6;32843:14;32836:33;32719:157;:::o;32882:181::-;33022:33;33018:1;33010:6;33006:14;32999:57;32882:181;:::o;33069:225::-;33209:34;33205:1;33197:6;33193:14;33186:58;33278:8;33273:2;33265:6;33261:15;33254:33;33069:225;:::o;33300:214::-;33440:66;33436:1;33428:6;33424:14;33417:90;33300:214;:::o;33520:221::-;33660:34;33656:1;33648:6;33644:14;33637:58;33729:4;33724:2;33716:6;33712:15;33705:29;33520:221;:::o;33747:::-;33887:34;33883:1;33875:6;33871:14;33864:58;33956:4;33951:2;33943:6;33939:15;33932:29;33747:221;:::o;33974:182::-;34114:34;34110:1;34102:6;34098:14;34091:58;33974:182;:::o;34162:159::-;34302:11;34298:1;34290:6;34286:14;34279:35;34162:159;:::o;34327:156::-;34467:8;34463:1;34455:6;34451:14;34444:32;34327:156;:::o;34489:181::-;34629:33;34625:1;34617:6;34613:14;34606:57;34489:181;:::o;34676:122::-;34749:24;34767:5;34749:24;:::i;:::-;34742:5;34739:35;34729:63;;34788:1;34785;34778:12;34729:63;34676:122;:::o;34804:116::-;34874:21;34889:5;34874:21;:::i;:::-;34867:5;34864:32;34854:60;;34910:1;34907;34900:12;34854:60;34804:116;:::o;34926:120::-;34998:23;35015:5;34998:23;:::i;:::-;34991:5;34988:34;34978:62;;35036:1;35033;35026:12;34978:62;34926:120;:::o;35052:122::-;35125:24;35143:5;35125:24;:::i;:::-;35118:5;35115:35;35105:63;;35164:1;35161;35154:12;35105:63;35052:122;:::o

Swarm Source

ipfs://64841dcd6d99911c1ebad7df3f3bf9bd5586a11e16183a85e0013c1b8915528f
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.