ETH Price: $2,735.80 (-0.74%)

Token

Maestros Mix (MMAB)
 

Overview

Max Total Supply

635 MMAB

Holders

590

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MMAB
0x3584a1e9efa54aae53eddd9f021b6643ebbd6f8b
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x7B5CdbDb...0B40De664
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
MaestrosMix

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-05
*/

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: github/abdullahtilalcodup/nftContracts/maestrosmix.sol

//SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.7.0 <0.9.0;




/// @title Mestro's Mix
/// @author Adam Bawany
contract MaestrosMix is ERC721A, Ownable {

    using Strings for uint256;
    
    bool public paused = false; 
    bool public revealed = false;
    bool public onlyWhiteListed = true; //To pause both OG and WL 
    bool public onlyWhiteListedOG = true; //To pause only OG
    bool public onlyWhiteList = false; //To pause only WL
    bool public publicSale = false; //To pause only public
    
    uint8 public maxMintAmount = 5; //Max Limit per Wallet
    uint8 public nftPerAddressLimitFreeO =2; //Max Free mint for WL
    uint8 public nftPerAddressLimitO =5; //Max Limit per Wallet for WL
    uint8 public nftPerAddressLimitFreeL =1; //Max Free mint for WL
    uint8 public nftPerAddressLimitL =5; //Max Limit per Wallet for WL
    uint8 public nftPerAddressLimitFreePublic =1; //Max Free mint for Public
    uint8 public nftPerAddressLimitPublic =5; //Max Limit per Wallet for Public
    
    uint256 public cost = 0.005 ether;
    uint256 public maxSupply = 1920;

    uint256 public whitelistFreeMinted=0;
    uint256 public whitelistOFreeMinted=0;
    uint256 public whitelistLFreeMinted=0;
    uint256 public publicFreeMinted=0;
    uint256 public paidMinted=0;

    uint256 public whitelistLLimit=300;
    uint256 public whitelistOLimit=100;
    uint256 public publicFreeLimit=500;
    uint256 public paidMintedLimit=1000;

    string private baseURI;
    string public baseExtension = ".json";
    string private notRevealedUri;

    mapping(address => bool) whitelistedAddressesO;
    mapping(address => bool) whitelistedAddressesL;
    mapping(address => uint8) mintedList;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri,
        address[] memory whiteListAdresesO,
        address[] memory whiteListAdresesL
    ) ERC721A(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
        addWhiteListAddresesO(whiteListAdresesO);
        addWhiteListAddresesL(whiteListAdresesL);
        _safeMint(msg.sender, 20);
    }

    ///@notice some common conditions for public and pre sale that needs to be true like minting is not paused,amount to mint is greater than 0,supply dont exceed more than the total supply and sender dont exceed the max mint amount set
    ///@dev this modifier needs to be added on every function thats going to mint tokens
    ///@param _mintAmount is the amount to mint tokens
    modifier preConditions(uint8 _mintAmount) {
        require(!paused,"Minting is currently paused");
        require(_mintAmount > 0,"Mint amount should be greater than 0");
        require(totalSupply() + _mintAmount <= maxSupply,"Insuffiecient tokens available");
        require(_mintAmount+ mintedList[msg.sender] <= maxMintAmount,"Max lmit of tokens exceeded");
        _;
    }
    
    ///@notice it is the helper mint function which cheks if the mint amount is less than free mint available then it mint wwithout charges.Otherwise it calculates mint amount that need to be charged,alculate and verify the charges and then mint the tokens
    ///@dev  if the mint amount is less than free mint available,then we mint without checking the amount.Otherwise we first calculate how many tokens need to be minted are paid,then checkes the amount send by the minter and then mints the tokens
    ///@param _mintAmount is the number of tokens to mint,senderAmount is the amount send by minter while minting,freeMintAvailable is the number of free tokens that are left for the specified addresss.
    function mint(
        uint8 _mintAmount,
        uint256 senderAmount,
        uint256 freeMintAvailable,
        uint8 isWhitelist
    ) private {
         if (_mintAmount <= freeMintAvailable) {

             if(isWhitelist==1){
                whitelistFreeMinted=whitelistFreeMinted+_mintAmount;
                whitelistOFreeMinted=whitelistOFreeMinted+_mintAmount;
             }
             else if(isWhitelist==2){
                 whitelistFreeMinted=whitelistFreeMinted+_mintAmount;
                 whitelistLFreeMinted=whitelistLFreeMinted+_mintAmount;
             }
             else{
                 publicFreeMinted=publicFreeMinted+_mintAmount;
             }

            _safeMint(msg.sender, _mintAmount);
            mintedList[msg.sender]+=_mintAmount;
           

        } else {

           
            if(isWhitelist==1){
                whitelistFreeMinted=whitelistFreeMinted+freeMintAvailable;
                 whitelistOFreeMinted=whitelistOFreeMinted+freeMintAvailable;
            }
            else if(isWhitelist==2){
                whitelistFreeMinted=whitelistFreeMinted+freeMintAvailable;
                whitelistLFreeMinted=whitelistLFreeMinted+freeMintAvailable;
            }
             else{
                 publicFreeMinted=publicFreeMinted+freeMintAvailable;
             }
             

            uint256 paidMint = _mintAmount - freeMintAvailable;
            require(senderAmount >= paidMint * cost,"Insuffiecient funds transfered");
            require(paidMinted+paidMint<=paidMintedLimit,"paid limit is exceded");
            _safeMint(msg.sender, _mintAmount);
            mintedList[msg.sender]+=_mintAmount;
            paidMinted=paidMinted+paidMint;
        }
    }

    ///@notice It returns the number of free mint available for the specific address depending on the type of mint such as pre sale and public sale
    ///@dev It is used to calculate the number of free token available for the specific address.It is used as we have different number of free mints for different whitelisting and public sale.
    ///@param maxFreeMintAmount is the maximum amount of tokens available to mint free.
    ///@return it returns the number of free tokens available to mint,in type uint256, for the senders address.
    function getFreeMintAvailableAmount(uint256 maxFreeMintAmount,uint8 isWhitelist)
        private
        view
        returns (uint256)
    {
        uint256 currentMintAmount = mintedList[msg.sender];
        if (maxFreeMintAmount > currentMintAmount) {
            uint256 freeMintAvailable=maxFreeMintAmount - currentMintAmount;
            if((isWhitelist==1&&whitelistOFreeMinted<whitelistOLimit)){
                
                if(freeMintAvailable<whitelistOLimit-whitelistOFreeMinted){
                    return freeMintAvailable;
                }
                else{
                    return(whitelistOLimit-whitelistOFreeMinted);
                }
                    
            }
            else if((isWhitelist==2&&whitelistLFreeMinted<whitelistLLimit)){
                
                if(freeMintAvailable<whitelistLLimit-whitelistLFreeMinted){
                    return freeMintAvailable;
                }
                else{
                    return(whitelistLLimit-whitelistLFreeMinted);
                }
                    
            }
            else if((isWhitelist==0&&publicFreeMinted<publicFreeLimit)){

                if(freeMintAvailable<publicFreeLimit-publicFreeMinted){
                    return freeMintAvailable;
                }
                else{
                    return(publicFreeLimit-publicFreeMinted);
                }
            }
            else{
                return 0;
            }
            
        } else {
            return 0;
        }
    }

    /// @notice It is use to allow mint for the adresses added in whitelist
    /// @dev Since we have two whitelist,we calculate there free mint avialble depending on the whitelist and call the private mint function.Cannot break further as free mints are variable to type of sale
    /// @param _mintAmount is the quantity of tocken to mint
    function preSaleMintOG(uint8 _mintAmount) preConditions(_mintAmount) public payable {
       
        require(onlyWhiteListed,"Pre sale is not active currently");
        require(onlyWhiteListedOG,"Pre sale OG is not active currently");

        uint256 ownerTokenCount = mintedList[msg.sender];
        require(_mintAmount+ownerTokenCount<= nftPerAddressLimitO,"Max lmit of tokens exceeded for Whitelists");

        require(isWhiteListedO(msg.sender),"This Adresses is not whitelisted, You can Mint Maestro's Mix in Public Sale");
        if (isWhiteListedO(msg.sender)) {
            require(ownerTokenCount < nftPerAddressLimitO,"Max lmit of tokens exceeded for OG list");
            uint256 freeMintAvailable = getFreeMintAvailableAmount(
                nftPerAddressLimitFreeO,1
            );
            // require(freeMintAvailable+whitelistFreeMinted<=500,"White list free mint are over");
            mint(_mintAmount,msg.value,freeMintAvailable,1);
           
        }
}

    /// @notice It is use to allow mint for the adresses added in whitelist
    /// @dev Since we have two whitelist,we calculate there free mint avialble depending on the whitelist and call the private mint function.Cannot break further as free mints are variable to type of sale
    /// @param _mintAmount is the quantity of tocken to mint
    function preSaleMintWL(uint8 _mintAmount) preConditions(_mintAmount) public payable {
       
        require(onlyWhiteListed,"Pre sale is not active currently");
        require(onlyWhiteList,"Pre sale WL is not active currently");

        uint256 ownerTokenCount = mintedList[msg.sender];
        require(_mintAmount+ownerTokenCount<= nftPerAddressLimitL,"Max lmit of tokens exceeded for Whitelists");

        require(isWhiteListedL(msg.sender),"This Adresses is not whitelisted, You can Mint Maestro's Mix in Public Sale");
        if (isWhiteListedL(msg.sender)) {
            require(ownerTokenCount < nftPerAddressLimitL,"Max lmit of tokens exceeded for OG list");
            uint256 freeMintAvailable = getFreeMintAvailableAmount(
                nftPerAddressLimitFreeL,2
            );
            // require(freeMintAvailable+whitelistFreeMinted<=500,"White list free mint are over");
            mint(_mintAmount,msg.value,freeMintAvailable,2);
           
        }
}

    /// @notice It is use to allow mint for the public sale
    /// @dev Use in public sale.Can also add a check of boolean onlyPulicSale in order to make it discrete with onlyWhiteListed.Cause as of now when whitelisting is off,public sales gets active immediately.Can also add lazy minting for optimization
    /// @param _mintAmount is the quantity of tocken to mint
    function publicMint(uint8 _mintAmount) preConditions(_mintAmount) public payable {
       
        require(publicSale,"Public sale is currently inactive");
        //require(_mintAmount <= nftPerAddressLimitPublic,"Mint amount should be greater than 0");
        uint256 ownerTokenCount = mintedList[msg.sender];
        require(_mintAmount+ownerTokenCount <= nftPerAddressLimitPublic,"Max lmit of tokens exceeded for public sale");

        uint256 freeMintAvailable = getFreeMintAvailableAmount(
            nftPerAddressLimitFreePublic,0
        );

        // require(freeMintAvailable+publicFreeMinted<=1000,"Public free mint is over free");

         mint( _mintAmount,msg.value,freeMintAvailable,0);
    }

    function mintOwner(uint256 _mintAmount) public onlyOwner {
         _safeMint(msg.sender, _mintAmount);
    }

    /// @notice it stops/resume the whitelisting minting process
    /// @dev it is to stop/resume the whitelisting minting process.When passed false public mint will be open
    /// @param _state is the boolean to whther resume or pause the whitelisting minting process or public mint.
    function setOnlyWhiteListed(bool _state) public onlyOwner {
        onlyWhiteListed = _state;
    }

    /// @notice check if the address is in whitelisted og list
    /// @dev use to check if address is in whitelisted og list
    /// @param _user is the address of wallet to check
    /// @return it returns the boolen,true if address exist in the whitelist og list
    function isWhiteListedO(address _user) public view returns (bool) {
        bool userIsWhitelisted = whitelistedAddressesO[_user];
        return userIsWhitelisted;
    }

    /// @notice check if the address is in whitelisted og list
    /// @dev use to check if address is in whitelisted og list
    /// @param _user is the address of wallet to check
    /// @return it returns the boolen,true if address exist in the whitelist og list
    function isWhiteListedL(address _user) public view returns (bool) {
        bool userIsWhitelisted = whitelistedAddressesL[_user];
        return userIsWhitelisted;
    }

    ///@notice add number of whitelisted addresses in OG List
    ///@dev It takes an array of addreses and add them into mapping of whitelistedO.Istead of taking them in array we can use merkle tree
    ///@param whiteListAdreses is array of type adresses where all the whitelisted addreses are stored
    function addWhiteListAddresesO(address[]memory whiteListAdreses)public onlyOwner{
        for(uint16 i=0;i<whiteListAdreses.length;i++){
            whitelistedAddressesO[whiteListAdreses[i]]=true;
        }
    }

    ///@notice add number of whitelisted addresses in OG List
    ///@dev It takes an array of addreses and add them into mapping of whitelistedO.Istead of taking them in array we can use merkle tree
    ///@param whiteListAdreses is array of type adresses where all the whitelisted addreses are stored
    function addWhiteListAddresesL(address[]memory whiteListAdreses)public onlyOwner{
        for(uint16 i=0;i<whiteListAdreses.length;i++){
            whitelistedAddressesL[whiteListAdreses[i]]=true;
        }
    }

    ///@notice add number of whitelisted addresses in L List
    ///@dev It takes an array of addreses and add them into mapping of whitelistedL.Istead of taking them in array we can use merkle tree
    ///@param whiteListAdreses is array of type adresses where all the whitelisted addreses are stored
    
    /// @notice it removes the address from whitelist Og list
    /// @dev it removes the address from whitelist Og list.Could be removed in future due  to high gass fee
    /// @param _user is the address of wallet to be removed from whitelist Og list
    function removeWhitelistUsersO(address _user) public onlyOwner {
        // Validate the caller is already part of the whitelist.
        require(
            whitelistedAddressesO[_user],
            "Error: Sender is not whitelisted"
        );
        // Set whitelist boolean to false.
        whitelistedAddressesO[_user] = false;
        
    }

    
    ///@notice To set the number of token allowed to free mint in OG whitelist per address
    ///@dev set the number of token allowed to free mint in OG list
    ///@param _nftPerAddressLimitFreeO of type uint8 is the number of free tokens allowed to mint in OG whitelist
    function setNftPerAddressLimitFreeO (uint8 _nftPerAddressLimitFreeO) public onlyOwner{
       nftPerAddressLimitFreeO=_nftPerAddressLimitFreeO;
       
    }
    
   

    ///@notice To set the total number of token allowed to mint in OG whitelist per address
    ///@dev set the total number of token allowed to mint in OG list per address
    ///@param _nftPerAddressLimitO of type uint8 is the total number of tokens allowed to mint in OG whitelist per address
    function setNftPerAddressLimitO (uint8 _nftPerAddressLimitO) public onlyOwner{
        nftPerAddressLimitO=_nftPerAddressLimitO;
    }

     ///@notice To set the number of token allowed to free mint in public sale per address
    ///@dev set the number of token allowed to free mint in public sale per address
    ///@param _nftPerAddressLimitFreePublic of type uint8 is the number of free tokens allowed to mint in public sale per address
    function setNftPerAddressLimitFreePublic (uint8 _nftPerAddressLimitFreePublic) public onlyOwner{
        nftPerAddressLimitFreePublic=_nftPerAddressLimitFreePublic;
    }

    ///@notice To set the total number of token allowed to mint in public sale per address
    ///@dev set the total number of token allowed to mint in public sale per address
    ///@param _nftPerAddressLimitPublic of type uint8 is the total number of tokens allowed to mint in public sale per address
    function setNftPerAddressLimitPublic(uint8 _nftPerAddressLimitPublic) public onlyOwner{
        nftPerAddressLimitPublic=_nftPerAddressLimitPublic;
    }

    /// @notice Gives the base uri for tocken
    /// @dev use for the BaseUri setup at the time of initialization
    /// @return base uri of tockens on ipfs in string
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    /// @notice gives the token uri of specific token
    /// @dev it is to give us the token uri when minted an nft
    /// @param tokenId is the index of the token for which uri has to return
    /// @return it returns the uri of specific token
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return notRevealedUri;
        }

        string memory currentBaseURI = _baseURI();
        if(bytes(currentBaseURI).length > 0){
                return string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                );
        }else{
                return "";
            }
    }

    /// @notice reveal the nft art
    /// @dev set the reveal to true inorder to reveal nft art.
    function reveal() public onlyOwner {
        revealed = true;
    }

    /// @notice set the cost for paid mint
    /// @dev it is to set the cost for the tokens minted in paid mint
    /// @param _newCost is the new cost to set for the paid mint
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    /// @notice set the max amount of token that can be minted by a simgle wallet
    /// @dev it is to set max amount of token that can be minted by a simgle wallet
    /// @param _newmaxMintAmount is the new max amount that a single wallet can mint totally
    function setmaxMintAmount(uint8 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    /// @notice it sets the uri for the image to show when tokens are not revealed
    /// @dev it is to set uri of json that has details to show along with image when the tokens are not revealed
    /// @param _notRevealedURI is the new uri of json for the metadata when tokens are not revealed
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    /// @notice it sets the uri for the data including images,description to show when tokens are  revealed
    /// @dev it is to set domain uri of json metadata that has details to show along with image when the tokens are revealed
    /// @param _newBaseURI is the new domain uri of json for the metadata when tokens are  revealed
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    /// @notice it sets the extension of file containing metadata
    /// @dev it is to set file extension of metadata that has details to show along with image when the tokens are not revealed
    /// @param _newBaseExtension is the new extension of the metadata file
    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    /// @notice it stops/resume wallet from minting.
    /// @dev it is to stop/resume the minting process.Could be used when system is compromised.
    /// @param _state is the boolean to whther resume or pause the minting process.
    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    /// @notice it is to withraw funds from the paid mint
    /// @dev it withdraws the fund from minting to the wallet of owner
    function withdraw() public payable onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    /// @notice it to get track of public mint minted.
    /// @dev it to get track of public mint minted.
    function getPublicSaleAmount() public view onlyOwner returns (uint256){
    return publicFreeMinted;
    }
    /// @notice it to get track of pres sale mint minted.
    /// @dev it to get track of presale mint minted.
    function getPreSaleAmount() public view onlyOwner returns (uint256){
    return whitelistFreeMinted;
    }
    /// @notice it to track addresses that mints and thier amount
    /// @dev it is added to stop addresses from selling and minting again
    /// @param wallet is the wallet addr of minter
    function getMintedAmountByWallet(address wallet) public view returns (uint8){
    return mintedList[wallet];
    }
    /// @notice it sets the paid mint amount
    /// @dev it is to set the cap on paid mint
    /// @param paidMintLim is the uint256 to set paid mint amount limit
    function setPaidMintLimit(uint256 paidMintLim)
        public
        onlyOwner
    {
        paidMintedLimit=paidMintLim;
    }
    /// @notice it toggle the whitelistog
    /// @dev it toggle the whitelistog
    /// @param toggleWhitelistOG is the bool to toggle the whitelistog
    function setWhiteListOG(bool toggleWhitelistOG)
        public
        onlyOwner
    {
        onlyWhiteListedOG=toggleWhitelistOG;
    }
    /// @notice it toggle the whitelist
    /// @dev it toggle the whitelist
    /// @param toggleWhitelist is the bool to toggle the whitelist
    function setWhiteList(bool toggleWhitelist)
        public
        onlyOwner
    {
        onlyWhiteList=toggleWhitelist;
    }
    /// @notice it toggle the publicSale
    /// @dev it toggle the publicsale
    /// @param togglePublicSale is the bool to toggle the whitelist
    function setPublicSale(bool togglePublicSale)
        public
        onlyOwner
    {
        publicSale=togglePublicSale;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"address[]","name":"whiteListAdresesO","type":"address[]"},{"internalType":"address[]","name":"whiteListAdresesL","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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":[{"internalType":"address[]","name":"whiteListAdreses","type":"address[]"}],"name":"addWhiteListAddresesL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"whiteListAdreses","type":"address[]"}],"name":"addWhiteListAddresesO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getMintedAmountByWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPreSaleAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicSaleAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhiteListedL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhiteListedO","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitFreeL","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitFreeO","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitFreePublic","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitL","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitO","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitPublic","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhiteListedOG","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paidMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paidMintedLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"preSaleMintOG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"preSaleMintWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicFreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUsersO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_nftPerAddressLimitFreeO","type":"uint8"}],"name":"setNftPerAddressLimitFreeO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_nftPerAddressLimitFreePublic","type":"uint8"}],"name":"setNftPerAddressLimitFreePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_nftPerAddressLimitO","type":"uint8"}],"name":"setNftPerAddressLimitO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_nftPerAddressLimitPublic","type":"uint8"}],"name":"setNftPerAddressLimitPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhiteListed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"paidMintLim","type":"uint256"}],"name":"setPaidMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"togglePublicSale","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggleWhitelist","type":"bool"}],"name":"setWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggleWhitelistOG","type":"bool"}],"name":"setWhiteListOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_newmaxMintAmount","type":"uint8"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistLFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistLLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistOFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistOLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600860146101000a81548160ff0219169083151502179055506000600860156101000a81548160ff0219169083151502179055506001600860166101000a81548160ff0219169083151502179055506001600860176101000a81548160ff0219169083151502179055506000600860186101000a81548160ff0219169083151502179055506000600860196101000a81548160ff02191690831515021790555060056008601a6101000a81548160ff021916908360ff16021790555060026008601b6101000a81548160ff021916908360ff16021790555060056008601c6101000a81548160ff021916908360ff16021790555060016008601d6101000a81548160ff021916908360ff16021790555060056008601e6101000a81548160ff021916908360ff16021790555060016008601f6101000a81548160ff021916908360ff1602179055506005600960006101000a81548160ff021916908360ff1602179055506611c37937e08000600a55610780600b556000600c556000600d556000600e556000600f55600060105561012c60115560646012556101f46013556103e86014556040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060169080519060200190620001f892919062000b03565b503480156200020657600080fd5b506040516200665c3803806200665c83398181016040528101906200022c919062000d3f565b858581600290805190602001906200024692919062000b03565b5080600390805190602001906200025f92919062000b03565b5062000270620002fb60201b60201c565b6000819055505050620002986200028c6200030060201b60201c565b6200030860201b60201c565b620002a984620003ce60201b60201c565b620002ba83620003fa60201b60201c565b620002cb826200042660201b60201c565b620002dc81620004da60201b60201c565b620002ef3360146200058e60201b60201c565b505050505050620012dd565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003de620005b460201b60201c565b8060159080519060200190620003f692919062000b03565b5050565b6200040a620005b460201b60201c565b80601790805190602001906200042292919062000b03565b5050565b62000436620005b460201b60201c565b60005b81518161ffff161015620004d657600160186000848461ffff1681518110620004675762000466620011f8565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080620004cd906200116a565b91505062000439565b5050565b620004ea620005b460201b60201c565b60005b81518161ffff1610156200058a57600160196000848461ffff16815181106200051b576200051a620011f8565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808062000581906200116a565b915050620004ed565b5050565b620005b08282604051806020016040528060008152506200064560201b60201c565b5050565b620005c46200030060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005ea620006f660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000643576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063a9062000f73565b60405180910390fd5b565b6200065783836200072060201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14620006f157600080549050600083820390505b620006a060008683806001019450866200090960201b60201c565b620006d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811062000685578160005414620006ee57600080fd5b50505b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080549050600082141562000762576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b62000777600084838562000a7b60201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200080683620007e8600086600062000a8160201b60201c565b620007f98562000ab160201b60201c565b1762000ac160201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114620008a957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506200086c565b506000821415620008e6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505062000904600084838562000aec60201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200093762000af260201b60201c565b8786866040518563ffffffff1660e01b81526004016200095b949392919062000f1f565b602060405180830381600087803b1580156200097657600080fd5b505af1925050508015620009aa57506040513d601f19601f82011682018060405250810190620009a7919062000d0d565b60015b62000a28573d8060008114620009dd576040519150601f19603f3d011682016040523d82523d6000602084013e620009e2565b606091505b5060008151141562000a20576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e862000aa086868462000afa60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b82805462000b1190620010fe565b90600052602060002090601f01602090048101928262000b35576000855562000b81565b82601f1062000b5057805160ff191683800117855562000b81565b8280016001018555821562000b81579182015b8281111562000b8057825182559160200191906001019062000b63565b5b50905062000b90919062000b94565b5090565b5b8082111562000baf57600081600090555060010162000b95565b5090565b600062000bca62000bc48462000fbe565b62000f95565b9050808382526020820190508285602086028201111562000bf05762000bef6200125b565b5b60005b8581101562000c24578162000c09888262000c79565b84526020840193506020830192505060018101905062000bf3565b5050509392505050565b600062000c4562000c3f8462000fed565b62000f95565b90508281526020810184848401111562000c645762000c6362001260565b5b62000c71848285620010c8565b509392505050565b60008151905062000c8a81620012a9565b92915050565b600082601f83011262000ca85762000ca762001256565b5b815162000cba84826020860162000bb3565b91505092915050565b60008151905062000cd481620012c3565b92915050565b600082601f83011262000cf25762000cf162001256565b5b815162000d0484826020860162000c2e565b91505092915050565b60006020828403121562000d265762000d256200126a565b5b600062000d368482850162000cc3565b91505092915050565b60008060008060008060c0878903121562000d5f5762000d5e6200126a565b5b600087015167ffffffffffffffff81111562000d805762000d7f62001265565b5b62000d8e89828a0162000cda565b965050602087015167ffffffffffffffff81111562000db25762000db162001265565b5b62000dc089828a0162000cda565b955050604087015167ffffffffffffffff81111562000de45762000de362001265565b5b62000df289828a0162000cda565b945050606087015167ffffffffffffffff81111562000e165762000e1562001265565b5b62000e2489828a0162000cda565b935050608087015167ffffffffffffffff81111562000e485762000e4762001265565b5b62000e5689828a0162000c90565b92505060a087015167ffffffffffffffff81111562000e7a5762000e7962001265565b5b62000e8889828a0162000c90565b9150509295509295509295565b62000ea08162001050565b82525050565b600062000eb38262001023565b62000ebf81856200102e565b935062000ed1818560208601620010c8565b62000edc816200126f565b840191505092915050565b600062000ef66020836200103f565b915062000f038262001280565b602082019050919050565b62000f1981620010be565b82525050565b600060808201905062000f36600083018762000e95565b62000f45602083018662000e95565b62000f54604083018562000f0e565b818103606083015262000f68818462000ea6565b905095945050505050565b6000602082019050818103600083015262000f8e8162000ee7565b9050919050565b600062000fa162000fb4565b905062000faf828262001134565b919050565b6000604051905090565b600067ffffffffffffffff82111562000fdc5762000fdb62001227565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156200100b576200100a62001227565b5b62001016826200126f565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200105d826200109e565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620010e8578082015181840152602081019050620010cb565b83811115620010f8576000848401525b50505050565b600060028204905060018216806200111757607f821691505b602082108114156200112e576200112d620011c9565b5b50919050565b6200113f826200126f565b810181811067ffffffffffffffff8211171562001161576200116062001227565b5b80604052505050565b6000620011778262001090565b915061ffff8214156200118f576200118e6200119a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620012b48162001050565b8114620012c057600080fd5b50565b620012ce8162001064565b8114620012da57600080fd5b50565b61536f80620012ed6000396000f3fe6080604052600436106104105760003560e01c80636a03a9a81161021e578063b032837811610123578063da3ef23f116100ab578063e985e9c51161007a578063e985e9c514610ee7578063f2c4ce1e14610f24578063f2daa7c214610f4d578063f2fde38b14610f76578063f8f53e6f14610f9f57610410565b8063da3ef23f14610e4c578063dca172af14610e75578063de5b055014610e91578063e53aabd814610ebc57610410565b8063c6682862116100f2578063c668286214610d63578063c87b56dd14610d8e578063ce99184d14610dcb578063d5abeb0114610df6578063d74ba3a414610e2157610410565b8063b032837814610cb8578063b88d4fde14610ce1578063bd57113314610cfd578063c58244c414610d3a57610410565b806395d89b41116101a6578063a22cb46511610175578063a22cb46514610bfb578063a475907414610c24578063a475b5dd14610c4f578063a6eac49214610c66578063acf710bb14610c8f57610410565b806395d89b4114610b4f5780639baf609c14610b7a5780639eb1ef9114610ba55780639f182cd114610bd057610410565b8063858e83b5116101ed578063858e83b514610a7557806385a9f4ba14610a91578063885bf15c14610abc5780638da5cb5b14610ae75780638f37b3b114610b1257610410565b80636a03a9a8146109cd57806370a08231146109f8578063715018a614610a35578063793a9e4f14610a4c57610410565b806334d7aae31161032457806351830227116102ac5780635aca1bb61161027b5780635aca1bb6146108d65780635c975abb146108ff5780636352211e1461092a5780636397062b1461096757806367f734b5146109a457610410565b8063518302271461082c57806351c7a89c14610857578063559a521d1461088257806355f804b3146108ad57610410565b806340b9e530116102f357806340b9e5301461076a57806342842e0e1461079357806344a0d68a146107af57806345919a05146107d8578063494565461461080157610410565b806334d7aae3146106e1578063399ffd5e1461070a5780633ccfd60b1461073557806340637d561461073f57610410565b806318160ddd116103a75780632806b8fb116103765780632806b8fb1461060c5780632fc47d081461063757806333511cd21461066257806333bc1c5c1461068d57806333f88d22146106b857610410565b806318160ddd1461056f5780631dcf6a871461059a578063239c70ae146105c557806323b872dd146105f057610410565b8063081812fc116103e3578063081812fc146104c2578063095ea7b3146104ff57806313faede61461051b578063172e22cf1461054657610410565b806301ffc9a71461041557806302329a29146104525780630260fa391461047b57806306fdde0314610497575b600080fd5b34801561042157600080fd5b5061043c6004803603810190610437919061409b565b610fc8565b604051610449919061463c565b60405180910390f35b34801561045e57600080fd5b506104796004803603810190610474919061406e565b61105a565b005b6104956004803603810190610490919061416b565b61107f565b005b3480156104a357600080fd5b506104ac611453565b6040516104b99190614657565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e4919061413e565b6114e5565b6040516104f691906145d5565b60405180910390f35b61051960048036038101906105149190613fe5565b611564565b005b34801561052757600080fd5b506105306116a8565b60405161053d91906148b9565b60405180910390f35b34801561055257600080fd5b5061056d6004803603810190610568919061413e565b6116ae565b005b34801561057b57600080fd5b506105846116c0565b60405161059191906148b9565b60405180910390f35b3480156105a657600080fd5b506105af6116d7565b6040516105bc91906148b9565b60405180910390f35b3480156105d157600080fd5b506105da6116e9565b6040516105e791906148d4565b60405180910390f35b61060a60048036038101906106059190613ecf565b6116fc565b005b34801561061857600080fd5b50610621611a21565b60405161062e91906148b9565b60405180910390f35b34801561064357600080fd5b5061064c611a27565b60405161065991906148b9565b60405180910390f35b34801561066e57600080fd5b50610677611a2d565b60405161068491906148b9565b60405180910390f35b34801561069957600080fd5b506106a2611a33565b6040516106af919061463c565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da919061413e565b611a46565b005b3480156106ed57600080fd5b506107086004803603810190610703919061406e565b611a5b565b005b34801561071657600080fd5b5061071f611a80565b60405161072c91906148b9565b60405180910390f35b61073d611a86565b005b34801561074b57600080fd5b50610754611b0e565b60405161076191906148d4565b60405180910390f35b34801561077657600080fd5b50610791600480360381019061078c9190613e62565b611b21565b005b6107ad60048036038101906107a89190613ecf565b611c10565b005b3480156107bb57600080fd5b506107d660048036038101906107d1919061413e565b611c30565b005b3480156107e457600080fd5b506107ff60048036038101906107fa9190614025565b611c42565b005b34801561080d57600080fd5b50610816611ce7565b60405161082391906148d4565b60405180910390f35b34801561083857600080fd5b50610841611cfa565b60405161084e919061463c565b60405180910390f35b34801561086357600080fd5b5061086c611d0d565b60405161087991906148d4565b60405180910390f35b34801561088e57600080fd5b50610897611d20565b6040516108a491906148b9565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf91906140f5565b611d26565b005b3480156108e257600080fd5b506108fd60048036038101906108f8919061406e565b611d48565b005b34801561090b57600080fd5b50610914611d6d565b604051610921919061463c565b60405180910390f35b34801561093657600080fd5b50610951600480360381019061094c919061413e565b611d80565b60405161095e91906145d5565b60405180910390f35b34801561097357600080fd5b5061098e60048036038101906109899190613e62565b611d92565b60405161099b919061463c565b60405180910390f35b3480156109b057600080fd5b506109cb60048036038101906109c6919061416b565b611ded565b005b3480156109d957600080fd5b506109e2611e13565b6040516109ef91906148b9565b60405180910390f35b348015610a0457600080fd5b50610a1f6004803603810190610a1a9190613e62565b611e19565b604051610a2c91906148b9565b60405180910390f35b348015610a4157600080fd5b50610a4a611ed2565b005b348015610a5857600080fd5b50610a736004803603810190610a6e919061416b565b611ee6565b005b610a8f6004803603810190610a8a919061416b565b611f0c565b005b348015610a9d57600080fd5b50610aa66121e6565b604051610ab391906148d4565b60405180910390f35b348015610ac857600080fd5b50610ad16121f9565b604051610ade91906148d4565b60405180910390f35b348015610af357600080fd5b50610afc61220c565b604051610b0991906145d5565b60405180910390f35b348015610b1e57600080fd5b50610b396004803603810190610b349190613e62565b612236565b604051610b4691906148d4565b60405180910390f35b348015610b5b57600080fd5b50610b6461228c565b604051610b719190614657565b60405180910390f35b348015610b8657600080fd5b50610b8f61231e565b604051610b9c91906148b9565b60405180910390f35b348015610bb157600080fd5b50610bba612324565b604051610bc791906148b9565b60405180910390f35b348015610bdc57600080fd5b50610be561232a565b604051610bf2919061463c565b60405180910390f35b348015610c0757600080fd5b50610c226004803603810190610c1d9190613fa5565b61233d565b005b348015610c3057600080fd5b50610c39612448565b604051610c46919061463c565b60405180910390f35b348015610c5b57600080fd5b50610c6461245b565b005b348015610c7257600080fd5b50610c8d6004803603810190610c889190614025565b612480565b005b348015610c9b57600080fd5b50610cb66004803603810190610cb1919061416b565b612525565b005b348015610cc457600080fd5b50610cdf6004803603810190610cda919061406e565b61254b565b005b610cfb6004803603810190610cf69190613f22565b612570565b005b348015610d0957600080fd5b50610d246004803603810190610d1f9190613e62565b6125e3565b604051610d31919061463c565b60405180910390f35b348015610d4657600080fd5b50610d616004803603810190610d5c919061416b565b61263e565b005b348015610d6f57600080fd5b50610d78612664565b604051610d859190614657565b60405180910390f35b348015610d9a57600080fd5b50610db56004803603810190610db0919061413e565b6126f2565b604051610dc29190614657565b60405180910390f35b348015610dd757600080fd5b50610de061284e565b604051610ded91906148b9565b60405180910390f35b348015610e0257600080fd5b50610e0b612860565b604051610e1891906148b9565b60405180910390f35b348015610e2d57600080fd5b50610e36612866565b604051610e4391906148b9565b60405180910390f35b348015610e5857600080fd5b50610e736004803603810190610e6e91906140f5565b61286c565b005b610e8f6004803603810190610e8a919061416b565b61288e565b005b348015610e9d57600080fd5b50610ea6612c62565b604051610eb3919061463c565b60405180910390f35b348015610ec857600080fd5b50610ed1612c75565b604051610ede91906148d4565b60405180910390f35b348015610ef357600080fd5b50610f0e6004803603810190610f099190613e8f565b612c88565b604051610f1b919061463c565b60405180910390f35b348015610f3057600080fd5b50610f4b6004803603810190610f4691906140f5565b612d1c565b005b348015610f5957600080fd5b50610f746004803603810190610f6f919061406e565b612d3e565b005b348015610f8257600080fd5b50610f9d6004803603810190610f989190613e62565b612d63565b005b348015610fab57600080fd5b50610fc66004803603810190610fc1919061416b565b612de7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061102357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806110535750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b611062612e0d565b80600860146101000a81548160ff02191690831515021790555050565b80600860149054906101000a900460ff16156110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790614839565b60405180910390fd5b60008160ff1611611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90614859565b60405180910390fd5b600b548160ff166111256116c0565b61112f9190614a05565b1115611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116790614719565b60405180910390fd5b6008601a9054906101000a900460ff1660ff16601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16826111db9190614a5b565b60ff16111561121f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121690614799565b60405180910390fd5b600860169054906101000a900460ff1661126e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611265906146f9565b60405180910390fd5b600860179054906101000a900460ff166112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b490614819565b60405180910390fd5b6000601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1690506008601c9054906101000a900460ff1660ff16818460ff166113339190614a05565b1115611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90614899565b60405180910390fd5b61137d33611d92565b6113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b390614879565b60405180910390fd5b6113c533611d92565b1561144e576008601c9054906101000a900460ff1660ff16811061141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590614759565b60405180910390fd5b600061143d6008601b9054906101000a900460ff1660ff166001612e8b565b905061144c843483600161300e565b505b505050565b60606002805461146290614c22565b80601f016020809104026020016040519081016040528092919081815260200182805461148e90614c22565b80156114db5780601f106114b0576101008083540402835291602001916114db565b820191906000526020600020905b8154815290600101906020018083116114be57829003601f168201915b5050505050905090565b60006114f08261330d565b611526576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061156f82611d80565b90508073ffffffffffffffffffffffffffffffffffffffff1661159061336c565b73ffffffffffffffffffffffffffffffffffffffff16146115f3576115bc816115b761336c565b612c88565b6115f2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a5481565b6116b6612e0d565b8060148190555050565b60006116ca613374565b6001546000540303905090565b60006116e1612e0d565b600c54905090565b6008601a9054906101000a900460ff1681565b600061170782613379565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461176e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061177a84613447565b91509150611790818761178b61336c565b61346e565b6117dc576117a5866117a061336c565b612c88565b6117db576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611843576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61185086868660016134b2565b801561185b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611929856119058888876134b8565b7c0200000000000000000000000000000000000000000000000000000000176134e0565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156119b15760006001850190506000600460008381526020019081526020016000205414156119af5760005481146119ae578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a19868686600161350b565b505050505050565b60105481565b600c5481565b600f5481565b600860199054906101000a900460ff1681565b611a4e612e0d565b611a583382613511565b50565b611a63612e0d565b80600860186101000a81548160ff02191690831515021790555050565b60135481565b611a8e612e0d565b6000611a9861220c565b73ffffffffffffffffffffffffffffffffffffffff1647604051611abb906145c0565b60006040518083038185875af1925050503d8060008114611af8576040519150601f19603f3d011682016040523d82523d6000602084013e611afd565b606091505b5050905080611b0b57600080fd5b50565b6008601c9054906101000a900460ff1681565b611b29612e0d565b601860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac906147b9565b60405180910390fd5b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611c2b83838360405180602001604052806000815250612570565b505050565b611c38612e0d565b80600a8190555050565b611c4a612e0d565b60005b81518161ffff161015611ce357600160186000848461ffff1681518110611c7757611c76614db7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611cdb90614c85565b915050611c4d565b5050565b6008601b9054906101000a900460ff1681565b600860159054906101000a900460ff1681565b6008601f9054906101000a900460ff1681565b600e5481565b611d2e612e0d565b8060159080519060200190611d44929190613bc3565b5050565b611d50612e0d565b80600860196101000a81548160ff02191690831515021790555050565b600860149054906101000a900460ff1681565b6000611d8b82613379565b9050919050565b600080601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905080915050919050565b611df5612e0d565b806008601c6101000a81548160ff021916908360ff16021790555050565b60125481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e81576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611eda612e0d565b611ee4600061352f565b565b611eee612e0d565b80600960006101000a81548160ff021916908360ff16021790555050565b80600860149054906101000a900460ff1615611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5490614839565b60405180910390fd5b60008160ff1611611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90614859565b60405180910390fd5b600b548160ff16611fb26116c0565b611fbc9190614a05565b1115611ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff490614719565b60405180910390fd5b6008601a9054906101000a900460ff1660ff16601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16826120689190614a5b565b60ff1611156120ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a390614799565b60405180910390fd5b600860199054906101000a900460ff166120fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f290614739565b60405180910390fd5b6000601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff169050600960009054906101000a900460ff1660ff16818460ff166121719190614a05565b11156121b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a9906146d9565b60405180910390fd5b60006121d16008601f9054906101000a900460ff1660ff166000612e8b565b90506121e0843483600061300e565b50505050565b6008601d9054906101000a900460ff1681565b600960009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60606003805461229b90614c22565b80601f01602080910402602001604051908101604052809291908181526020018280546122c790614c22565b80156123145780601f106122e957610100808354040283529160200191612314565b820191906000526020600020905b8154815290600101906020018083116122f757829003601f168201915b5050505050905090565b60145481565b600d5481565b600860189054906101000a900460ff1681565b806007600061234a61336c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123f761336c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161243c919061463c565b60405180910390a35050565b600860169054906101000a900460ff1681565b612463612e0d565b6001600860156101000a81548160ff021916908315150217905550565b612488612e0d565b60005b81518161ffff16101561252157600160196000848461ffff16815181106124b5576124b4614db7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061251990614c85565b91505061248b565b5050565b61252d612e0d565b806008601f6101000a81548160ff021916908360ff16021790555050565b612553612e0d565b80600860166101000a81548160ff02191690831515021790555050565b61257b8484846116fc565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125dd576125a6848484846135f5565b6125dc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600080601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905080915050919050565b612646612e0d565b806008601b6101000a81548160ff021916908360ff16021790555050565b6016805461267190614c22565b80601f016020809104026020016040519081016040528092919081815260200182805461269d90614c22565b80156126ea5780601f106126bf576101008083540402835291602001916126ea565b820191906000526020600020905b8154815290600101906020018083116126cd57829003601f168201915b505050505081565b60606126fd8261330d565b61273c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612733906147f9565b60405180910390fd5b60001515600860159054906101000a900460ff16151514156127ea576017805461276590614c22565b80601f016020809104026020016040519081016040528092919081815260200182805461279190614c22565b80156127de5780601f106127b3576101008083540402835291602001916127de565b820191906000526020600020905b8154815290600101906020018083116127c157829003601f168201915b50505050509050612849565b60006127f4613755565b9050600081511115612835578061280a846137e7565b601660405160200161281e9392919061458f565b604051602081830303815290604052915050612849565b604051806020016040528060008152509150505b919050565b6000612858612e0d565b600f54905090565b600b5481565b60115481565b612874612e0d565b806016908051906020019061288a929190613bc3565b5050565b80600860149054906101000a900460ff16156128df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d690614839565b60405180910390fd5b60008160ff1611612925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291c90614859565b60405180910390fd5b600b548160ff166129346116c0565b61293e9190614a05565b111561297f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297690614719565b60405180910390fd5b6008601a9054906101000a900460ff1660ff16601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16826129ea9190614a5b565b60ff161115612a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2590614799565b60405180910390fd5b600860169054906101000a900460ff16612a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a74906146f9565b60405180910390fd5b600860189054906101000a900460ff16612acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac390614779565b60405180910390fd5b6000601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1690506008601e9054906101000a900460ff1660ff16818460ff16612b429190614a05565b1115612b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7a90614899565b60405180910390fd5b612b8c336125e3565b612bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc290614879565b60405180910390fd5b612bd4336125e3565b15612c5d576008601e9054906101000a900460ff1660ff168110612c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2490614759565b60405180910390fd5b6000612c4c6008601d9054906101000a900460ff1660ff166002612e8b565b9050612c5b843483600261300e565b505b505050565b600860179054906101000a900460ff1681565b6008601e9054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612d24612e0d565b8060179080519060200190612d3a929190613bc3565b5050565b612d46612e0d565b80600860176101000a81548160ff02191690831515021790555050565b612d6b612e0d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd2906146b9565b60405180910390fd5b612de48161352f565b50565b612def612e0d565b806008601a6101000a81548160ff021916908360ff16021790555050565b612e15613948565b73ffffffffffffffffffffffffffffffffffffffff16612e3361220c565b73ffffffffffffffffffffffffffffffffffffffff1614612e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e80906147d9565b60405180910390fd5b565b600080601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff169050808411156130025760008185612ef69190614b1d565b905060018460ff16148015612f0e5750601254600d54105b15612f4d57600d54601254612f239190614b1d565b811015612f34578092505050613008565b600d54601254612f449190614b1d565b92505050613008565b60028460ff16148015612f635750601154600e54105b15612fa257600e54601154612f789190614b1d565b811015612f89578092505050613008565b600e54601154612f999190614b1d565b92505050613008565b60008460ff16148015612fb85750601354600f54105b15612ff757600f54601354612fcd9190614b1d565b811015612fde578092505050613008565b600f54601354612fee9190614b1d565b92505050613008565b600092505050613008565b60009150505b92915050565b818460ff16116131345760018160ff161415613057578360ff16600c546130359190614a05565b600c819055508360ff16600d5461304c9190614a05565b600d819055506130af565b60028160ff161415613096578360ff16600c546130749190614a05565b600c819055508360ff16600e5461308b9190614a05565b600e819055506130ae565b8360ff16600f546130a79190614a05565b600f819055505b5b6130bc338560ff16613511565b83601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166131179190614a5b565b92506101000a81548160ff021916908360ff160217905550613307565b60018160ff16141561316d5781600c5461314e9190614a05565b600c8190555081600d546131629190614a05565b600d819055506131bc565b60028160ff1614156131a65781600c546131879190614a05565b600c8190555081600e5461319b9190614a05565b600e819055506131bb565b81600f546131b49190614a05565b600f819055505b5b6000828560ff166131cd9190614b1d565b9050600a54816131dd9190614ac3565b84101561321f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321690614679565b60405180910390fd5b601454816010546132309190614a05565b1115613271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326890614699565b60405180910390fd5b61327e338660ff16613511565b84601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166132d99190614a5b565b92506101000a81548160ff021916908360ff160217905550806010546132ff9190614a05565b601081905550505b50505050565b600081613318613374565b11158015613327575060005482105b8015613365575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080613388613374565b116134105760005481101561340f5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561340d575b60008114156134035760046000836001900393508381526020019081526020016000205490506133d8565b8092505050613442565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86134cf868684613950565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61352b828260405180602001604052806000815250613959565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261361b61336c565b8786866040518563ffffffff1660e01b815260040161363d94939291906145f0565b602060405180830381600087803b15801561365757600080fd5b505af192505050801561368857506040513d601f19601f8201168201806040525081019061368591906140c8565b60015b613702573d80600081146136b8576040519150601f19603f3d011682016040523d82523d6000602084013e6136bd565b606091505b506000815114156136fa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606015805461376490614c22565b80601f016020809104026020016040519081016040528092919081815260200182805461379090614c22565b80156137dd5780601f106137b2576101008083540402835291602001916137dd565b820191906000526020600020905b8154815290600101906020018083116137c057829003601f168201915b5050505050905090565b6060600082141561382f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613943565b600082905060005b6000821461386157808061384a90614cb0565b915050600a8261385a9190614a92565b9150613837565b60008167ffffffffffffffff81111561387d5761387c614de6565b5b6040519080825280601f01601f1916602001820160405280156138af5781602001600182028036833780820191505090505b5090505b6000851461393c576001826138c89190614b1d565b9150600a856138d79190614cf9565b60306138e39190614a05565b60f81b8183815181106138f9576138f8614db7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856139359190614a92565b94506138b3565b8093505050505b919050565b600033905090565b60009392505050565b61396383836139f6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146139f157600080549050600083820390505b6139a360008683806001019450866135f5565b6139d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106139905781600054146139ee57600080fd5b50505b505050565b6000805490506000821415613a37576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613a4460008483856134b2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613abb83613aac60008660006134b8565b613ab585613bb3565b176134e0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613b5c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613b21565b506000821415613b98576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613bae600084838561350b565b505050565b60006001821460e11b9050919050565b828054613bcf90614c22565b90600052602060002090601f016020900481019282613bf15760008555613c38565b82601f10613c0a57805160ff1916838001178555613c38565b82800160010185558215613c38579182015b82811115613c37578251825591602001919060010190613c1c565b5b509050613c459190613c49565b5090565b5b80821115613c62576000816000905550600101613c4a565b5090565b6000613c79613c7484614914565b6148ef565b90508083825260208201905082856020860282011115613c9c57613c9b614e1a565b5b60005b85811015613ccc5781613cb28882613d5a565b845260208401935060208301925050600181019050613c9f565b5050509392505050565b6000613ce9613ce484614940565b6148ef565b905082815260208101848484011115613d0557613d04614e1f565b5b613d10848285614be0565b509392505050565b6000613d2b613d2684614971565b6148ef565b905082815260208101848484011115613d4757613d46614e1f565b5b613d52848285614be0565b509392505050565b600081359050613d69816152c6565b92915050565b600082601f830112613d8457613d83614e15565b5b8135613d94848260208601613c66565b91505092915050565b600081359050613dac816152dd565b92915050565b600081359050613dc1816152f4565b92915050565b600081519050613dd6816152f4565b92915050565b600082601f830112613df157613df0614e15565b5b8135613e01848260208601613cd6565b91505092915050565b600082601f830112613e1f57613e1e614e15565b5b8135613e2f848260208601613d18565b91505092915050565b600081359050613e478161530b565b92915050565b600081359050613e5c81615322565b92915050565b600060208284031215613e7857613e77614e29565b5b6000613e8684828501613d5a565b91505092915050565b60008060408385031215613ea657613ea5614e29565b5b6000613eb485828601613d5a565b9250506020613ec585828601613d5a565b9150509250929050565b600080600060608486031215613ee857613ee7614e29565b5b6000613ef686828701613d5a565b9350506020613f0786828701613d5a565b9250506040613f1886828701613e38565b9150509250925092565b60008060008060808587031215613f3c57613f3b614e29565b5b6000613f4a87828801613d5a565b9450506020613f5b87828801613d5a565b9350506040613f6c87828801613e38565b925050606085013567ffffffffffffffff811115613f8d57613f8c614e24565b5b613f9987828801613ddc565b91505092959194509250565b60008060408385031215613fbc57613fbb614e29565b5b6000613fca85828601613d5a565b9250506020613fdb85828601613d9d565b9150509250929050565b60008060408385031215613ffc57613ffb614e29565b5b600061400a85828601613d5a565b925050602061401b85828601613e38565b9150509250929050565b60006020828403121561403b5761403a614e29565b5b600082013567ffffffffffffffff81111561405957614058614e24565b5b61406584828501613d6f565b91505092915050565b60006020828403121561408457614083614e29565b5b600061409284828501613d9d565b91505092915050565b6000602082840312156140b1576140b0614e29565b5b60006140bf84828501613db2565b91505092915050565b6000602082840312156140de576140dd614e29565b5b60006140ec84828501613dc7565b91505092915050565b60006020828403121561410b5761410a614e29565b5b600082013567ffffffffffffffff81111561412957614128614e24565b5b61413584828501613e0a565b91505092915050565b60006020828403121561415457614153614e29565b5b600061416284828501613e38565b91505092915050565b60006020828403121561418157614180614e29565b5b600061418f84828501613e4d565b91505092915050565b6141a181614b51565b82525050565b6141b081614b63565b82525050565b60006141c1826149b7565b6141cb81856149cd565b93506141db818560208601614bef565b6141e481614e2e565b840191505092915050565b60006141fa826149c2565b61420481856149e9565b9350614214818560208601614bef565b61421d81614e2e565b840191505092915050565b6000614233826149c2565b61423d81856149fa565b935061424d818560208601614bef565b80840191505092915050565b6000815461426681614c22565b61427081866149fa565b9450600182166000811461428b576001811461429c576142cf565b60ff198316865281860193506142cf565b6142a5856149a2565b60005b838110156142c7578154818901526001820191506020810190506142a8565b838801955050505b50505092915050565b60006142e5601e836149e9565b91506142f082614e3f565b602082019050919050565b60006143086015836149e9565b915061431382614e68565b602082019050919050565b600061432b6026836149e9565b915061433682614e91565b604082019050919050565b600061434e602b836149e9565b915061435982614ee0565b604082019050919050565b60006143716020836149e9565b915061437c82614f2f565b602082019050919050565b6000614394601e836149e9565b915061439f82614f58565b602082019050919050565b60006143b76021836149e9565b91506143c282614f81565b604082019050919050565b60006143da6027836149e9565b91506143e582614fd0565b604082019050919050565b60006143fd6023836149e9565b91506144088261501f565b604082019050919050565b6000614420601b836149e9565b915061442b8261506e565b602082019050919050565b60006144436020836149e9565b915061444e82615097565b602082019050919050565b60006144666020836149e9565b9150614471826150c0565b602082019050919050565b6000614489602f836149e9565b9150614494826150e9565b604082019050919050565b60006144ac6023836149e9565b91506144b782615138565b604082019050919050565b60006144cf601b836149e9565b91506144da82615187565b602082019050919050565b60006144f26000836149de565b91506144fd826151b0565b600082019050919050565b60006145156024836149e9565b9150614520826151b3565b604082019050919050565b6000614538604b836149e9565b915061454382615202565b606082019050919050565b600061455b602a836149e9565b915061456682615277565b604082019050919050565b61457a81614bc9565b82525050565b61458981614bd3565b82525050565b600061459b8286614228565b91506145a78285614228565b91506145b38284614259565b9150819050949350505050565b60006145cb826144e5565b9150819050919050565b60006020820190506145ea6000830184614198565b92915050565b60006080820190506146056000830187614198565b6146126020830186614198565b61461f6040830185614571565b818103606083015261463181846141b6565b905095945050505050565b600060208201905061465160008301846141a7565b92915050565b6000602082019050818103600083015261467181846141ef565b905092915050565b60006020820190508181036000830152614692816142d8565b9050919050565b600060208201905081810360008301526146b2816142fb565b9050919050565b600060208201905081810360008301526146d28161431e565b9050919050565b600060208201905081810360008301526146f281614341565b9050919050565b6000602082019050818103600083015261471281614364565b9050919050565b6000602082019050818103600083015261473281614387565b9050919050565b60006020820190508181036000830152614752816143aa565b9050919050565b60006020820190508181036000830152614772816143cd565b9050919050565b60006020820190508181036000830152614792816143f0565b9050919050565b600060208201905081810360008301526147b281614413565b9050919050565b600060208201905081810360008301526147d281614436565b9050919050565b600060208201905081810360008301526147f281614459565b9050919050565b600060208201905081810360008301526148128161447c565b9050919050565b600060208201905081810360008301526148328161449f565b9050919050565b60006020820190508181036000830152614852816144c2565b9050919050565b6000602082019050818103600083015261487281614508565b9050919050565b600060208201905081810360008301526148928161452b565b9050919050565b600060208201905081810360008301526148b28161454e565b9050919050565b60006020820190506148ce6000830184614571565b92915050565b60006020820190506148e96000830184614580565b92915050565b60006148f961490a565b90506149058282614c54565b919050565b6000604051905090565b600067ffffffffffffffff82111561492f5761492e614de6565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561495b5761495a614de6565b5b61496482614e2e565b9050602081019050919050565b600067ffffffffffffffff82111561498c5761498b614de6565b5b61499582614e2e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a1082614bc9565b9150614a1b83614bc9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a5057614a4f614d2a565b5b828201905092915050565b6000614a6682614bd3565b9150614a7183614bd3565b92508260ff03821115614a8757614a86614d2a565b5b828201905092915050565b6000614a9d82614bc9565b9150614aa883614bc9565b925082614ab857614ab7614d59565b5b828204905092915050565b6000614ace82614bc9565b9150614ad983614bc9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b1257614b11614d2a565b5b828202905092915050565b6000614b2882614bc9565b9150614b3383614bc9565b925082821015614b4657614b45614d2a565b5b828203905092915050565b6000614b5c82614ba9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614c0d578082015181840152602081019050614bf2565b83811115614c1c576000848401525b50505050565b60006002820490506001821680614c3a57607f821691505b60208210811415614c4e57614c4d614d88565b5b50919050565b614c5d82614e2e565b810181811067ffffffffffffffff82111715614c7c57614c7b614de6565b5b80604052505050565b6000614c9082614b9b565b915061ffff821415614ca557614ca4614d2a565b5b600182019050919050565b6000614cbb82614bc9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cee57614ced614d2a565b5b600182019050919050565b6000614d0482614bc9565b9150614d0f83614bc9565b925082614d1f57614d1e614d59565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e7375666669656369656e742066756e6473207472616e7366657265640000600082015250565b7f70616964206c696d697420697320657863656465640000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206c6d6974206f6620746f6b656e7320657863656564656420666f722060008201527f7075626c69632073616c65000000000000000000000000000000000000000000602082015250565b7f5072652073616c65206973206e6f74206163746976652063757272656e746c79600082015250565b7f496e7375666669656369656e7420746f6b656e7320617661696c61626c650000600082015250565b7f5075626c69632073616c652069732063757272656e746c7920696e616374697660008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206c6d6974206f6620746f6b656e7320657863656564656420666f722060008201527f4f47206c69737400000000000000000000000000000000000000000000000000602082015250565b7f5072652073616c6520574c206973206e6f74206163746976652063757272656e60008201527f746c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206c6d6974206f6620746f6b656e732065786365656465640000000000600082015250565b7f4572726f723a2053656e646572206973206e6f742077686974656c6973746564600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5072652073616c65204f47206973206e6f74206163746976652063757272656e60008201527f746c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e672069732063757272656e746c79207061757365640000000000600082015250565b50565b7f4d696e7420616d6f756e742073686f756c64206265206772656174657220746860008201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b7f54686973204164726573736573206973206e6f742077686974656c697374656460008201527f2c20596f752063616e204d696e74204d61657374726f2773204d697820696e2060208201527f5075626c69632053616c65000000000000000000000000000000000000000000604082015250565b7f4d6178206c6d6974206f6620746f6b656e7320657863656564656420666f722060008201527f57686974656c6973747300000000000000000000000000000000000000000000602082015250565b6152cf81614b51565b81146152da57600080fd5b50565b6152e681614b63565b81146152f157600080fd5b50565b6152fd81614b6f565b811461530857600080fd5b50565b61531481614bc9565b811461531f57600080fd5b50565b61532b81614bd3565b811461533657600080fd5b5056fea2646970667358221220e2f00fbf1b1904039862b201e54183d2d99513f8ad456f0ccbd6bf0212ed1b9264736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000000c4d61657374726f73204d6978000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4d414200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f62616679626569666c7a36626635356962736361616d6d67636d6c6b6d63327175326e323464757a6b67716a346f69656171636a616f62707768652e697066732e6e667473746f726167652e6c696e6b2f00000000000000000000000000000000000000000000000000000000000000000000000000006968747470733a2f2f626166796265696665673362373776346c777463706f7a6a356b736e766d626572637132677577666a7074707a34776b73353637766e61706361652e697066732e6e667473746f726167652e6c696e6b2f756e72657665616c65642e6a736f6e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106104105760003560e01c80636a03a9a81161021e578063b032837811610123578063da3ef23f116100ab578063e985e9c51161007a578063e985e9c514610ee7578063f2c4ce1e14610f24578063f2daa7c214610f4d578063f2fde38b14610f76578063f8f53e6f14610f9f57610410565b8063da3ef23f14610e4c578063dca172af14610e75578063de5b055014610e91578063e53aabd814610ebc57610410565b8063c6682862116100f2578063c668286214610d63578063c87b56dd14610d8e578063ce99184d14610dcb578063d5abeb0114610df6578063d74ba3a414610e2157610410565b8063b032837814610cb8578063b88d4fde14610ce1578063bd57113314610cfd578063c58244c414610d3a57610410565b806395d89b41116101a6578063a22cb46511610175578063a22cb46514610bfb578063a475907414610c24578063a475b5dd14610c4f578063a6eac49214610c66578063acf710bb14610c8f57610410565b806395d89b4114610b4f5780639baf609c14610b7a5780639eb1ef9114610ba55780639f182cd114610bd057610410565b8063858e83b5116101ed578063858e83b514610a7557806385a9f4ba14610a91578063885bf15c14610abc5780638da5cb5b14610ae75780638f37b3b114610b1257610410565b80636a03a9a8146109cd57806370a08231146109f8578063715018a614610a35578063793a9e4f14610a4c57610410565b806334d7aae31161032457806351830227116102ac5780635aca1bb61161027b5780635aca1bb6146108d65780635c975abb146108ff5780636352211e1461092a5780636397062b1461096757806367f734b5146109a457610410565b8063518302271461082c57806351c7a89c14610857578063559a521d1461088257806355f804b3146108ad57610410565b806340b9e530116102f357806340b9e5301461076a57806342842e0e1461079357806344a0d68a146107af57806345919a05146107d8578063494565461461080157610410565b806334d7aae3146106e1578063399ffd5e1461070a5780633ccfd60b1461073557806340637d561461073f57610410565b806318160ddd116103a75780632806b8fb116103765780632806b8fb1461060c5780632fc47d081461063757806333511cd21461066257806333bc1c5c1461068d57806333f88d22146106b857610410565b806318160ddd1461056f5780631dcf6a871461059a578063239c70ae146105c557806323b872dd146105f057610410565b8063081812fc116103e3578063081812fc146104c2578063095ea7b3146104ff57806313faede61461051b578063172e22cf1461054657610410565b806301ffc9a71461041557806302329a29146104525780630260fa391461047b57806306fdde0314610497575b600080fd5b34801561042157600080fd5b5061043c6004803603810190610437919061409b565b610fc8565b604051610449919061463c565b60405180910390f35b34801561045e57600080fd5b506104796004803603810190610474919061406e565b61105a565b005b6104956004803603810190610490919061416b565b61107f565b005b3480156104a357600080fd5b506104ac611453565b6040516104b99190614657565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e4919061413e565b6114e5565b6040516104f691906145d5565b60405180910390f35b61051960048036038101906105149190613fe5565b611564565b005b34801561052757600080fd5b506105306116a8565b60405161053d91906148b9565b60405180910390f35b34801561055257600080fd5b5061056d6004803603810190610568919061413e565b6116ae565b005b34801561057b57600080fd5b506105846116c0565b60405161059191906148b9565b60405180910390f35b3480156105a657600080fd5b506105af6116d7565b6040516105bc91906148b9565b60405180910390f35b3480156105d157600080fd5b506105da6116e9565b6040516105e791906148d4565b60405180910390f35b61060a60048036038101906106059190613ecf565b6116fc565b005b34801561061857600080fd5b50610621611a21565b60405161062e91906148b9565b60405180910390f35b34801561064357600080fd5b5061064c611a27565b60405161065991906148b9565b60405180910390f35b34801561066e57600080fd5b50610677611a2d565b60405161068491906148b9565b60405180910390f35b34801561069957600080fd5b506106a2611a33565b6040516106af919061463c565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da919061413e565b611a46565b005b3480156106ed57600080fd5b506107086004803603810190610703919061406e565b611a5b565b005b34801561071657600080fd5b5061071f611a80565b60405161072c91906148b9565b60405180910390f35b61073d611a86565b005b34801561074b57600080fd5b50610754611b0e565b60405161076191906148d4565b60405180910390f35b34801561077657600080fd5b50610791600480360381019061078c9190613e62565b611b21565b005b6107ad60048036038101906107a89190613ecf565b611c10565b005b3480156107bb57600080fd5b506107d660048036038101906107d1919061413e565b611c30565b005b3480156107e457600080fd5b506107ff60048036038101906107fa9190614025565b611c42565b005b34801561080d57600080fd5b50610816611ce7565b60405161082391906148d4565b60405180910390f35b34801561083857600080fd5b50610841611cfa565b60405161084e919061463c565b60405180910390f35b34801561086357600080fd5b5061086c611d0d565b60405161087991906148d4565b60405180910390f35b34801561088e57600080fd5b50610897611d20565b6040516108a491906148b9565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf91906140f5565b611d26565b005b3480156108e257600080fd5b506108fd60048036038101906108f8919061406e565b611d48565b005b34801561090b57600080fd5b50610914611d6d565b604051610921919061463c565b60405180910390f35b34801561093657600080fd5b50610951600480360381019061094c919061413e565b611d80565b60405161095e91906145d5565b60405180910390f35b34801561097357600080fd5b5061098e60048036038101906109899190613e62565b611d92565b60405161099b919061463c565b60405180910390f35b3480156109b057600080fd5b506109cb60048036038101906109c6919061416b565b611ded565b005b3480156109d957600080fd5b506109e2611e13565b6040516109ef91906148b9565b60405180910390f35b348015610a0457600080fd5b50610a1f6004803603810190610a1a9190613e62565b611e19565b604051610a2c91906148b9565b60405180910390f35b348015610a4157600080fd5b50610a4a611ed2565b005b348015610a5857600080fd5b50610a736004803603810190610a6e919061416b565b611ee6565b005b610a8f6004803603810190610a8a919061416b565b611f0c565b005b348015610a9d57600080fd5b50610aa66121e6565b604051610ab391906148d4565b60405180910390f35b348015610ac857600080fd5b50610ad16121f9565b604051610ade91906148d4565b60405180910390f35b348015610af357600080fd5b50610afc61220c565b604051610b0991906145d5565b60405180910390f35b348015610b1e57600080fd5b50610b396004803603810190610b349190613e62565b612236565b604051610b4691906148d4565b60405180910390f35b348015610b5b57600080fd5b50610b6461228c565b604051610b719190614657565b60405180910390f35b348015610b8657600080fd5b50610b8f61231e565b604051610b9c91906148b9565b60405180910390f35b348015610bb157600080fd5b50610bba612324565b604051610bc791906148b9565b60405180910390f35b348015610bdc57600080fd5b50610be561232a565b604051610bf2919061463c565b60405180910390f35b348015610c0757600080fd5b50610c226004803603810190610c1d9190613fa5565b61233d565b005b348015610c3057600080fd5b50610c39612448565b604051610c46919061463c565b60405180910390f35b348015610c5b57600080fd5b50610c6461245b565b005b348015610c7257600080fd5b50610c8d6004803603810190610c889190614025565b612480565b005b348015610c9b57600080fd5b50610cb66004803603810190610cb1919061416b565b612525565b005b348015610cc457600080fd5b50610cdf6004803603810190610cda919061406e565b61254b565b005b610cfb6004803603810190610cf69190613f22565b612570565b005b348015610d0957600080fd5b50610d246004803603810190610d1f9190613e62565b6125e3565b604051610d31919061463c565b60405180910390f35b348015610d4657600080fd5b50610d616004803603810190610d5c919061416b565b61263e565b005b348015610d6f57600080fd5b50610d78612664565b604051610d859190614657565b60405180910390f35b348015610d9a57600080fd5b50610db56004803603810190610db0919061413e565b6126f2565b604051610dc29190614657565b60405180910390f35b348015610dd757600080fd5b50610de061284e565b604051610ded91906148b9565b60405180910390f35b348015610e0257600080fd5b50610e0b612860565b604051610e1891906148b9565b60405180910390f35b348015610e2d57600080fd5b50610e36612866565b604051610e4391906148b9565b60405180910390f35b348015610e5857600080fd5b50610e736004803603810190610e6e91906140f5565b61286c565b005b610e8f6004803603810190610e8a919061416b565b61288e565b005b348015610e9d57600080fd5b50610ea6612c62565b604051610eb3919061463c565b60405180910390f35b348015610ec857600080fd5b50610ed1612c75565b604051610ede91906148d4565b60405180910390f35b348015610ef357600080fd5b50610f0e6004803603810190610f099190613e8f565b612c88565b604051610f1b919061463c565b60405180910390f35b348015610f3057600080fd5b50610f4b6004803603810190610f4691906140f5565b612d1c565b005b348015610f5957600080fd5b50610f746004803603810190610f6f919061406e565b612d3e565b005b348015610f8257600080fd5b50610f9d6004803603810190610f989190613e62565b612d63565b005b348015610fab57600080fd5b50610fc66004803603810190610fc1919061416b565b612de7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061102357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806110535750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b611062612e0d565b80600860146101000a81548160ff02191690831515021790555050565b80600860149054906101000a900460ff16156110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790614839565b60405180910390fd5b60008160ff1611611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90614859565b60405180910390fd5b600b548160ff166111256116c0565b61112f9190614a05565b1115611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116790614719565b60405180910390fd5b6008601a9054906101000a900460ff1660ff16601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16826111db9190614a5b565b60ff16111561121f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121690614799565b60405180910390fd5b600860169054906101000a900460ff1661126e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611265906146f9565b60405180910390fd5b600860179054906101000a900460ff166112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b490614819565b60405180910390fd5b6000601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1690506008601c9054906101000a900460ff1660ff16818460ff166113339190614a05565b1115611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90614899565b60405180910390fd5b61137d33611d92565b6113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b390614879565b60405180910390fd5b6113c533611d92565b1561144e576008601c9054906101000a900460ff1660ff16811061141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590614759565b60405180910390fd5b600061143d6008601b9054906101000a900460ff1660ff166001612e8b565b905061144c843483600161300e565b505b505050565b60606002805461146290614c22565b80601f016020809104026020016040519081016040528092919081815260200182805461148e90614c22565b80156114db5780601f106114b0576101008083540402835291602001916114db565b820191906000526020600020905b8154815290600101906020018083116114be57829003601f168201915b5050505050905090565b60006114f08261330d565b611526576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061156f82611d80565b90508073ffffffffffffffffffffffffffffffffffffffff1661159061336c565b73ffffffffffffffffffffffffffffffffffffffff16146115f3576115bc816115b761336c565b612c88565b6115f2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a5481565b6116b6612e0d565b8060148190555050565b60006116ca613374565b6001546000540303905090565b60006116e1612e0d565b600c54905090565b6008601a9054906101000a900460ff1681565b600061170782613379565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461176e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061177a84613447565b91509150611790818761178b61336c565b61346e565b6117dc576117a5866117a061336c565b612c88565b6117db576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611843576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61185086868660016134b2565b801561185b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611929856119058888876134b8565b7c0200000000000000000000000000000000000000000000000000000000176134e0565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156119b15760006001850190506000600460008381526020019081526020016000205414156119af5760005481146119ae578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a19868686600161350b565b505050505050565b60105481565b600c5481565b600f5481565b600860199054906101000a900460ff1681565b611a4e612e0d565b611a583382613511565b50565b611a63612e0d565b80600860186101000a81548160ff02191690831515021790555050565b60135481565b611a8e612e0d565b6000611a9861220c565b73ffffffffffffffffffffffffffffffffffffffff1647604051611abb906145c0565b60006040518083038185875af1925050503d8060008114611af8576040519150601f19603f3d011682016040523d82523d6000602084013e611afd565b606091505b5050905080611b0b57600080fd5b50565b6008601c9054906101000a900460ff1681565b611b29612e0d565b601860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac906147b9565b60405180910390fd5b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611c2b83838360405180602001604052806000815250612570565b505050565b611c38612e0d565b80600a8190555050565b611c4a612e0d565b60005b81518161ffff161015611ce357600160186000848461ffff1681518110611c7757611c76614db7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611cdb90614c85565b915050611c4d565b5050565b6008601b9054906101000a900460ff1681565b600860159054906101000a900460ff1681565b6008601f9054906101000a900460ff1681565b600e5481565b611d2e612e0d565b8060159080519060200190611d44929190613bc3565b5050565b611d50612e0d565b80600860196101000a81548160ff02191690831515021790555050565b600860149054906101000a900460ff1681565b6000611d8b82613379565b9050919050565b600080601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905080915050919050565b611df5612e0d565b806008601c6101000a81548160ff021916908360ff16021790555050565b60125481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e81576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611eda612e0d565b611ee4600061352f565b565b611eee612e0d565b80600960006101000a81548160ff021916908360ff16021790555050565b80600860149054906101000a900460ff1615611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5490614839565b60405180910390fd5b60008160ff1611611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90614859565b60405180910390fd5b600b548160ff16611fb26116c0565b611fbc9190614a05565b1115611ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff490614719565b60405180910390fd5b6008601a9054906101000a900460ff1660ff16601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16826120689190614a5b565b60ff1611156120ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a390614799565b60405180910390fd5b600860199054906101000a900460ff166120fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f290614739565b60405180910390fd5b6000601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff169050600960009054906101000a900460ff1660ff16818460ff166121719190614a05565b11156121b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a9906146d9565b60405180910390fd5b60006121d16008601f9054906101000a900460ff1660ff166000612e8b565b90506121e0843483600061300e565b50505050565b6008601d9054906101000a900460ff1681565b600960009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60606003805461229b90614c22565b80601f01602080910402602001604051908101604052809291908181526020018280546122c790614c22565b80156123145780601f106122e957610100808354040283529160200191612314565b820191906000526020600020905b8154815290600101906020018083116122f757829003601f168201915b5050505050905090565b60145481565b600d5481565b600860189054906101000a900460ff1681565b806007600061234a61336c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123f761336c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161243c919061463c565b60405180910390a35050565b600860169054906101000a900460ff1681565b612463612e0d565b6001600860156101000a81548160ff021916908315150217905550565b612488612e0d565b60005b81518161ffff16101561252157600160196000848461ffff16815181106124b5576124b4614db7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061251990614c85565b91505061248b565b5050565b61252d612e0d565b806008601f6101000a81548160ff021916908360ff16021790555050565b612553612e0d565b80600860166101000a81548160ff02191690831515021790555050565b61257b8484846116fc565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125dd576125a6848484846135f5565b6125dc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600080601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905080915050919050565b612646612e0d565b806008601b6101000a81548160ff021916908360ff16021790555050565b6016805461267190614c22565b80601f016020809104026020016040519081016040528092919081815260200182805461269d90614c22565b80156126ea5780601f106126bf576101008083540402835291602001916126ea565b820191906000526020600020905b8154815290600101906020018083116126cd57829003601f168201915b505050505081565b60606126fd8261330d565b61273c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612733906147f9565b60405180910390fd5b60001515600860159054906101000a900460ff16151514156127ea576017805461276590614c22565b80601f016020809104026020016040519081016040528092919081815260200182805461279190614c22565b80156127de5780601f106127b3576101008083540402835291602001916127de565b820191906000526020600020905b8154815290600101906020018083116127c157829003601f168201915b50505050509050612849565b60006127f4613755565b9050600081511115612835578061280a846137e7565b601660405160200161281e9392919061458f565b604051602081830303815290604052915050612849565b604051806020016040528060008152509150505b919050565b6000612858612e0d565b600f54905090565b600b5481565b60115481565b612874612e0d565b806016908051906020019061288a929190613bc3565b5050565b80600860149054906101000a900460ff16156128df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d690614839565b60405180910390fd5b60008160ff1611612925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291c90614859565b60405180910390fd5b600b548160ff166129346116c0565b61293e9190614a05565b111561297f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297690614719565b60405180910390fd5b6008601a9054906101000a900460ff1660ff16601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16826129ea9190614a5b565b60ff161115612a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2590614799565b60405180910390fd5b600860169054906101000a900460ff16612a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a74906146f9565b60405180910390fd5b600860189054906101000a900460ff16612acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac390614779565b60405180910390fd5b6000601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1690506008601e9054906101000a900460ff1660ff16818460ff16612b429190614a05565b1115612b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7a90614899565b60405180910390fd5b612b8c336125e3565b612bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc290614879565b60405180910390fd5b612bd4336125e3565b15612c5d576008601e9054906101000a900460ff1660ff168110612c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2490614759565b60405180910390fd5b6000612c4c6008601d9054906101000a900460ff1660ff166002612e8b565b9050612c5b843483600261300e565b505b505050565b600860179054906101000a900460ff1681565b6008601e9054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612d24612e0d565b8060179080519060200190612d3a929190613bc3565b5050565b612d46612e0d565b80600860176101000a81548160ff02191690831515021790555050565b612d6b612e0d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd2906146b9565b60405180910390fd5b612de48161352f565b50565b612def612e0d565b806008601a6101000a81548160ff021916908360ff16021790555050565b612e15613948565b73ffffffffffffffffffffffffffffffffffffffff16612e3361220c565b73ffffffffffffffffffffffffffffffffffffffff1614612e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e80906147d9565b60405180910390fd5b565b600080601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff169050808411156130025760008185612ef69190614b1d565b905060018460ff16148015612f0e5750601254600d54105b15612f4d57600d54601254612f239190614b1d565b811015612f34578092505050613008565b600d54601254612f449190614b1d565b92505050613008565b60028460ff16148015612f635750601154600e54105b15612fa257600e54601154612f789190614b1d565b811015612f89578092505050613008565b600e54601154612f999190614b1d565b92505050613008565b60008460ff16148015612fb85750601354600f54105b15612ff757600f54601354612fcd9190614b1d565b811015612fde578092505050613008565b600f54601354612fee9190614b1d565b92505050613008565b600092505050613008565b60009150505b92915050565b818460ff16116131345760018160ff161415613057578360ff16600c546130359190614a05565b600c819055508360ff16600d5461304c9190614a05565b600d819055506130af565b60028160ff161415613096578360ff16600c546130749190614a05565b600c819055508360ff16600e5461308b9190614a05565b600e819055506130ae565b8360ff16600f546130a79190614a05565b600f819055505b5b6130bc338560ff16613511565b83601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166131179190614a5b565b92506101000a81548160ff021916908360ff160217905550613307565b60018160ff16141561316d5781600c5461314e9190614a05565b600c8190555081600d546131629190614a05565b600d819055506131bc565b60028160ff1614156131a65781600c546131879190614a05565b600c8190555081600e5461319b9190614a05565b600e819055506131bb565b81600f546131b49190614a05565b600f819055505b5b6000828560ff166131cd9190614b1d565b9050600a54816131dd9190614ac3565b84101561321f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321690614679565b60405180910390fd5b601454816010546132309190614a05565b1115613271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326890614699565b60405180910390fd5b61327e338660ff16613511565b84601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166132d99190614a5b565b92506101000a81548160ff021916908360ff160217905550806010546132ff9190614a05565b601081905550505b50505050565b600081613318613374565b11158015613327575060005482105b8015613365575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080613388613374565b116134105760005481101561340f5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561340d575b60008114156134035760046000836001900393508381526020019081526020016000205490506133d8565b8092505050613442565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86134cf868684613950565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61352b828260405180602001604052806000815250613959565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261361b61336c565b8786866040518563ffffffff1660e01b815260040161363d94939291906145f0565b602060405180830381600087803b15801561365757600080fd5b505af192505050801561368857506040513d601f19601f8201168201806040525081019061368591906140c8565b60015b613702573d80600081146136b8576040519150601f19603f3d011682016040523d82523d6000602084013e6136bd565b606091505b506000815114156136fa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606015805461376490614c22565b80601f016020809104026020016040519081016040528092919081815260200182805461379090614c22565b80156137dd5780601f106137b2576101008083540402835291602001916137dd565b820191906000526020600020905b8154815290600101906020018083116137c057829003601f168201915b5050505050905090565b6060600082141561382f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613943565b600082905060005b6000821461386157808061384a90614cb0565b915050600a8261385a9190614a92565b9150613837565b60008167ffffffffffffffff81111561387d5761387c614de6565b5b6040519080825280601f01601f1916602001820160405280156138af5781602001600182028036833780820191505090505b5090505b6000851461393c576001826138c89190614b1d565b9150600a856138d79190614cf9565b60306138e39190614a05565b60f81b8183815181106138f9576138f8614db7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856139359190614a92565b94506138b3565b8093505050505b919050565b600033905090565b60009392505050565b61396383836139f6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146139f157600080549050600083820390505b6139a360008683806001019450866135f5565b6139d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106139905781600054146139ee57600080fd5b50505b505050565b6000805490506000821415613a37576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613a4460008483856134b2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613abb83613aac60008660006134b8565b613ab585613bb3565b176134e0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613b5c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613b21565b506000821415613b98576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613bae600084838561350b565b505050565b60006001821460e11b9050919050565b828054613bcf90614c22565b90600052602060002090601f016020900481019282613bf15760008555613c38565b82601f10613c0a57805160ff1916838001178555613c38565b82800160010185558215613c38579182015b82811115613c37578251825591602001919060010190613c1c565b5b509050613c459190613c49565b5090565b5b80821115613c62576000816000905550600101613c4a565b5090565b6000613c79613c7484614914565b6148ef565b90508083825260208201905082856020860282011115613c9c57613c9b614e1a565b5b60005b85811015613ccc5781613cb28882613d5a565b845260208401935060208301925050600181019050613c9f565b5050509392505050565b6000613ce9613ce484614940565b6148ef565b905082815260208101848484011115613d0557613d04614e1f565b5b613d10848285614be0565b509392505050565b6000613d2b613d2684614971565b6148ef565b905082815260208101848484011115613d4757613d46614e1f565b5b613d52848285614be0565b509392505050565b600081359050613d69816152c6565b92915050565b600082601f830112613d8457613d83614e15565b5b8135613d94848260208601613c66565b91505092915050565b600081359050613dac816152dd565b92915050565b600081359050613dc1816152f4565b92915050565b600081519050613dd6816152f4565b92915050565b600082601f830112613df157613df0614e15565b5b8135613e01848260208601613cd6565b91505092915050565b600082601f830112613e1f57613e1e614e15565b5b8135613e2f848260208601613d18565b91505092915050565b600081359050613e478161530b565b92915050565b600081359050613e5c81615322565b92915050565b600060208284031215613e7857613e77614e29565b5b6000613e8684828501613d5a565b91505092915050565b60008060408385031215613ea657613ea5614e29565b5b6000613eb485828601613d5a565b9250506020613ec585828601613d5a565b9150509250929050565b600080600060608486031215613ee857613ee7614e29565b5b6000613ef686828701613d5a565b9350506020613f0786828701613d5a565b9250506040613f1886828701613e38565b9150509250925092565b60008060008060808587031215613f3c57613f3b614e29565b5b6000613f4a87828801613d5a565b9450506020613f5b87828801613d5a565b9350506040613f6c87828801613e38565b925050606085013567ffffffffffffffff811115613f8d57613f8c614e24565b5b613f9987828801613ddc565b91505092959194509250565b60008060408385031215613fbc57613fbb614e29565b5b6000613fca85828601613d5a565b9250506020613fdb85828601613d9d565b9150509250929050565b60008060408385031215613ffc57613ffb614e29565b5b600061400a85828601613d5a565b925050602061401b85828601613e38565b9150509250929050565b60006020828403121561403b5761403a614e29565b5b600082013567ffffffffffffffff81111561405957614058614e24565b5b61406584828501613d6f565b91505092915050565b60006020828403121561408457614083614e29565b5b600061409284828501613d9d565b91505092915050565b6000602082840312156140b1576140b0614e29565b5b60006140bf84828501613db2565b91505092915050565b6000602082840312156140de576140dd614e29565b5b60006140ec84828501613dc7565b91505092915050565b60006020828403121561410b5761410a614e29565b5b600082013567ffffffffffffffff81111561412957614128614e24565b5b61413584828501613e0a565b91505092915050565b60006020828403121561415457614153614e29565b5b600061416284828501613e38565b91505092915050565b60006020828403121561418157614180614e29565b5b600061418f84828501613e4d565b91505092915050565b6141a181614b51565b82525050565b6141b081614b63565b82525050565b60006141c1826149b7565b6141cb81856149cd565b93506141db818560208601614bef565b6141e481614e2e565b840191505092915050565b60006141fa826149c2565b61420481856149e9565b9350614214818560208601614bef565b61421d81614e2e565b840191505092915050565b6000614233826149c2565b61423d81856149fa565b935061424d818560208601614bef565b80840191505092915050565b6000815461426681614c22565b61427081866149fa565b9450600182166000811461428b576001811461429c576142cf565b60ff198316865281860193506142cf565b6142a5856149a2565b60005b838110156142c7578154818901526001820191506020810190506142a8565b838801955050505b50505092915050565b60006142e5601e836149e9565b91506142f082614e3f565b602082019050919050565b60006143086015836149e9565b915061431382614e68565b602082019050919050565b600061432b6026836149e9565b915061433682614e91565b604082019050919050565b600061434e602b836149e9565b915061435982614ee0565b604082019050919050565b60006143716020836149e9565b915061437c82614f2f565b602082019050919050565b6000614394601e836149e9565b915061439f82614f58565b602082019050919050565b60006143b76021836149e9565b91506143c282614f81565b604082019050919050565b60006143da6027836149e9565b91506143e582614fd0565b604082019050919050565b60006143fd6023836149e9565b91506144088261501f565b604082019050919050565b6000614420601b836149e9565b915061442b8261506e565b602082019050919050565b60006144436020836149e9565b915061444e82615097565b602082019050919050565b60006144666020836149e9565b9150614471826150c0565b602082019050919050565b6000614489602f836149e9565b9150614494826150e9565b604082019050919050565b60006144ac6023836149e9565b91506144b782615138565b604082019050919050565b60006144cf601b836149e9565b91506144da82615187565b602082019050919050565b60006144f26000836149de565b91506144fd826151b0565b600082019050919050565b60006145156024836149e9565b9150614520826151b3565b604082019050919050565b6000614538604b836149e9565b915061454382615202565b606082019050919050565b600061455b602a836149e9565b915061456682615277565b604082019050919050565b61457a81614bc9565b82525050565b61458981614bd3565b82525050565b600061459b8286614228565b91506145a78285614228565b91506145b38284614259565b9150819050949350505050565b60006145cb826144e5565b9150819050919050565b60006020820190506145ea6000830184614198565b92915050565b60006080820190506146056000830187614198565b6146126020830186614198565b61461f6040830185614571565b818103606083015261463181846141b6565b905095945050505050565b600060208201905061465160008301846141a7565b92915050565b6000602082019050818103600083015261467181846141ef565b905092915050565b60006020820190508181036000830152614692816142d8565b9050919050565b600060208201905081810360008301526146b2816142fb565b9050919050565b600060208201905081810360008301526146d28161431e565b9050919050565b600060208201905081810360008301526146f281614341565b9050919050565b6000602082019050818103600083015261471281614364565b9050919050565b6000602082019050818103600083015261473281614387565b9050919050565b60006020820190508181036000830152614752816143aa565b9050919050565b60006020820190508181036000830152614772816143cd565b9050919050565b60006020820190508181036000830152614792816143f0565b9050919050565b600060208201905081810360008301526147b281614413565b9050919050565b600060208201905081810360008301526147d281614436565b9050919050565b600060208201905081810360008301526147f281614459565b9050919050565b600060208201905081810360008301526148128161447c565b9050919050565b600060208201905081810360008301526148328161449f565b9050919050565b60006020820190508181036000830152614852816144c2565b9050919050565b6000602082019050818103600083015261487281614508565b9050919050565b600060208201905081810360008301526148928161452b565b9050919050565b600060208201905081810360008301526148b28161454e565b9050919050565b60006020820190506148ce6000830184614571565b92915050565b60006020820190506148e96000830184614580565b92915050565b60006148f961490a565b90506149058282614c54565b919050565b6000604051905090565b600067ffffffffffffffff82111561492f5761492e614de6565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561495b5761495a614de6565b5b61496482614e2e565b9050602081019050919050565b600067ffffffffffffffff82111561498c5761498b614de6565b5b61499582614e2e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a1082614bc9565b9150614a1b83614bc9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a5057614a4f614d2a565b5b828201905092915050565b6000614a6682614bd3565b9150614a7183614bd3565b92508260ff03821115614a8757614a86614d2a565b5b828201905092915050565b6000614a9d82614bc9565b9150614aa883614bc9565b925082614ab857614ab7614d59565b5b828204905092915050565b6000614ace82614bc9565b9150614ad983614bc9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b1257614b11614d2a565b5b828202905092915050565b6000614b2882614bc9565b9150614b3383614bc9565b925082821015614b4657614b45614d2a565b5b828203905092915050565b6000614b5c82614ba9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614c0d578082015181840152602081019050614bf2565b83811115614c1c576000848401525b50505050565b60006002820490506001821680614c3a57607f821691505b60208210811415614c4e57614c4d614d88565b5b50919050565b614c5d82614e2e565b810181811067ffffffffffffffff82111715614c7c57614c7b614de6565b5b80604052505050565b6000614c9082614b9b565b915061ffff821415614ca557614ca4614d2a565b5b600182019050919050565b6000614cbb82614bc9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cee57614ced614d2a565b5b600182019050919050565b6000614d0482614bc9565b9150614d0f83614bc9565b925082614d1f57614d1e614d59565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e7375666669656369656e742066756e6473207472616e7366657265640000600082015250565b7f70616964206c696d697420697320657863656465640000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206c6d6974206f6620746f6b656e7320657863656564656420666f722060008201527f7075626c69632073616c65000000000000000000000000000000000000000000602082015250565b7f5072652073616c65206973206e6f74206163746976652063757272656e746c79600082015250565b7f496e7375666669656369656e7420746f6b656e7320617661696c61626c650000600082015250565b7f5075626c69632073616c652069732063757272656e746c7920696e616374697660008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206c6d6974206f6620746f6b656e7320657863656564656420666f722060008201527f4f47206c69737400000000000000000000000000000000000000000000000000602082015250565b7f5072652073616c6520574c206973206e6f74206163746976652063757272656e60008201527f746c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206c6d6974206f6620746f6b656e732065786365656465640000000000600082015250565b7f4572726f723a2053656e646572206973206e6f742077686974656c6973746564600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5072652073616c65204f47206973206e6f74206163746976652063757272656e60008201527f746c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e672069732063757272656e746c79207061757365640000000000600082015250565b50565b7f4d696e7420616d6f756e742073686f756c64206265206772656174657220746860008201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b7f54686973204164726573736573206973206e6f742077686974656c697374656460008201527f2c20596f752063616e204d696e74204d61657374726f2773204d697820696e2060208201527f5075626c69632053616c65000000000000000000000000000000000000000000604082015250565b7f4d6178206c6d6974206f6620746f6b656e7320657863656564656420666f722060008201527f57686974656c6973747300000000000000000000000000000000000000000000602082015250565b6152cf81614b51565b81146152da57600080fd5b50565b6152e681614b63565b81146152f157600080fd5b50565b6152fd81614b6f565b811461530857600080fd5b50565b61531481614bc9565b811461531f57600080fd5b50565b61532b81614bd3565b811461533657600080fd5b5056fea2646970667358221220e2f00fbf1b1904039862b201e54183d2d99513f8ad456f0ccbd6bf0212ed1b9264736f6c63430008070033

