APE Price: $0.70 (-2.68%)

Token

BITROCKS (BITROCKS)

Overview

Max Total Supply

333 BITROCKS

Holders

76

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BITROCKS
0x7aa5c1f0d0b4d23f66a8a7e8eb7e93548972d003
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
BITROCKS

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at apescan.io on 2025-02-09
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.28;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IERC2981 is IERC165 {
    /// ERC165 bytes to add to interface array - set in parent contract
    /// implementing this standard
    ///
    /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
    /// bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;
    /// _registerInterface(_INTERFACE_ID_ERC2981);

    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _salePrice - the sale price of the NFT asset specified by _tokenId
    /// @return receiver - address of who should be sent the royalty payment
    /// @return royaltyAmount - the royalty payment amount for _salePrice
    function royaltyInfo(
        uint256 _tokenId,
        uint256 _salePrice
    ) external view returns (
        address receiver,
        uint256 royaltyAmount
    );
}

contract BITROCKS is IERC721A { 
    using SafeMath for uint256;

    address private _owner;
    function owner() public view returns(address){
        return _owner;
    }

    mapping(address=>uint256) minted;
    uint256 public constant MAX_SUPPLY = 333;
    uint256 public constant MAX_PER_WALLET = 3;
    uint256 public constant MAX_FREE_PER_WALLET = 0;
    uint256 public constant MAX_FREE = 0;
    uint256 public constant COST = 1.5 ether;

    string private constant _name = "BITROCKS";
    string private constant _symbol = "BITROCKS";
    string private _baseURI = "Qmb9Xpx31UcDDxNgJhf6XcxyJ7zvByMAmZXobQoCdgnc3e";

    constructor() {
        _owner = msg.sender;
    }

    function mint(uint256 amount) external payable{
        address _caller = _msgSenderERC721A();

        require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out");
        require(amount*COST <= msg.value, "Value to Low");

        minted[msg.sender] += amount;
        _mint(_caller, amount);
    }



    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;
    uint256 private constant BITPOS_NUMBER_MINTED = 64;
    uint256 private constant BITPOS_NUMBER_BURNED = 128;
    uint256 private constant BITPOS_AUX = 192;
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;
    uint256 private constant BITPOS_START_TIMESTAMP = 160;
    uint256 private constant BITMASK_BURNED = 1 << 224;
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;
    uint256 private _currentIndex = 0;

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

    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

    function royaltyInfo(uint256, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount)
    {
        receiver = _owner;
        royaltyAmount = (salePrice * 500) / 10000; // Calculate royalty based on sale price
    }

    function setData(string memory _base) external onlyOwner{
        _baseURI = _base;
    }


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

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

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

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


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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    
    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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : "";
    }

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

  

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


        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */

    function _transfer(
            address from,
            address to,
            uint256 tokenId
            ) private {



        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();


        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

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

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

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



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

    function _afterTokenTransfers(
            address from,
            address to,
            uint256 startTokenId,
            uint256 quantity
            ) internal virtual {
               
            }
            

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

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

         // Update the free memory pointer to allocate.
         mstore(0x40, ptr)

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

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

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

    function teamMint(uint256 amount) external onlyOwner{
        require(totalSupply() + amount < MAX_SUPPLY, "Must be below Max Supply");
        _mint(msg.sender, amount);
    }

    modifier onlyOwner() { 
        require(_owner==msg.sender, "not Owner");
        _; 
    }

    modifier nob() {
        require(tx.origin==msg.sender, "no Script");
        _;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        address payable recipient = payable(msg.sender);
        recipient.call{value:balance, gas:30000}("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280602e81526020016128e5602e91396002908161002b91906102bd565b505f60035534801561003b575f5ffd5b50335f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061038c565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806100fb57607f821691505b60208210810361010e5761010d6100b7565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026101707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610135565b61017a8683610135565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6101be6101b96101b484610192565b61019b565b610192565b9050919050565b5f819050919050565b6101d7836101a4565b6101eb6101e3826101c5565b848454610141565b825550505050565b5f5f905090565b6102026101f3565b61020d8184846101ce565b505050565b5b81811015610230576102255f826101fa565b600181019050610213565b5050565b601f8211156102755761024681610114565b61024f84610126565b8101602085101561025e578190505b61027261026a85610126565b830182610212565b50505b505050565b5f82821c905092915050565b5f6102955f198460080261027a565b1980831691505092915050565b5f6102ad8383610286565b9150826002028217905092915050565b6102c682610080565b67ffffffffffffffff8111156102df576102de61008a565b5b6102e982546100e4565b6102f4828285610234565b5f60209050601f831160018114610325575f8415610313578287015190505b61031d85826102a2565b865550610384565b601f19841661033386610114565b5f5b8281101561035a57848901518255600182019150602085019450602081019050610335565b868310156103775784890151610373601f891682610286565b8355505b6001600288020188555050505b505050505050565b61254c806103995f395ff3fe608060405260043610610165575f3560e01c806347064d6a116100d0578063a0712d6811610089578063bf8fbbd211610063578063bf8fbbd214610506578063c87b56dd14610530578063e985e9c51461056c578063ed6661c2146105a857610165565b8063a0712d681461049a578063a22cb465146104b6578063b88d4fde146104de57610165565b806347064d6a1461037c5780636352211e146103a457806370a08231146103e05780638da5cb5b1461041c57806395d89b411461044657806398710d1e1461047057610165565b806323b872dd1161012257806323b872dd146102875780632a55205a146102af5780632fbba115146102ec57806332cb6b0c146103145780633ccfd60b1461033e57806342842e0e1461035457610165565b806301ffc9a71461016957806306fdde03146101a5578063081812fc146101cf578063095ea7b31461020b5780630f2cdd6c1461023357806318160ddd1461025d575b5f5ffd5b348015610174575f5ffd5b5061018f600480360381019061018a91906117c4565b6105d2565b60405161019c9190611809565b60405180910390f35b3480156101b0575f5ffd5b506101b9610693565b6040516101c69190611892565b60405180910390f35b3480156101da575f5ffd5b506101f560048036038101906101f091906118e5565b6106d0565b604051610202919061194f565b60405180910390f35b348015610216575f5ffd5b50610231600480360381019061022c9190611992565b610748565b005b34801561023e575f5ffd5b506102476108bc565b60405161025491906119df565b60405180910390f35b348015610268575f5ffd5b506102716108c1565b60405161027e91906119df565b60405180910390f35b348015610292575f5ffd5b506102ad60048036038101906102a891906119f8565b6108d3565b005b3480156102ba575f5ffd5b506102d560048036038101906102d09190611a48565b6108e3565b6040516102e3929190611a86565b60405180910390f35b3480156102f7575f5ffd5b50610312600480360381019061030d91906118e5565b61092c565b005b34801561031f575f5ffd5b50610328610a1d565b60405161033591906119df565b60405180910390f35b348015610349575f5ffd5b50610352610a23565b005b34801561035f575f5ffd5b5061037a600480360381019061037591906119f8565b610b28565b005b348015610387575f5ffd5b506103a2600480360381019061039d9190611bd9565b610b47565b005b3480156103af575f5ffd5b506103ca60048036038101906103c591906118e5565b610be8565b6040516103d7919061194f565b60405180910390f35b3480156103eb575f5ffd5b5061040660048036038101906104019190611c20565b610bf9565b60405161041391906119df565b60405180910390f35b348015610427575f5ffd5b50610430610c8a565b60405161043d919061194f565b60405180910390f35b348015610451575f5ffd5b5061045a610cb1565b6040516104679190611892565b60405180910390f35b34801561047b575f5ffd5b50610484610cee565b60405161049191906119df565b60405180910390f35b6104b460048036038101906104af91906118e5565b610cf2565b005b3480156104c1575f5ffd5b506104dc60048036038101906104d79190611c75565b610e0b565b005b3480156104e9575f5ffd5b5061050460048036038101906104ff9190611d51565b610f7d565b005b348015610511575f5ffd5b5061051a610f8e565b60405161052791906119df565b60405180910390f35b34801561053b575f5ffd5b50610556600480360381019061055191906118e5565b610f9a565b6040516105639190611892565b60405180910390f35b348015610577575f5ffd5b50610592600480360381019061058d9190611dd1565b6110b6565b60405161059f9190611809565b60405180910390f35b3480156105b3575f5ffd5b506105bc611144565b6040516105c991906119df565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061062c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061065c5750632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061068c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600881526020017f424954524f434b53000000000000000000000000000000000000000000000000815250905090565b5f6106da82611148565b610710576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61075282611168565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361078b575f5ffd5b8073ffffffffffffffffffffffffffffffffffffffff166107aa61122c565b73ffffffffffffffffffffffffffffffffffffffff161461080d576107d6816107d161122c565b6110b6565b61080c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600381565b5f6108ca611233565b60035403905090565b6108de83838361123a565b505050565b5f5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691506127106101f4846109199190611e3c565b6109239190611eaa565b90509250929050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b190611f24565b60405180910390fd5b61014d816109c66108c1565b6109d09190611f42565b10610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0790611fbf565b60405180910390fd5b610a1a3382611597565b50565b61014d81565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa890611f24565b60405180910390fd5b5f4790505f3390508073ffffffffffffffffffffffffffffffffffffffff168261753090604051610ae19061200a565b5f60405180830381858888f193505050503d805f8114610b1c576040519150601f19603f3d011682016040523d82523d5f602084013e610b21565b606091505b5050505050565b610b4283838360405180602001604052805f815250610f7d565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90611f24565b60405180910390fd5b8060029081610be4919061221b565b5050565b5f610bf282611168565b9050919050565b5f5f610c04836116ec565b03610c3b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600881526020017f424954524f434b53000000000000000000000000000000000000000000000000815250905090565b5f81565b5f610cfb61122c565b905061014d82610d096108c1565b610d139190611f42565b1115610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90612334565b60405180910390fd5b346714d1120d7b16000083610d699190611e3c565b1115610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da19061239c565b60405180910390fd5b8160015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610df69190611f42565b92505081905550610e078183611597565b5050565b610e1361122c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e77576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f610e8361122c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f2c61122c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f719190611809565b60405180910390a35050565b610f8884848461123a565b50505050565b6714d1120d7b16000081565b6060610fa582611148565b610fdb576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60028054610fe99061204b565b80601f01602080910402602001604051908101604052809291908181526020018280546110159061204b565b80156110605780601f1061103757610100808354040283529160200191611060565b820191905f5260205f20905b81548152906001019060200180831161104357829003601f168201915b505050505090505f8151036110835760405180602001604052805f8152506110ae565b8061108d846116f5565b60405160200161109e9291906124d2565b6040516020818303038152906040525b915050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f81565b5f81611152611233565b11158015611161575060035482105b9050919050565b5f5f82905080611176611233565b116111f5576003548110156111f4575f60045f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036111f2575b5f81036111e85760045f836001900393508381526020019081526020015f205490506111c1565b8092505050611227565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f5f905090565b5f61124482611168565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112ab576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60065f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8573ffffffffffffffffffffffffffffffffffffffff166112ff61122c565b73ffffffffffffffffffffffffffffffffffffffff16148061132e575061132d8661132861122c565b6110b6565b5b8061136b575061133c61122c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806113a4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6113ae836116ec565b146113e75760065f8581526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6114a8876116ec565b171760045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611527575f6001850190505f60045f8381526020019081526020015f205403611525576003548114611524578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461158f868686600161174f565b505050505050565b5f60035490505f82036115d6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e161163860018414611755565b901b60a042901b611648856116ec565b171760045f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061166a578160038190555050506116e75f84838561174f565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561173b57600183039250600a81066030018353600a8104905061171b565b508181036020830392508083525050919050565b50505050565b5f819050919050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6117a38161176f565b81146117ad575f5ffd5b50565b5f813590506117be8161179a565b92915050565b5f602082840312156117d9576117d8611767565b5b5f6117e6848285016117b0565b91505092915050565b5f8115159050919050565b611803816117ef565b82525050565b5f60208201905061181c5f8301846117fa565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61186482611822565b61186e818561182c565b935061187e81856020860161183c565b6118878161184a565b840191505092915050565b5f6020820190508181035f8301526118aa818461185a565b905092915050565b5f819050919050565b6118c4816118b2565b81146118ce575f5ffd5b50565b5f813590506118df816118bb565b92915050565b5f602082840312156118fa576118f9611767565b5b5f611907848285016118d1565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61193982611910565b9050919050565b6119498161192f565b82525050565b5f6020820190506119625f830184611940565b92915050565b6119718161192f565b811461197b575f5ffd5b50565b5f8135905061198c81611968565b92915050565b5f5f604083850312156119a8576119a7611767565b5b5f6119b58582860161197e565b92505060206119c6858286016118d1565b9150509250929050565b6119d9816118b2565b82525050565b5f6020820190506119f25f8301846119d0565b92915050565b5f5f5f60608486031215611a0f57611a0e611767565b5b5f611a1c8682870161197e565b9350506020611a2d8682870161197e565b9250506040611a3e868287016118d1565b9150509250925092565b5f5f60408385031215611a5e57611a5d611767565b5b5f611a6b858286016118d1565b9250506020611a7c858286016118d1565b9150509250929050565b5f604082019050611a995f830185611940565b611aa660208301846119d0565b9392505050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611aeb8261184a565b810181811067ffffffffffffffff82111715611b0a57611b09611ab5565b5b80604052505050565b5f611b1c61175e565b9050611b288282611ae2565b919050565b5f67ffffffffffffffff821115611b4757611b46611ab5565b5b611b508261184a565b9050602081019050919050565b828183375f83830152505050565b5f611b7d611b7884611b2d565b611b13565b905082815260208101848484011115611b9957611b98611ab1565b5b611ba4848285611b5d565b509392505050565b5f82601f830112611bc057611bbf611aad565b5b8135611bd0848260208601611b6b565b91505092915050565b5f60208284031215611bee57611bed611767565b5b5f82013567ffffffffffffffff811115611c0b57611c0a61176b565b5b611c1784828501611bac565b91505092915050565b5f60208284031215611c3557611c34611767565b5b5f611c428482850161197e565b91505092915050565b611c54816117ef565b8114611c5e575f5ffd5b50565b5f81359050611c6f81611c4b565b92915050565b5f5f60408385031215611c8b57611c8a611767565b5b5f611c988582860161197e565b9250506020611ca985828601611c61565b9150509250929050565b5f67ffffffffffffffff821115611ccd57611ccc611ab5565b5b611cd68261184a565b9050602081019050919050565b5f611cf5611cf084611cb3565b611b13565b905082815260208101848484011115611d1157611d10611ab1565b5b611d1c848285611b5d565b509392505050565b5f82601f830112611d3857611d37611aad565b5b8135611d48848260208601611ce3565b91505092915050565b5f5f5f5f60808587031215611d6957611d68611767565b5b5f611d768782880161197e565b9450506020611d878782880161197e565b9350506040611d98878288016118d1565b925050606085013567ffffffffffffffff811115611db957611db861176b565b5b611dc587828801611d24565b91505092959194509250565b5f5f60408385031215611de757611de6611767565b5b5f611df48582860161197e565b9250506020611e058582860161197e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611e46826118b2565b9150611e51836118b2565b9250828202611e5f816118b2565b91508282048414831517611e7657611e75611e0f565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611eb4826118b2565b9150611ebf836118b2565b925082611ecf57611ece611e7d565b5b828204905092915050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f611f0e60098361182c565b9150611f1982611eda565b602082019050919050565b5f6020820190508181035f830152611f3b81611f02565b9050919050565b5f611f4c826118b2565b9150611f57836118b2565b9250828201905080821115611f6f57611f6e611e0f565b5b92915050565b7f4d7573742062652062656c6f77204d617820537570706c7900000000000000005f82015250565b5f611fa960188361182c565b9150611fb482611f75565b602082019050919050565b5f6020820190508181035f830152611fd681611f9d565b9050919050565b5f81905092915050565b50565b5f611ff55f83611fdd565b915061200082611fe7565b5f82019050919050565b5f61201482611fea565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061206257607f821691505b6020821081036120755761207461201e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026120d77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261209c565b6120e1868361209c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61211c612117612112846118b2565b6120f9565b6118b2565b9050919050565b5f819050919050565b61213583612102565b61214961214182612123565b8484546120a8565b825550505050565b5f5f905090565b612160612151565b61216b81848461212c565b505050565b5b8181101561218e576121835f82612158565b600181019050612171565b5050565b601f8211156121d3576121a48161207b565b6121ad8461208d565b810160208510156121bc578190505b6121d06121c88561208d565b830182612170565b50505b505050565b5f82821c905092915050565b5f6121f35f19846008026121d8565b1980831691505092915050565b5f61220b83836121e4565b9150826002028217905092915050565b61222482611822565b67ffffffffffffffff81111561223d5761223c611ab5565b5b612247825461204b565b612252828285612192565b5f60209050601f831160018114612283575f8415612271578287015190505b61227b8582612200565b8655506122e2565b601f1984166122918661207b565b5f5b828110156122b857848901518255600182019150602085019450602081019050612293565b868310156122d557848901516122d1601f8916826121e4565b8355505b6001600288020188555050505b505050505050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f61231e60088361182c565b9150612329826122ea565b602082019050919050565b5f6020820190508181035f83015261234b81612312565b9050919050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f612386600c8361182c565b915061239182612352565b602082019050919050565b5f6020820190508181035f8301526123b38161237a565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f6123f86007836123ba565b9150612403826123c4565b600782019050919050565b5f61241882611822565b61242281856123ba565b935061243281856020860161183c565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f6124726001836123ba565b915061247d8261243e565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6124bc6005836123ba565b91506124c782612488565b600582019050919050565b5f6124dc826123ec565b91506124e8828561240e565b91506124f382612466565b91506124ff828461240e565b915061250a826124b0565b9150819050939250505056fea2646970667358221220ac875556cc5a0ac8c64a30bc49e5fbbbb02c188b766b162caf463a92814436c764736f6c634300081c0033516d6239587078333155634444784e674a686636586378794a377a7642794d416d5a586f62516f4364676e633365

Deployed Bytecode

0x608060405260043610610165575f3560e01c806347064d6a116100d0578063a0712d6811610089578063bf8fbbd211610063578063bf8fbbd214610506578063c87b56dd14610530578063e985e9c51461056c578063ed6661c2146105a857610165565b8063a0712d681461049a578063a22cb465146104b6578063b88d4fde146104de57610165565b806347064d6a1461037c5780636352211e146103a457806370a08231146103e05780638da5cb5b1461041c57806395d89b411461044657806398710d1e1461047057610165565b806323b872dd1161012257806323b872dd146102875780632a55205a146102af5780632fbba115146102ec57806332cb6b0c146103145780633ccfd60b1461033e57806342842e0e1461035457610165565b806301ffc9a71461016957806306fdde03146101a5578063081812fc146101cf578063095ea7b31461020b5780630f2cdd6c1461023357806318160ddd1461025d575b5f5ffd5b348015610174575f5ffd5b5061018f600480360381019061018a91906117c4565b6105d2565b60405161019c9190611809565b60405180910390f35b3480156101b0575f5ffd5b506101b9610693565b6040516101c69190611892565b60405180910390f35b3480156101da575f5ffd5b506101f560048036038101906101f091906118e5565b6106d0565b604051610202919061194f565b60405180910390f35b348015610216575f5ffd5b50610231600480360381019061022c9190611992565b610748565b005b34801561023e575f5ffd5b506102476108bc565b60405161025491906119df565b60405180910390f35b348015610268575f5ffd5b506102716108c1565b60405161027e91906119df565b60405180910390f35b348015610292575f5ffd5b506102ad60048036038101906102a891906119f8565b6108d3565b005b3480156102ba575f5ffd5b506102d560048036038101906102d09190611a48565b6108e3565b6040516102e3929190611a86565b60405180910390f35b3480156102f7575f5ffd5b50610312600480360381019061030d91906118e5565b61092c565b005b34801561031f575f5ffd5b50610328610a1d565b60405161033591906119df565b60405180910390f35b348015610349575f5ffd5b50610352610a23565b005b34801561035f575f5ffd5b5061037a600480360381019061037591906119f8565b610b28565b005b348015610387575f5ffd5b506103a2600480360381019061039d9190611bd9565b610b47565b005b3480156103af575f5ffd5b506103ca60048036038101906103c591906118e5565b610be8565b6040516103d7919061194f565b60405180910390f35b3480156103eb575f5ffd5b5061040660048036038101906104019190611c20565b610bf9565b60405161041391906119df565b60405180910390f35b348015610427575f5ffd5b50610430610c8a565b60405161043d919061194f565b60405180910390f35b348015610451575f5ffd5b5061045a610cb1565b6040516104679190611892565b60405180910390f35b34801561047b575f5ffd5b50610484610cee565b60405161049191906119df565b60405180910390f35b6104b460048036038101906104af91906118e5565b610cf2565b005b3480156104c1575f5ffd5b506104dc60048036038101906104d79190611c75565b610e0b565b005b3480156104e9575f5ffd5b5061050460048036038101906104ff9190611d51565b610f7d565b005b348015610511575f5ffd5b5061051a610f8e565b60405161052791906119df565b60405180910390f35b34801561053b575f5ffd5b50610556600480360381019061055191906118e5565b610f9a565b6040516105639190611892565b60405180910390f35b348015610577575f5ffd5b50610592600480360381019061058d9190611dd1565b6110b6565b60405161059f9190611809565b60405180910390f35b3480156105b3575f5ffd5b506105bc611144565b6040516105c991906119df565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061062c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061065c5750632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061068c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600881526020017f424954524f434b53000000000000000000000000000000000000000000000000815250905090565b5f6106da82611148565b610710576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61075282611168565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361078b575f5ffd5b8073ffffffffffffffffffffffffffffffffffffffff166107aa61122c565b73ffffffffffffffffffffffffffffffffffffffff161461080d576107d6816107d161122c565b6110b6565b61080c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600381565b5f6108ca611233565b60035403905090565b6108de83838361123a565b505050565b5f5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691506127106101f4846109199190611e3c565b6109239190611eaa565b90509250929050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b190611f24565b60405180910390fd5b61014d816109c66108c1565b6109d09190611f42565b10610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0790611fbf565b60405180910390fd5b610a1a3382611597565b50565b61014d81565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa890611f24565b60405180910390fd5b5f4790505f3390508073ffffffffffffffffffffffffffffffffffffffff168261753090604051610ae19061200a565b5f60405180830381858888f193505050503d805f8114610b1c576040519150601f19603f3d011682016040523d82523d5f602084013e610b21565b606091505b5050505050565b610b4283838360405180602001604052805f815250610f7d565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90611f24565b60405180910390fd5b8060029081610be4919061221b565b5050565b5f610bf282611168565b9050919050565b5f5f610c04836116ec565b03610c3b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600881526020017f424954524f434b53000000000000000000000000000000000000000000000000815250905090565b5f81565b5f610cfb61122c565b905061014d82610d096108c1565b610d139190611f42565b1115610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90612334565b60405180910390fd5b346714d1120d7b16000083610d699190611e3c565b1115610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da19061239c565b60405180910390fd5b8160015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610df69190611f42565b92505081905550610e078183611597565b5050565b610e1361122c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e77576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f610e8361122c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f2c61122c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f719190611809565b60405180910390a35050565b610f8884848461123a565b50505050565b6714d1120d7b16000081565b6060610fa582611148565b610fdb576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60028054610fe99061204b565b80601f01602080910402602001604051908101604052809291908181526020018280546110159061204b565b80156110605780601f1061103757610100808354040283529160200191611060565b820191905f5260205f20905b81548152906001019060200180831161104357829003601f168201915b505050505090505f8151036110835760405180602001604052805f8152506110ae565b8061108d846116f5565b60405160200161109e9291906124d2565b6040516020818303038152906040525b915050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f81565b5f81611152611233565b11158015611161575060035482105b9050919050565b5f5f82905080611176611233565b116111f5576003548110156111f4575f60045f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036111f2575b5f81036111e85760045f836001900393508381526020019081526020015f205490506111c1565b8092505050611227565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f5f905090565b5f61124482611168565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112ab576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60065f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8573ffffffffffffffffffffffffffffffffffffffff166112ff61122c565b73ffffffffffffffffffffffffffffffffffffffff16148061132e575061132d8661132861122c565b6110b6565b5b8061136b575061133c61122c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806113a4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6113ae836116ec565b146113e75760065f8581526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6114a8876116ec565b171760045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611527575f6001850190505f60045f8381526020019081526020015f205403611525576003548114611524578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461158f868686600161174f565b505050505050565b5f60035490505f82036115d6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e161163860018414611755565b901b60a042901b611648856116ec565b171760045f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061166a578160038190555050506116e75f84838561174f565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561173b57600183039250600a81066030018353600a8104905061171b565b508181036020830392508083525050919050565b50505050565b5f819050919050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6117a38161176f565b81146117ad575f5ffd5b50565b5f813590506117be8161179a565b92915050565b5f602082840312156117d9576117d8611767565b5b5f6117e6848285016117b0565b91505092915050565b5f8115159050919050565b611803816117ef565b82525050565b5f60208201905061181c5f8301846117fa565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61186482611822565b61186e818561182c565b935061187e81856020860161183c565b6118878161184a565b840191505092915050565b5f6020820190508181035f8301526118aa818461185a565b905092915050565b5f819050919050565b6118c4816118b2565b81146118ce575f5ffd5b50565b5f813590506118df816118bb565b92915050565b5f602082840312156118fa576118f9611767565b5b5f611907848285016118d1565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61193982611910565b9050919050565b6119498161192f565b82525050565b5f6020820190506119625f830184611940565b92915050565b6119718161192f565b811461197b575f5ffd5b50565b5f8135905061198c81611968565b92915050565b5f5f604083850312156119a8576119a7611767565b5b5f6119b58582860161197e565b92505060206119c6858286016118d1565b9150509250929050565b6119d9816118b2565b82525050565b5f6020820190506119f25f8301846119d0565b92915050565b5f5f5f60608486031215611a0f57611a0e611767565b5b5f611a1c8682870161197e565b9350506020611a2d8682870161197e565b9250506040611a3e868287016118d1565b9150509250925092565b5f5f60408385031215611a5e57611a5d611767565b5b5f611a6b858286016118d1565b9250506020611a7c858286016118d1565b9150509250929050565b5f604082019050611a995f830185611940565b611aa660208301846119d0565b9392505050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611aeb8261184a565b810181811067ffffffffffffffff82111715611b0a57611b09611ab5565b5b80604052505050565b5f611b1c61175e565b9050611b288282611ae2565b919050565b5f67ffffffffffffffff821115611b4757611b46611ab5565b5b611b508261184a565b9050602081019050919050565b828183375f83830152505050565b5f611b7d611b7884611b2d565b611b13565b905082815260208101848484011115611b9957611b98611ab1565b5b611ba4848285611b5d565b509392505050565b5f82601f830112611bc057611bbf611aad565b5b8135611bd0848260208601611b6b565b91505092915050565b5f60208284031215611bee57611bed611767565b5b5f82013567ffffffffffffffff811115611c0b57611c0a61176b565b5b611c1784828501611bac565b91505092915050565b5f60208284031215611c3557611c34611767565b5b5f611c428482850161197e565b91505092915050565b611c54816117ef565b8114611c5e575f5ffd5b50565b5f81359050611c6f81611c4b565b92915050565b5f5f60408385031215611c8b57611c8a611767565b5b5f611c988582860161197e565b9250506020611ca985828601611c61565b9150509250929050565b5f67ffffffffffffffff821115611ccd57611ccc611ab5565b5b611cd68261184a565b9050602081019050919050565b5f611cf5611cf084611cb3565b611b13565b905082815260208101848484011115611d1157611d10611ab1565b5b611d1c848285611b5d565b509392505050565b5f82601f830112611d3857611d37611aad565b5b8135611d48848260208601611ce3565b91505092915050565b5f5f5f5f60808587031215611d6957611d68611767565b5b5f611d768782880161197e565b9450506020611d878782880161197e565b9350506040611d98878288016118d1565b925050606085013567ffffffffffffffff811115611db957611db861176b565b5b611dc587828801611d24565b91505092959194509250565b5f5f60408385031215611de757611de6611767565b5b5f611df48582860161197e565b9250506020611e058582860161197e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611e46826118b2565b9150611e51836118b2565b9250828202611e5f816118b2565b91508282048414831517611e7657611e75611e0f565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611eb4826118b2565b9150611ebf836118b2565b925082611ecf57611ece611e7d565b5b828204905092915050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f611f0e60098361182c565b9150611f1982611eda565b602082019050919050565b5f6020820190508181035f830152611f3b81611f02565b9050919050565b5f611f4c826118b2565b9150611f57836118b2565b9250828201905080821115611f6f57611f6e611e0f565b5b92915050565b7f4d7573742062652062656c6f77204d617820537570706c7900000000000000005f82015250565b5f611fa960188361182c565b9150611fb482611f75565b602082019050919050565b5f6020820190508181035f830152611fd681611f9d565b9050919050565b5f81905092915050565b50565b5f611ff55f83611fdd565b915061200082611fe7565b5f82019050919050565b5f61201482611fea565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061206257607f821691505b6020821081036120755761207461201e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026120d77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261209c565b6120e1868361209c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61211c612117612112846118b2565b6120f9565b6118b2565b9050919050565b5f819050919050565b61213583612102565b61214961214182612123565b8484546120a8565b825550505050565b5f5f905090565b612160612151565b61216b81848461212c565b505050565b5b8181101561218e576121835f82612158565b600181019050612171565b5050565b601f8211156121d3576121a48161207b565b6121ad8461208d565b810160208510156121bc578190505b6121d06121c88561208d565b830182612170565b50505b505050565b5f82821c905092915050565b5f6121f35f19846008026121d8565b1980831691505092915050565b5f61220b83836121e4565b9150826002028217905092915050565b61222482611822565b67ffffffffffffffff81111561223d5761223c611ab5565b5b612247825461204b565b612252828285612192565b5f60209050601f831160018114612283575f8415612271578287015190505b61227b8582612200565b8655506122e2565b601f1984166122918661207b565b5f5b828110156122b857848901518255600182019150602085019450602081019050612293565b868310156122d557848901516122d1601f8916826121e4565b8355505b6001600288020188555050505b505050505050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f61231e60088361182c565b9150612329826122ea565b602082019050919050565b5f6020820190508181035f83015261234b81612312565b9050919050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f612386600c8361182c565b915061239182612352565b602082019050919050565b5f6020820190508181035f8301526123b38161237a565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f6123f86007836123ba565b9150612403826123c4565b600782019050919050565b5f61241882611822565b61242281856123ba565b935061243281856020860161183c565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f6124726001836123ba565b915061247d8261243e565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6124bc6005836123ba565b91506124c782612488565b600582019050919050565b5f6124dc826123ec565b91506124e8828561240e565b91506124f382612466565b91506124ff828461240e565b915061250a826124b0565b9150819050939250505056fea2646970667358221220ac875556cc5a0ac8c64a30bc49e5fbbbb02c188b766b162caf463a92814436c764736f6c634300081c0033

Deployed Bytecode Sourcemap

16946:20797:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21282:674;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25544:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27209:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26692:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17219:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20525:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28095:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19530:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;37144:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17172:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37530:210;;;;;;;;;;;;;:::i;:::-;;28356:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19812:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25333:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22020:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17048:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25713:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17268:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17657:306;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27485:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28632:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17365:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25829:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27864:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17322:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21282:674;21367:4;21682:10;21667:25;;:11;:25;;;;:102;;;;21759:10;21744:25;;:11;:25;;;;21667:102;:179;;;;21836:10;21821:25;;:11;:25;;;;21667:179;:238;;;;21895:10;21880:25;;:11;:25;;;;21667:238;21647:258;;21282:674;;;:::o;25544:100::-;25598:13;25631:5;;;;;;;;;;;;;;;;;25624:12;;25544:100;:::o;27209:204::-;27277:7;27302:16;27310:7;27302;:16::i;:::-;27297:64;;27327:34;;;;;;;;;;;;;;27297:64;27381:15;:24;27397:7;27381:24;;;;;;;;;;;;;;;;;;;;;27374:31;;27209:204;;;:::o;26692:451::-;26765:13;26797:27;26816:7;26797:18;:27::i;:::-;26765:61;;26847:5;26841:11;;:2;:11;;;26837:25;;26854:8;;;26837:25;26902:5;26879:28;;:19;:17;:19::i;:::-;:28;;;26875:175;;26927:44;26944:5;26951:19;:17;:19::i;:::-;26927:16;:44::i;:::-;26922:128;;26999:35;;;;;;;;;;;;;;26922:128;26875:175;27089:2;27062:15;:24;27078:7;27062:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;27127:7;27123:2;27107:28;;27116:5;27107:28;;;;;;;;;;;;26754:389;26692:451;;:::o;17219:42::-;17260:1;17219:42;:::o;20525:300::-;20578:7;20791:15;:13;:15::i;:::-;20775:13;;:31;20768:38;;20525:300;:::o;28095:190::-;28249:28;28259:4;28265:2;28269:7;28249:9;:28::i;:::-;28095:190;;;:::o;19530:274::-;19629:16;19647:21;19697:6;;;;;;;;;;;19686:17;;19750:5;19743:3;19731:9;:15;;;;:::i;:::-;19730:25;;;;:::i;:::-;19714:41;;19530:274;;;;;:::o;37144:179::-;37380:10;37372:18;;:6;;;;;;;;;;;:18;;;37364:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;17209:3:::1;37231:6;37215:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;37207:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;37290:25;37296:10;37308:6;37290:5;:25::i;:::-;37144:179:::0;:::o;17172:40::-;17209:3;17172:40;:::o;37530:210::-;37380:10;37372:18;;:6;;;;;;;;;;;:18;;;37364:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;37580:15:::1;37598:21;37580:39;;37630:25;37666:10;37630:47;;37688:9;:14;;37709:7;37722:5;37688:44;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37569:171;;37530:210::o:0;28356:205::-;28514:39;28531:4;28537:2;28541:7;28514:39;;;;;;;;;;;;:16;:39::i;:::-;28356:205;;;:::o;19812:91::-;37380:10;37372:18;;:6;;;;;;;;;;;:18;;;37364:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;19890:5:::1;19879:8;:16;;;;;;:::i;:::-;;19812:91:::0;:::o;25333:144::-;25397:7;25440:27;25459:7;25440:18;:27::i;:::-;25417:52;;25333:144;;;:::o;22020:234::-;22084:7;22136:1;22108:24;22126:5;22108:17;:24::i;:::-;:29;22104:70;;22146:28;;;;;;;;;;;;;;22104:70;18078:13;22192:18;:25;22211:5;22192:25;;;;;;;;;;;;;;;;:54;22185:61;;22020:234;;;:::o;17048:77::-;17085:7;17111:6;;;;;;;;;;;17104:13;;17048:77;:::o;25713:104::-;25769:13;25802:7;;;;;;;;;;;;;;;;;25795:14;;25713:104;:::o;17268:47::-;17314:1;17268:47;:::o;17657:306::-;17714:15;17732:19;:17;:19::i;:::-;17714:37;;17209:3;17788:6;17772:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;17764:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;17855:9;17396;17840:6;:11;;;;:::i;:::-;:24;;17832:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;17916:6;17894;:18;17901:10;17894:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;17933:22;17939:7;17948:6;17933:5;:22::i;:::-;17703:260;17657:306;:::o;27485:308::-;27596:19;:17;:19::i;:::-;27584:31;;:8;:31;;;27580:61;;27624:17;;;;;;;;;;;;;;27580:61;27706:8;27654:18;:39;27673:19;:17;:19::i;:::-;27654:39;;;;;;;;;;;;;;;:49;27694:8;27654:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27766:8;27730:55;;27745:19;:17;:19::i;:::-;27730:55;;;27776:8;27730:55;;;;;;:::i;:::-;;;;;;;;27485:308;;:::o;28632:227::-;28823:28;28833:4;28839:2;28843:7;28823:9;:28::i;:::-;28632:227;;;;:::o;17365:40::-;17396:9;17365:40;:::o;25829:339::-;25902:13;25933:16;25941:7;25933;:16::i;:::-;25928:59;;25958:29;;;;;;;;;;;;;;25928:59;25998:21;26022:8;25998:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26073:1;26054:7;26048:21;:26;:112;;;;;;;;;;;;;;;;;26112:7;26126:18;26136:7;26126:9;:18::i;:::-;26084:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26048:112;26041:119;;;25829:339;;;:::o;27864:164::-;27961:4;27985:18;:25;28004:5;27985:25;;;;;;;;;;;;;;;:35;28011:8;27985:35;;;;;;;;;;;;;;;;;;;;;;;;;27978:42;;27864:164;;;;:::o;17322:36::-;17357:1;17322:36;:::o;29114:168::-;29171:4;29227:7;29208:15;:13;:15::i;:::-;:26;;:66;;;;;29261:13;;29251:7;:23;29208:66;29188:86;;29114:168;;;:::o;22848:1129::-;22915:7;22935:12;22950:7;22935:22;;23018:4;22999:15;:13;:15::i;:::-;:23;22995:915;;23052:13;;23045:4;:20;23041:869;;;23090:14;23107:17;:23;23125:4;23107:23;;;;;;;;;;;;23090:40;;23223:1;18434:8;23196:6;:23;:28;23192:699;;23715:113;23732:1;23722:6;:11;23715:113;;23775:17;:25;23793:6;;;;;;;23775:25;;;;;;;;;;;;23766:34;;23715:113;;;23861:6;23854:13;;;;;;23192:699;23067:843;23041:869;22995:915;23938:31;;;;;;;;;;;;;;22848:1129;;;;:::o;35043:105::-;35103:7;35130:10;35123:17;;35043:105;:::o;20048:92::-;20104:7;20131:1;20124:8;;20048:92;:::o;31399:2561::-;31540:27;31570;31589:7;31570:18;:27::i;:::-;31540:57;;31655:4;31614:45;;31630:19;31614:45;;;31610:86;;31668:28;;;;;;;;;;;;;;31610:86;31709:23;31735:15;:24;31751:7;31735:24;;;;;;;;;;;;;;;;;;;;;31709:50;;31772:22;31821:4;31798:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;31846:43;31863:4;31869:19;:17;:19::i;:::-;31846:16;:43::i;:::-;31798:91;:150;;;;31929:19;:17;:19::i;:::-;31910:38;;:15;:38;;;31798:150;31772:177;;31967:17;31962:66;;31993:35;;;;;;;;;;;;;;31962:66;32138:1;32100:34;32118:15;32100:17;:34::i;:::-;:39;32096:103;;32163:15;:24;32179:7;32163:24;;;;;;;;;;;;32156:31;;;;;;;;;;;32096:103;32566:18;:24;32585:4;32566:24;;;;;;;;;;;;;;;;32564:26;;;;;;;;;;;;32635:18;:22;32654:2;32635:22;;;;;;;;;;;;;;;;32633:24;;;;;;;;;;;18562:8;18382:3;33016:15;:41;;32974:21;32992:2;32974:17;:21::i;:::-;:84;:128;32928:17;:26;32946:7;32928:26;;;;;;;;;;;:174;;;;33272:1;18562:8;33222:19;:46;:51;33218:626;;33294:19;33326:1;33316:7;:11;33294:33;;33483:1;33449:17;:30;33467:11;33449:30;;;;;;;;;;;;:35;33445:384;;33587:13;;33572:11;:28;33568:242;;33767:19;33734:17;:30;33752:11;33734:30;;;;;;;;;;;:52;;;;33568:242;33445:384;33275:569;33218:626;33891:7;33887:2;33872:27;;33881:4;33872:27;;;;;;;;;;;;33910:42;33931:4;33937:2;33941:7;33950:1;33910:20;:42::i;:::-;31523:2437;;;31399:2561;;;:::o;29547:1596::-;29612:20;29635:13;;29612:36;;29746:1;29734:8;:13;29730:44;;29756:18;;;;;;;;;;;;;;29730:44;30319:1;18146:2;30290:1;:25;;30289:31;30277:8;:44;30251:18;:22;30270:2;30251:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;18500:3;30720:29;30747:1;30735:8;:13;30720:14;:29::i;:::-;:56;;18382:3;30657:15;:41;;30615:21;30633:2;30615:17;:21::i;:::-;:84;:162;30564:17;:31;30582:12;30564:31;;;;;;;;;;;:213;;;;30794:20;30817:12;30794:35;;30844:11;30873:8;30858:12;:23;30844:37;;30898:111;30950:14;;;;;;30946:2;30925:40;;30942:1;30925:40;;;;;;;;;;;;31004:3;30989:12;:18;30898:111;;31041:12;31025:13;:28;;;;30028:1037;;31075:60;31104:1;31108:2;31112:12;31126:8;31075:20;:60::i;:::-;29601:1542;29547:1596;;:::o;26253:148::-;26317:14;26378:5;26368:15;;26253:148;;;:::o;35254:1882::-;35311:17;35732:3;35725:4;35719:11;35715:21;35708:28;;35819:3;35813:4;35806:17;35919:3;36355:5;36487:1;36482:3;36478:11;36471:18;;36626:2;36620:4;36616:13;36612:2;36608:22;36603:3;36595:36;36668:2;36662:4;36658:13;36650:21;;36252:661;36684:4;36252:661;;;36852:1;36847:3;36843:11;36836:18;;36896:2;36890:4;36886:13;36882:2;36878:22;36873:3;36865:36;36769:2;36763:4;36759:13;36751:21;;36252:661;;;36256:427;36945:3;36940;36936:13;37054:2;37049:3;37045:12;37038:19;;37111:6;37106:3;37099:19;35350:1779;;35254:1882;;;:::o;34625:213::-;;;;;:::o;26488:142::-;26546:14;26607:5;26597:15;;26488:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:118::-;4870:24;4888:5;4870:24;:::i;:::-;4865:3;4858:37;4783:118;;:::o;4907:222::-;5000:4;5038:2;5027:9;5023:18;5015:26;;5051:71;5119:1;5108:9;5104:17;5095:6;5051:71;:::i;:::-;4907:222;;;;:::o;5135:619::-;5212:6;5220;5228;5277:2;5265:9;5256:7;5252:23;5248:32;5245:119;;;5283:79;;:::i;:::-;5245:119;5403:1;5428:53;5473:7;5464:6;5453:9;5449:22;5428:53;:::i;:::-;5418:63;;5374:117;5530:2;5556:53;5601:7;5592:6;5581:9;5577:22;5556:53;:::i;:::-;5546:63;;5501:118;5658:2;5684:53;5729:7;5720:6;5709:9;5705:22;5684:53;:::i;:::-;5674:63;;5629:118;5135:619;;;;;:::o;5760:474::-;5828:6;5836;5885:2;5873:9;5864:7;5860:23;5856:32;5853:119;;;5891:79;;:::i;:::-;5853:119;6011:1;6036:53;6081:7;6072:6;6061:9;6057:22;6036:53;:::i;:::-;6026:63;;5982:117;6138:2;6164:53;6209:7;6200:6;6189:9;6185:22;6164:53;:::i;:::-;6154:63;;6109:118;5760:474;;;;;:::o;6240:332::-;6361:4;6399:2;6388:9;6384:18;6376:26;;6412:71;6480:1;6469:9;6465:17;6456:6;6412:71;:::i;:::-;6493:72;6561:2;6550:9;6546:18;6537:6;6493:72;:::i;:::-;6240:332;;;;;:::o;6578:117::-;6687:1;6684;6677:12;6701:117;6810:1;6807;6800:12;6824:180;6872:77;6869:1;6862:88;6969:4;6966:1;6959:15;6993:4;6990:1;6983:15;7010:281;7093:27;7115:4;7093:27;:::i;:::-;7085:6;7081:40;7223:6;7211:10;7208:22;7187:18;7175:10;7172:34;7169:62;7166:88;;;7234:18;;:::i;:::-;7166:88;7274:10;7270:2;7263:22;7053:238;7010:281;;:::o;7297:129::-;7331:6;7358:20;;:::i;:::-;7348:30;;7387:33;7415:4;7407:6;7387:33;:::i;:::-;7297:129;;;:::o;7432:308::-;7494:4;7584:18;7576:6;7573:30;7570:56;;;7606:18;;:::i;:::-;7570:56;7644:29;7666:6;7644:29;:::i;:::-;7636:37;;7728:4;7722;7718:15;7710:23;;7432:308;;;:::o;7746:148::-;7844:6;7839:3;7834;7821:30;7885:1;7876:6;7871:3;7867:16;7860:27;7746:148;;;:::o;7900:425::-;7978:5;8003:66;8019:49;8061:6;8019:49;:::i;:::-;8003:66;:::i;:::-;7994:75;;8092:6;8085:5;8078:21;8130:4;8123:5;8119:16;8168:3;8159:6;8154:3;8150:16;8147:25;8144:112;;;8175:79;;:::i;:::-;8144:112;8265:54;8312:6;8307:3;8302;8265:54;:::i;:::-;7984:341;7900:425;;;;;:::o;8345:340::-;8401:5;8450:3;8443:4;8435:6;8431:17;8427:27;8417:122;;8458:79;;:::i;:::-;8417:122;8575:6;8562:20;8600:79;8675:3;8667:6;8660:4;8652:6;8648:17;8600:79;:::i;:::-;8591:88;;8407:278;8345:340;;;;:::o;8691:509::-;8760:6;8809:2;8797:9;8788:7;8784:23;8780:32;8777:119;;;8815:79;;:::i;:::-;8777:119;8963:1;8952:9;8948:17;8935:31;8993:18;8985:6;8982:30;8979:117;;;9015:79;;:::i;:::-;8979:117;9120:63;9175:7;9166:6;9155:9;9151:22;9120:63;:::i;:::-;9110:73;;8906:287;8691:509;;;;:::o;9206:329::-;9265:6;9314:2;9302:9;9293:7;9289:23;9285:32;9282:119;;;9320:79;;:::i;:::-;9282:119;9440:1;9465:53;9510:7;9501:6;9490:9;9486:22;9465:53;:::i;:::-;9455:63;;9411:117;9206:329;;;;:::o;9541:116::-;9611:21;9626:5;9611:21;:::i;:::-;9604:5;9601:32;9591:60;;9647:1;9644;9637:12;9591:60;9541:116;:::o;9663:133::-;9706:5;9744:6;9731:20;9722:29;;9760:30;9784:5;9760:30;:::i;:::-;9663:133;;;;:::o;9802:468::-;9867:6;9875;9924:2;9912:9;9903:7;9899:23;9895:32;9892:119;;;9930:79;;:::i;:::-;9892:119;10050:1;10075:53;10120:7;10111:6;10100:9;10096:22;10075:53;:::i;:::-;10065:63;;10021:117;10177:2;10203:50;10245:7;10236:6;10225:9;10221:22;10203:50;:::i;:::-;10193:60;;10148:115;9802:468;;;;;:::o;10276:307::-;10337:4;10427:18;10419:6;10416:30;10413:56;;;10449:18;;:::i;:::-;10413:56;10487:29;10509:6;10487:29;:::i;:::-;10479:37;;10571:4;10565;10561:15;10553:23;;10276:307;;;:::o;10589:423::-;10666:5;10691:65;10707:48;10748:6;10707:48;:::i;:::-;10691:65;:::i;:::-;10682:74;;10779:6;10772:5;10765:21;10817:4;10810:5;10806:16;10855:3;10846:6;10841:3;10837:16;10834:25;10831:112;;;10862:79;;:::i;:::-;10831:112;10952:54;10999:6;10994:3;10989;10952:54;:::i;:::-;10672:340;10589:423;;;;;:::o;11031:338::-;11086:5;11135:3;11128:4;11120:6;11116:17;11112:27;11102:122;;11143:79;;:::i;:::-;11102:122;11260:6;11247:20;11285:78;11359:3;11351:6;11344:4;11336:6;11332:17;11285:78;:::i;:::-;11276:87;;11092:277;11031:338;;;;:::o;11375:943::-;11470:6;11478;11486;11494;11543:3;11531:9;11522:7;11518:23;11514:33;11511:120;;;11550:79;;:::i;:::-;11511:120;11670:1;11695:53;11740:7;11731:6;11720:9;11716:22;11695:53;:::i;:::-;11685:63;;11641:117;11797:2;11823:53;11868:7;11859:6;11848:9;11844:22;11823:53;:::i;:::-;11813:63;;11768:118;11925:2;11951:53;11996:7;11987:6;11976:9;11972:22;11951:53;:::i;:::-;11941:63;;11896:118;12081:2;12070:9;12066:18;12053:32;12112:18;12104:6;12101:30;12098:117;;;12134:79;;:::i;:::-;12098:117;12239:62;12293:7;12284:6;12273:9;12269:22;12239:62;:::i;:::-;12229:72;;12024:287;11375:943;;;;;;;:::o;12324:474::-;12392:6;12400;12449:2;12437:9;12428:7;12424:23;12420:32;12417:119;;;12455:79;;:::i;:::-;12417:119;12575:1;12600:53;12645:7;12636:6;12625:9;12621:22;12600:53;:::i;:::-;12590:63;;12546:117;12702:2;12728:53;12773:7;12764:6;12753:9;12749:22;12728:53;:::i;:::-;12718:63;;12673:118;12324:474;;;;;:::o;12804:180::-;12852:77;12849:1;12842:88;12949:4;12946:1;12939:15;12973:4;12970:1;12963:15;12990:410;13030:7;13053:20;13071:1;13053:20;:::i;:::-;13048:25;;13087:20;13105:1;13087:20;:::i;:::-;13082:25;;13142:1;13139;13135:9;13164:30;13182:11;13164:30;:::i;:::-;13153:41;;13343:1;13334:7;13330:15;13327:1;13324:22;13304:1;13297:9;13277:83;13254:139;;13373:18;;:::i;:::-;13254:139;13038:362;12990:410;;;;:::o;13406:180::-;13454:77;13451:1;13444:88;13551:4;13548:1;13541:15;13575:4;13572:1;13565:15;13592:185;13632:1;13649:20;13667:1;13649:20;:::i;:::-;13644:25;;13683:20;13701:1;13683:20;:::i;:::-;13678:25;;13722:1;13712:35;;13727:18;;:::i;:::-;13712:35;13769:1;13766;13762:9;13757:14;;13592:185;;;;:::o;13783:159::-;13923:11;13919:1;13911:6;13907:14;13900:35;13783:159;:::o;13948:365::-;14090:3;14111:66;14175:1;14170:3;14111:66;:::i;:::-;14104:73;;14186:93;14275:3;14186:93;:::i;:::-;14304:2;14299:3;14295:12;14288:19;;13948:365;;;:::o;14319:419::-;14485:4;14523:2;14512:9;14508:18;14500:26;;14572:9;14566:4;14562:20;14558:1;14547:9;14543:17;14536:47;14600:131;14726:4;14600:131;:::i;:::-;14592:139;;14319:419;;;:::o;14744:191::-;14784:3;14803:20;14821:1;14803:20;:::i;:::-;14798:25;;14837:20;14855:1;14837:20;:::i;:::-;14832:25;;14880:1;14877;14873:9;14866:16;;14901:3;14898:1;14895:10;14892:36;;;14908:18;;:::i;:::-;14892:36;14744:191;;;;:::o;14941:174::-;15081:26;15077:1;15069:6;15065:14;15058:50;14941:174;:::o;15121:366::-;15263:3;15284:67;15348:2;15343:3;15284:67;:::i;:::-;15277:74;;15360:93;15449:3;15360:93;:::i;:::-;15478:2;15473:3;15469:12;15462:19;;15121:366;;;:::o;15493:419::-;15659:4;15697:2;15686:9;15682:18;15674:26;;15746:9;15740:4;15736:20;15732:1;15721:9;15717:17;15710:47;15774:131;15900:4;15774:131;:::i;:::-;15766:139;;15493:419;;;:::o;15918:147::-;16019:11;16056:3;16041:18;;15918:147;;;;:::o;16071:114::-;;:::o;16191:398::-;16350:3;16371:83;16452:1;16447:3;16371:83;:::i;:::-;16364:90;;16463:93;16552:3;16463:93;:::i;:::-;16581:1;16576:3;16572:11;16565:18;;16191:398;;;:::o;16595:379::-;16779:3;16801:147;16944:3;16801:147;:::i;:::-;16794:154;;16965:3;16958:10;;16595:379;;;:::o;16980:180::-;17028:77;17025:1;17018:88;17125:4;17122:1;17115:15;17149:4;17146:1;17139:15;17166:320;17210:6;17247:1;17241:4;17237:12;17227:22;;17294:1;17288:4;17284:12;17315:18;17305:81;;17371:4;17363:6;17359:17;17349:27;;17305:81;17433:2;17425:6;17422:14;17402:18;17399:38;17396:84;;17452:18;;:::i;:::-;17396:84;17217:269;17166:320;;;:::o;17492:141::-;17541:4;17564:3;17556:11;;17587:3;17584:1;17577:14;17621:4;17618:1;17608:18;17600:26;;17492:141;;;:::o;17639:93::-;17676:6;17723:2;17718;17711:5;17707:14;17703:23;17693:33;;17639:93;;;:::o;17738:107::-;17782:8;17832:5;17826:4;17822:16;17801:37;;17738:107;;;;:::o;17851:393::-;17920:6;17970:1;17958:10;17954:18;17993:97;18023:66;18012:9;17993:97;:::i;:::-;18111:39;18141:8;18130:9;18111:39;:::i;:::-;18099:51;;18183:4;18179:9;18172:5;18168:21;18159:30;;18232:4;18222:8;18218:19;18211:5;18208:30;18198:40;;17927:317;;17851:393;;;;;:::o;18250:60::-;18278:3;18299:5;18292:12;;18250:60;;;:::o;18316:142::-;18366:9;18399:53;18417:34;18426:24;18444:5;18426:24;:::i;:::-;18417:34;:::i;:::-;18399:53;:::i;:::-;18386:66;;18316:142;;;:::o;18464:75::-;18507:3;18528:5;18521:12;;18464:75;;;:::o;18545:269::-;18655:39;18686:7;18655:39;:::i;:::-;18716:91;18765:41;18789:16;18765:41;:::i;:::-;18757:6;18750:4;18744:11;18716:91;:::i;:::-;18710:4;18703:105;18621:193;18545:269;;;:::o;18820:73::-;18865:3;18886:1;18879:8;;18820:73;:::o;18899:189::-;18976:32;;:::i;:::-;19017:65;19075:6;19067;19061:4;19017:65;:::i;:::-;18952:136;18899:189;;:::o;19094:186::-;19154:120;19171:3;19164:5;19161:14;19154:120;;;19225:39;19262:1;19255:5;19225:39;:::i;:::-;19198:1;19191:5;19187:13;19178:22;;19154:120;;;19094:186;;:::o;19286:543::-;19387:2;19382:3;19379:11;19376:446;;;19421:38;19453:5;19421:38;:::i;:::-;19505:29;19523:10;19505:29;:::i;:::-;19495:8;19491:44;19688:2;19676:10;19673:18;19670:49;;;19709:8;19694:23;;19670:49;19732:80;19788:22;19806:3;19788:22;:::i;:::-;19778:8;19774:37;19761:11;19732:80;:::i;:::-;19391:431;;19376:446;19286:543;;;:::o;19835:117::-;19889:8;19939:5;19933:4;19929:16;19908:37;;19835:117;;;;:::o;19958:169::-;20002:6;20035:51;20083:1;20079:6;20071:5;20068:1;20064:13;20035:51;:::i;:::-;20031:56;20116:4;20110;20106:15;20096:25;;20009:118;19958:169;;;;:::o;20132:295::-;20208:4;20354:29;20379:3;20373:4;20354:29;:::i;:::-;20346:37;;20416:3;20413:1;20409:11;20403:4;20400:21;20392:29;;20132:295;;;;:::o;20432:1395::-;20549:37;20582:3;20549:37;:::i;:::-;20651:18;20643:6;20640:30;20637:56;;;20673:18;;:::i;:::-;20637:56;20717:38;20749:4;20743:11;20717:38;:::i;:::-;20802:67;20862:6;20854;20848:4;20802:67;:::i;:::-;20896:1;20920:4;20907:17;;20952:2;20944:6;20941:14;20969:1;20964:618;;;;21626:1;21643:6;21640:77;;;21692:9;21687:3;21683:19;21677:26;21668:35;;21640:77;21743:67;21803:6;21796:5;21743:67;:::i;:::-;21737:4;21730:81;21599:222;20934:887;;20964:618;21016:4;21012:9;21004:6;21000:22;21050:37;21082:4;21050:37;:::i;:::-;21109:1;21123:208;21137:7;21134:1;21131:14;21123:208;;;21216:9;21211:3;21207:19;21201:26;21193:6;21186:42;21267:1;21259:6;21255:14;21245:24;;21314:2;21303:9;21299:18;21286:31;;21160:4;21157:1;21153:12;21148:17;;21123:208;;;21359:6;21350:7;21347:19;21344:179;;;21417:9;21412:3;21408:19;21402:26;21460:48;21502:4;21494:6;21490:17;21479:9;21460:48;:::i;:::-;21452:6;21445:64;21367:156;21344:179;21569:1;21565;21557:6;21553:14;21549:22;21543:4;21536:36;20971:611;;;20934:887;;20524:1303;;;20432:1395;;:::o;21833:158::-;21973:10;21969:1;21961:6;21957:14;21950:34;21833:158;:::o;21997:365::-;22139:3;22160:66;22224:1;22219:3;22160:66;:::i;:::-;22153:73;;22235:93;22324:3;22235:93;:::i;:::-;22353:2;22348:3;22344:12;22337:19;;21997:365;;;:::o;22368:419::-;22534:4;22572:2;22561:9;22557:18;22549:26;;22621:9;22615:4;22611:20;22607:1;22596:9;22592:17;22585:47;22649:131;22775:4;22649:131;:::i;:::-;22641:139;;22368:419;;;:::o;22793:162::-;22933:14;22929:1;22921:6;22917:14;22910:38;22793:162;:::o;22961:366::-;23103:3;23124:67;23188:2;23183:3;23124:67;:::i;:::-;23117:74;;23200:93;23289:3;23200:93;:::i;:::-;23318:2;23313:3;23309:12;23302:19;;22961:366;;;:::o;23333:419::-;23499:4;23537:2;23526:9;23522:18;23514:26;;23586:9;23580:4;23576:20;23572:1;23561:9;23557:17;23550:47;23614:131;23740:4;23614:131;:::i;:::-;23606:139;;23333:419;;;:::o;23758:148::-;23860:11;23897:3;23882:18;;23758:148;;;;:::o;23912:161::-;24052:9;24048:1;24040:6;24036:14;24029:33;23912:161;:::o;24083:416::-;24243:3;24268:84;24350:1;24345:3;24268:84;:::i;:::-;24261:91;;24365:93;24454:3;24365:93;:::i;:::-;24487:1;24482:3;24478:11;24471:18;;24083:416;;;:::o;24509:410::-;24615:3;24647:39;24680:5;24647:39;:::i;:::-;24706:89;24788:6;24783:3;24706:89;:::i;:::-;24699:96;;24808:65;24866:6;24861:3;24854:4;24847:5;24843:16;24808:65;:::i;:::-;24902:6;24897:3;24893:16;24886:23;;24619:300;24509:410;;;;:::o;24929:159::-;25073:3;25069:1;25061:6;25057:14;25050:27;24929:159;:::o;25098:416::-;25258:3;25283:84;25365:1;25360:3;25283:84;:::i;:::-;25276:91;;25380:93;25469:3;25380:93;:::i;:::-;25502:1;25497:3;25493:11;25486:18;;25098:416;;;:::o;25524:163::-;25668:7;25664:1;25656:6;25652:14;25645:31;25524:163;:::o;25697:416::-;25857:3;25882:84;25964:1;25959:3;25882:84;:::i;:::-;25875:91;;25979:93;26068:3;25979:93;:::i;:::-;26101:1;26096:3;26092:11;26085:18;;25697:416;;;:::o;26123:1261::-;26606:3;26632:148;26776:3;26632:148;:::i;:::-;26625:155;;26801:95;26892:3;26883:6;26801:95;:::i;:::-;26794:102;;26917:148;27061:3;26917:148;:::i;:::-;26910:155;;27086:95;27177:3;27168:6;27086:95;:::i;:::-;27079:102;;27202:148;27346:3;27202:148;:::i;:::-;27195:155;;27371:3;27364:10;;26123:1261;;;;;:::o

Swarm Source

ipfs://ac875556cc5a0ac8c64a30bc49e5fbbbb02c188b766b162caf463a92814436c7
[ 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.