ETH Price: $2,290.26 (-3.81%)

Token

Shinzo (Shinzo NFT)
 

Overview

Max Total Supply

295 Shinzo NFT

Holders

151

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 Shinzo NFT
0xd140ed6b602a164246e455bcd227e0e317f094da
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Shinzo

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-31
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0; 

library MerkleProof {
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }
   function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}
abstract contract ReentrancyGuard { 
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }
    modifier nonReentrant() {
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
   _status = _ENTERED;

        _;
        _status = _NOT_ENTERED;
    }
}

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
 
    function toString(uint256 value) internal pure returns (string memory) { 
        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }
 
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }
 
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}
 
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
 
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    constructor() {
        _transferOwnership(_msgSender());
    }
 
    function owner() public view virtual returns (address) {
        return _owner;
    } 
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
 
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }
 
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }
 
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
 
library Address { 
    function isContract(address account) internal view returns (bool) { 
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    } 
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
 
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    } 
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }
 
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }
 
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    } 
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }
 
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }
 
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }
 
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }
 
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else { 
            if (returndata.length > 0) { 

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
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();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * 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;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

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

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

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

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

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

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

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

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

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

        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-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 {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

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

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

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

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}
contract Shinzo is Ownable, ERC721A, ReentrancyGuard {
    using Strings for uint256;
    bytes32 public merkleRoot = 0x2d8390591320fed5debecb580d5f9057f815af131f066769c4d5b84c31cbca7c;
    function setMerkleRoot(bytes32 m) public onlyOwner{
        merkleRoot = m;
    }
    
    uint256 public MAX_PER_Address = 3; // maximam amount that user can mint

    uint256 public  PRICE = 0.069 ether;

    uint256 private constant TotalCollectionSize_ = 8888; // total number of nfts

    bool public _revelNFT = false;
    string private _baseTokenURI;

    uint public status = 0; //0-pause 1-whitelist

    constructor() ERC721A("Shinzo","Shinzo NFT") {
        _baseTokenURI = "https://gateway.pinata.cloud/ipfs/Qmd9Ksk633MvTaAzZSLM7ZbCm5bdY8SNc2MiHDJ1WcPyLH/";
    } 

    function whitelistMint(uint256 quantity, bytes32[] calldata merkleproof) external payable nonReentrant {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify( merkleproof, merkleRoot, leaf),"Not whitelisted");
        require(status == 1, "Whitelisting not started");
        require(totalSupply() + quantity <= TotalCollectionSize_, "reached max supply");
        require(msg.value >= PRICE * quantity, "Need to send more ETH.");
        require(numberMinted(msg.sender) + quantity <= MAX_PER_Address, "Quantity exceeds allowed Mints" );

        _safeMint(msg.sender, quantity);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if(_revelNFT == true){
            require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token");
            string memory baseURI = _baseURI();
            return
                bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString(),".json"))
                : "";
        }
        else{
            return
                bytes(_baseTokenURI).length > 0
                ? string(abi.encodePacked(_baseTokenURI))
                : "";
        }
    }

    function setBaseURI(string memory baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }
    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }
    function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
    {
        return _ownershipOf(tokenId);
    }
    function withdrawMoney() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
    function changeRevelStatus(string memory baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
        _revelNFT = !_revelNFT;
    }
    function changeMintPrice(uint256 _newPrice) external onlyOwner{
        PRICE = _newPrice;
    }
    function changeMAX_PER_Address(uint256 q) external onlyOwner{
        MAX_PER_Address = q;
    }
    function setStatus(uint256 s)external onlyOwner{
        status = s;
    }
    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_Address","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revelNFT","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"q","type":"uint256"}],"name":"changeMAX_PER_Address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"changeRevelStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"m","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"s","type":"uint256"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleproof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040527f2d8390591320fed5debecb580d5f9057f815af131f066769c4d5b84c31cbca7c60001b600a556003600b5566f5232269808000600c556000600d60006101000a81548160ff0219169083151502179055506000600f553480156200006857600080fd5b506040518060400160405280600681526020017f5368696e7a6f00000000000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f5368696e7a6f204e465400000000000000000000000000000000000000000000815250620000f5620000e96200017f60201b60201c565b6200018760201b60201c565b81600390805190602001906200010d92919062000254565b5080600490805190602001906200012692919062000254565b50620001376200024b60201b60201c565b6001819055505050600160098190555060405180608001604052806051815260200162003d2d60519139600e90805190602001906200017892919062000254565b5062000369565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b828054620002629062000304565b90600052602060002090601f016020900481019282620002865760008555620002d2565b82601f10620002a157805160ff1916838001178555620002d2565b82800160010185558215620002d2579182015b82811115620002d1578251825591602001919060010190620002b4565b5b509050620002e19190620002e5565b5090565b5b8082111562000300576000816000905550600101620002e6565b5090565b600060028204905060018216806200031d57607f821691505b602082108114156200033457620003336200033a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6139b480620003796000396000f3fe6080604052600436106101e35760003560e01c806369ba1a7511610102578063a22cb46511610095578063d2cab05611610064578063d2cab056146106ca578063dc33e681146106e6578063e985e9c514610723578063f2fde38b14610760576101e3565b8063a22cb46514610624578063ac4460021461064d578063b88d4fde14610664578063c87b56dd1461068d576101e3565b80638d859f3e116100d15780638d859f3e146105665780638da5cb5b146105915780639231ab2a146105bc57806395d89b41146105f9576101e3565b806369ba1a75146104c057806370a08231146104e9578063715018a6146105265780637cb647591461053d576101e3565b80632eb4a7ab1161017a57806355f804b31161014957806355f804b31461040657806362c6f7b91461042f5780636352211e1461045a5780636743e3e514610497576101e3565b80632eb4a7ab1461035e5780632f2ffc57146103895780633fd17366146103b457806342842e0e146103dd576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df578063200d2ed21461030a57806323b872dd14610335576101e3565b80630199e347146101e857806301ffc9a71461021157806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612b0d565b610789565b005b34801561021d57600080fd5b5061023860048036038101906102339190612a6a565b61080f565b6040516102459190613021565b60405180910390f35b34801561025a57600080fd5b506102636108a1565b6040516102709190613057565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612b0d565b610933565b6040516102ad9190612fba565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d891906129fd565b6109af565b005b3480156102eb57600080fd5b506102f4610af0565b60405161030191906131d4565b60405180910390f35b34801561031657600080fd5b5061031f610b07565b60405161032c91906131d4565b60405180910390f35b34801561034157600080fd5b5061035c600480360381019061035791906128e7565b610b0d565b005b34801561036a57600080fd5b50610373610e32565b604051610380919061303c565b60405180910390f35b34801561039557600080fd5b5061039e610e38565b6040516103ab91906131d4565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190612b0d565b610e3e565b005b3480156103e957600080fd5b5061040460048036038101906103ff91906128e7565b610ec4565b005b34801561041257600080fd5b5061042d60048036038101906104289190612ac4565b610ee4565b005b34801561043b57600080fd5b50610444610f7a565b6040516104519190613021565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190612b0d565b610f8d565b60405161048e9190612fba565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b99190612ac4565b610f9f565b005b3480156104cc57600080fd5b506104e760048036038101906104e29190612b0d565b61105f565b005b3480156104f557600080fd5b50610510600480360381019061050b919061287a565b6110e5565b60405161051d91906131d4565b60405180910390f35b34801561053257600080fd5b5061053b61119e565b005b34801561054957600080fd5b50610564600480360381019061055f9190612a3d565b611226565b005b34801561057257600080fd5b5061057b6112ac565b60405161058891906131d4565b60405180910390f35b34801561059d57600080fd5b506105a66112b2565b6040516105b39190612fba565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190612b0d565b6112db565b6040516105f091906131b9565b60405180910390f35b34801561060557600080fd5b5061060e6112f3565b60405161061b9190613057565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906129bd565b611385565b005b34801561065957600080fd5b506106626114fd565b005b34801561067057600080fd5b5061068b6004803603810190610686919061293a565b611628565b005b34801561069957600080fd5b506106b460048036038101906106af9190612b0d565b61169b565b6040516106c19190613057565b60405180910390f35b6106e460048036038101906106df9190612b3a565b6117b3565b005b3480156106f257600080fd5b5061070d6004803603810190610708919061287a565b611a15565b60405161071a91906131d4565b60405180910390f35b34801561072f57600080fd5b5061074a600480360381019061074591906128a7565b611a27565b6040516107579190613021565b60405180910390f35b34801561076c57600080fd5b506107876004803603810190610782919061287a565b611abb565b005b610791611bb3565b73ffffffffffffffffffffffffffffffffffffffff166107af6112b2565b73ffffffffffffffffffffffffffffffffffffffff1614610805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fc90613119565b60405180910390fd5b80600b8190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061089a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108b0906134d1565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc906134d1565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b600061093e82611bbb565b610974576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ba82610f8d565b90508073ffffffffffffffffffffffffffffffffffffffff166109db611c1a565b73ffffffffffffffffffffffffffffffffffffffff1614610a3e57610a0781610a02611c1a565b611a27565b610a3d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610afa611c22565b6002546001540303905090565b600f5481565b6000610b1882611c2b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b7f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b8b84611cf9565b91509150610ba18187610b9c611c1a565b611d1b565b610bed57610bb686610bb1611c1a565b611a27565b610bec576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c54576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c618686866001611d5f565b8015610c6c57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d3a85610d16888887611d65565b7c020000000000000000000000000000000000000000000000000000000017611d8d565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dc2576000600185019050600060056000838152602001908152602001600020541415610dc0576001548114610dbf578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e2a8686866001611db8565b505050505050565b600a5481565b600b5481565b610e46611bb3565b73ffffffffffffffffffffffffffffffffffffffff16610e646112b2565b73ffffffffffffffffffffffffffffffffffffffff1614610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190613119565b60405180910390fd5b80600c8190555050565b610edf83838360405180602001604052806000815250611628565b505050565b610eec611bb3565b73ffffffffffffffffffffffffffffffffffffffff16610f0a6112b2565b73ffffffffffffffffffffffffffffffffffffffff1614610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790613119565b60405180910390fd5b80600e9080519060200190610f769291906125d4565b5050565b600d60009054906101000a900460ff1681565b6000610f9882611c2b565b9050919050565b610fa7611bb3565b73ffffffffffffffffffffffffffffffffffffffff16610fc56112b2565b73ffffffffffffffffffffffffffffffffffffffff161461101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290613119565b60405180910390fd5b80600e90805190602001906110319291906125d4565b50600d60009054906101000a900460ff1615600d60006101000a81548160ff02191690831515021790555050565b611067611bb3565b73ffffffffffffffffffffffffffffffffffffffff166110856112b2565b73ffffffffffffffffffffffffffffffffffffffff16146110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290613119565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561114d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111a6611bb3565b73ffffffffffffffffffffffffffffffffffffffff166111c46112b2565b73ffffffffffffffffffffffffffffffffffffffff161461121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190613119565b60405180910390fd5b6112246000611dbe565b565b61122e611bb3565b73ffffffffffffffffffffffffffffffffffffffff1661124c6112b2565b73ffffffffffffffffffffffffffffffffffffffff16146112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990613119565b60405180910390fd5b80600a8190555050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112e361265a565b6112ec82611e82565b9050919050565b606060048054611302906134d1565b80601f016020809104026020016040519081016040528092919081815260200182805461132e906134d1565b801561137b5780601f106113505761010080835404028352916020019161137b565b820191906000526020600020905b81548152906001019060200180831161135e57829003601f168201915b5050505050905090565b61138d611c1a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006113ff611c1a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ac611c1a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114f19190613021565b60405180910390a35050565b611505611bb3565b73ffffffffffffffffffffffffffffffffffffffff166115236112b2565b73ffffffffffffffffffffffffffffffffffffffff1614611579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157090613119565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161159f90612fa5565b60006040518083038185875af1925050503d80600081146115dc576040519150601f19603f3d011682016040523d82523d6000602084013e6115e1565b606091505b5050905080611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613159565b60405180910390fd5b50565b611633848484610b0d565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116955761165e84848484611ea2565b611694576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060011515600d60009054906101000a900460ff161515141561175e576116c282611bbb565b611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f890613139565b60405180910390fd5b600061170b612002565b9050600081511161172b5760405180602001604052806000815250611756565b8061173584612019565b604051602001611746929190612f5f565b6040516020818303038152906040525b9150506117ae565b6000600e805461176d906134d1565b90501161178957604051806020016040528060008152506117ab565b600e60405160200161179b9190612f8e565b6040516020818303038152906040525b90505b919050565b600260095414156117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090613199565b60405180910390fd5b60026009819055506000336040516020016118149190612f44565b60405160208183030381529060405280519060200120905061187a838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a548361217a565b6118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b0906130b9565b60405180910390fd5b6001600f54146118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590613099565b60405180910390fd5b6122b88461190a610af0565b61191491906132d9565b1115611955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194c906130f9565b60405180910390fd5b83600c546119639190613360565b3410156119a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199c90613179565b60405180910390fd5b600b54846119b233611a15565b6119bc91906132d9565b11156119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f4906130d9565b60405180910390fd5b611a073385612191565b506001600981905550505050565b6000611a20826121af565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ac3611bb3565b73ffffffffffffffffffffffffffffffffffffffff16611ae16112b2565b73ffffffffffffffffffffffffffffffffffffffff1614611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e90613119565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9e90613079565b60405180910390fd5b611bb081611dbe565b50565b600033905090565b600081611bc6611c22565b11158015611bd5575060015482105b8015611c13575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611c3a611c22565b11611cc257600154811015611cc15760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611cbf575b6000811415611cb5576005600083600190039350838152602001908152602001600020549050611c8a565b8092505050611cf4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d7c868684612206565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e8a61265a565b611e9b611e9683611c2b565b61220f565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ec8611c1a565b8786866040518563ffffffff1660e01b8152600401611eea9493929190612fd5565b602060405180830381600087803b158015611f0457600080fd5b505af1925050508015611f3557506040513d601f19601f82011682018060405250810190611f329190612a97565b60015b611faf573d8060008114611f65576040519150601f19603f3d011682016040523d82523d6000602084013e611f6a565b606091505b50600081511415611fa7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060405180602001604052806000815250905090565b60606000821415612061576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612175565b600082905060005b6000821461209357808061207c90613534565b915050600a8261208c919061332f565b9150612069565b60008167ffffffffffffffff8111156120af576120ae61368e565b5b6040519080825280601f01601f1916602001820160405280156120e15781602001600182028036833780820191505090505b5090505b6000851461216e576001826120fa91906133ba565b9150600a8561210991906135a1565b603061211591906132d9565b60f81b81838151811061212b5761212a61365f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612167919061332f565b94506120e5565b8093505050505b919050565b60008261218785846122c5565b1490509392505050565b6121ab82826040518060200160405280600081525061233a565b5050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b61221761265a565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008082905060005b845181101561232f5760008582815181106122ec576122eb61365f565b5b6020026020010151905080831161230e5761230783826123d8565b925061231b565b61231881846123d8565b92505b50808061232790613534565b9150506122ce565b508091505092915050565b61234483836123ef565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123d35760006001549050600083820390505b6123856000868380600101945086611ea2565b6123bb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123725781600154146123d057600080fd5b50505b505050565b600082600052816020526040600020905092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561245d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612498576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124a56000848385611d5f565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061251c8361250d6000866000611d65565b612516856125c4565b17611d8d565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612540578060018190555050506125bf6000848385611db8565b505050565b60006001821460e11b9050919050565b8280546125e0906134d1565b90600052602060002090601f0160209004810192826126025760008555612649565b82601f1061261b57805160ff1916838001178555612649565b82800160010185558215612649579182015b8281111561264857825182559160200191906001019061262d565b5b50905061265691906126a9565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b808211156126c25760008160009055506001016126aa565b5090565b60006126d96126d484613214565b6131ef565b9050828152602081018484840111156126f5576126f46136cc565b5b61270084828561348f565b509392505050565b600061271b61271684613245565b6131ef565b905082815260208101848484011115612737576127366136cc565b5b61274284828561348f565b509392505050565b6000813590506127598161390b565b92915050565b60008083601f840112612775576127746136c2565b5b8235905067ffffffffffffffff811115612792576127916136bd565b5b6020830191508360208202830111156127ae576127ad6136c7565b5b9250929050565b6000813590506127c481613922565b92915050565b6000813590506127d981613939565b92915050565b6000813590506127ee81613950565b92915050565b60008151905061280381613950565b92915050565b600082601f83011261281e5761281d6136c2565b5b813561282e8482602086016126c6565b91505092915050565b600082601f83011261284c5761284b6136c2565b5b813561285c848260208601612708565b91505092915050565b60008135905061287481613967565b92915050565b6000602082840312156128905761288f6136d6565b5b600061289e8482850161274a565b91505092915050565b600080604083850312156128be576128bd6136d6565b5b60006128cc8582860161274a565b92505060206128dd8582860161274a565b9150509250929050565b600080600060608486031215612900576128ff6136d6565b5b600061290e8682870161274a565b935050602061291f8682870161274a565b925050604061293086828701612865565b9150509250925092565b60008060008060808587031215612954576129536136d6565b5b60006129628782880161274a565b94505060206129738782880161274a565b935050604061298487828801612865565b925050606085013567ffffffffffffffff8111156129a5576129a46136d1565b5b6129b187828801612809565b91505092959194509250565b600080604083850312156129d4576129d36136d6565b5b60006129e28582860161274a565b92505060206129f3858286016127b5565b9150509250929050565b60008060408385031215612a1457612a136136d6565b5b6000612a228582860161274a565b9250506020612a3385828601612865565b9150509250929050565b600060208284031215612a5357612a526136d6565b5b6000612a61848285016127ca565b91505092915050565b600060208284031215612a8057612a7f6136d6565b5b6000612a8e848285016127df565b91505092915050565b600060208284031215612aad57612aac6136d6565b5b6000612abb848285016127f4565b91505092915050565b600060208284031215612ada57612ad96136d6565b5b600082013567ffffffffffffffff811115612af857612af76136d1565b5b612b0484828501612837565b91505092915050565b600060208284031215612b2357612b226136d6565b5b6000612b3184828501612865565b91505092915050565b600080600060408486031215612b5357612b526136d6565b5b6000612b6186828701612865565b935050602084013567ffffffffffffffff811115612b8257612b816136d1565b5b612b8e8682870161275f565b92509250509250925092565b612ba3816133ee565b82525050565b612bb2816133ee565b82525050565b612bc9612bc4826133ee565b61357d565b82525050565b612bd881613400565b82525050565b612be781613400565b82525050565b612bf68161340c565b82525050565b6000612c078261328b565b612c1181856132a1565b9350612c2181856020860161349e565b612c2a816136db565b840191505092915050565b6000612c4082613296565b612c4a81856132bd565b9350612c5a81856020860161349e565b612c63816136db565b840191505092915050565b6000612c7982613296565b612c8381856132ce565b9350612c9381856020860161349e565b80840191505092915050565b60008154612cac816134d1565b612cb681866132ce565b94506001821660008114612cd15760018114612ce257612d15565b60ff19831686528186019350612d15565b612ceb85613276565b60005b83811015612d0d57815481890152600182019150602081019050612cee565b838801955050505b50505092915050565b6000612d2b6026836132bd565b9150612d36826136f9565b604082019050919050565b6000612d4e6018836132bd565b9150612d5982613748565b602082019050919050565b6000612d71600f836132bd565b9150612d7c82613771565b602082019050919050565b6000612d94601e836132bd565b9150612d9f8261379a565b602082019050919050565b6000612db76012836132bd565b9150612dc2826137c3565b602082019050919050565b6000612dda6005836132ce565b9150612de5826137ec565b600582019050919050565b6000612dfd6020836132bd565b9150612e0882613815565b602082019050919050565b6000612e20602f836132bd565b9150612e2b8261383e565b604082019050919050565b6000612e436000836132b2565b9150612e4e8261388d565b600082019050919050565b6000612e666010836132bd565b9150612e7182613890565b602082019050919050565b6000612e896016836132bd565b9150612e94826138b9565b602082019050919050565b6000612eac601f836132bd565b9150612eb7826138e2565b602082019050919050565b608082016000820151612ed86000850182612b9a565b506020820151612eeb6020850182612f35565b506040820151612efe6040850182612bcf565b506060820151612f116060850182612f17565b50505050565b612f2081613462565b82525050565b612f2f81613471565b82525050565b612f3e8161347b565b82525050565b6000612f508284612bb8565b60148201915081905092915050565b6000612f6b8285612c6e565b9150612f778284612c6e565b9150612f8282612dcd565b91508190509392505050565b6000612f9a8284612c9f565b915081905092915050565b6000612fb082612e36565b9150819050919050565b6000602082019050612fcf6000830184612ba9565b92915050565b6000608082019050612fea6000830187612ba9565b612ff76020830186612ba9565b6130046040830185612f26565b81810360608301526130168184612bfc565b905095945050505050565b60006020820190506130366000830184612bde565b92915050565b60006020820190506130516000830184612bed565b92915050565b600060208201905081810360008301526130718184612c35565b905092915050565b6000602082019050818103600083015261309281612d1e565b9050919050565b600060208201905081810360008301526130b281612d41565b9050919050565b600060208201905081810360008301526130d281612d64565b9050919050565b600060208201905081810360008301526130f281612d87565b9050919050565b6000602082019050818103600083015261311281612daa565b9050919050565b6000602082019050818103600083015261313281612df0565b9050919050565b6000602082019050818103600083015261315281612e13565b9050919050565b6000602082019050818103600083015261317281612e59565b9050919050565b6000602082019050818103600083015261319281612e7c565b9050919050565b600060208201905081810360008301526131b281612e9f565b9050919050565b60006080820190506131ce6000830184612ec2565b92915050565b60006020820190506131e96000830184612f26565b92915050565b60006131f961320a565b90506132058282613503565b919050565b6000604051905090565b600067ffffffffffffffff82111561322f5761322e61368e565b5b613238826136db565b9050602081019050919050565b600067ffffffffffffffff8211156132605761325f61368e565b5b613269826136db565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132e482613471565b91506132ef83613471565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613324576133236135d2565b5b828201905092915050565b600061333a82613471565b915061334583613471565b92508261335557613354613601565b5b828204905092915050565b600061336b82613471565b915061337683613471565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133af576133ae6135d2565b5b828202905092915050565b60006133c582613471565b91506133d083613471565b9250828210156133e3576133e26135d2565b5b828203905092915050565b60006133f982613442565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156134bc5780820151818401526020810190506134a1565b838111156134cb576000848401525b50505050565b600060028204905060018216806134e957607f821691505b602082108114156134fd576134fc613630565b5b50919050565b61350c826136db565b810181811067ffffffffffffffff8211171561352b5761352a61368e565b5b80604052505050565b600061353f82613471565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613572576135716135d2565b5b600182019050919050565b60006135888261358f565b9050919050565b600061359a826136ec565b9050919050565b60006135ac82613471565b91506135b783613471565b9250826135c7576135c6613601565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c697374696e67206e6f7420737461727465640000000000000000600082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f5175616e74697479206578636565647320616c6c6f776564204d696e74730000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613914816133ee565b811461391f57600080fd5b50565b61392b81613400565b811461393657600080fd5b50565b6139428161340c565b811461394d57600080fd5b50565b61395981613416565b811461396457600080fd5b50565b61397081613471565b811461397b57600080fd5b5056fea26469706673582212200c27244012fcf867174385a1fcb9b4850727b97f5e323c1ff7401f91f90532e164736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d64394b736b3633334d765461417a5a534c4d375a62436d3562645938534e63324d6948444a31576350794c482f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806369ba1a7511610102578063a22cb46511610095578063d2cab05611610064578063d2cab056146106ca578063dc33e681146106e6578063e985e9c514610723578063f2fde38b14610760576101e3565b8063a22cb46514610624578063ac4460021461064d578063b88d4fde14610664578063c87b56dd1461068d576101e3565b80638d859f3e116100d15780638d859f3e146105665780638da5cb5b146105915780639231ab2a146105bc57806395d89b41146105f9576101e3565b806369ba1a75146104c057806370a08231146104e9578063715018a6146105265780637cb647591461053d576101e3565b80632eb4a7ab1161017a57806355f804b31161014957806355f804b31461040657806362c6f7b91461042f5780636352211e1461045a5780636743e3e514610497576101e3565b80632eb4a7ab1461035e5780632f2ffc57146103895780633fd17366146103b457806342842e0e146103dd576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df578063200d2ed21461030a57806323b872dd14610335576101e3565b80630199e347146101e857806301ffc9a71461021157806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612b0d565b610789565b005b34801561021d57600080fd5b5061023860048036038101906102339190612a6a565b61080f565b6040516102459190613021565b60405180910390f35b34801561025a57600080fd5b506102636108a1565b6040516102709190613057565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612b0d565b610933565b6040516102ad9190612fba565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d891906129fd565b6109af565b005b3480156102eb57600080fd5b506102f4610af0565b60405161030191906131d4565b60405180910390f35b34801561031657600080fd5b5061031f610b07565b60405161032c91906131d4565b60405180910390f35b34801561034157600080fd5b5061035c600480360381019061035791906128e7565b610b0d565b005b34801561036a57600080fd5b50610373610e32565b604051610380919061303c565b60405180910390f35b34801561039557600080fd5b5061039e610e38565b6040516103ab91906131d4565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190612b0d565b610e3e565b005b3480156103e957600080fd5b5061040460048036038101906103ff91906128e7565b610ec4565b005b34801561041257600080fd5b5061042d60048036038101906104289190612ac4565b610ee4565b005b34801561043b57600080fd5b50610444610f7a565b6040516104519190613021565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190612b0d565b610f8d565b60405161048e9190612fba565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b99190612ac4565b610f9f565b005b3480156104cc57600080fd5b506104e760048036038101906104e29190612b0d565b61105f565b005b3480156104f557600080fd5b50610510600480360381019061050b919061287a565b6110e5565b60405161051d91906131d4565b60405180910390f35b34801561053257600080fd5b5061053b61119e565b005b34801561054957600080fd5b50610564600480360381019061055f9190612a3d565b611226565b005b34801561057257600080fd5b5061057b6112ac565b60405161058891906131d4565b60405180910390f35b34801561059d57600080fd5b506105a66112b2565b6040516105b39190612fba565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190612b0d565b6112db565b6040516105f091906131b9565b60405180910390f35b34801561060557600080fd5b5061060e6112f3565b60405161061b9190613057565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906129bd565b611385565b005b34801561065957600080fd5b506106626114fd565b005b34801561067057600080fd5b5061068b6004803603810190610686919061293a565b611628565b005b34801561069957600080fd5b506106b460048036038101906106af9190612b0d565b61169b565b6040516106c19190613057565b60405180910390f35b6106e460048036038101906106df9190612b3a565b6117b3565b005b3480156106f257600080fd5b5061070d6004803603810190610708919061287a565b611a15565b60405161071a91906131d4565b60405180910390f35b34801561072f57600080fd5b5061074a600480360381019061074591906128a7565b611a27565b6040516107579190613021565b60405180910390f35b34801561076c57600080fd5b506107876004803603810190610782919061287a565b611abb565b005b610791611bb3565b73ffffffffffffffffffffffffffffffffffffffff166107af6112b2565b73ffffffffffffffffffffffffffffffffffffffff1614610805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fc90613119565b60405180910390fd5b80600b8190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061089a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108b0906134d1565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc906134d1565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b600061093e82611bbb565b610974576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ba82610f8d565b90508073ffffffffffffffffffffffffffffffffffffffff166109db611c1a565b73ffffffffffffffffffffffffffffffffffffffff1614610a3e57610a0781610a02611c1a565b611a27565b610a3d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610afa611c22565b6002546001540303905090565b600f5481565b6000610b1882611c2b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b7f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b8b84611cf9565b91509150610ba18187610b9c611c1a565b611d1b565b610bed57610bb686610bb1611c1a565b611a27565b610bec576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c54576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c618686866001611d5f565b8015610c6c57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d3a85610d16888887611d65565b7c020000000000000000000000000000000000000000000000000000000017611d8d565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dc2576000600185019050600060056000838152602001908152602001600020541415610dc0576001548114610dbf578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e2a8686866001611db8565b505050505050565b600a5481565b600b5481565b610e46611bb3565b73ffffffffffffffffffffffffffffffffffffffff16610e646112b2565b73ffffffffffffffffffffffffffffffffffffffff1614610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190613119565b60405180910390fd5b80600c8190555050565b610edf83838360405180602001604052806000815250611628565b505050565b610eec611bb3565b73ffffffffffffffffffffffffffffffffffffffff16610f0a6112b2565b73ffffffffffffffffffffffffffffffffffffffff1614610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790613119565b60405180910390fd5b80600e9080519060200190610f769291906125d4565b5050565b600d60009054906101000a900460ff1681565b6000610f9882611c2b565b9050919050565b610fa7611bb3565b73ffffffffffffffffffffffffffffffffffffffff16610fc56112b2565b73ffffffffffffffffffffffffffffffffffffffff161461101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290613119565b60405180910390fd5b80600e90805190602001906110319291906125d4565b50600d60009054906101000a900460ff1615600d60006101000a81548160ff02191690831515021790555050565b611067611bb3565b73ffffffffffffffffffffffffffffffffffffffff166110856112b2565b73ffffffffffffffffffffffffffffffffffffffff16146110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290613119565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561114d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111a6611bb3565b73ffffffffffffffffffffffffffffffffffffffff166111c46112b2565b73ffffffffffffffffffffffffffffffffffffffff161461121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190613119565b60405180910390fd5b6112246000611dbe565b565b61122e611bb3565b73ffffffffffffffffffffffffffffffffffffffff1661124c6112b2565b73ffffffffffffffffffffffffffffffffffffffff16146112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990613119565b60405180910390fd5b80600a8190555050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112e361265a565b6112ec82611e82565b9050919050565b606060048054611302906134d1565b80601f016020809104026020016040519081016040528092919081815260200182805461132e906134d1565b801561137b5780601f106113505761010080835404028352916020019161137b565b820191906000526020600020905b81548152906001019060200180831161135e57829003601f168201915b5050505050905090565b61138d611c1a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006113ff611c1a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ac611c1a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114f19190613021565b60405180910390a35050565b611505611bb3565b73ffffffffffffffffffffffffffffffffffffffff166115236112b2565b73ffffffffffffffffffffffffffffffffffffffff1614611579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157090613119565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161159f90612fa5565b60006040518083038185875af1925050503d80600081146115dc576040519150601f19603f3d011682016040523d82523d6000602084013e6115e1565b606091505b5050905080611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613159565b60405180910390fd5b50565b611633848484610b0d565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116955761165e84848484611ea2565b611694576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060011515600d60009054906101000a900460ff161515141561175e576116c282611bbb565b611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f890613139565b60405180910390fd5b600061170b612002565b9050600081511161172b5760405180602001604052806000815250611756565b8061173584612019565b604051602001611746929190612f5f565b6040516020818303038152906040525b9150506117ae565b6000600e805461176d906134d1565b90501161178957604051806020016040528060008152506117ab565b600e60405160200161179b9190612f8e565b6040516020818303038152906040525b90505b919050565b600260095414156117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090613199565b60405180910390fd5b60026009819055506000336040516020016118149190612f44565b60405160208183030381529060405280519060200120905061187a838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a548361217a565b6118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b0906130b9565b60405180910390fd5b6001600f54146118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590613099565b60405180910390fd5b6122b88461190a610af0565b61191491906132d9565b1115611955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194c906130f9565b60405180910390fd5b83600c546119639190613360565b3410156119a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199c90613179565b60405180910390fd5b600b54846119b233611a15565b6119bc91906132d9565b11156119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f4906130d9565b60405180910390fd5b611a073385612191565b506001600981905550505050565b6000611a20826121af565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ac3611bb3565b73ffffffffffffffffffffffffffffffffffffffff16611ae16112b2565b73ffffffffffffffffffffffffffffffffffffffff1614611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e90613119565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9e90613079565b60405180910390fd5b611bb081611dbe565b50565b600033905090565b600081611bc6611c22565b11158015611bd5575060015482105b8015611c13575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611c3a611c22565b11611cc257600154811015611cc15760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611cbf575b6000811415611cb5576005600083600190039350838152602001908152602001600020549050611c8a565b8092505050611cf4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d7c868684612206565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e8a61265a565b611e9b611e9683611c2b565b61220f565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ec8611c1a565b8786866040518563ffffffff1660e01b8152600401611eea9493929190612fd5565b602060405180830381600087803b158015611f0457600080fd5b505af1925050508015611f3557506040513d601f19601f82011682018060405250810190611f329190612a97565b60015b611faf573d8060008114611f65576040519150601f19603f3d011682016040523d82523d6000602084013e611f6a565b606091505b50600081511415611fa7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060405180602001604052806000815250905090565b60606000821415612061576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612175565b600082905060005b6000821461209357808061207c90613534565b915050600a8261208c919061332f565b9150612069565b60008167ffffffffffffffff8111156120af576120ae61368e565b5b6040519080825280601f01601f1916602001820160405280156120e15781602001600182028036833780820191505090505b5090505b6000851461216e576001826120fa91906133ba565b9150600a8561210991906135a1565b603061211591906132d9565b60f81b81838151811061212b5761212a61365f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612167919061332f565b94506120e5565b8093505050505b919050565b60008261218785846122c5565b1490509392505050565b6121ab82826040518060200160405280600081525061233a565b5050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b61221761265a565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008082905060005b845181101561232f5760008582815181106122ec576122eb61365f565b5b6020026020010151905080831161230e5761230783826123d8565b925061231b565b61231881846123d8565b92505b50808061232790613534565b9150506122ce565b508091505092915050565b61234483836123ef565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123d35760006001549050600083820390505b6123856000868380600101945086611ea2565b6123bb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123725781600154146123d057600080fd5b50505b505050565b600082600052816020526040600020905092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561245d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612498576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124a56000848385611d5f565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061251c8361250d6000866000611d65565b612516856125c4565b17611d8d565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612540578060018190555050506125bf6000848385611db8565b505050565b60006001821460e11b9050919050565b8280546125e0906134d1565b90600052602060002090601f0160209004810192826126025760008555612649565b82601f1061261b57805160ff1916838001178555612649565b82800160010185558215612649579182015b8281111561264857825182559160200191906001019061262d565b5b50905061265691906126a9565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b808211156126c25760008160009055506001016126aa565b5090565b60006126d96126d484613214565b6131ef565b9050828152602081018484840111156126f5576126f46136cc565b5b61270084828561348f565b509392505050565b600061271b61271684613245565b6131ef565b905082815260208101848484011115612737576127366136cc565b5b61274284828561348f565b509392505050565b6000813590506127598161390b565b92915050565b60008083601f840112612775576127746136c2565b5b8235905067ffffffffffffffff811115612792576127916136bd565b5b6020830191508360208202830111156127ae576127ad6136c7565b5b9250929050565b6000813590506127c481613922565b92915050565b6000813590506127d981613939565b92915050565b6000813590506127ee81613950565b92915050565b60008151905061280381613950565b92915050565b600082601f83011261281e5761281d6136c2565b5b813561282e8482602086016126c6565b91505092915050565b600082601f83011261284c5761284b6136c2565b5b813561285c848260208601612708565b91505092915050565b60008135905061287481613967565b92915050565b6000602082840312156128905761288f6136d6565b5b600061289e8482850161274a565b91505092915050565b600080604083850312156128be576128bd6136d6565b5b60006128cc8582860161274a565b92505060206128dd8582860161274a565b9150509250929050565b600080600060608486031215612900576128ff6136d6565b5b600061290e8682870161274a565b935050602061291f8682870161274a565b925050604061293086828701612865565b9150509250925092565b60008060008060808587031215612954576129536136d6565b5b60006129628782880161274a565b94505060206129738782880161274a565b935050604061298487828801612865565b925050606085013567ffffffffffffffff8111156129a5576129a46136d1565b5b6129b187828801612809565b91505092959194509250565b600080604083850312156129d4576129d36136d6565b5b60006129e28582860161274a565b92505060206129f3858286016127b5565b9150509250929050565b60008060408385031215612a1457612a136136d6565b5b6000612a228582860161274a565b9250506020612a3385828601612865565b9150509250929050565b600060208284031215612a5357612a526136d6565b5b6000612a61848285016127ca565b91505092915050565b600060208284031215612a8057612a7f6136d6565b5b6000612a8e848285016127df565b91505092915050565b600060208284031215612aad57612aac6136d6565b5b6000612abb848285016127f4565b91505092915050565b600060208284031215612ada57612ad96136d6565b5b600082013567ffffffffffffffff811115612af857612af76136d1565b5b612b0484828501612837565b91505092915050565b600060208284031215612b2357612b226136d6565b5b6000612b3184828501612865565b91505092915050565b600080600060408486031215612b5357612b526136d6565b5b6000612b6186828701612865565b935050602084013567ffffffffffffffff811115612b8257612b816136d1565b5b612b8e8682870161275f565b92509250509250925092565b612ba3816133ee565b82525050565b612bb2816133ee565b82525050565b612bc9612bc4826133ee565b61357d565b82525050565b612bd881613400565b82525050565b612be781613400565b82525050565b612bf68161340c565b82525050565b6000612c078261328b565b612c1181856132a1565b9350612c2181856020860161349e565b612c2a816136db565b840191505092915050565b6000612c4082613296565b612c4a81856132bd565b9350612c5a81856020860161349e565b612c63816136db565b840191505092915050565b6000612c7982613296565b612c8381856132ce565b9350612c9381856020860161349e565b80840191505092915050565b60008154612cac816134d1565b612cb681866132ce565b94506001821660008114612cd15760018114612ce257612d15565b60ff19831686528186019350612d15565b612ceb85613276565b60005b83811015612d0d57815481890152600182019150602081019050612cee565b838801955050505b50505092915050565b6000612d2b6026836132bd565b9150612d36826136f9565b604082019050919050565b6000612d4e6018836132bd565b9150612d5982613748565b602082019050919050565b6000612d71600f836132bd565b9150612d7c82613771565b602082019050919050565b6000612d94601e836132bd565b9150612d9f8261379a565b602082019050919050565b6000612db76012836132bd565b9150612dc2826137c3565b602082019050919050565b6000612dda6005836132ce565b9150612de5826137ec565b600582019050919050565b6000612dfd6020836132bd565b9150612e0882613815565b602082019050919050565b6000612e20602f836132bd565b9150612e2b8261383e565b604082019050919050565b6000612e436000836132b2565b9150612e4e8261388d565b600082019050919050565b6000612e666010836132bd565b9150612e7182613890565b602082019050919050565b6000612e896016836132bd565b9150612e94826138b9565b602082019050919050565b6000612eac601f836132bd565b9150612eb7826138e2565b602082019050919050565b608082016000820151612ed86000850182612b9a565b506020820151612eeb6020850182612f35565b506040820151612efe6040850182612bcf565b506060820151612f116060850182612f17565b50505050565b612f2081613462565b82525050565b612f2f81613471565b82525050565b612f3e8161347b565b82525050565b6000612f508284612bb8565b60148201915081905092915050565b6000612f6b8285612c6e565b9150612f778284612c6e565b9150612f8282612dcd565b91508190509392505050565b6000612f9a8284612c9f565b915081905092915050565b6000612fb082612e36565b9150819050919050565b6000602082019050612fcf6000830184612ba9565b92915050565b6000608082019050612fea6000830187612ba9565b612ff76020830186612ba9565b6130046040830185612f26565b81810360608301526130168184612bfc565b905095945050505050565b60006020820190506130366000830184612bde565b92915050565b60006020820190506130516000830184612bed565b92915050565b600060208201905081810360008301526130718184612c35565b905092915050565b6000602082019050818103600083015261309281612d1e565b9050919050565b600060208201905081810360008301526130b281612d41565b9050919050565b600060208201905081810360008301526130d281612d64565b9050919050565b600060208201905081810360008301526130f281612d87565b9050919050565b6000602082019050818103600083015261311281612daa565b9050919050565b6000602082019050818103600083015261313281612df0565b9050919050565b6000602082019050818103600083015261315281612e13565b9050919050565b6000602082019050818103600083015261317281612e59565b9050919050565b6000602082019050818103600083015261319281612e7c565b9050919050565b600060208201905081810360008301526131b281612e9f565b9050919050565b60006080820190506131ce6000830184612ec2565b92915050565b60006020820190506131e96000830184612f26565b92915050565b60006131f961320a565b90506132058282613503565b919050565b6000604051905090565b600067ffffffffffffffff82111561322f5761322e61368e565b5b613238826136db565b9050602081019050919050565b600067ffffffffffffffff8211156132605761325f61368e565b5b613269826136db565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132e482613471565b91506132ef83613471565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613324576133236135d2565b5b828201905092915050565b600061333a82613471565b915061334583613471565b92508261335557613354613601565b5b828204905092915050565b600061336b82613471565b915061337683613471565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133af576133ae6135d2565b5b828202905092915050565b60006133c582613471565b91506133d083613471565b9250828210156133e3576133e26135d2565b5b828203905092915050565b60006133f982613442565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156134bc5780820151818401526020810190506134a1565b838111156134cb576000848401525b50505050565b600060028204905060018216806134e957607f821691505b602082108114156134fd576134fc613630565b5b50919050565b61350c826136db565b810181811067ffffffffffffffff8211171561352b5761352a61368e565b5b80604052505050565b600061353f82613471565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613572576135716135d2565b5b600182019050919050565b60006135888261358f565b9050919050565b600061359a826136ec565b9050919050565b60006135ac82613471565b91506135b783613471565b9250826135c7576135c6613601565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c697374696e67206e6f7420737461727465640000000000000000600082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f5175616e74697479206578636565647320616c6c6f776564204d696e74730000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613914816133ee565b811461391f57600080fd5b50565b61392b81613400565b811461393657600080fd5b50565b6139428161340c565b811461394d57600080fd5b50565b61395981613416565b811461396457600080fd5b50565b61397081613471565b811461397b57600080fd5b5056fea26469706673582212200c27244012fcf867174385a1fcb9b4850727b97f5e323c1ff7401f91f90532e164736f6c63430008070033