Deployed Bytecode Sourcemap

57721:22662:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18404:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78057:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65621:1004;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19306:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25797:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25230:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58640:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79371:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15057:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78774:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58133:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29436:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58891:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58720:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58851:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58067:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69093:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79960:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59009:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78275:155;;;:::i;:::-;;58262:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72142:359;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32357:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76025:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70819:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58193:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57843:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58475:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58807:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77278:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80248:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57809:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20699:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69881:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73269:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58968:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16241:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56708:103;;;;;;;;;;;;;:::i;:::-;;74207:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68359:726;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58334:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58553:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56060:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79082:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19482:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59050:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58763:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58008:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26355:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57878:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75767:69;;;;;;;;;;;;;:::i;:::-;;71350:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73721:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69502:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33148:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70332:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72791:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59123:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74907:752;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78547:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58680:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58927:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77662:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66978:1000;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57946:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58403:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26746:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76808:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79665:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56966:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76381:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18404:639;18489:4;18828:10;18813:25;;:11;:25;;;;:102;;;;18905:10;18890:25;;:11;:25;;;;18813:102;:179;;;;18982:10;18967:25;;:11;:25;;;;18813:179;18793:199;;18404:639;;;:::o;78057:79::-;55946:13;:11;:13::i;:::-;78122:6:::1;78113;;:15;;;;;;;;;;;;;;;;;;78057:79:::0;:::o;65621:1004::-;65677:11;60316:6;;;;;;;;;;;60315:7;60307:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60386:1;60372:11;:15;;;60364:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;60477:9;;60462:11;60446:27;;:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;60438:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;60578:13;;;;;;;;;;;60539:52;;60552:10;:22;60563:10;60552:22;;;;;;;;;;;;;;;;;;;;;;;;;60539:11;:35;;;;:::i;:::-;:52;;;;60531:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;65733:15:::1;;;;;;;;;;;65725:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;65803:17;;;;;;;;;;;65795:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;65872:23;65898:10;:22;65909:10;65898:22;;;;;;;;;;;;;;;;;;;;;;;;;65872:48;;;;65969:19;;;;;;;;;;;65939:49;;65951:15;65939:11;:27;;;;;;:::i;:::-;:49;;65931:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;66055:26;66070:10;66055:14;:26::i;:::-;66047:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;66175:26;66190:10;66175:14;:26::i;:::-;66171:451;;;66244:19;;;;;;;;;;;66226:37;;:15;:37;66218:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;66321:25;66349:85;66394:23;;;;;;;;;;;66349:85;;66418:1;66349:26;:85::i;:::-;66321:113;;66550:47;66555:11;66567:9;66577:17;66595:1;66550:4;:47::i;:::-;66203:419;66171:451;65705:920;65621:1004:::0;;:::o;19306:100::-;19360:13;19393:5;19386:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19306:100;:::o;25797:218::-;25873:7;25898:16;25906:7;25898;:16::i;:::-;25893:64;;25923:34;;;;;;;;;;;;;;25893:64;25977:15;:24;25993:7;25977:24;;;;;;;;;;;:30;;;;;;;;;;;;25970:37;;25797:218;;;:::o;25230:408::-;25319:13;25335:16;25343:7;25335;:16::i;:::-;25319:32;;25391:5;25368:28;;:19;:17;:19::i;:::-;:28;;;25364:175;;25416:44;25433:5;25440:19;:17;:19::i;:::-;25416:16;:44::i;:::-;25411:128;;25488:35;;;;;;;;;;;;;;25411:128;25364:175;25584:2;25551:15;:24;25567:7;25551:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25622:7;25618:2;25602:28;;25611:5;25602:28;;;;;;;;;;;;25308:330;25230:408;;:::o;58640:33::-;;;;:::o;79371:133::-;55946:13;:11;:13::i;:::-;79485:11:::1;79469:15;:27;;;;79371:133:::0;:::o;15057:323::-;15118:7;15346:15;:13;:15::i;:::-;15331:12;;15315:13;;:28;:46;15308:53;;15057:323;:::o;78774:108::-;78833:7;55946:13;:11;:13::i;:::-;78855:19:::1;;78848:26;;78774:108:::0;:::o;58133:30::-;;;;;;;;;;;;;:::o;29436:2825::-;29578:27;29608;29627:7;29608:18;:27::i;:::-;29578:57;;29693:4;29652:45;;29668:19;29652:45;;;29648:86;;29706:28;;;;;;;;;;;;;;29648:86;29748:27;29777:23;29804:35;29831:7;29804:26;:35::i;:::-;29747:92;;;;29939:68;29964:15;29981:4;29987:19;:17;:19::i;:::-;29939:24;:68::i;:::-;29934:180;;30027:43;30044:4;30050:19;:17;:19::i;:::-;30027:16;:43::i;:::-;30022:92;;30079:35;;;;;;;;;;;;;;30022:92;29934:180;30145:1;30131:16;;:2;:16;;;30127:52;;;30156:23;;;;;;;;;;;;;;30127:52;30192:43;30214:4;30220:2;30224:7;30233:1;30192:21;:43::i;:::-;30328:15;30325:160;;;30468:1;30447:19;30440:30;30325:160;30865:18;:24;30884:4;30865:24;;;;;;;;;;;;;;;;30863:26;;;;;;;;;;;;30934:18;:22;30953:2;30934:22;;;;;;;;;;;;;;;;30932:24;;;;;;;;;;;31256:146;31293:2;31342:45;31357:4;31363:2;31367:19;31342:14;:45::i;:::-;11456:8;31314:73;31256:18;:146::i;:::-;31227:17;:26;31245:7;31227:26;;;;;;;;;;;:175;;;;31573:1;11456:8;31522:19;:47;:52;31518:627;;;31595:19;31627:1;31617:7;:11;31595:33;;31784:1;31750:17;:30;31768:11;31750:30;;;;;;;;;;;;:35;31746:384;;;31888:13;;31873:11;:28;31869:242;;32068:19;32035:17;:30;32053:11;32035:30;;;;;;;;;;;:52;;;;31869:242;31746:384;31576:569;31518:627;32192:7;32188:2;32173:27;;32182:4;32173:27;;;;;;;;;;;;32211:42;32232:4;32238:2;32242:7;32251:1;32211:20;:42::i;:::-;29567:2694;;;29436:2825;;;:::o;58891:27::-;;;;:::o;58720:36::-;;;;:::o;58851:33::-;;;;:::o;58067:30::-;;;;;;;;;;;;;:::o;69093:111::-;55946:13;:11;:13::i;:::-;69162:34:::1;69172:10;69184:11;69162:9;:34::i;:::-;69093:111:::0;:::o;79960:132::-;55946:13;:11;:13::i;:::-;80069:15:::1;80055:13;;:29;;;;;;;;;;;;;;;;;;79960:132:::0;:::o;59009:34::-;;;;:::o;78275:155::-;55946:13;:11;:13::i;:::-;78332:7:::1;78353;:5;:7::i;:::-;78345:21;;78374;78345:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78331:69;;;78419:2;78411:11;;;::::0;::::1;;78320:110;78275:155::o:0;58262:35::-;;;;;;;;;;;;;:::o;72142:359::-;55946:13;:11;:13::i;:::-;72304:21:::1;:28;72326:5;72304:28;;;;;;;;;;;;;;;;;;;;;;;;;72282:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;72478:5;72447:21;:28;72469:5;72447:28;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;72142:359:::0;:::o;32357:193::-;32503:39;32520:4;32526:2;32530:7;32503:39;;;;;;;;;;;;:16;:39::i;:::-;32357:193;;;:::o;76025:86::-;55946:13;:11;:13::i;:::-;76095:8:::1;76088:4;:15;;;;76025:86:::0;:::o;70819:217::-;55946:13;:11;:13::i;:::-;70914:8:::1;70910:119;70927:16;:23;70925:1;:25;;;70910:119;;;71013:4;70970:21;:42;70992:16;71009:1;70992:19;;;;;;;;;;:::i;:::-;;;;;;;;70970:42;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;70951:3;;;;;:::i;:::-;;;;70910:119;;;;70819:217:::0;:::o;58193:39::-;;;;;;;;;;;;;:::o;57843:28::-;;;;;;;;;;;;;:::o;58475:44::-;;;;;;;;;;;;;:::o;58807:37::-;;;;:::o;77278:104::-;55946:13;:11;:13::i;:::-;77363:11:::1;77353:7;:21;;;;;;;;;;;;:::i;:::-;;77278:104:::0;:::o;80248:132::-;55946:13;:11;:13::i;:::-;80356:16:::1;80345:10;;:27;;;;;;;;;;;;;;;;;;80248:132:::0;:::o;57809:26::-;;;;;;;;;;;;;:::o;20699:152::-;20771:7;20814:27;20833:7;20814:18;:27::i;:::-;20791:52;;20699:152;;;:::o;69881:173::-;69941:4;69958:22;69983:21;:28;70005:5;69983:28;;;;;;;;;;;;;;;;;;;;;;;;;69958:53;;70029:17;70022:24;;;69881:173;;;:::o;73269:136::-;55946:13;:11;:13::i;:::-;73377:20:::1;73357:19;;:40;;;;;;;;;;;;;;;;;;73269:136:::0;:::o;58968:34::-;;;;:::o;16241:233::-;16313:7;16354:1;16337:19;;:5;:19;;;16333:60;;;16365:28;;;;;;;;;;;;;;16333:60;10400:13;16411:18;:25;16430:5;16411:25;;;;;;;;;;;;;;;;:55;16404:62;;16241:233;;;:::o;56708:103::-;55946:13;:11;:13::i;:::-;56773:30:::1;56800:1;56773:18;:30::i;:::-;56708:103::o:0;74207:155::-;55946:13;:11;:13::i;:::-;74329:25:::1;74304:24;;:50;;;;;;;;;;;;;;;;;;74207:155:::0;:::o;68359:726::-;68412:11;60316:6;;;;;;;;;;;60315:7;60307:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60386:1;60372:11;:15;;;60364:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;60477:9;;60462:11;60446:27;;:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;60438:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;60578:13;;;;;;;;;;;60539:52;;60552:10;:22;60563:10;60552:22;;;;;;;;;;;;;;;;;;;;;;;;;60539:11;:35;;;;:::i;:::-;:52;;;;60531:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;68468:10:::1;;;;;;;;;;;68460:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;68626:23;68652:10;:22;68663:10;68652:22;;;;;;;;;;;;;;;;;;;;;;;;;68626:48;;;;68724:24;;;;;;;;;;;68693:55;;68705:15;68693:11;:27;;;;;;:::i;:::-;:55;;68685:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;68808:25;68836:82;68877:28;;;;;;;;;;;68836:82;;68906:1;68836:26;:82::i;:::-;68808:110;;69029:48;69035:11;69047:9;69057:17;69075:1;69029:4;:48::i;:::-;68440:645;;68359:726:::0;;:::o;58334:39::-;;;;;;;;;;;;;:::o;58553:40::-;;;;;;;;;;;;;:::o;56060:87::-;56106:7;56133:6;;;;;;;;;;;56126:13;;56060:87;:::o;79082:116::-;79152:5;79172:10;:18;79183:6;79172:18;;;;;;;;;;;;;;;;;;;;;;;;;79165:25;;79082:116;;;:::o;19482:104::-;19538:13;19571:7;19564:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19482:104;:::o;59050:35::-;;;;:::o;58763:37::-;;;;:::o;58008:33::-;;;;;;;;;;;;;:::o;26355:234::-;26502:8;26450:18;:39;26469:19;:17;:19::i;:::-;26450:39;;;;;;;;;;;;;;;:49;26490:8;26450:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26562:8;26526:55;;26541:19;:17;:19::i;:::-;26526:55;;;26572:8;26526:55;;;;;;:::i;:::-;;;;;;;;26355:234;;:::o;57878:34::-;;;;;;;;;;;;;:::o;75767:69::-;55946:13;:11;:13::i;:::-;75824:4:::1;75813:8;;:15;;;;;;;;;;;;;;;;;;75767:69::o:0;71350:217::-;55946:13;:11;:13::i;:::-;71445:8:::1;71441:119;71458:16;:23;71456:1;:25;;;71441:119;;;71544:4;71501:21;:42;71523:16;71540:1;71523:19;;;;;;;;;;:::i;:::-;;;;;;;;71501:42;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;71482:3;;;;;:::i;:::-;;;;71441:119;;;;71350:217:::0;:::o;73721:172::-;55946:13;:11;:13::i;:::-;73856:29:::1;73827:28;;:58;;;;;;;;;;;;;;;;;;73721:172:::0;:::o;69502:101::-;55946:13;:11;:13::i;:::-;69589:6:::1;69571:15;;:24;;;;;;;;;;;;;;;;;;69502:101:::0;:::o;33148:407::-;33323:31;33336:4;33342:2;33346:7;33323:12;:31::i;:::-;33387:1;33369:2;:14;;;:19;33365:183;;33408:56;33439:4;33445:2;33449:7;33458:5;33408:30;:56::i;:::-;33403:145;;33492:40;;;;;;;;;;;;;;33403:145;33365:183;33148:407;;;;:::o;70332:173::-;70392:4;70409:22;70434:21;:28;70456:5;70434:28;;;;;;;;;;;;;;;;;;;;;;;;;70409:53;;70480:17;70473:24;;;70332:173;;;:::o;72791:160::-;55946:13;:11;:13::i;:::-;72910:24:::1;72886:23;;:48;;;;;;;;;;;;;;;;;;72791:160:::0;:::o;59123:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;74907:752::-;75025:13;75078:16;75086:7;75078;:16::i;:::-;75056:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;75198:5;75186:17;;:8;;;;;;;;;;;:17;;;75182:71;;;75227:14;75220:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75182:71;75265:28;75296:10;:8;:10::i;:::-;75265:41;;75351:1;75326:14;75320:28;:32;75317:335;;;75451:14;75492:18;:7;:16;:18::i;:::-;75537:13;75408:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75372:220;;;;;75317:335;75627:9;;;;;;;;;;;;;;;74907:752;;;;:::o;78547:108::-;78609:7;55946:13;:11;:13::i;:::-;78631:16:::1;;78624:23;;78547:108:::0;:::o;58680:31::-;;;;:::o;58927:34::-;;;;:::o;77662:151::-;55946:13;:11;:13::i;:::-;77788:17:::1;77772:13;:33;;;;;;;;;;;;:::i;:::-;;77662:151:::0;:::o;66978:1000::-;67034:11;60316:6;;;;;;;;;;;60315:7;60307:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60386:1;60372:11;:15;;;60364:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;60477:9;;60462:11;60446:27;;:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;60438:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;60578:13;;;;;;;;;;;60539:52;;60552:10;:22;60563:10;60552:22;;;;;;;;;;;;;;;;;;;;;;;;;60539:11;:35;;;;:::i;:::-;:52;;;;60531:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;67090:15:::1;;;;;;;;;;;67082:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;67160:13;;;;;;;;;;;67152:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;67225:23;67251:10;:22;67262:10;67251:22;;;;;;;;;;;;;;;;;;;;;;;;;67225:48;;;;67322:19;;;;;;;;;;;67292:49;;67304:15;67292:11;:27;;;;;;:::i;:::-;:49;;67284:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;67408:26;67423:10;67408:14;:26::i;:::-;67400:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;67528:26;67543:10;67528:14;:26::i;:::-;67524:451;;;67597:19;;;;;;;;;;;67579:37;;:15;:37;67571:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;67674:25;67702:85;67747:23;;;;;;;;;;;67702:85;;67771:1;67702:26;:85::i;:::-;67674:113;;67903:47;67908:11;67920:9;67930:17;67948:1;67903:4;:47::i;:::-;67556:419;67524:451;67062:916;66978:1000:::0;;:::o;57946:36::-;;;;;;;;;;;;;:::o;58403:35::-;;;;;;;;;;;;;:::o;26746:164::-;26843:4;26867:18;:25;26886:5;26867:25;;;;;;;;;;;;;;;:35;26893:8;26867:35;;;;;;;;;;;;;;;;;;;;;;;;;26860:42;;26746:164;;;;:::o;76808:126::-;55946:13;:11;:13::i;:::-;76911:15:::1;76894:14;:32;;;;;;;;;;;;:::i;:::-;;76808:126:::0;:::o;79665:142::-;55946:13;:11;:13::i;:::-;79782:17:::1;79764;;:35;;;;;;;;;;;;;;;;;;79665:142:::0;:::o;56966:201::-;55946:13;:11;:13::i;:::-;57075:1:::1;57055:22;;:8;:22;;;;57047:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;57131:28;57150:8;57131:18;:28::i;:::-;56966:201:::0;:::o;76381:120::-;55946:13;:11;:13::i;:::-;76476:17:::1;76460:13;;:33;;;;;;;;;;;;;;;;;;76381:120:::0;:::o;56225:132::-;56300:12;:10;:12::i;:::-;56289:23;;:7;:5;:7::i;:::-;:23;;;56281:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56225:132::o;63696:1572::-;63826:7;63851:25;63879:10;:22;63890:10;63879:22;;;;;;;;;;;;;;;;;;;;;;;;;63851:50;;;;63936:17;63916;:37;63912:1349;;;63970:25;64016:17;63996;:37;;;;:::i;:::-;63970:63;;64065:1;64052:11;:14;;;:52;;;;;64089:15;;64068:20;;:36;64052:52;64048:1147;;;64180:20;;64164:15;;:36;;;;:::i;:::-;64146:17;:54;64143:234;;;64231:17;64224:24;;;;;;64143:234;64336:20;;64320:15;;:36;;;;:::i;:::-;64313:44;;;;;;64048:1147;64450:1;64437:11;:14;;;:52;;;;;64474:15;;64453:20;;:36;64437:52;64433:762;;;64565:20;;64549:15;;:36;;;;:::i;:::-;64531:17;:54;64528:234;;;64616:17;64609:24;;;;;;64528:234;64721:20;;64705:15;;:36;;;;:::i;:::-;64698:44;;;;;;64433:762;64835:1;64822:11;:14;;;:48;;;;;64855:15;;64838:16;;:32;64822:48;64818:377;;;64930:16;;64914:15;;:32;;;;:::i;:::-;64896:17;:50;64893:226;;;64977:17;64970:24;;;;;;64893:226;65082:16;;65066:15;;:32;;;;:::i;:::-;65059:40;;;;;;64818:377;65178:1;65171:8;;;;;;63912:1349;65248:1;65241:8;;;63696:1572;;;;;:::o;61364:1779::-;61547:17;61532:11;:32;;;61528:1608;;61600:1;61587:11;:14;;;61584:477;;;61661:11;61641:31;;:19;;:31;;;;:::i;:::-;61621:19;:51;;;;61733:11;61712:32;;:20;;:32;;;;:::i;:::-;61691:20;:53;;;;61584:477;;;61797:1;61784:11;:14;;;61781:280;;;61859:11;61839:31;;:19;;:31;;;;:::i;:::-;61819:19;:51;;;;61932:11;61911:32;;:20;;:32;;;;:::i;:::-;61890:20;:53;;;;61781:280;;;62033:11;62016:28;;:16;;:28;;;;:::i;:::-;61999:16;:45;;;;61781:280;61584:477;62077:34;62087:10;62099:11;62077:34;;:9;:34::i;:::-;62150:11;62126:10;:22;62137:10;62126:22;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;61528:1608;;;62240:1;62227:11;:14;;;62224:503;;;62301:17;62281:19;;:37;;;;:::i;:::-;62261:19;:57;;;;62380:17;62359:20;;:38;;;;:::i;:::-;62338:20;:59;;;;62224:503;;;62448:1;62435:11;:14;;;62432:295;;;62509:17;62489:19;;:37;;;;:::i;:::-;62469:19;:57;;;;62587:17;62566:20;;:38;;;;:::i;:::-;62545:20;:59;;;;62432:295;;;62693:17;62676:16;;:34;;;;:::i;:::-;62659:16;:51;;;;62432:295;62224:503;62758:16;62791:17;62777:11;:31;;;;;;:::i;:::-;62758:50;;62858:4;;62847:8;:15;;;;:::i;:::-;62831:12;:31;;62823:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;62940:15;;62930:8;62919:10;;:19;;;;:::i;:::-;:36;;62911:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;62995:34;63005:10;63017:11;62995:34;;:9;:34::i;:::-;63068:11;63044:10;:22;63055:10;63044:22;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;63116:8;63105:10;;:19;;;;:::i;:::-;63094:10;:30;;;;62194:942;61528:1608;61364:1779;;;;:::o;27168:282::-;27233:4;27289:7;27270:15;:13;:15::i;:::-;:26;;:66;;;;;27323:13;;27313:7;:23;27270:66;:153;;;;;27422:1;11176:8;27374:17;:26;27392:7;27374:26;;;;;;;;;;;;:44;:49;27270:153;27250:173;;27168:282;;;:::o;49476:105::-;49536:7;49563:10;49556:17;;49476:105;:::o;14573:92::-;14629:7;14573:92;:::o;21854:1275::-;21921:7;21941:12;21956:7;21941:22;;22024:4;22005:15;:13;:15::i;:::-;:23;22001:1061;;22058:13;;22051:4;:20;22047:1015;;;22096:14;22113:17;:23;22131:4;22113:23;;;;;;;;;;;;22096:40;;22230:1;11176:8;22202:6;:24;:29;22198:845;;;22867:113;22884:1;22874:6;:11;22867:113;;;22927:17;:25;22945:6;;;;;;;22927:25;;;;;;;;;;;;22918:34;;22867:113;;;23013:6;23006:13;;;;;;22198:845;22073:989;22047:1015;22001:1061;23090:31;;;;;;;;;;;;;;21854:1275;;;;:::o;28331:485::-;28433:27;28462:23;28503:38;28544:15;:24;28560:7;28544:24;;;;;;;;;;;28503:65;;28721:18;28698:41;;28778:19;28772:26;28753:45;;28683:126;28331:485;;;:::o;27559:659::-;27708:11;27873:16;27866:5;27862:28;27853:37;;28033:16;28022:9;28018:32;28005:45;;28183:15;28172:9;28169:30;28161:5;28150:9;28147:20;28144:56;28134:66;;27559:659;;;;;:::o;34217:159::-;;;;;:::o;48785:311::-;48920:7;48940:16;11580:3;48966:19;:41;;48940:68;;11580:3;49034:31;49045:4;49051:2;49055:9;49034:10;:31::i;:::-;49026:40;;:62;;49019:69;;;48785:311;;;;;:::o;23677:450::-;23757:14;23925:16;23918:5;23914:28;23905:37;;24102:5;24088:11;24063:23;24059:41;24056:52;24049:5;24046:63;24036:73;;23677:450;;;;:::o;35041:158::-;;;;;:::o;43308:112::-;43385:27;43395:2;43399:8;43385:27;;;;;;;;;;;;:9;:27::i;:::-;43308:112;;:::o;57327:191::-;57401:16;57420:6;;;;;;;;;;;57401:25;;57446:8;57437:6;;:17;;;;;;;;;;;;;;;;;;57501:8;57470:40;;57491:8;57470:40;;;;;;;;;;;;57390:128;57327:191;:::o;35639:716::-;35802:4;35848:2;35823:45;;;35869:19;:17;:19::i;:::-;35890:4;35896:7;35905:5;35823:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36123:1;36106:6;:13;:18;36102:235;;;36152:40;;;;;;;;;;;;;;36102:235;36295:6;36289:13;36280:6;36276:2;36272:15;36265:38;35819:529;35992:54;;;35982:64;;;:6;:64;;;;35975:71;;;35639:716;;;;;;:::o;74542:108::-;74602:13;74635:7;74628:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74542:108;:::o;51865:723::-;51921:13;52151:1;52142:5;:10;52138:53;;;52169:10;;;;;;;;;;;;;;;;;;;;;52138:53;52201:12;52216:5;52201:20;;52232:14;52257:78;52272:1;52264:4;:9;52257:78;;52290:8;;;;;:::i;:::-;;;;52321:2;52313:10;;;;;:::i;:::-;;;52257:78;;;52345:19;52377:6;52367:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52345:39;;52395:154;52411:1;52402:5;:10;52395:154;;52439:1;52429:11;;;;;:::i;:::-;;;52506:2;52498:5;:10;;;;:::i;:::-;52485:2;:24;;;;:::i;:::-;52472:39;;52455:6;52462;52455:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;52535:2;52526:11;;;;;:::i;:::-;;;52395:154;;;52573:6;52559:21;;;;;51865:723;;;;:::o;54611:98::-;54664:7;54691:10;54684:17;;54611:98;:::o;48486:147::-;48623:6;48486:147;;;;;:::o;42535:689::-;42666:19;42672:2;42676:8;42666:5;:19::i;:::-;42745:1;42727:2;:14;;;:19;42723:483;;42767:11;42781:13;;42767:27;;42813:13;42835:8;42829:3;:14;42813:30;;42862:233;42893:62;42932:1;42936:2;42940:7;;;;;;42949:5;42893:30;:62::i;:::-;42888:167;;42991:40;;;;;;;;;;;;;;42888:167;43090:3;43082:5;:11;42862:233;;43177:3;43160:13;;:20;43156:34;;43182:8;;;43156:34;42748:458;;42723:483;42535:689;;;:::o;36817:2966::-;36890:20;36913:13;;36890:36;;36953:1;36941:8;:13;36937:44;;;36963:18;;;;;;;;;;;;;;36937:44;36994:61;37024:1;37028:2;37032:12;37046:8;36994:21;:61::i;:::-;37538:1;10538:2;37508:1;:26;;37507:32;37495:8;:45;37469:18;:22;37488:2;37469:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37817:139;37854:2;37908:33;37931:1;37935:2;37939:1;37908:14;:33::i;:::-;37875:30;37896:8;37875:20;:30::i;:::-;:66;37817:18;:139::i;:::-;37783:17;:31;37801:12;37783:31;;;;;;;;;;;:173;;;;37973:16;38004:11;38033:8;38018:12;:23;38004:37;;38554:16;38550:2;38546:25;38534:37;;38926:12;38886:8;38845:1;38783:25;38724:1;38663;38636:335;39297:1;39283:12;39279:20;39237:346;39338:3;39329:7;39326:16;39237:346;;39556:7;39546:8;39543:1;39516:25;39513:1;39510;39505:59;39391:1;39382:7;39378:15;39367:26;;39237:346;;;39241:77;39628:1;39616:8;:13;39612:45;;;39638:19;;;;;;;;;;;;;;39612:45;39690:3;39674:13;:19;;;;37243:2462;;39715:60;39744:1;39748:2;39752:12;39766:8;39715:20;:60::i;:::-;36879:2904;36817:2966;;:::o;24229:324::-;24299:14;24532:1;24522:8;24519:15;24493:24;24489:46;24479:56;;24229:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:135::-;3459:5;3497:6;3484:20;3475:29;;3513:31;3538:5;3513:31;:::i;:::-;3415:135;;;;:::o;3556:329::-;3615:6;3664:2;3652:9;3643:7;3639:23;3635:32;3632:119;;;3670:79;;:::i;:::-;3632:119;3790:1;3815:53;3860:7;3851:6;3840:9;3836:22;3815:53;:::i;:::-;3805:63;;3761:117;3556:329;;;;:::o;3891:474::-;3959:6;3967;4016:2;4004:9;3995:7;3991:23;3987:32;3984:119;;;4022:79;;:::i;:::-;3984:119;4142:1;4167:53;4212:7;4203:6;4192:9;4188:22;4167:53;:::i;:::-;4157:63;;4113:117;4269:2;4295:53;4340:7;4331:6;4320:9;4316:22;4295:53;:::i;:::-;4285:63;;4240:118;3891:474;;;;;:::o;4371:619::-;4448:6;4456;4464;4513:2;4501:9;4492:7;4488:23;4484:32;4481:119;;;4519:79;;:::i;:::-;4481:119;4639:1;4664:53;4709:7;4700:6;4689:9;4685:22;4664:53;:::i;:::-;4654:63;;4610:117;4766:2;4792:53;4837:7;4828:6;4817:9;4813:22;4792:53;:::i;:::-;4782:63;;4737:118;4894:2;4920:53;4965:7;4956:6;4945:9;4941:22;4920:53;:::i;:::-;4910:63;;4865:118;4371:619;;;;;:::o;4996:943::-;5091:6;5099;5107;5115;5164:3;5152:9;5143:7;5139:23;5135:33;5132:120;;;5171:79;;:::i;:::-;5132:120;5291:1;5316:53;5361:7;5352:6;5341:9;5337:22;5316:53;:::i;:::-;5306:63;;5262:117;5418:2;5444:53;5489:7;5480:6;5469:9;5465:22;5444:53;:::i;:::-;5434:63;;5389:118;5546:2;5572:53;5617:7;5608:6;5597:9;5593:22;5572:53;:::i;:::-;5562:63;;5517:118;5702:2;5691:9;5687:18;5674:32;5733:18;5725:6;5722:30;5719:117;;;5755:79;;:::i;:::-;5719:117;5860:62;5914:7;5905:6;5894:9;5890:22;5860:62;:::i;:::-;5850:72;;5645:287;4996:943;;;;;;;:::o;5945:468::-;6010:6;6018;6067:2;6055:9;6046:7;6042:23;6038:32;6035:119;;;6073:79;;:::i;:::-;6035:119;6193:1;6218:53;6263:7;6254:6;6243:9;6239:22;6218:53;:::i;:::-;6208:63;;6164:117;6320:2;6346:50;6388:7;6379:6;6368:9;6364:22;6346:50;:::i;:::-;6336:60;;6291:115;5945:468;;;;;:::o;6419:474::-;6487:6;6495;6544:2;6532:9;6523:7;6519:23;6515:32;6512:119;;;6550:79;;:::i;:::-;6512:119;6670:1;6695:53;6740:7;6731:6;6720:9;6716:22;6695:53;:::i;:::-;6685:63;;6641:117;6797:2;6823:53;6868:7;6859:6;6848:9;6844:22;6823:53;:::i;:::-;6813:63;;6768:118;6419:474;;;;;:::o;6899:539::-;6983:6;7032:2;7020:9;7011:7;7007:23;7003:32;7000:119;;;7038:79;;:::i;:::-;7000:119;7186:1;7175:9;7171:17;7158:31;7216:18;7208:6;7205:30;7202:117;;;7238:79;;:::i;:::-;7202:117;7343:78;7413:7;7404:6;7393:9;7389:22;7343:78;:::i;:::-;7333:88;;7129:302;6899:539;;;;:::o;7444:323::-;7500:6;7549:2;7537:9;7528:7;7524:23;7520:32;7517:119;;;7555:79;;:::i;:::-;7517:119;7675:1;7700:50;7742:7;7733:6;7722:9;7718:22;7700:50;:::i;:::-;7690:60;;7646:114;7444:323;;;;:::o;7773:327::-;7831:6;7880:2;7868:9;7859:7;7855:23;7851:32;7848:119;;;7886:79;;:::i;:::-;7848:119;8006:1;8031:52;8075:7;8066:6;8055:9;8051:22;8031:52;:::i;:::-;8021:62;;7977:116;7773:327;;;;:::o;8106:349::-;8175:6;8224:2;8212:9;8203:7;8199:23;8195:32;8192:119;;;8230:79;;:::i;:::-;8192:119;8350:1;8375:63;8430:7;8421:6;8410:9;8406:22;8375:63;:::i;:::-;8365:73;;8321:127;8106:349;;;;:::o;8461:509::-;8530:6;8579:2;8567:9;8558:7;8554:23;8550:32;8547:119;;;8585:79;;:::i;:::-;8547:119;8733:1;8722:9;8718:17;8705:31;8763:18;8755:6;8752:30;8749:117;;;8785:79;;:::i;:::-;8749:117;8890:63;8945:7;8936:6;8925:9;8921:22;8890:63;:::i;:::-;8880:73;;8676:287;8461:509;;;;:::o;8976:329::-;9035:6;9084:2;9072:9;9063:7;9059:23;9055:32;9052:119;;;9090:79;;:::i;:::-;9052:119;9210:1;9235:53;9280:7;9271:6;9260:9;9256:22;9235:53;:::i;:::-;9225:63;;9181:117;8976:329;;;;:::o;9311:325::-;9368:6;9417:2;9405:9;9396:7;9392:23;9388:32;9385:119;;;9423:79;;:::i;:::-;9385:119;9543:1;9568:51;9611:7;9602:6;9591:9;9587:22;9568:51;:::i;:::-;9558:61;;9514:115;9311:325;;;;:::o;9642:118::-;9729:24;9747:5;9729:24;:::i;:::-;9724:3;9717:37;9642:118;;:::o;9766:109::-;9847:21;9862:5;9847:21;:::i;:::-;9842:3;9835:34;9766:109;;:::o;9881:360::-;9967:3;9995:38;10027:5;9995:38;:::i;:::-;10049:70;10112:6;10107:3;10049:70;:::i;:::-;10042:77;;10128:52;10173:6;10168:3;10161:4;10154:5;10150:16;10128:52;:::i;:::-;10205:29;10227:6;10205:29;:::i;:::-;10200:3;10196:39;10189:46;;9971:270;9881:360;;;;:::o;10247:364::-;10335:3;10363:39;10396:5;10363:39;:::i;:::-;10418:71;10482:6;10477:3;10418:71;:::i;:::-;10411:78;;10498:52;10543:6;10538:3;10531:4;10524:5;10520:16;10498:52;:::i;:::-;10575:29;10597:6;10575:29;:::i;:::-;10570:3;10566:39;10559:46;;10339:272;10247:364;;;;:::o;10617:377::-;10723:3;10751:39;10784:5;10751:39;:::i;:::-;10806:89;10888:6;10883:3;10806:89;:::i;:::-;10799:96;;10904:52;10949:6;10944:3;10937:4;10930:5;10926:16;10904:52;:::i;:::-;10981:6;10976:3;10972:16;10965:23;;10727:267;10617:377;;;;:::o;11024:845::-;11127:3;11164:5;11158:12;11193:36;11219:9;11193:36;:::i;:::-;11245:89;11327:6;11322:3;11245:89;:::i;:::-;11238:96;;11365:1;11354:9;11350:17;11381:1;11376:137;;;;11527:1;11522:341;;;;11343:520;;11376:137;11460:4;11456:9;11445;11441:25;11436:3;11429:38;11496:6;11491:3;11487:16;11480:23;;11376:137;;11522:341;11589:38;11621:5;11589:38;:::i;:::-;11649:1;11663:154;11677:6;11674:1;11671:13;11663:154;;;11751:7;11745:14;11741:1;11736:3;11732:11;11725:35;11801:1;11792:7;11788:15;11777:26;;11699:4;11696:1;11692:12;11687:17;;11663:154;;;11846:6;11841:3;11837:16;11830:23;;11529:334;;11343:520;;11131:738;;11024:845;;;;:::o;11875:366::-;12017:3;12038:67;12102:2;12097:3;12038:67;:::i;:::-;12031:74;;12114:93;12203:3;12114:93;:::i;:::-;12232:2;12227:3;12223:12;12216:19;;11875:366;;;:::o;12247:::-;12389:3;12410:67;12474:2;12469:3;12410:67;:::i;:::-;12403:74;;12486:93;12575:3;12486:93;:::i;:::-;12604:2;12599:3;12595:12;12588:19;;12247:366;;;:::o;12619:::-;12761:3;12782:67;12846:2;12841:3;12782:67;:::i;:::-;12775:74;;12858:93;12947:3;12858:93;:::i;:::-;12976:2;12971:3;12967:12;12960:19;;12619:366;;;:::o;12991:::-;13133:3;13154:67;13218:2;13213:3;13154:67;:::i;:::-;13147:74;;13230:93;13319:3;13230:93;:::i;:::-;13348:2;13343:3;13339:12;13332:19;;12991:366;;;:::o;13363:::-;13505:3;13526:67;13590:2;13585:3;13526:67;:::i;:::-;13519:74;;13602:93;13691:3;13602:93;:::i;:::-;13720:2;13715:3;13711:12;13704:19;;13363:366;;;:::o;13735:::-;13877:3;13898:67;13962:2;13957:3;13898:67;:::i;:::-;13891:74;;13974:93;14063:3;13974:93;:::i;:::-;14092:2;14087:3;14083:12;14076:19;;13735:366;;;:::o;14107:::-;14249:3;14270:67;14334:2;14329:3;14270:67;:::i;:::-;14263:74;;14346:93;14435:3;14346:93;:::i;:::-;14464:2;14459:3;14455:12;14448:19;;14107:366;;;:::o;14479:::-;14621:3;14642:67;14706:2;14701:3;14642:67;:::i;:::-;14635:74;;14718:93;14807:3;14718:93;:::i;:::-;14836:2;14831:3;14827:12;14820:19;;14479:366;;;:::o;14851:::-;14993:3;15014:67;15078:2;15073:3;15014:67;:::i;:::-;15007:74;;15090:93;15179:3;15090:93;:::i;:::-;15208:2;15203:3;15199:12;15192:19;;14851:366;;;:::o;15223:::-;15365:3;15386:67;15450:2;15445:3;15386:67;:::i;:::-;15379:74;;15462:93;15551:3;15462:93;:::i;:::-;15580:2;15575:3;15571:12;15564:19;;15223:366;;;:::o;15595:::-;15737:3;15758:67;15822:2;15817:3;15758:67;:::i;:::-;15751:74;;15834:93;15923:3;15834:93;:::i;:::-;15952:2;15947:3;15943:12;15936:19;;15595:366;;;:::o;15967:::-;16109:3;16130:67;16194:2;16189:3;16130:67;:::i;:::-;16123:74;;16206:93;16295:3;16206:93;:::i;:::-;16324:2;16319:3;16315:12;16308:19;;15967:366;;;:::o;16339:::-;16481:3;16502:67;16566:2;16561:3;16502:67;:::i;:::-;16495:74;;16578:93;16667:3;16578:93;:::i;:::-;16696:2;16691:3;16687:12;16680:19;;16339:366;;;:::o;16711:::-;16853:3;16874:67;16938:2;16933:3;16874:67;:::i;:::-;16867:74;;16950:93;17039:3;16950:93;:::i;:::-;17068:2;17063:3;17059:12;17052:19;;16711:366;;;:::o;17083:::-;17225:3;17246:67;17310:2;17305:3;17246:67;:::i;:::-;17239:74;;17322:93;17411:3;17322:93;:::i;:::-;17440:2;17435:3;17431:12;17424:19;;17083:366;;;:::o;17455:398::-;17614:3;17635:83;17716:1;17711:3;17635:83;:::i;:::-;17628:90;;17727:93;17816:3;17727:93;:::i;:::-;17845:1;17840:3;17836:11;17829:18;;17455:398;;;:::o;17859:366::-;18001:3;18022:67;18086:2;18081:3;18022:67;:::i;:::-;18015:74;;18098:93;18187:3;18098:93;:::i;:::-;18216:2;18211:3;18207:12;18200:19;;17859:366;;;:::o;18231:::-;18373:3;18394:67;18458:2;18453:3;18394:67;:::i;:::-;18387:74;;18470:93;18559:3;18470:93;:::i;:::-;18588:2;18583:3;18579:12;18572:19;;18231:366;;;:::o;18603:::-;18745:3;18766:67;18830:2;18825:3;18766:67;:::i;:::-;18759:74;;18842:93;18931:3;18842:93;:::i;:::-;18960:2;18955:3;18951:12;18944:19;;18603:366;;;:::o;18975:118::-;19062:24;19080:5;19062:24;:::i;:::-;19057:3;19050:37;18975:118;;:::o;19099:112::-;19182:22;19198:5;19182:22;:::i;:::-;19177:3;19170:35;19099:112;;:::o;19217:589::-;19442:3;19464:95;19555:3;19546:6;19464:95;:::i;:::-;19457:102;;19576:95;19667:3;19658:6;19576:95;:::i;:::-;19569:102;;19688:92;19776:3;19767:6;19688:92;:::i;:::-;19681:99;;19797:3;19790:10;;19217:589;;;;;;:::o;19812:379::-;19996:3;20018:147;20161:3;20018:147;:::i;:::-;20011:154;;20182:3;20175:10;;19812:379;;;:::o;20197:222::-;20290:4;20328:2;20317:9;20313:18;20305:26;;20341:71;20409:1;20398:9;20394:17;20385:6;20341:71;:::i;:::-;20197:222;;;;:::o;20425:640::-;20620:4;20658:3;20647:9;20643:19;20635:27;;20672:71;20740:1;20729:9;20725:17;20716:6;20672:71;:::i;:::-;20753:72;20821:2;20810:9;20806:18;20797:6;20753:72;:::i;:::-;20835;20903:2;20892:9;20888:18;20879:6;20835:72;:::i;:::-;20954:9;20948:4;20944:20;20939:2;20928:9;20924:18;20917:48;20982:76;21053:4;21044:6;20982:76;:::i;:::-;20974:84;;20425:640;;;;;;;:::o;21071:210::-;21158:4;21196:2;21185:9;21181:18;21173:26;;21209:65;21271:1;21260:9;21256:17;21247:6;21209:65;:::i;:::-;21071:210;;;;:::o;21287:313::-;21400:4;21438:2;21427:9;21423:18;21415:26;;21487:9;21481:4;21477:20;21473:1;21462:9;21458:17;21451:47;21515:78;21588:4;21579:6;21515:78;:::i;:::-;21507:86;;21287:313;;;;:::o;21606:419::-;21772:4;21810:2;21799:9;21795:18;21787:26;;21859:9;21853:4;21849:20;21845:1;21834:9;21830:17;21823:47;21887:131;22013:4;21887:131;:::i;:::-;21879:139;;21606:419;;;:::o;22031:::-;22197:4;22235:2;22224:9;22220:18;22212:26;;22284:9;22278:4;22274:20;22270:1;22259:9;22255:17;22248:47;22312:131;22438:4;22312:131;:::i;:::-;22304:139;;22031:419;;;:::o;22456:::-;22622:4;22660:2;22649:9;22645:18;22637:26;;22709:9;22703:4;22699:20;22695:1;22684:9;22680:17;22673:47;22737:131;22863:4;22737:131;:::i;:::-;22729:139;;22456:419;;;:::o;22881:::-;23047:4;23085:2;23074:9;23070:18;23062:26;;23134:9;23128:4;23124:20;23120:1;23109:9;23105:17;23098:47;23162:131;23288:4;23162:131;:::i;:::-;23154:139;;22881:419;;;:::o;23306:::-;23472:4;23510:2;23499:9;23495:18;23487:26;;23559:9;23553:4;23549:20;23545:1;23534:9;23530:17;23523:47;23587:131;23713:4;23587:131;:::i;:::-;23579:139;;23306:419;;;:::o;23731:::-;23897:4;23935:2;23924:9;23920:18;23912:26;;23984:9;23978:4;23974:20;23970:1;23959:9;23955:17;23948:47;24012:131;24138:4;24012:131;:::i;:::-;24004:139;;23731:419;;;:::o;24156:::-;24322:4;24360:2;24349:9;24345:18;24337:26;;24409:9;24403:4;24399:20;24395:1;24384:9;24380:17;24373:47;24437:131;24563:4;24437:131;:::i;:::-;24429:139;;24156:419;;;:::o;24581:::-;24747:4;24785:2;24774:9;24770:18;24762:26;;24834:9;24828:4;24824:20;24820:1;24809:9;24805:17;24798:47;24862:131;24988:4;24862:131;:::i;:::-;24854:139;;24581:419;;;:::o;25006:::-;25172:4;25210:2;25199:9;25195:18;25187:26;;25259:9;25253:4;25249:20;25245:1;25234:9;25230:17;25223:47;25287:131;25413:4;25287:131;:::i;:::-;25279:139;;25006:419;;;:::o;25431:::-;25597:4;25635:2;25624:9;25620:18;25612:26;;25684:9;25678:4;25674:20;25670:1;25659:9;25655:17;25648:47;25712:131;25838:4;25712:131;:::i;:::-;25704:139;;25431:419;;;:::o;25856:::-;26022:4;26060:2;26049:9;26045:18;26037:26;;26109:9;26103:4;26099:20;26095:1;26084:9;26080:17;26073:47;26137:131;26263:4;26137:131;:::i;:::-;26129:139;;25856:419;;;:::o;26281:::-;26447:4;26485:2;26474:9;26470:18;26462:26;;26534:9;26528:4;26524:20;26520:1;26509:9;26505:17;26498:47;26562:131;26688:4;26562:131;:::i;:::-;26554:139;;26281:419;;;:::o;26706:::-;26872:4;26910:2;26899:9;26895:18;26887:26;;26959:9;26953:4;26949:20;26945:1;26934:9;26930:17;26923:47;26987:131;27113:4;26987:131;:::i;:::-;26979:139;;26706:419;;;:::o;27131:::-;27297:4;27335:2;27324:9;27320:18;27312:26;;27384:9;27378:4;27374:20;27370:1;27359:9;27355:17;27348:47;27412:131;27538:4;27412:131;:::i;:::-;27404:139;;27131:419;;;:::o;27556:::-;27722:4;27760:2;27749:9;27745:18;27737:26;;27809:9;27803:4;27799:20;27795:1;27784:9;27780:17;27773:47;27837:131;27963:4;27837:131;:::i;:::-;27829:139;;27556:419;;;:::o;27981:::-;28147:4;28185:2;28174:9;28170:18;28162:26;;28234:9;28228:4;28224:20;28220:1;28209:9;28205:17;28198:47;28262:131;28388:4;28262:131;:::i;:::-;28254:139;;27981:419;;;:::o;28406:::-;28572:4;28610:2;28599:9;28595:18;28587:26;;28659:9;28653:4;28649:20;28645:1;28634:9;28630:17;28623:47;28687:131;28813:4;28687:131;:::i;:::-;28679:139;;28406:419;;;:::o;28831:::-;28997:4;29035:2;29024:9;29020:18;29012:26;;29084:9;29078:4;29074:20;29070:1;29059:9;29055:17;29048:47;29112:131;29238:4;29112:131;:::i;:::-;29104:139;;28831:419;;;:::o;29256:222::-;29349:4;29387:2;29376:9;29372:18;29364:26;;29400:71;29468:1;29457:9;29453:17;29444:6;29400:71;:::i;:::-;29256:222;;;;:::o;29484:214::-;29573:4;29611:2;29600:9;29596:18;29588:26;;29624:67;29688:1;29677:9;29673:17;29664:6;29624:67;:::i;:::-;29484:214;;;;:::o;29704:129::-;29738:6;29765:20;;:::i;:::-;29755:30;;29794:33;29822:4;29814:6;29794:33;:::i;:::-;29704:129;;;:::o;29839:75::-;29872:6;29905:2;29899:9;29889:19;;29839:75;:::o;29920:311::-;29997:4;30087:18;30079:6;30076:30;30073:56;;;30109:18;;:::i;:::-;30073:56;30159:4;30151:6;30147:17;30139:25;;30219:4;30213;30209:15;30201:23;;29920:311;;;:::o;30237:307::-;30298:4;30388:18;30380:6;30377:30;30374:56;;;30410:18;;:::i;:::-;30374:56;30448:29;30470:6;30448:29;:::i;:::-;30440:37;;30532:4;30526;30522:15;30514:23;;30237:307;;;:::o;30550:308::-;30612:4;30702:18;30694:6;30691:30;30688:56;;;30724:18;;:::i;:::-;30688:56;30762:29;30784:6;30762:29;:::i;:::-;30754:37;;30846:4;30840;30836:15;30828:23;;30550:308;;;:::o;30864:141::-;30913:4;30936:3;30928:11;;30959:3;30956:1;30949:14;30993:4;30990:1;30980:18;30972:26;;30864:141;;;:::o;31011:98::-;31062:6;31096:5;31090:12;31080:22;;31011:98;;;:::o;31115:99::-;31167:6;31201:5;31195:12;31185:22;;31115:99;;;:::o;31220:168::-;31303:11;31337:6;31332:3;31325:19;31377:4;31372:3;31368:14;31353:29;;31220:168;;;;:::o;31394:147::-;31495:11;31532:3;31517:18;;31394:147;;;;:::o;31547:169::-;31631:11;31665:6;31660:3;31653:19;31705:4;31700:3;31696:14;31681:29;;31547:169;;;;:::o;31722:148::-;31824:11;31861:3;31846:18;;31722:148;;;;:::o;31876:305::-;31916:3;31935:20;31953:1;31935:20;:::i;:::-;31930:25;;31969:20;31987:1;31969:20;:::i;:::-;31964:25;;32123:1;32055:66;32051:74;32048:1;32045:81;32042:107;;;32129:18;;:::i;:::-;32042:107;32173:1;32170;32166:9;32159:16;;31876:305;;;;:::o;32187:237::-;32225:3;32244:18;32260:1;32244:18;:::i;:::-;32239:23;;32276:18;32292:1;32276:18;:::i;:::-;32271:23;;32366:1;32360:4;32356:12;32353:1;32350:19;32347:45;;;32372:18;;:::i;:::-;32347:45;32416:1;32413;32409:9;32402:16;;32187:237;;;;:::o;32430:185::-;32470:1;32487:20;32505:1;32487:20;:::i;:::-;32482:25;;32521:20;32539:1;32521:20;:::i;:::-;32516:25;;32560:1;32550:35;;32565:18;;:::i;:::-;32550:35;32607:1;32604;32600:9;32595:14;;32430:185;;;;:::o;32621:348::-;32661:7;32684:20;32702:1;32684:20;:::i;:::-;32679:25;;32718:20;32736:1;32718:20;:::i;:::-;32713:25;;32906:1;32838:66;32834:74;32831:1;32828:81;32823:1;32816:9;32809:17;32805:105;32802:131;;;32913:18;;:::i;:::-;32802:131;32961:1;32958;32954:9;32943:20;;32621:348;;;;:::o;32975:191::-;33015:4;33035:20;33053:1;33035:20;:::i;:::-;33030:25;;33069:20;33087:1;33069:20;:::i;:::-;33064:25;;33108:1;33105;33102:8;33099:34;;;33113:18;;:::i;:::-;33099:34;33158:1;33155;33151:9;33143:17;;32975:191;;;;:::o;33172:96::-;33209:7;33238:24;33256:5;33238:24;:::i;:::-;33227:35;;33172:96;;;:::o;33274:90::-;33308:7;33351:5;33344:13;33337:21;33326:32;;33274:90;;;:::o;33370:149::-;33406:7;33446:66;33439:5;33435:78;33424:89;;33370:149;;;:::o;33525:89::-;33561:7;33601:6;33594:5;33590:18;33579:29;;33525:89;;;:::o;33620:126::-;33657:7;33697:42;33690:5;33686:54;33675:65;;33620:126;;;:::o;33752:77::-;33789:7;33818:5;33807:16;;33752:77;;;:::o;33835:86::-;33870:7;33910:4;33903:5;33899:16;33888:27;;33835:86;;;:::o;33927:154::-;34011:6;34006:3;34001;33988:30;34073:1;34064:6;34059:3;34055:16;34048:27;33927:154;;;:::o;34087:307::-;34155:1;34165:113;34179:6;34176:1;34173:13;34165:113;;;34264:1;34259:3;34255:11;34249:18;34245:1;34240:3;34236:11;34229:39;34201:2;34198:1;34194:10;34189:15;;34165:113;;;34296:6;34293:1;34290:13;34287:101;;;34376:1;34367:6;34362:3;34358:16;34351:27;34287:101;34136:258;34087:307;;;:::o;34400:320::-;34444:6;34481:1;34475:4;34471:12;34461:22;;34528:1;34522:4;34518:12;34549:18;34539:81;;34605:4;34597:6;34593:17;34583:27;;34539:81;34667:2;34659:6;34656:14;34636:18;34633:38;34630:84;;;34686:18;;:::i;:::-;34630:84;34451:269;34400:320;;;:::o;34726:281::-;34809:27;34831:4;34809:27;:::i;:::-;34801:6;34797:40;34939:6;34927:10;34924:22;34903:18;34891:10;34888:34;34885:62;34882:88;;;34950:18;;:::i;:::-;34882:88;34990:10;34986:2;34979:22;34769:238;34726:281;;:::o;35013:171::-;35051:3;35074:23;35091:5;35074:23;:::i;:::-;35065:32;;35119:6;35112:5;35109:17;35106:43;;;35129:18;;:::i;:::-;35106:43;35176:1;35169:5;35165:13;35158:20;;35013:171;;;:::o;35190:233::-;35229:3;35252:24;35270:5;35252:24;:::i;:::-;35243:33;;35298:66;35291:5;35288:77;35285:103;;;35368:18;;:::i;:::-;35285:103;35415:1;35408:5;35404:13;35397:20;;35190:233;;;:::o;35429:176::-;35461:1;35478:20;35496:1;35478:20;:::i;:::-;35473:25;;35512:20;35530:1;35512:20;:::i;:::-;35507:25;;35551:1;35541:35;;35556:18;;:::i;:::-;35541:35;35597:1;35594;35590:9;35585:14;;35429:176;;;;:::o;35611:180::-;35659:77;35656:1;35649:88;35756:4;35753:1;35746:15;35780:4;35777:1;35770:15;35797:180;35845:77;35842:1;35835:88;35942:4;35939:1;35932:15;35966:4;35963:1;35956:15;35983:180;36031:77;36028:1;36021:88;36128:4;36125:1;36118:15;36152:4;36149:1;36142:15;36169:180;36217:77;36214:1;36207:88;36314:4;36311:1;36304:15;36338:4;36335:1;36328:15;36355:180;36403:77;36400:1;36393:88;36500:4;36497:1;36490:15;36524:4;36521:1;36514:15;36541:117;36650:1;36647;36640:12;36664:117;36773:1;36770;36763:12;36787:117;36896:1;36893;36886:12;36910:117;37019:1;37016;37009:12;37033:117;37142:1;37139;37132:12;37156:102;37197:6;37248:2;37244:7;37239:2;37232:5;37228:14;37224:28;37214:38;;37156:102;;;:::o;37264:180::-;37404:32;37400:1;37392:6;37388:14;37381:56;37264:180;:::o;37450:171::-;37590:23;37586:1;37578:6;37574:14;37567:47;37450:171;:::o;37627:225::-;37767:34;37763:1;37755:6;37751:14;37744:58;37836:8;37831:2;37823:6;37819:15;37812:33;37627:225;:::o;37858:230::-;37998:34;37994:1;37986:6;37982:14;37975:58;38067:13;38062:2;38054:6;38050:15;38043:38;37858:230;:::o;38094:182::-;38234:34;38230:1;38222:6;38218:14;38211:58;38094:182;:::o;38282:180::-;38422:32;38418:1;38410:6;38406:14;38399:56;38282:180;:::o;38468:220::-;38608:34;38604:1;38596:6;38592:14;38585:58;38677:3;38672:2;38664:6;38660:15;38653:28;38468:220;:::o;38694:226::-;38834:34;38830:1;38822:6;38818:14;38811:58;38903:9;38898:2;38890:6;38886:15;38879:34;38694:226;:::o;38926:222::-;39066:34;39062:1;39054:6;39050:14;39043:58;39135:5;39130:2;39122:6;39118:15;39111:30;38926:222;:::o;39154:177::-;39294:29;39290:1;39282:6;39278:14;39271:53;39154:177;:::o;39337:182::-;39477:34;39473:1;39465:6;39461:14;39454:58;39337:182;:::o;39525:::-;39665:34;39661:1;39653:6;39649:14;39642:58;39525:182;:::o;39713:234::-;39853:34;39849:1;39841:6;39837:14;39830:58;39922:17;39917:2;39909:6;39905:15;39898:42;39713:234;:::o;39953:222::-;40093:34;40089:1;40081:6;40077:14;40070:58;40162:5;40157:2;40149:6;40145:15;40138:30;39953:222;:::o;40181:177::-;40321:29;40317:1;40309:6;40305:14;40298:53;40181:177;:::o;40364:114::-;;:::o;40484:223::-;40624:34;40620:1;40612:6;40608:14;40601:58;40693:6;40688:2;40680:6;40676:15;40669:31;40484:223;:::o;40713:299::-;40853:34;40849:1;40841:6;40837:14;40830:58;40922:34;40917:2;40909:6;40905:15;40898:59;40991:13;40986:2;40978:6;40974:15;40967:38;40713:299;:::o;41018:229::-;41158:34;41154:1;41146:6;41142:14;41135:58;41227:12;41222:2;41214:6;41210:15;41203:37;41018:229;:::o;41253:122::-;41326:24;41344:5;41326:24;:::i;:::-;41319:5;41316:35;41306:63;;41365:1;41362;41355:12;41306:63;41253:122;:::o;41381:116::-;41451:21;41466:5;41451:21;:::i;:::-;41444:5;41441:32;41431:60;;41487:1;41484;41477:12;41431:60;41381:116;:::o;41503:120::-;41575:23;41592:5;41575:23;:::i;:::-;41568:5;41565:34;41555:62;;41613:1;41610;41603:12;41555:62;41503:120;:::o;41629:122::-;41702:24;41720:5;41702:24;:::i;:::-;41695:5;41692:35;41682:63;;41741:1;41738;41731:12;41682:63;41629:122;:::o;41757:118::-;41828:22;41844:5;41828:22;:::i;:::-;41821:5;41818:33;41808:61;;41865:1;41862;41855:12;41808:61;41757:118;:::o

Swarm Source

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