Deployed Bytecode Sourcemap

51513:3185:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54416:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21383:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27030:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28976:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28524:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20437:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52083:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38241:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51605:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51801:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54312:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29866:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53587:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52010:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26819:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54520:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22062:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3604:103;;;;;;;;;;;;;:::i;:::-;;51706:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51881:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3381:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53816:156;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27199:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29252:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53978:178;;;;;;;;;;;;;:::i;:::-;;30122:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52957:622;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52308:641;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53697:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29631:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3716:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54416:98;3526:12;:10;:12::i;:::-;3515:23;;:7;:5;:7::i;:::-;:23;;;3507:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54505:1:::1;54487:15;:19;;;;54416:98:::0;:::o;21383:615::-;21468:4;21783:10;21768:25;;:11;:25;;;;:102;;;;21860:10;21845:25;;:11;:25;;;;21768:102;:179;;;;21937:10;21922:25;;:11;:25;;;;21768:179;21748:199;;21383:615;;;:::o;27030:100::-;27084:13;27117:5;27110:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27030:100;:::o;28976:204::-;29044:7;29069:16;29077:7;29069;:16::i;:::-;29064:64;;29094:34;;;;;;;;;;;;;;29064:64;29148:15;:24;29164:7;29148:24;;;;;;;;;;;;;;;;;;;;;29141:31;;28976:204;;;:::o;28524:386::-;28597:13;28613:16;28621:7;28613;:16::i;:::-;28597:32;;28669:5;28646:28;;:19;:17;:19::i;:::-;:28;;;28642:175;;28694:44;28711:5;28718:19;:17;:19::i;:::-;28694:16;:44::i;:::-;28689:128;;28766:35;;;;;;;;;;;;;;28689:128;28642:175;28856:2;28829:15;:24;28845:7;28829:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28894:7;28890:2;28874:28;;28883:5;28874:28;;;;;;;;;;;;28586:324;28524:386;;:::o;20437:315::-;20490:7;20718:15;:13;:15::i;:::-;20703:12;;20687:13;;:28;:46;20680:53;;20437:315;:::o;52083:22::-;;;;:::o;38241:2800::-;38375:27;38405;38424:7;38405:18;:27::i;:::-;38375:57;;38490:4;38449:45;;38465:19;38449:45;;;38445:86;;38503:28;;;;;;;;;;;;;;38445:86;38545:27;38574:23;38601:28;38621:7;38601:19;:28::i;:::-;38544:85;;;;38729:62;38748:15;38765:4;38771:19;:17;:19::i;:::-;38729:18;:62::i;:::-;38724:174;;38811:43;38828:4;38834:19;:17;:19::i;:::-;38811:16;:43::i;:::-;38806:92;;38863:35;;;;;;;;;;;;;;38806:92;38724:174;38929:1;38915:16;;:2;:16;;;38911:52;;;38940:23;;;;;;;;;;;;;;38911:52;38976:43;38998:4;39004:2;39008:7;39017:1;38976:21;:43::i;:::-;39112:15;39109:160;;;39252:1;39231:19;39224:30;39109:160;39647:18;:24;39666:4;39647:24;;;;;;;;;;;;;;;;39645:26;;;;;;;;;;;;39716:18;:22;39735:2;39716:22;;;;;;;;;;;;;;;;39714:24;;;;;;;;;;;40038:145;40075:2;40123:45;40138:4;40144:2;40148:19;40123:14;:45::i;:::-;17665:8;40096:72;40038:18;:145::i;:::-;40009:17;:26;40027:7;40009:26;;;;;;;;;;;:174;;;;40353:1;17665:8;40303:19;:46;:51;40299:626;;;40375:19;40407:1;40397:7;:11;40375:33;;40564:1;40530:17;:30;40548:11;40530:30;;;;;;;;;;;;:35;40526:384;;;40668:13;;40653:11;:28;40649:242;;40848:19;40815:17;:30;40833:11;40815:30;;;;;;;;;;;:52;;;;40649:242;40526:384;40356:569;40299:626;40972:7;40968:2;40953:27;;40962:4;40953:27;;;;;;;;;;;;40991:42;41012:4;41018:2;41022:7;41031:1;40991:20;:42::i;:::-;38364:2677;;;38241:2800;;;:::o;51605:94::-;;;;:::o;51801:34::-;;;;:::o;54312:98::-;3526:12;:10;:12::i;:::-;3515:23;;:7;:5;:7::i;:::-;:23;;;3507:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54393:9:::1;54385:5;:17;;;;54312:98:::0;:::o;29866:185::-;30004:39;30021:4;30027:2;30031:7;30004:39;;;;;;;;;;;;:16;:39::i;:::-;29866:185;;;:::o;53587:104::-;3526:12;:10;:12::i;:::-;3515:23;;:7;:5;:7::i;:::-;:23;;;3507:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53676:7:::1;53660:13;:23;;;;;;;;;;;;:::i;:::-;;53587:104:::0;:::o;52010:29::-;;;;;;;;;;;;;:::o;26819:144::-;26883:7;26926:27;26945:7;26926:18;:27::i;:::-;26903:52;;26819:144;;;:::o;54162:::-;3526:12;:10;:12::i;:::-;3515:23;;:7;:5;:7::i;:::-;:23;;;3507:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54258:7:::1;54242:13;:23;;;;;;;;;;;;:::i;:::-;;54289:9;;;;;;;;;;;54288:10;54276:9;;:22;;;;;;;;;;;;;;;;;;54162:144:::0;:::o;54520:76::-;3526:12;:10;:12::i;:::-;3515:23;;:7;:5;:7::i;:::-;:23;;;3507:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54587:1:::1;54578:6;:10;;;;54520:76:::0;:::o;22062:224::-;22126:7;22167:1;22150:19;;:5;:19;;;22146:60;;;22178:28;;;;;;;;;;;;;;22146:60;16617:13;22224:18;:25;22243:5;22224:25;;;;;;;;;;;;;;;;:54;22217:61;;22062:224;;;:::o;3604:103::-;3526:12;:10;:12::i;:::-;3515:23;;:7;:5;:7::i;:::-;:23;;;3507:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3669:30:::1;3696:1;3669:18;:30::i;:::-;3604:103::o:0;51706:83::-;3526:12;:10;:12::i;:::-;3515:23;;:7;:5;:7::i;:::-;:23;;;3507:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51780:1:::1;51767:10;:14;;;;51706:83:::0;:::o;51881:35::-;;;;:::o;3381:87::-;3427:7;3454:6;;;;;;;;;;;3447:13;;3381:87;:::o;53816:156::-;53897:21;;:::i;:::-;53943;53956:7;53943:12;:21::i;:::-;53936:28;;53816:156;;;:::o;27199:104::-;27255:13;27288:7;27281:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27199:104;:::o;29252:308::-;29363:19;:17;:19::i;:::-;29351:31;;:8;:31;;;29347:61;;;29391:17;;;;;;;;;;;;;;29347:61;29473:8;29421:18;:39;29440:19;:17;:19::i;:::-;29421:39;;;;;;;;;;;;;;;:49;29461:8;29421:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29533:8;29497:55;;29512:19;:17;:19::i;:::-;29497:55;;;29543:8;29497:55;;;;;;:::i;:::-;;;;;;;;29252:308;;:::o;53978:178::-;3526:12;:10;:12::i;:::-;3515:23;;:7;:5;:7::i;:::-;:23;;;3507:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54034:12:::1;54052:10;:15;;54075:21;54052:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54033:68;;;54120:7;54112:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;54022:134;53978:178::o:0;30122:399::-;30289:31;30302:4;30308:2;30312:7;30289:12;:31::i;:::-;30353:1;30335:2;:14;;;:19;30331:183;;30374:56;30405:4;30411:2;30415:7;30424:5;30374:30;:56::i;:::-;30369:145;;30458:40;;;;;;;;;;;;;;30369:145;30331:183;30122:399;;;;:::o;52957:622::-;53030:13;53072:4;53059:17;;:9;;;;;;;;;;;:17;;;53056:516;;;53100:16;53108:7;53100;:16::i;:::-;53092:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;53182:21;53206:10;:8;:10::i;:::-;53182:34;;53279:1;53261:7;53255:21;:25;:128;;;;;;;;;;;;;;;;;53324:7;53333:18;:7;:16;:18::i;:::-;53307:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53255:128;53231:152;;;;;53056:516;53478:1;53454:13;53448:27;;;;;:::i;:::-;;;:31;:112;;;;;;;;;;;;;;;;;53523:13;53506:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;53448:112;53424:136;;52957:622;;;;:::o;52308:641::-;1163:1;1309:7;;:19;;1301:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1163:1;1370:7;:18;;;;52422:12:::1;52464:10;52447:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;52437:39;;;;;;52422:54;;52495:50;52515:11;;52495:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52528:10;;52540:4;52495:18;:50::i;:::-;52487:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;52593:1;52583:6;;:11;52575:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;51973:4;52658:8;52642:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:48;;52634:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;52753:8;52745:5;;:16;;;;:::i;:::-;52732:9;:29;;52724:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;52846:15;;52834:8;52807:24;52820:10;52807:12;:24::i;:::-;:35;;;;:::i;:::-;:54;;52799:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;52910:31;52920:10;52932:8;52910:9;:31::i;:::-;52411:538;1119:1:::0;1413:7;:22;;;;52308:641;;;:::o;53697:113::-;53755:7;53782:20;53796:5;53782:13;:20::i;:::-;53775:27;;53697:113;;;:::o;29631:164::-;29728:4;29752:18;:25;29771:5;29752:25;;;;;;;;;;;;;;;:35;29778:8;29752:35;;;;;;;;;;;;;;;;;;;;;;;;;29745:42;;29631:164;;;;:::o;3716:201::-;3526:12;:10;:12::i;:::-;3515:23;;:7;:5;:7::i;:::-;:23;;;3507:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3825:1:::1;3805:22;;:8;:22;;;;3797:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3881:28;3900:8;3881:18;:28::i;:::-;3716:201:::0;:::o;2924:98::-;2977:7;3004:10;2997:17;;2924:98;:::o;30776:273::-;30833:4;30889:7;30870:15;:13;:15::i;:::-;:26;;:66;;;;;30923:13;;30913:7;:23;30870:66;:152;;;;;31021:1;17387:8;30974:17;:26;30992:7;30974:26;;;;;;;;;;;;:43;:48;30870:152;30850:172;;30776:273;;;:::o;49337:105::-;49397:7;49424:10;49417:17;;49337:105;:::o;54602:93::-;54659:7;54686:1;54679:8;;54602:93;:::o;23736:1129::-;23803:7;23823:12;23838:7;23823:22;;23906:4;23887:15;:13;:15::i;:::-;:23;23883:915;;23940:13;;23933:4;:20;23929:869;;;23978:14;23995:17;:23;24013:4;23995:23;;;;;;;;;;;;23978:40;;24111:1;17387:8;24084:6;:23;:28;24080:699;;;24603:113;24620:1;24610:6;:11;24603:113;;;24663:17;:25;24681:6;;;;;;;24663:25;;;;;;;;;;;;24654:34;;24603:113;;;24749:6;24742:13;;;;;;24080:699;23955:843;23929:869;23883:915;24826:31;;;;;;;;;;;;;;23736:1129;;;;:::o;36577:652::-;36672:27;36701:23;36742:53;36798:15;36742:71;;36984:7;36978:4;36971:21;37019:22;37013:4;37006:36;37095:4;37089;37079:21;37056:44;;37191:19;37185:26;37166:45;;36922:300;36577:652;;;:::o;37342:645::-;37484:11;37646:15;37640:4;37636:26;37628:34;;37805:15;37794:9;37790:31;37777:44;;37952:15;37941:9;37938:30;37931:4;37920:9;37917:19;37914:55;37904:65;;37342:645;;;;;:::o;48170:159::-;;;;;:::o;46482:309::-;46617:7;46637:16;17788:3;46663:19;:40;;46637:67;;17788:3;46730:31;46741:4;46747:2;46751:9;46730:10;:31::i;:::-;46722:40;;:61;;46715:68;;;46482:309;;;;;:::o;26310:447::-;26390:14;26558:15;26551:5;26547:27;26538:36;;26732:5;26718:11;26694:22;26690:40;26687:51;26680:5;26677:62;26667:72;;26310:447;;;;:::o;48988:158::-;;;;;:::o;3926:191::-;4000:16;4019:6;;;;;;;;;;;4000:25;;4045:8;4036:6;;:17;;;;;;;;;;;;;;;;;;4100:8;4069:40;;4090:8;4069:40;;;;;;;;;;;;3989:128;3926:191;:::o;26069:158::-;26131:21;;:::i;:::-;26172:47;26191:27;26210:7;26191:18;:27::i;:::-;26172:18;:47::i;:::-;26165:54;;26069:158;;;:::o;44992:716::-;45155:4;45201:2;45176:45;;;45222:19;:17;:19::i;:::-;45243:4;45249:7;45258:5;45176:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45172:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45476:1;45459:6;:13;:18;45455:235;;;45505:40;;;;;;;;;;;;;;45455:235;45648:6;45642:13;45633:6;45629:2;45625:15;45618:38;45172:529;45345:54;;;45335:64;;;:6;:64;;;;45328:71;;;44992:716;;;;;;:::o;27944:94::-;27995:13;28021:9;;;;;;;;;;;;;;27944:94;:::o;1541:533::-;1597:13;1637:1;1628:5;:10;1624:53;;;1655:10;;;;;;;;;;;;;;;;;;;;;1624:53;1687:12;1702:5;1687:20;;1718:14;1743:78;1758:1;1750:4;:9;1743:78;;1776:8;;;;;:::i;:::-;;;;1807:2;1799:10;;;;;:::i;:::-;;;1743:78;;;1831:19;1863:6;1853:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1831:39;;1881:154;1897:1;1888:5;:10;1881:154;;1925:1;1915:11;;;;;:::i;:::-;;;1992:2;1984:5;:10;;;;:::i;:::-;1971:2;:24;;;;:::i;:::-;1958:39;;1941:6;1948;1941:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2021:2;2012:11;;;;;:::i;:::-;;;1881:154;;;2059:6;2045:21;;;;;1541:533;;;;:::o;88:190::-;213:4;266;237:25;250:5;257:4;237:12;:25::i;:::-;:33;230:40;;88:190;;;;;:::o;31133:104::-;31202:27;31212:2;31216:8;31202:27;;;;;;;;;;;;:9;:27::i;:::-;31133:104;;:::o;22368:176::-;22429:7;16617:13;16754:2;22457:18;:25;22476:5;22457:25;;;;;;;;;;;;;;;;:49;;22456:80;22449:87;;22368:176;;;:::o;47367:147::-;47504:6;47367:147;;;;;:::o;24959:363::-;25025:31;;:::i;:::-;25102:6;25069:9;:14;;:41;;;;;;;;;;;17271:3;25155:6;:32;;25121:9;:24;;:67;;;;;;;;;;;25245:1;17387:8;25218:6;:23;:28;;25199:9;:16;;:47;;;;;;;;;;;17788:3;25286:6;:27;;25257:9;:19;;:57;;;;;;;;;;;24959:363;;;:::o;283:517::-;366:7;386:20;409:4;386:27;;429:9;424:339;448:5;:12;444:1;:16;424:339;;;482:20;505:5;511:1;505:8;;;;;;;;:::i;:::-;;;;;;;;482:31;;548:12;532;:28;528:224;;596:42;611:12;625;596:14;:42::i;:::-;581:57;;528:224;;;694:42;709:12;723;694:14;:42::i;:::-;679:57;;528:224;467:296;462:3;;;;;:::i;:::-;;;;424:339;;;;780:12;773:19;;;283:517;;;;:::o;31653:681::-;31776:19;31782:2;31786:8;31776:5;:19::i;:::-;31855:1;31837:2;:14;;;:19;31833:483;;31877:11;31891:13;;31877:27;;31923:13;31945:8;31939:3;:14;31923:30;;31972:233;32003:62;32042:1;32046:2;32050:7;;;;;;32059:5;32003:30;:62::i;:::-;31998:167;;32101:40;;;;;;;;;;;;;;31998:167;32200:3;32192:5;:11;31972:233;;32287:3;32270:13;;:20;32266:34;;32292:8;;;32266:34;31858:458;;31833:483;31653:681;;;:::o;808:224::-;876:13;939:1;933:4;926:15;968:1;962:4;955:15;1009:4;1003;993:21;984:30;;808:224;;;;:::o;32607:1529::-;32672:20;32695:13;;32672:36;;32737:1;32723:16;;:2;:16;;;32719:48;;;32748:19;;;;;;;;;;;;;;32719:48;32794:1;32782:8;:13;32778:44;;;32804:18;;;;;;;;;;;;;;32778:44;32835:61;32865:1;32869:2;32873:12;32887:8;32835:21;:61::i;:::-;33378:1;16754:2;33349:1;:25;;33348:31;33336:8;:44;33310:18;:22;33329:2;33310:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;33657:139;33694:2;33748:33;33771:1;33775:2;33779:1;33748:14;:33::i;:::-;33715:30;33736:8;33715:20;:30::i;:::-;:66;33657:18;:139::i;:::-;33623:17;:31;33641:12;33623:31;;;;;;;;;;;:173;;;;33813:15;33831:12;33813:30;;33858:11;33887:8;33872:12;:23;33858:37;;33910:101;33962:9;;;;;;33958:2;33937:35;;33954:1;33937:35;;;;;;;;;;;;34006:3;33996:7;:13;33910:101;;34043:3;34027:13;:19;;;;33084:974;;34068:60;34097:1;34101:2;34105:12;34119:8;34068:20;:60::i;:::-;32661:1475;32607:1529;;:::o;28140:322::-;28210:14;28441:1;28431:8;28428:15;28403:23;28399:45;28389:55;;28140:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:329::-;6415:6;6464:2;6452:9;6443:7;6439:23;6435:32;6432:119;;;6470:79;;:::i;:::-;6432:119;6590:1;6615:53;6660:7;6651:6;6640:9;6636:22;6615:53;:::i;:::-;6605:63;;6561:117;6356:329;;;;:::o;6691:327::-;6749:6;6798:2;6786:9;6777:7;6773:23;6769:32;6766:119;;;6804:79;;:::i;:::-;6766:119;6924:1;6949:52;6993:7;6984:6;6973:9;6969:22;6949:52;:::i;:::-;6939:62;;6895:116;6691:327;;;;:::o;7024:349::-;7093:6;7142:2;7130:9;7121:7;7117:23;7113:32;7110:119;;;7148:79;;:::i;:::-;7110:119;7268:1;7293:63;7348:7;7339:6;7328:9;7324:22;7293:63;:::i;:::-;7283:73;;7239:127;7024:349;;;;:::o;7379:509::-;7448:6;7497:2;7485:9;7476:7;7472:23;7468:32;7465:119;;;7503:79;;:::i;:::-;7465:119;7651:1;7640:9;7636:17;7623:31;7681:18;7673:6;7670:30;7667:117;;;7703:79;;:::i;:::-;7667:117;7808:63;7863:7;7854:6;7843:9;7839:22;7808:63;:::i;:::-;7798:73;;7594:287;7379:509;;;;:::o;7894:329::-;7953:6;8002:2;7990:9;7981:7;7977:23;7973:32;7970:119;;;8008:79;;:::i;:::-;7970:119;8128:1;8153:53;8198:7;8189:6;8178:9;8174:22;8153:53;:::i;:::-;8143:63;;8099:117;7894:329;;;;:::o;8229:704::-;8324:6;8332;8340;8389:2;8377:9;8368:7;8364:23;8360:32;8357:119;;;8395:79;;:::i;:::-;8357:119;8515:1;8540:53;8585:7;8576:6;8565:9;8561:22;8540:53;:::i;:::-;8530:63;;8486:117;8670:2;8659:9;8655:18;8642:32;8701:18;8693:6;8690:30;8687:117;;;8723:79;;:::i;:::-;8687:117;8836:80;8908:7;8899:6;8888:9;8884:22;8836:80;:::i;:::-;8818:98;;;;8613:313;8229:704;;;;;:::o;8939:108::-;9016:24;9034:5;9016:24;:::i;:::-;9011:3;9004:37;8939:108;;:::o;9053:118::-;9140:24;9158:5;9140:24;:::i;:::-;9135:3;9128:37;9053:118;;:::o;9177:157::-;9282:45;9302:24;9320:5;9302:24;:::i;:::-;9282:45;:::i;:::-;9277:3;9270:58;9177:157;;:::o;9340:99::-;9411:21;9426:5;9411:21;:::i;:::-;9406:3;9399:34;9340:99;;:::o;9445:109::-;9526:21;9541:5;9526:21;:::i;:::-;9521:3;9514:34;9445:109;;:::o;9560:118::-;9647:24;9665:5;9647:24;:::i;:::-;9642:3;9635:37;9560:118;;:::o;9684:360::-;9770:3;9798:38;9830:5;9798:38;:::i;:::-;9852:70;9915:6;9910:3;9852:70;:::i;:::-;9845:77;;9931:52;9976:6;9971:3;9964:4;9957:5;9953:16;9931:52;:::i;:::-;10008:29;10030:6;10008:29;:::i;:::-;10003:3;9999:39;9992:46;;9774:270;9684:360;;;;:::o;10050:364::-;10138:3;10166:39;10199:5;10166:39;:::i;:::-;10221:71;10285:6;10280:3;10221:71;:::i;:::-;10214:78;;10301:52;10346:6;10341:3;10334:4;10327:5;10323:16;10301:52;:::i;:::-;10378:29;10400:6;10378:29;:::i;:::-;10373:3;10369:39;10362:46;;10142:272;10050:364;;;;:::o;10420:377::-;10526:3;10554:39;10587:5;10554:39;:::i;:::-;10609:89;10691:6;10686:3;10609:89;:::i;:::-;10602:96;;10707:52;10752:6;10747:3;10740:4;10733:5;10729:16;10707:52;:::i;:::-;10784:6;10779:3;10775:16;10768:23;;10530:267;10420:377;;;;:::o;10827:845::-;10930:3;10967:5;10961:12;10996:36;11022:9;10996:36;:::i;:::-;11048:89;11130:6;11125:3;11048:89;:::i;:::-;11041:96;;11168:1;11157:9;11153:17;11184:1;11179:137;;;;11330:1;11325:341;;;;11146:520;;11179:137;11263:4;11259:9;11248;11244:25;11239:3;11232:38;11299:6;11294:3;11290:16;11283:23;;11179:137;;11325:341;11392:38;11424:5;11392:38;:::i;:::-;11452:1;11466:154;11480:6;11477:1;11474:13;11466:154;;;11554:7;11548:14;11544:1;11539:3;11535:11;11528:35;11604:1;11595:7;11591:15;11580:26;;11502:4;11499:1;11495:12;11490:17;;11466:154;;;11649:6;11644:3;11640:16;11633:23;;11332:334;;11146:520;;10934:738;;10827:845;;;;:::o;11678:366::-;11820:3;11841:67;11905:2;11900:3;11841:67;:::i;:::-;11834:74;;11917:93;12006:3;11917:93;:::i;:::-;12035:2;12030:3;12026:12;12019:19;;11678:366;;;:::o;12050:::-;12192:3;12213:67;12277:2;12272:3;12213:67;:::i;:::-;12206:74;;12289:93;12378:3;12289:93;:::i;:::-;12407:2;12402:3;12398:12;12391:19;;12050:366;;;:::o;12422:::-;12564:3;12585:67;12649:2;12644:3;12585:67;:::i;:::-;12578:74;;12661:93;12750:3;12661:93;:::i;:::-;12779:2;12774:3;12770:12;12763:19;;12422:366;;;:::o;12794:::-;12936:3;12957:67;13021:2;13016:3;12957:67;:::i;:::-;12950:74;;13033:93;13122:3;13033:93;:::i;:::-;13151:2;13146:3;13142:12;13135:19;;12794:366;;;:::o;13166:::-;13308:3;13329:67;13393:2;13388:3;13329:67;:::i;:::-;13322:74;;13405:93;13494:3;13405:93;:::i;:::-;13523:2;13518:3;13514:12;13507:19;;13166:366;;;:::o;13538:400::-;13698:3;13719:84;13801:1;13796:3;13719:84;:::i;:::-;13712:91;;13812:93;13901:3;13812:93;:::i;:::-;13930:1;13925:3;13921:11;13914:18;;13538:400;;;:::o;13944:366::-;14086:3;14107:67;14171:2;14166:3;14107:67;:::i;:::-;14100:74;;14183:93;14272:3;14183:93;:::i;:::-;14301:2;14296:3;14292:12;14285:19;;13944:366;;;:::o;14316:::-;14458:3;14479:67;14543:2;14538:3;14479:67;:::i;:::-;14472:74;;14555:93;14644:3;14555:93;:::i;:::-;14673:2;14668:3;14664:12;14657:19;;14316:366;;;:::o;14688:398::-;14847:3;14868:83;14949:1;14944:3;14868:83;:::i;:::-;14861:90;;14960:93;15049:3;14960:93;:::i;:::-;15078:1;15073:3;15069:11;15062:18;;14688:398;;;:::o;15092:366::-;15234:3;15255:67;15319:2;15314:3;15255:67;:::i;:::-;15248:74;;15331:93;15420:3;15331:93;:::i;:::-;15449:2;15444:3;15440:12;15433:19;;15092:366;;;:::o;15464:::-;15606:3;15627:67;15691:2;15686:3;15627:67;:::i;:::-;15620:74;;15703:93;15792:3;15703:93;:::i;:::-;15821:2;15816:3;15812:12;15805:19;;15464:366;;;:::o;15836:::-;15978:3;15999:67;16063:2;16058:3;15999:67;:::i;:::-;15992:74;;16075:93;16164:3;16075:93;:::i;:::-;16193:2;16188:3;16184:12;16177:19;;15836:366;;;:::o;16280:874::-;16439:4;16434:3;16430:14;16526:4;16519:5;16515:16;16509:23;16545:63;16602:4;16597:3;16593:14;16579:12;16545:63;:::i;:::-;16454:164;16710:4;16703:5;16699:16;16693:23;16729:61;16784:4;16779:3;16775:14;16761:12;16729:61;:::i;:::-;16628:172;16884:4;16877:5;16873:16;16867:23;16903:57;16954:4;16949:3;16945:14;16931:12;16903:57;:::i;:::-;16810:160;17057:4;17050:5;17046:16;17040:23;17076:61;17131:4;17126:3;17122:14;17108:12;17076:61;:::i;:::-;16980:167;16408:746;16280:874;;:::o;17160:105::-;17235:23;17252:5;17235:23;:::i;:::-;17230:3;17223:36;17160:105;;:::o;17271:118::-;17358:24;17376:5;17358:24;:::i;:::-;17353:3;17346:37;17271:118;;:::o;17395:105::-;17470:23;17487:5;17470:23;:::i;:::-;17465:3;17458:36;17395:105;;:::o;17506:256::-;17618:3;17633:75;17704:3;17695:6;17633:75;:::i;:::-;17733:2;17728:3;17724:12;17717:19;;17753:3;17746:10;;17506:256;;;;:::o;17768:701::-;18049:3;18071:95;18162:3;18153:6;18071:95;:::i;:::-;18064:102;;18183:95;18274:3;18265:6;18183:95;:::i;:::-;18176:102;;18295:148;18439:3;18295:148;:::i;:::-;18288:155;;18460:3;18453:10;;17768:701;;;;;:::o;18475:269::-;18604:3;18626:92;18714:3;18705:6;18626:92;:::i;:::-;18619:99;;18735:3;18728:10;;18475:269;;;;:::o;18750:379::-;18934:3;18956:147;19099:3;18956:147;:::i;:::-;18949:154;;19120:3;19113:10;;18750:379;;;:::o;19135:222::-;19228:4;19266:2;19255:9;19251:18;19243:26;;19279:71;19347:1;19336:9;19332:17;19323:6;19279:71;:::i;:::-;19135:222;;;;:::o;19363:640::-;19558:4;19596:3;19585:9;19581:19;19573:27;;19610:71;19678:1;19667:9;19663:17;19654:6;19610:71;:::i;:::-;19691:72;19759:2;19748:9;19744:18;19735:6;19691:72;:::i;:::-;19773;19841:2;19830:9;19826:18;19817:6;19773:72;:::i;:::-;19892:9;19886:4;19882:20;19877:2;19866:9;19862:18;19855:48;19920:76;19991:4;19982:6;19920:76;:::i;:::-;19912:84;;19363:640;;;;;;;:::o;20009:210::-;20096:4;20134:2;20123:9;20119:18;20111:26;;20147:65;20209:1;20198:9;20194:17;20185:6;20147:65;:::i;:::-;20009:210;;;;:::o;20225:222::-;20318:4;20356:2;20345:9;20341:18;20333:26;;20369:71;20437:1;20426:9;20422:17;20413:6;20369:71;:::i;:::-;20225:222;;;;:::o;20453:313::-;20566:4;20604:2;20593:9;20589:18;20581:26;;20653:9;20647:4;20643:20;20639:1;20628:9;20624:17;20617:47;20681:78;20754:4;20745:6;20681:78;:::i;:::-;20673:86;;20453:313;;;;:::o;20772:419::-;20938:4;20976:2;20965:9;20961:18;20953:26;;21025:9;21019:4;21015:20;21011:1;21000:9;20996:17;20989:47;21053:131;21179:4;21053:131;:::i;:::-;21045:139;;20772:419;;;:::o;21197:::-;21363:4;21401:2;21390:9;21386:18;21378:26;;21450:9;21444:4;21440:20;21436:1;21425:9;21421:17;21414:47;21478:131;21604:4;21478:131;:::i;:::-;21470:139;;21197:419;;;:::o;21622:::-;21788:4;21826:2;21815:9;21811:18;21803:26;;21875:9;21869:4;21865:20;21861:1;21850:9;21846:17;21839:47;21903:131;22029:4;21903:131;:::i;:::-;21895:139;;21622:419;;;:::o;22047:::-;22213:4;22251:2;22240:9;22236:18;22228:26;;22300:9;22294:4;22290:20;22286:1;22275:9;22271:17;22264:47;22328:131;22454:4;22328:131;:::i;:::-;22320:139;;22047:419;;;:::o;22472:::-;22638:4;22676:2;22665:9;22661:18;22653:26;;22725:9;22719:4;22715:20;22711:1;22700:9;22696:17;22689:47;22753:131;22879:4;22753:131;:::i;:::-;22745:139;;22472:419;;;:::o;22897:::-;23063:4;23101:2;23090:9;23086:18;23078:26;;23150:9;23144:4;23140:20;23136:1;23125:9;23121:17;23114:47;23178:131;23304:4;23178:131;:::i;:::-;23170:139;;22897:419;;;:::o;23322:::-;23488:4;23526:2;23515:9;23511:18;23503:26;;23575:9;23569:4;23565:20;23561:1;23550:9;23546:17;23539:47;23603:131;23729:4;23603:131;:::i;:::-;23595:139;;23322:419;;;:::o;23747:::-;23913:4;23951:2;23940:9;23936:18;23928:26;;24000:9;23994:4;23990:20;23986:1;23975:9;23971:17;23964:47;24028:131;24154:4;24028:131;:::i;:::-;24020:139;;23747:419;;;:::o;24172:::-;24338:4;24376:2;24365:9;24361:18;24353:26;;24425:9;24419:4;24415:20;24411:1;24400:9;24396:17;24389:47;24453:131;24579:4;24453:131;:::i;:::-;24445:139;;24172:419;;;:::o;24597:::-;24763:4;24801:2;24790:9;24786:18;24778:26;;24850:9;24844:4;24840:20;24836:1;24825:9;24821:17;24814:47;24878:131;25004:4;24878:131;:::i;:::-;24870:139;;24597:419;;;:::o;25022:347::-;25177:4;25215:3;25204:9;25200:19;25192:27;;25229:133;25359:1;25348:9;25344:17;25335:6;25229:133;:::i;:::-;25022:347;;;;:::o;25375:222::-;25468:4;25506:2;25495:9;25491:18;25483:26;;25519:71;25587:1;25576:9;25572:17;25563:6;25519:71;:::i;:::-;25375:222;;;;:::o;25603:129::-;25637:6;25664:20;;:::i;:::-;25654:30;;25693:33;25721:4;25713:6;25693:33;:::i;:::-;25603:129;;;:::o;25738:75::-;25771:6;25804:2;25798:9;25788:19;;25738:75;:::o;25819:307::-;25880:4;25970:18;25962:6;25959:30;25956:56;;;25992:18;;:::i;:::-;25956:56;26030:29;26052:6;26030:29;:::i;:::-;26022:37;;26114:4;26108;26104:15;26096:23;;25819:307;;;:::o;26132:308::-;26194:4;26284:18;26276:6;26273:30;26270:56;;;26306:18;;:::i;:::-;26270:56;26344:29;26366:6;26344:29;:::i;:::-;26336:37;;26428:4;26422;26418:15;26410:23;;26132:308;;;:::o;26446:141::-;26495:4;26518:3;26510:11;;26541:3;26538:1;26531:14;26575:4;26572:1;26562:18;26554:26;;26446:141;;;:::o;26593:98::-;26644:6;26678:5;26672:12;26662:22;;26593:98;;;:::o;26697:99::-;26749:6;26783:5;26777:12;26767:22;;26697:99;;;:::o;26802:168::-;26885:11;26919:6;26914:3;26907:19;26959:4;26954:3;26950:14;26935:29;;26802:168;;;;:::o;26976:147::-;27077:11;27114:3;27099:18;;26976:147;;;;:::o;27129:169::-;27213:11;27247:6;27242:3;27235:19;27287:4;27282:3;27278:14;27263:29;;27129:169;;;;:::o;27304:148::-;27406:11;27443:3;27428:18;;27304:148;;;;:::o;27458:305::-;27498:3;27517:20;27535:1;27517:20;:::i;:::-;27512:25;;27551:20;27569:1;27551:20;:::i;:::-;27546:25;;27705:1;27637:66;27633:74;27630:1;27627:81;27624:107;;;27711:18;;:::i;:::-;27624:107;27755:1;27752;27748:9;27741:16;;27458:305;;;;:::o;27769:185::-;27809:1;27826:20;27844:1;27826:20;:::i;:::-;27821:25;;27860:20;27878:1;27860:20;:::i;:::-;27855:25;;27899:1;27889:35;;27904:18;;:::i;:::-;27889:35;27946:1;27943;27939:9;27934:14;;27769:185;;;;:::o;27960:348::-;28000:7;28023:20;28041:1;28023:20;:::i;:::-;28018:25;;28057:20;28075:1;28057:20;:::i;:::-;28052:25;;28245:1;28177:66;28173:74;28170:1;28167:81;28162:1;28155:9;28148:17;28144:105;28141:131;;;28252:18;;:::i;:::-;28141:131;28300:1;28297;28293:9;28282:20;;27960:348;;;;:::o;28314:191::-;28354:4;28374:20;28392:1;28374:20;:::i;:::-;28369:25;;28408:20;28426:1;28408:20;:::i;:::-;28403:25;;28447:1;28444;28441:8;28438:34;;;28452:18;;:::i;:::-;28438:34;28497:1;28494;28490:9;28482:17;;28314:191;;;;:::o;28511:96::-;28548:7;28577:24;28595:5;28577:24;:::i;:::-;28566:35;;28511:96;;;:::o;28613:90::-;28647:7;28690:5;28683:13;28676:21;28665:32;;28613:90;;;:::o;28709:77::-;28746:7;28775:5;28764:16;;28709:77;;;:::o;28792:149::-;28828:7;28868:66;28861:5;28857:78;28846:89;;28792:149;;;:::o;28947:126::-;28984:7;29024:42;29017:5;29013:54;29002:65;;28947:126;;;:::o;29079:91::-;29115:7;29155:8;29148:5;29144:20;29133:31;;29079:91;;;:::o;29176:77::-;29213:7;29242:5;29231:16;;29176:77;;;:::o;29259:101::-;29295:7;29335:18;29328:5;29324:30;29313:41;;29259:101;;;:::o;29366:154::-;29450:6;29445:3;29440;29427:30;29512:1;29503:6;29498:3;29494:16;29487:27;29366:154;;;:::o;29526:307::-;29594:1;29604:113;29618:6;29615:1;29612:13;29604:113;;;29703:1;29698:3;29694:11;29688:18;29684:1;29679:3;29675:11;29668:39;29640:2;29637:1;29633:10;29628:15;;29604:113;;;29735:6;29732:1;29729:13;29726:101;;;29815:1;29806:6;29801:3;29797:16;29790:27;29726:101;29575:258;29526:307;;;:::o;29839:320::-;29883:6;29920:1;29914:4;29910:12;29900:22;;29967:1;29961:4;29957:12;29988:18;29978:81;;30044:4;30036:6;30032:17;30022:27;;29978:81;30106:2;30098:6;30095:14;30075:18;30072:38;30069:84;;;30125:18;;:::i;:::-;30069:84;29890:269;29839:320;;;:::o;30165:281::-;30248:27;30270:4;30248:27;:::i;:::-;30240:6;30236:40;30378:6;30366:10;30363:22;30342:18;30330:10;30327:34;30324:62;30321:88;;;30389:18;;:::i;:::-;30321:88;30429:10;30425:2;30418:22;30208:238;30165:281;;:::o;30452:233::-;30491:3;30514:24;30532:5;30514:24;:::i;:::-;30505:33;;30560:66;30553:5;30550:77;30547:103;;;30630:18;;:::i;:::-;30547:103;30677:1;30670:5;30666:13;30659:20;;30452:233;;;:::o;30691:100::-;30730:7;30759:26;30779:5;30759:26;:::i;:::-;30748:37;;30691:100;;;:::o;30797:94::-;30836:7;30865:20;30879:5;30865:20;:::i;:::-;30854:31;;30797:94;;;:::o;30897:176::-;30929:1;30946:20;30964:1;30946:20;:::i;:::-;30941:25;;30980:20;30998:1;30980:20;:::i;:::-;30975:25;;31019:1;31009:35;;31024:18;;:::i;:::-;31009:35;31065:1;31062;31058:9;31053:14;;30897:176;;;;:::o;31079:180::-;31127:77;31124:1;31117:88;31224:4;31221:1;31214:15;31248:4;31245:1;31238:15;31265:180;31313:77;31310:1;31303:88;31410:4;31407:1;31400:15;31434:4;31431:1;31424:15;31451:180;31499:77;31496:1;31489:88;31596:4;31593:1;31586:15;31620:4;31617:1;31610:15;31637:180;31685:77;31682:1;31675:88;31782:4;31779:1;31772:15;31806:4;31803:1;31796:15;31823:180;31871:77;31868:1;31861:88;31968:4;31965:1;31958:15;31992:4;31989:1;31982:15;32009:117;32118:1;32115;32108:12;32132:117;32241:1;32238;32231:12;32255:117;32364:1;32361;32354:12;32378:117;32487:1;32484;32477:12;32501:117;32610:1;32607;32600:12;32624:117;32733:1;32730;32723:12;32747:102;32788:6;32839:2;32835:7;32830:2;32823:5;32819:14;32815:28;32805:38;;32747:102;;;:::o;32855:94::-;32888:8;32936:5;32932:2;32928:14;32907:35;;32855:94;;;:::o;32955:225::-;33095:34;33091:1;33083:6;33079:14;33072:58;33164:8;33159:2;33151:6;33147:15;33140:33;32955:225;:::o;33186:174::-;33326:26;33322:1;33314:6;33310:14;33303:50;33186:174;:::o;33366:165::-;33506:17;33502:1;33494:6;33490:14;33483:41;33366:165;:::o;33537:180::-;33677:32;33673:1;33665:6;33661:14;33654:56;33537:180;:::o;33723:168::-;33863:20;33859:1;33851:6;33847:14;33840:44;33723:168;:::o;33897:155::-;34037:7;34033:1;34025:6;34021:14;34014:31;33897:155;:::o;34058:182::-;34198:34;34194:1;34186:6;34182:14;34175:58;34058:182;:::o;34246:234::-;34386:34;34382:1;34374:6;34370:14;34363:58;34455:17;34450:2;34442:6;34438:15;34431:42;34246:234;:::o;34486:114::-;;:::o;34606:166::-;34746:18;34742:1;34734:6;34730:14;34723:42;34606:166;:::o;34778:172::-;34918:24;34914:1;34906:6;34902:14;34895:48;34778:172;:::o;34956:181::-;35096:33;35092:1;35084:6;35080:14;35073:57;34956:181;:::o;35143:122::-;35216:24;35234:5;35216:24;:::i;:::-;35209:5;35206:35;35196:63;;35255:1;35252;35245:12;35196:63;35143:122;:::o;35271:116::-;35341:21;35356:5;35341:21;:::i;:::-;35334:5;35331:32;35321:60;;35377:1;35374;35367:12;35321:60;35271:116;:::o;35393:122::-;35466:24;35484:5;35466:24;:::i;:::-;35459:5;35456:35;35446:63;;35505:1;35502;35495:12;35446:63;35393:122;:::o;35521:120::-;35593:23;35610:5;35593:23;:::i;:::-;35586:5;35583:34;35573:62;;35631:1;35628;35621:12;35573:62;35521:120;:::o;35647:122::-;35720:24;35738:5;35720:24;:::i;:::-;35713:5;35710:35;35700:63;;35759:1;35756;35749:12;35700:63;35647:122;:::o

Swarm Source

ipfs://0c27244012fcf867174385a1fcb9b4850727b97f5e323c1ff7401f91f90532e1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.