ETH Price: $3,158.61 (+0.49%)
Gas: 2 Gwei

Token

Cool AI Cats (CAIC)
 

Overview

Max Total Supply

121 CAIC

Holders

114

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
flyaway53.eth
Balance
1 CAIC
0x2a49720e721553d0614dff29454ee4e1f07d0707
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CoolAICats

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-07-21
*/

// SPDX-License-Identifier: GPL-3.0

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// 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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.0
// 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();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.0
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

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

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

// File: contracts/CoolAICats.sol



pragma solidity >=0.7.0 <0.9.0;






contract CoolAICats is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.0069 ether;
  uint256 public maxSupply = 10000;
  uint256 public FreeSupply = 10000;
  uint256 public MaxperWallet = 4;
  uint256 public MaxperWalletFree = 1;
  bool public paused = true;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
   mapping(address => uint256) public allowlist;

  constructor(
    string memory _initBaseURI,
    string memory _notRevealedUri
  ) ERC721A("Cool AI Cats", "CAIC") {  
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_notRevealedUri);
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
      function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

  // public
  /// @dev Public mint 
  function mint(uint256 tokens) public payable nonReentrant {
       if(onlyWhitelisted == true){
    require(!paused, "Contract is paused");
    require(tokens <= MaxperWallet, "max mint amount per tx exceeded");
    require(totalSupply() + tokens <= maxSupply, "We Soldout");
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWallet, "Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "insufficient funds");
       }
       else{
           require(!paused, "Contract is paused");
    require(tokens <= MaxperWallet, "max mint amount per tx exceeded");
    require(totalSupply() + tokens <= maxSupply, "We Soldout");
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWallet, "Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "insufficient funds");
       }

      _safeMint(_msgSenderERC721A(), tokens);
  }
  
/// @dev free mint
    function freemint(uint256 tokens) public nonReentrant {
    require(!paused, "Contract is paused");
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWalletFree, "Max NFT Per Wallet exceeded");
    require(tokens <= MaxperWalletFree, "max mint per Tx exceeded");
    require(totalSupply() + tokens <= FreeSupply, "Whitelist MaxSupply exceeded");

      _safeMint(_msgSenderERC721A(), tokens);
    
  }


/// @notice returns metadata link of tokenid
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

     /// @notice return the number minted by an address
    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    /// @notice return the tokens owned by an address
      function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }

  //only owner
  function reveal(bool _state) public onlyOwner {
      revealed = _state;
  }

  /// @dev change the public max per wallet
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

  /// @dev change the free max per wallet
    function setFreeMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWalletFree = _limit;
  }

   /// @dev change the public price(amount need to be in wei)
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  /// @dev cut the supply if we dont sold out
    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }

 /// @dev cut the free supply
    function setFreesupply(uint256 _newsupply) public onlyOwner {
    FreeSupply = _newsupply;
  }

 /// @dev set your baseuri
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  /// @dev set base extension(default is .json)
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

   /// @dev set hidden uri
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

 /// @dev to pause and unpause your contract(use booleans true or false)
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  

   function isWhitelisted(address _address) public view returns (uint256)  {
      return allowlist[_address];
  }

  function withdraw() public payable onlyOwner {
    // This will pay Faremer 33% of the initial sale.
    // =============================================================================
    (bool hs, ) = payable(0x3f122cae3d814C4140a6b1d5C4c99c97c7E9D920).call{value: address(this).balance * 33 / 100}("");
    require(hs);
    // =============================================================================
    
    // This will payout the owner 66% of the contract balance.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","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":"tokens","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"_address","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","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":[{"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_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":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setFreesupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","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":"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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b908051906020019062000051929190620003e9565b506618838370f34000600d55612710600e55612710600f55600460105560016011556001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff021916908315150217905550348015620000d157600080fd5b50604051620046ed380380620046ed8339818101604052810190620000f7919062000517565b6040518060400160405280600c81526020017f436f6f6c204149204361747300000000000000000000000000000000000000008152506040518060400160405280600481526020017f434149430000000000000000000000000000000000000000000000000000000081525081600290805190602001906200017b929190620003e9565b50806003908051906020019062000194929190620003e9565b50620001a5620001ff60201b60201c565b6000819055505050620001cd620001c16200020860201b60201c565b6200021060201b60201c565b6001600981905550620001e682620002d660201b60201c565b620001f7816200030260201b60201c565b5050620007a3565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002e66200032e60201b60201c565b80600a9080519060200190620002fe929190620003e9565b5050565b620003126200032e60201b60201c565b80600c90805190602001906200032a929190620003e9565b5050565b6200033e6200020860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000364620003bf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b490620005c3565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003f7906200068b565b90600052602060002090601f0160209004810192826200041b576000855562000467565b82601f106200043657805160ff191683800117855562000467565b8280016001018555821562000467579182015b828111156200046657825182559160200191906001019062000449565b5b5090506200047691906200047a565b5090565b5b80821115620004955760008160009055506001016200047b565b5090565b6000620004b0620004aa846200060e565b620005e5565b905082815260208101848484011115620004cf57620004ce6200075a565b5b620004dc84828562000655565b509392505050565b600082601f830112620004fc57620004fb62000755565b5b81516200050e84826020860162000499565b91505092915050565b6000806040838503121562000531576200053062000764565b5b600083015167ffffffffffffffff8111156200055257620005516200075f565b5b6200056085828601620004e4565b925050602083015167ffffffffffffffff8111156200058457620005836200075f565b5b6200059285828601620004e4565b9150509250929050565b6000620005ab60208362000644565b9150620005b8826200077a565b602082019050919050565b60006020820190508181036000830152620005de816200059c565b9050919050565b6000620005f162000604565b9050620005ff8282620006c1565b919050565b6000604051905090565b600067ffffffffffffffff8211156200062c576200062b62000726565b5b620006378262000769565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200067557808201518184015260208101905062000658565b8381111562000685576000848401525b50505050565b60006002820490506001821680620006a457607f821691505b60208210811415620006bb57620006ba620006f7565b5b50919050565b620006cc8262000769565b810181811067ffffffffffffffff82111715620006ee57620006ed62000726565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613f3a80620007b36000396000f3fe60806040526004361061027d5760003560e01c80636c0360eb1161014f578063b88d4fde116100c1578063dc33e6811161007a578063dc33e6811461096a578063e1cf8baa146109a7578063e268e4d3146109d0578063e985e9c5146109f9578063f2c4ce1e14610a36578063f2fde38b14610a5f5761027d565b8063b88d4fde1461085a578063bd7a199814610883578063c6682862146108ae578063c87b56dd146108d9578063d5abeb0114610916578063da3ef23f146109415761027d565b8063940cd05b11610113578063940cd05b1461075957806395d89b41146107825780639c70b512146107ad578063a0712d68146107d8578063a22cb465146107f4578063a7cd52cb1461081d5761027d565b80636c0360eb1461067257806370a082311461069d578063715018a6146106da5780638462151c146106f15780638da5cb5b1461072e5761027d565b8063351de26e116101f357806350839bef116101ac57806350839bef14610560578063518302271461058b57806355f804b3146105b65780635c975abb146105df578063624208ae1461060a5780636352211e146106355761027d565b8063351de26e146104755780633af32abf1461049e5780633c952764146104db5780633ccfd60b1461050457806342842e0e1461050e57806344a0d68a146105375761027d565b8063095ea7b311610245578063095ea7b31461037b5780630fbe4fe2146103a457806313faede6146103cd578063149835a0146103f857806318160ddd1461042157806323b872dd1461044c5761027d565b806301ffc9a71461028257806302329a29146102bf57806306fdde03146102e8578063081812fc14610313578063081c8c4414610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906130ec565b610a88565b6040516102b69190613603565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e191906130bf565b610b1a565b005b3480156102f457600080fd5b506102fd610b3f565b60405161030a919061361e565b60405180910390f35b34801561031f57600080fd5b5061033a6004803603810190610335919061318f565b610bd1565b604051610347919061357a565b60405180910390f35b34801561035c57600080fd5b50610365610c50565b604051610372919061361e565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d919061307f565b610cde565b005b3480156103b057600080fd5b506103cb60048036038101906103c6919061318f565b610e22565b005b3480156103d957600080fd5b506103e2610fd7565b6040516103ef91906137a0565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a919061318f565b610fdd565b005b34801561042d57600080fd5b50610436610fef565b60405161044391906137a0565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190612f69565b611006565b005b34801561048157600080fd5b5061049c6004803603810190610497919061318f565b61132b565b005b3480156104aa57600080fd5b506104c560048036038101906104c09190612efc565b61133d565b6040516104d291906137a0565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd91906130bf565b611386565b005b61050c6113ab565b005b34801561051a57600080fd5b5061053560048036038101906105309190612f69565b6114d6565b005b34801561054357600080fd5b5061055e6004803603810190610559919061318f565b6114f6565b005b34801561056c57600080fd5b50610575611508565b60405161058291906137a0565b60405180910390f35b34801561059757600080fd5b506105a061150e565b6040516105ad9190613603565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d89190613146565b611521565b005b3480156105eb57600080fd5b506105f4611543565b6040516106019190613603565b60405180910390f35b34801561061657600080fd5b5061061f611556565b60405161062c91906137a0565b60405180910390f35b34801561064157600080fd5b5061065c6004803603810190610657919061318f565b61155c565b604051610669919061357a565b60405180910390f35b34801561067e57600080fd5b5061068761156e565b604051610694919061361e565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190612efc565b6115fc565b6040516106d191906137a0565b60405180910390f35b3480156106e657600080fd5b506106ef6116b5565b005b3480156106fd57600080fd5b5061071860048036038101906107139190612efc565b6116c9565b60405161072591906135e1565b60405180910390f35b34801561073a57600080fd5b50610743611813565b604051610750919061357a565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b91906130bf565b61183d565b005b34801561078e57600080fd5b50610797611862565b6040516107a4919061361e565b60405180910390f35b3480156107b957600080fd5b506107c26118f4565b6040516107cf9190613603565b60405180910390f35b6107f260048036038101906107ed919061318f565b611907565b005b34801561080057600080fd5b5061081b6004803603810190610816919061303f565b611cc9565b005b34801561082957600080fd5b50610844600480360381019061083f9190612efc565b611e41565b60405161085191906137a0565b60405180910390f35b34801561086657600080fd5b50610881600480360381019061087c9190612fbc565b611e59565b005b34801561088f57600080fd5b50610898611ecc565b6040516108a591906137a0565b60405180910390f35b3480156108ba57600080fd5b506108c3611ed2565b6040516108d0919061361e565b60405180910390f35b3480156108e557600080fd5b5061090060048036038101906108fb919061318f565b611f60565b60405161090d919061361e565b60405180910390f35b34801561092257600080fd5b5061092b6120b9565b60405161093891906137a0565b60405180910390f35b34801561094d57600080fd5b5061096860048036038101906109639190613146565b6120bf565b005b34801561097657600080fd5b50610991600480360381019061098c9190612efc565b6120e1565b60405161099e91906137a0565b60405180910390f35b3480156109b357600080fd5b506109ce60048036038101906109c9919061318f565b6120f3565b005b3480156109dc57600080fd5b506109f760048036038101906109f2919061318f565b612105565b005b348015610a0557600080fd5b50610a206004803603810190610a1b9190612f29565b612117565b604051610a2d9190613603565b60405180910390f35b348015610a4257600080fd5b50610a5d6004803603810190610a589190613146565b6121ab565b005b348015610a6b57600080fd5b50610a866004803603810190610a819190612efc565b6121cd565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b135750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610b22612251565b80601260006101000a81548160ff02191690831515021790555050565b606060028054610b4e90613aa9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7a90613aa9565b8015610bc75780601f10610b9c57610100808354040283529160200191610bc7565b820191906000526020600020905b815481529060010190602001808311610baa57829003601f168201915b5050505050905090565b6000610bdc826122cf565b610c12576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610c5d90613aa9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8990613aa9565b8015610cd65780601f10610cab57610100808354040283529160200191610cd6565b820191906000526020600020905b815481529060010190602001808311610cb957829003601f168201915b505050505081565b6000610ce98261155c565b90508073ffffffffffffffffffffffffffffffffffffffff16610d0a61232e565b73ffffffffffffffffffffffffffffffffffffffff1614610d6d57610d3681610d3161232e565b612117565b610d6c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60026009541415610e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f90613760565b60405180910390fd5b6002600981905550601260009054906101000a900460ff1615610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790613720565b60405180910390fd5b60115481610ed4610ecf61232e565b612336565b610ede91906138de565b1115610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690613740565b60405180910390fd5b601154811115610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b90613640565b60405180910390fd5b600f5481610f70610fef565b610f7a91906138de565b1115610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290613680565b60405180910390fd5b610fcc610fc661232e565b8261238d565b600160098190555050565b600d5481565b610fe5612251565b80600e8190555050565b6000610ff96123ab565b6001546000540303905090565b6000611011826123b4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611078576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061108484612482565b9150915061109a818761109561232e565b6124a9565b6110e6576110af866110aa61232e565b612117565b6110e5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561114d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61115a86868660016124ed565b801561116557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506112338561120f8888876124f3565b7c02000000000000000000000000000000000000000000000000000000001761251b565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156112bb5760006001850190506000600460008381526020019081526020016000205414156112b95760005481146112b8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113238686866001612546565b505050505050565b611333612251565b8060118190555050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61138e612251565b80601260026101000a81548160ff02191690831515021790555050565b6113b3612251565b6000733f122cae3d814c4140a6b1d5c4c99c97c7e9d92073ffffffffffffffffffffffffffffffffffffffff1660646021476113ef9190613965565b6113f99190613934565b60405161140590613565565b60006040518083038185875af1925050503d8060008114611442576040519150601f19603f3d011682016040523d82523d6000602084013e611447565b606091505b505090508061145557600080fd5b600061145f611813565b73ffffffffffffffffffffffffffffffffffffffff164760405161148290613565565b60006040518083038185875af1925050503d80600081146114bf576040519150601f19603f3d011682016040523d82523d6000602084013e6114c4565b606091505b50509050806114d257600080fd5b5050565b6114f183838360405180602001604052806000815250611e59565b505050565b6114fe612251565b80600d8190555050565b600f5481565b601260019054906101000a900460ff1681565b611529612251565b80600a908051906020019061153f929190612cc1565b5050565b601260009054906101000a900460ff1681565b60115481565b6000611567826123b4565b9050919050565b600a805461157b90613aa9565b80601f01602080910402602001604051908101604052809291908181526020018280546115a790613aa9565b80156115f45780601f106115c9576101008083540402835291602001916115f4565b820191906000526020600020905b8154815290600101906020018083116115d757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611664576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116bd612251565b6116c7600061254c565b565b606060008060006116d9856115fc565b905060008167ffffffffffffffff8111156116f7576116f6613c42565b5b6040519080825280602002602001820160405280156117255781602001602082028036833780820191505090505b509050611730612d47565b600061173a6123ab565b90505b8386146118055761174d81612612565b915081604001511561175e576117fa565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461179e57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156117f957808387806001019850815181106117ec576117eb613c13565b5b6020026020010181815250505b5b80600101905061173d565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611845612251565b80601260016101000a81548160ff02191690831515021790555050565b60606003805461187190613aa9565b80601f016020809104026020016040519081016040528092919081815260200182805461189d90613aa9565b80156118ea5780601f106118bf576101008083540402835291602001916118ea565b820191906000526020600020905b8154815290600101906020018083116118cd57829003601f168201915b5050505050905090565b601260029054906101000a900460ff1681565b6002600954141561194d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194490613760565b60405180910390fd5b600260098190555060011515601260029054906101000a900460ff1615151415611b1157601260009054906101000a900460ff16156119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b890613720565b60405180910390fd5b601054811115611a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fd90613780565b60405180910390fd5b600e5481611a12610fef565b611a1c91906138de565b1115611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a54906136c0565b60405180910390fd5b60105481611a71611a6c61232e565b612336565b611a7b91906138de565b1115611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390613740565b60405180910390fd5b80600d54611aca9190613965565b341015611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0390613700565b60405180910390fd5b611cad565b601260009054906101000a900460ff1615611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5890613720565b60405180910390fd5b601054811115611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90613780565b60405180910390fd5b600e5481611bb2610fef565b611bbc91906138de565b1115611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf4906136c0565b60405180910390fd5b60105481611c11611c0c61232e565b612336565b611c1b91906138de565b1115611c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5390613740565b60405180910390fd5b80600d54611c6a9190613965565b341015611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca390613700565b60405180910390fd5b5b611cbe611cb861232e565b8261238d565b600160098190555050565b611cd161232e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d36576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611d4361232e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611df061232e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e359190613603565b60405180910390a35050565b60136020528060005260406000206000915090505481565b611e64848484611006565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ec657611e8f8484848461263d565b611ec5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60105481565b600b8054611edf90613aa9565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0b90613aa9565b8015611f585780601f10611f2d57610100808354040283529160200191611f58565b820191906000526020600020905b815481529060010190602001808311611f3b57829003601f168201915b505050505081565b6060611f6b826122cf565b611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190613660565b60405180910390fd5b60001515601260019054906101000a900460ff161515141561205857600c8054611fd390613aa9565b80601f0160208091040260200160405190810160405280929190818152602001828054611fff90613aa9565b801561204c5780601f106120215761010080835404028352916020019161204c565b820191906000526020600020905b81548152906001019060200180831161202f57829003601f168201915b505050505090506120b4565b600061206261279d565b9050600081511161208257604051806020016040528060008152506120b0565b8061208c8461282f565b600b6040516020016120a093929190613534565b6040516020818303038152906040525b9150505b919050565b600e5481565b6120c7612251565b80600b90805190602001906120dd929190612cc1565b5050565b60006120ec82612336565b9050919050565b6120fb612251565b80600f8190555050565b61210d612251565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121b3612251565b80600c90805190602001906121c9929190612cc1565b5050565b6121d5612251565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c906136a0565b60405180910390fd5b61224e8161254c565b50565b612259612990565b73ffffffffffffffffffffffffffffffffffffffff16612277611813565b73ffffffffffffffffffffffffffffffffffffffff16146122cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c4906136e0565b60405180910390fd5b565b6000816122da6123ab565b111580156122e9575060005482105b8015612327575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6123a7828260405180602001604052806000815250612998565b5050565b60006001905090565b600080829050806123c36123ab565b1161244b5760005481101561244a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612448575b600081141561243e576004600083600190039350838152602001908152602001600020549050612413565b809250505061247d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861250a868684612a35565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61261a612d47565b6126366004600084815260200190815260200160002054612a3e565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261266361232e565b8786866040518563ffffffff1660e01b81526004016126859493929190613595565b602060405180830381600087803b15801561269f57600080fd5b505af19250505080156126d057506040513d601f19601f820116820180604052508101906126cd9190613119565b60015b61274a573d8060008114612700576040519150601f19603f3d011682016040523d82523d6000602084013e612705565b606091505b50600081511415612742576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546127ac90613aa9565b80601f01602080910402602001604051908101604052809291908181526020018280546127d890613aa9565b80156128255780601f106127fa57610100808354040283529160200191612825565b820191906000526020600020905b81548152906001019060200180831161280857829003601f168201915b5050505050905090565b60606000821415612877576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061298b565b600082905060005b600082146128a957808061289290613b0c565b915050600a826128a29190613934565b915061287f565b60008167ffffffffffffffff8111156128c5576128c4613c42565b5b6040519080825280601f01601f1916602001820160405280156128f75781602001600182028036833780820191505090505b5090505b600085146129845760018261291091906139bf565b9150600a8561291f9190613b55565b603061292b91906138de565b60f81b81838151811061294157612940613c13565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561297d9190613934565b94506128fb565b8093505050505b919050565b600033905090565b6129a28383612af4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a3057600080549050600083820390505b6129e2600086838060010194508661263d565b612a18576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106129cf578160005414612a2d57600080fd5b50505b505050565b60009392505050565b612a46612d47565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6000805490506000821415612b35576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b4260008483856124ed565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612bb983612baa60008660006124f3565b612bb385612cb1565b1761251b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612c5a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612c1f565b506000821415612c96576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612cac6000848385612546565b505050565b60006001821460e11b9050919050565b828054612ccd90613aa9565b90600052602060002090601f016020900481019282612cef5760008555612d36565b82601f10612d0857805160ff1916838001178555612d36565b82800160010185558215612d36579182015b82811115612d35578251825591602001919060010190612d1a565b5b509050612d439190612d96565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612daf576000816000905550600101612d97565b5090565b6000612dc6612dc1846137e0565b6137bb565b905082815260208101848484011115612de257612de1613c76565b5b612ded848285613a67565b509392505050565b6000612e08612e0384613811565b6137bb565b905082815260208101848484011115612e2457612e23613c76565b5b612e2f848285613a67565b509392505050565b600081359050612e4681613ea8565b92915050565b600081359050612e5b81613ebf565b92915050565b600081359050612e7081613ed6565b92915050565b600081519050612e8581613ed6565b92915050565b600082601f830112612ea057612e9f613c71565b5b8135612eb0848260208601612db3565b91505092915050565b600082601f830112612ece57612ecd613c71565b5b8135612ede848260208601612df5565b91505092915050565b600081359050612ef681613eed565b92915050565b600060208284031215612f1257612f11613c80565b5b6000612f2084828501612e37565b91505092915050565b60008060408385031215612f4057612f3f613c80565b5b6000612f4e85828601612e37565b9250506020612f5f85828601612e37565b9150509250929050565b600080600060608486031215612f8257612f81613c80565b5b6000612f9086828701612e37565b9350506020612fa186828701612e37565b9250506040612fb286828701612ee7565b9150509250925092565b60008060008060808587031215612fd657612fd5613c80565b5b6000612fe487828801612e37565b9450506020612ff587828801612e37565b935050604061300687828801612ee7565b925050606085013567ffffffffffffffff81111561302757613026613c7b565b5b61303387828801612e8b565b91505092959194509250565b6000806040838503121561305657613055613c80565b5b600061306485828601612e37565b925050602061307585828601612e4c565b9150509250929050565b6000806040838503121561309657613095613c80565b5b60006130a485828601612e37565b92505060206130b585828601612ee7565b9150509250929050565b6000602082840312156130d5576130d4613c80565b5b60006130e384828501612e4c565b91505092915050565b60006020828403121561310257613101613c80565b5b600061311084828501612e61565b91505092915050565b60006020828403121561312f5761312e613c80565b5b600061313d84828501612e76565b91505092915050565b60006020828403121561315c5761315b613c80565b5b600082013567ffffffffffffffff81111561317a57613179613c7b565b5b61318684828501612eb9565b91505092915050565b6000602082840312156131a5576131a4613c80565b5b60006131b384828501612ee7565b91505092915050565b60006131c88383613516565b60208301905092915050565b6131dd816139f3565b82525050565b60006131ee82613867565b6131f88185613895565b935061320383613842565b8060005b8381101561323457815161321b88826131bc565b975061322683613888565b925050600181019050613207565b5085935050505092915050565b61324a81613a05565b82525050565b600061325b82613872565b61326581856138a6565b9350613275818560208601613a76565b61327e81613c85565b840191505092915050565b60006132948261387d565b61329e81856138c2565b93506132ae818560208601613a76565b6132b781613c85565b840191505092915050565b60006132cd8261387d565b6132d781856138d3565b93506132e7818560208601613a76565b80840191505092915050565b6000815461330081613aa9565b61330a81866138d3565b94506001821660008114613325576001811461333657613369565b60ff19831686528186019350613369565b61333f85613852565b60005b8381101561336157815481890152600182019150602081019050613342565b838801955050505b50505092915050565b600061337f6018836138c2565b915061338a82613c96565b602082019050919050565b60006133a26030836138c2565b91506133ad82613cbf565b604082019050919050565b60006133c5601c836138c2565b91506133d082613d0e565b602082019050919050565b60006133e86026836138c2565b91506133f382613d37565b604082019050919050565b600061340b600a836138c2565b915061341682613d86565b602082019050919050565b600061342e6020836138c2565b915061343982613daf565b602082019050919050565b60006134516000836138b7565b915061345c82613dd8565b600082019050919050565b60006134746012836138c2565b915061347f82613ddb565b602082019050919050565b60006134976012836138c2565b91506134a282613e04565b602082019050919050565b60006134ba601b836138c2565b91506134c582613e2d565b602082019050919050565b60006134dd601f836138c2565b91506134e882613e56565b602082019050919050565b6000613500601f836138c2565b915061350b82613e7f565b602082019050919050565b61351f81613a5d565b82525050565b61352e81613a5d565b82525050565b600061354082866132c2565b915061354c82856132c2565b915061355882846132f3565b9150819050949350505050565b600061357082613444565b9150819050919050565b600060208201905061358f60008301846131d4565b92915050565b60006080820190506135aa60008301876131d4565b6135b760208301866131d4565b6135c46040830185613525565b81810360608301526135d68184613250565b905095945050505050565b600060208201905081810360008301526135fb81846131e3565b905092915050565b60006020820190506136186000830184613241565b92915050565b600060208201905081810360008301526136388184613289565b905092915050565b6000602082019050818103600083015261365981613372565b9050919050565b6000602082019050818103600083015261367981613395565b9050919050565b60006020820190508181036000830152613699816133b8565b9050919050565b600060208201905081810360008301526136b9816133db565b9050919050565b600060208201905081810360008301526136d9816133fe565b9050919050565b600060208201905081810360008301526136f981613421565b9050919050565b6000602082019050818103600083015261371981613467565b9050919050565b600060208201905081810360008301526137398161348a565b9050919050565b60006020820190508181036000830152613759816134ad565b9050919050565b60006020820190508181036000830152613779816134d0565b9050919050565b60006020820190508181036000830152613799816134f3565b9050919050565b60006020820190506137b56000830184613525565b92915050565b60006137c56137d6565b90506137d18282613adb565b919050565b6000604051905090565b600067ffffffffffffffff8211156137fb576137fa613c42565b5b61380482613c85565b9050602081019050919050565b600067ffffffffffffffff82111561382c5761382b613c42565b5b61383582613c85565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006138e982613a5d565b91506138f483613a5d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561392957613928613b86565b5b828201905092915050565b600061393f82613a5d565b915061394a83613a5d565b92508261395a57613959613bb5565b5b828204905092915050565b600061397082613a5d565b915061397b83613a5d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139b4576139b3613b86565b5b828202905092915050565b60006139ca82613a5d565b91506139d583613a5d565b9250828210156139e8576139e7613b86565b5b828203905092915050565b60006139fe82613a3d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a94578082015181840152602081019050613a79565b83811115613aa3576000848401525b50505050565b60006002820490506001821680613ac157607f821691505b60208210811415613ad557613ad4613be4565b5b50919050565b613ae482613c85565b810181811067ffffffffffffffff82111715613b0357613b02613c42565b5b80604052505050565b6000613b1782613a5d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b4a57613b49613b86565b5b600182019050919050565b6000613b6082613a5d565b9150613b6b83613a5d565b925082613b7b57613b7a613bb5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6d6178206d696e74207065722054782065786365656465640000000000000000600082015250565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f57686974656c697374204d6178537570706c7920657863656564656400000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b613eb1816139f3565b8114613ebc57600080fd5b50565b613ec881613a05565b8114613ed357600080fd5b50565b613edf81613a11565b8114613eea57600080fd5b50565b613ef681613a5d565b8114613f0157600080fd5b5056fea2646970667358221220bbf106fccfe7c1ac1e5dc24d8ba0a9b2fb40beedf39124840335fa430e3e16ce64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000012f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003c697066733a2f2f516d6268775534474d364e52534753715745474a5462477a3171664d653742733833724d554a32643467395555462f312e6a736f6e00000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636c0360eb1161014f578063b88d4fde116100c1578063dc33e6811161007a578063dc33e6811461096a578063e1cf8baa146109a7578063e268e4d3146109d0578063e985e9c5146109f9578063f2c4ce1e14610a36578063f2fde38b14610a5f5761027d565b8063b88d4fde1461085a578063bd7a199814610883578063c6682862146108ae578063c87b56dd146108d9578063d5abeb0114610916578063da3ef23f146109415761027d565b8063940cd05b11610113578063940cd05b1461075957806395d89b41146107825780639c70b512146107ad578063a0712d68146107d8578063a22cb465146107f4578063a7cd52cb1461081d5761027d565b80636c0360eb1461067257806370a082311461069d578063715018a6146106da5780638462151c146106f15780638da5cb5b1461072e5761027d565b8063351de26e116101f357806350839bef116101ac57806350839bef14610560578063518302271461058b57806355f804b3146105b65780635c975abb146105df578063624208ae1461060a5780636352211e146106355761027d565b8063351de26e146104755780633af32abf1461049e5780633c952764146104db5780633ccfd60b1461050457806342842e0e1461050e57806344a0d68a146105375761027d565b8063095ea7b311610245578063095ea7b31461037b5780630fbe4fe2146103a457806313faede6146103cd578063149835a0146103f857806318160ddd1461042157806323b872dd1461044c5761027d565b806301ffc9a71461028257806302329a29146102bf57806306fdde03146102e8578063081812fc14610313578063081c8c4414610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906130ec565b610a88565b6040516102b69190613603565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e191906130bf565b610b1a565b005b3480156102f457600080fd5b506102fd610b3f565b60405161030a919061361e565b60405180910390f35b34801561031f57600080fd5b5061033a6004803603810190610335919061318f565b610bd1565b604051610347919061357a565b60405180910390f35b34801561035c57600080fd5b50610365610c50565b604051610372919061361e565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d919061307f565b610cde565b005b3480156103b057600080fd5b506103cb60048036038101906103c6919061318f565b610e22565b005b3480156103d957600080fd5b506103e2610fd7565b6040516103ef91906137a0565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a919061318f565b610fdd565b005b34801561042d57600080fd5b50610436610fef565b60405161044391906137a0565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190612f69565b611006565b005b34801561048157600080fd5b5061049c6004803603810190610497919061318f565b61132b565b005b3480156104aa57600080fd5b506104c560048036038101906104c09190612efc565b61133d565b6040516104d291906137a0565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd91906130bf565b611386565b005b61050c6113ab565b005b34801561051a57600080fd5b5061053560048036038101906105309190612f69565b6114d6565b005b34801561054357600080fd5b5061055e6004803603810190610559919061318f565b6114f6565b005b34801561056c57600080fd5b50610575611508565b60405161058291906137a0565b60405180910390f35b34801561059757600080fd5b506105a061150e565b6040516105ad9190613603565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d89190613146565b611521565b005b3480156105eb57600080fd5b506105f4611543565b6040516106019190613603565b60405180910390f35b34801561061657600080fd5b5061061f611556565b60405161062c91906137a0565b60405180910390f35b34801561064157600080fd5b5061065c6004803603810190610657919061318f565b61155c565b604051610669919061357a565b60405180910390f35b34801561067e57600080fd5b5061068761156e565b604051610694919061361e565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190612efc565b6115fc565b6040516106d191906137a0565b60405180910390f35b3480156106e657600080fd5b506106ef6116b5565b005b3480156106fd57600080fd5b5061071860048036038101906107139190612efc565b6116c9565b60405161072591906135e1565b60405180910390f35b34801561073a57600080fd5b50610743611813565b604051610750919061357a565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b91906130bf565b61183d565b005b34801561078e57600080fd5b50610797611862565b6040516107a4919061361e565b60405180910390f35b3480156107b957600080fd5b506107c26118f4565b6040516107cf9190613603565b60405180910390f35b6107f260048036038101906107ed919061318f565b611907565b005b34801561080057600080fd5b5061081b6004803603810190610816919061303f565b611cc9565b005b34801561082957600080fd5b50610844600480360381019061083f9190612efc565b611e41565b60405161085191906137a0565b60405180910390f35b34801561086657600080fd5b50610881600480360381019061087c9190612fbc565b611e59565b005b34801561088f57600080fd5b50610898611ecc565b6040516108a591906137a0565b60405180910390f35b3480156108ba57600080fd5b506108c3611ed2565b6040516108d0919061361e565b60405180910390f35b3480156108e557600080fd5b5061090060048036038101906108fb919061318f565b611f60565b60405161090d919061361e565b60405180910390f35b34801561092257600080fd5b5061092b6120b9565b60405161093891906137a0565b60405180910390f35b34801561094d57600080fd5b5061096860048036038101906109639190613146565b6120bf565b005b34801561097657600080fd5b50610991600480360381019061098c9190612efc565b6120e1565b60405161099e91906137a0565b60405180910390f35b3480156109b357600080fd5b506109ce60048036038101906109c9919061318f565b6120f3565b005b3480156109dc57600080fd5b506109f760048036038101906109f2919061318f565b612105565b005b348015610a0557600080fd5b50610a206004803603810190610a1b9190612f29565b612117565b604051610a2d9190613603565b60405180910390f35b348015610a4257600080fd5b50610a5d6004803603810190610a589190613146565b6121ab565b005b348015610a6b57600080fd5b50610a866004803603810190610a819190612efc565b6121cd565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b135750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610b22612251565b80601260006101000a81548160ff02191690831515021790555050565b606060028054610b4e90613aa9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7a90613aa9565b8015610bc75780601f10610b9c57610100808354040283529160200191610bc7565b820191906000526020600020905b815481529060010190602001808311610baa57829003601f168201915b5050505050905090565b6000610bdc826122cf565b610c12576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610c5d90613aa9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8990613aa9565b8015610cd65780601f10610cab57610100808354040283529160200191610cd6565b820191906000526020600020905b815481529060010190602001808311610cb957829003601f168201915b505050505081565b6000610ce98261155c565b90508073ffffffffffffffffffffffffffffffffffffffff16610d0a61232e565b73ffffffffffffffffffffffffffffffffffffffff1614610d6d57610d3681610d3161232e565b612117565b610d6c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60026009541415610e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f90613760565b60405180910390fd5b6002600981905550601260009054906101000a900460ff1615610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790613720565b60405180910390fd5b60115481610ed4610ecf61232e565b612336565b610ede91906138de565b1115610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690613740565b60405180910390fd5b601154811115610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b90613640565b60405180910390fd5b600f5481610f70610fef565b610f7a91906138de565b1115610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290613680565b60405180910390fd5b610fcc610fc661232e565b8261238d565b600160098190555050565b600d5481565b610fe5612251565b80600e8190555050565b6000610ff96123ab565b6001546000540303905090565b6000611011826123b4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611078576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061108484612482565b9150915061109a818761109561232e565b6124a9565b6110e6576110af866110aa61232e565b612117565b6110e5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561114d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61115a86868660016124ed565b801561116557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506112338561120f8888876124f3565b7c02000000000000000000000000000000000000000000000000000000001761251b565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156112bb5760006001850190506000600460008381526020019081526020016000205414156112b95760005481146112b8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113238686866001612546565b505050505050565b611333612251565b8060118190555050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61138e612251565b80601260026101000a81548160ff02191690831515021790555050565b6113b3612251565b6000733f122cae3d814c4140a6b1d5c4c99c97c7e9d92073ffffffffffffffffffffffffffffffffffffffff1660646021476113ef9190613965565b6113f99190613934565b60405161140590613565565b60006040518083038185875af1925050503d8060008114611442576040519150601f19603f3d011682016040523d82523d6000602084013e611447565b606091505b505090508061145557600080fd5b600061145f611813565b73ffffffffffffffffffffffffffffffffffffffff164760405161148290613565565b60006040518083038185875af1925050503d80600081146114bf576040519150601f19603f3d011682016040523d82523d6000602084013e6114c4565b606091505b50509050806114d257600080fd5b5050565b6114f183838360405180602001604052806000815250611e59565b505050565b6114fe612251565b80600d8190555050565b600f5481565b601260019054906101000a900460ff1681565b611529612251565b80600a908051906020019061153f929190612cc1565b5050565b601260009054906101000a900460ff1681565b60115481565b6000611567826123b4565b9050919050565b600a805461157b90613aa9565b80601f01602080910402602001604051908101604052809291908181526020018280546115a790613aa9565b80156115f45780601f106115c9576101008083540402835291602001916115f4565b820191906000526020600020905b8154815290600101906020018083116115d757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611664576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116bd612251565b6116c7600061254c565b565b606060008060006116d9856115fc565b905060008167ffffffffffffffff8111156116f7576116f6613c42565b5b6040519080825280602002602001820160405280156117255781602001602082028036833780820191505090505b509050611730612d47565b600061173a6123ab565b90505b8386146118055761174d81612612565b915081604001511561175e576117fa565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461179e57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156117f957808387806001019850815181106117ec576117eb613c13565b5b6020026020010181815250505b5b80600101905061173d565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611845612251565b80601260016101000a81548160ff02191690831515021790555050565b60606003805461187190613aa9565b80601f016020809104026020016040519081016040528092919081815260200182805461189d90613aa9565b80156118ea5780601f106118bf576101008083540402835291602001916118ea565b820191906000526020600020905b8154815290600101906020018083116118cd57829003601f168201915b5050505050905090565b601260029054906101000a900460ff1681565b6002600954141561194d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194490613760565b60405180910390fd5b600260098190555060011515601260029054906101000a900460ff1615151415611b1157601260009054906101000a900460ff16156119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b890613720565b60405180910390fd5b601054811115611a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fd90613780565b60405180910390fd5b600e5481611a12610fef565b611a1c91906138de565b1115611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a54906136c0565b60405180910390fd5b60105481611a71611a6c61232e565b612336565b611a7b91906138de565b1115611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390613740565b60405180910390fd5b80600d54611aca9190613965565b341015611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0390613700565b60405180910390fd5b611cad565b601260009054906101000a900460ff1615611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5890613720565b60405180910390fd5b601054811115611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90613780565b60405180910390fd5b600e5481611bb2610fef565b611bbc91906138de565b1115611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf4906136c0565b60405180910390fd5b60105481611c11611c0c61232e565b612336565b611c1b91906138de565b1115611c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5390613740565b60405180910390fd5b80600d54611c6a9190613965565b341015611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca390613700565b60405180910390fd5b5b611cbe611cb861232e565b8261238d565b600160098190555050565b611cd161232e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d36576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611d4361232e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611df061232e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e359190613603565b60405180910390a35050565b60136020528060005260406000206000915090505481565b611e64848484611006565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ec657611e8f8484848461263d565b611ec5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60105481565b600b8054611edf90613aa9565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0b90613aa9565b8015611f585780601f10611f2d57610100808354040283529160200191611f58565b820191906000526020600020905b815481529060010190602001808311611f3b57829003601f168201915b505050505081565b6060611f6b826122cf565b611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190613660565b60405180910390fd5b60001515601260019054906101000a900460ff161515141561205857600c8054611fd390613aa9565b80601f0160208091040260200160405190810160405280929190818152602001828054611fff90613aa9565b801561204c5780601f106120215761010080835404028352916020019161204c565b820191906000526020600020905b81548152906001019060200180831161202f57829003601f168201915b505050505090506120b4565b600061206261279d565b9050600081511161208257604051806020016040528060008152506120b0565b8061208c8461282f565b600b6040516020016120a093929190613534565b6040516020818303038152906040525b9150505b919050565b600e5481565b6120c7612251565b80600b90805190602001906120dd929190612cc1565b5050565b60006120ec82612336565b9050919050565b6120fb612251565b80600f8190555050565b61210d612251565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121b3612251565b80600c90805190602001906121c9929190612cc1565b5050565b6121d5612251565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c906136a0565b60405180910390fd5b61224e8161254c565b50565b612259612990565b73ffffffffffffffffffffffffffffffffffffffff16612277611813565b73ffffffffffffffffffffffffffffffffffffffff16146122cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c4906136e0565b60405180910390fd5b565b6000816122da6123ab565b111580156122e9575060005482105b8015612327575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6123a7828260405180602001604052806000815250612998565b5050565b60006001905090565b600080829050806123c36123ab565b1161244b5760005481101561244a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612448575b600081141561243e576004600083600190039350838152602001908152602001600020549050612413565b809250505061247d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861250a868684612a35565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61261a612d47565b6126366004600084815260200190815260200160002054612a3e565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261266361232e565b8786866040518563ffffffff1660e01b81526004016126859493929190613595565b602060405180830381600087803b15801561269f57600080fd5b505af19250505080156126d057506040513d601f19601f820116820180604052508101906126cd9190613119565b60015b61274a573d8060008114612700576040519150601f19603f3d011682016040523d82523d6000602084013e612705565b606091505b50600081511415612742576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546127ac90613aa9565b80601f01602080910402602001604051908101604052809291908181526020018280546127d890613aa9565b80156128255780601f106127fa57610100808354040283529160200191612825565b820191906000526020600020905b81548152906001019060200180831161280857829003601f168201915b5050505050905090565b60606000821415612877576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061298b565b600082905060005b600082146128a957808061289290613b0c565b915050600a826128a29190613934565b915061287f565b60008167ffffffffffffffff8111156128c5576128c4613c42565b5b6040519080825280601f01601f1916602001820160405280156128f75781602001600182028036833780820191505090505b5090505b600085146129845760018261291091906139bf565b9150600a8561291f9190613b55565b603061292b91906138de565b60f81b81838151811061294157612940613c13565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561297d9190613934565b94506128fb565b8093505050505b919050565b600033905090565b6129a28383612af4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a3057600080549050600083820390505b6129e2600086838060010194508661263d565b612a18576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106129cf578160005414612a2d57600080fd5b50505b505050565b60009392505050565b612a46612d47565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6000805490506000821415612b35576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b4260008483856124ed565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612bb983612baa60008660006124f3565b612bb385612cb1565b1761251b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612c5a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612c1f565b506000821415612c96576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612cac6000848385612546565b505050565b60006001821460e11b9050919050565b828054612ccd90613aa9565b90600052602060002090601f016020900481019282612cef5760008555612d36565b82601f10612d0857805160ff1916838001178555612d36565b82800160010185558215612d36579182015b82811115612d35578251825591602001919060010190612d1a565b5b509050612d439190612d96565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612daf576000816000905550600101612d97565b5090565b6000612dc6612dc1846137e0565b6137bb565b905082815260208101848484011115612de257612de1613c76565b5b612ded848285613a67565b509392505050565b6000612e08612e0384613811565b6137bb565b905082815260208101848484011115612e2457612e23613c76565b5b612e2f848285613a67565b509392505050565b600081359050612e4681613ea8565b92915050565b600081359050612e5b81613ebf565b92915050565b600081359050612e7081613ed6565b92915050565b600081519050612e8581613ed6565b92915050565b600082601f830112612ea057612e9f613c71565b5b8135612eb0848260208601612db3565b91505092915050565b600082601f830112612ece57612ecd613c71565b5b8135612ede848260208601612df5565b91505092915050565b600081359050612ef681613eed565b92915050565b600060208284031215612f1257612f11613c80565b5b6000612f2084828501612e37565b91505092915050565b60008060408385031215612f4057612f3f613c80565b5b6000612f4e85828601612e37565b9250506020612f5f85828601612e37565b9150509250929050565b600080600060608486031215612f8257612f81613c80565b5b6000612f9086828701612e37565b9350506020612fa186828701612e37565b9250506040612fb286828701612ee7565b9150509250925092565b60008060008060808587031215612fd657612fd5613c80565b5b6000612fe487828801612e37565b9450506020612ff587828801612e37565b935050604061300687828801612ee7565b925050606085013567ffffffffffffffff81111561302757613026613c7b565b5b61303387828801612e8b565b91505092959194509250565b6000806040838503121561305657613055613c80565b5b600061306485828601612e37565b925050602061307585828601612e4c565b9150509250929050565b6000806040838503121561309657613095613c80565b5b60006130a485828601612e37565b92505060206130b585828601612ee7565b9150509250929050565b6000602082840312156130d5576130d4613c80565b5b60006130e384828501612e4c565b91505092915050565b60006020828403121561310257613101613c80565b5b600061311084828501612e61565b91505092915050565b60006020828403121561312f5761312e613c80565b5b600061313d84828501612e76565b91505092915050565b60006020828403121561315c5761315b613c80565b5b600082013567ffffffffffffffff81111561317a57613179613c7b565b5b61318684828501612eb9565b91505092915050565b6000602082840312156131a5576131a4613c80565b5b60006131b384828501612ee7565b91505092915050565b60006131c88383613516565b60208301905092915050565b6131dd816139f3565b82525050565b60006131ee82613867565b6131f88185613895565b935061320383613842565b8060005b8381101561323457815161321b88826131bc565b975061322683613888565b925050600181019050613207565b5085935050505092915050565b61324a81613a05565b82525050565b600061325b82613872565b61326581856138a6565b9350613275818560208601613a76565b61327e81613c85565b840191505092915050565b60006132948261387d565b61329e81856138c2565b93506132ae818560208601613a76565b6132b781613c85565b840191505092915050565b60006132cd8261387d565b6132d781856138d3565b93506132e7818560208601613a76565b80840191505092915050565b6000815461330081613aa9565b61330a81866138d3565b94506001821660008114613325576001811461333657613369565b60ff19831686528186019350613369565b61333f85613852565b60005b8381101561336157815481890152600182019150602081019050613342565b838801955050505b50505092915050565b600061337f6018836138c2565b915061338a82613c96565b602082019050919050565b60006133a26030836138c2565b91506133ad82613cbf565b604082019050919050565b60006133c5601c836138c2565b91506133d082613d0e565b602082019050919050565b60006133e86026836138c2565b91506133f382613d37565b604082019050919050565b600061340b600a836138c2565b915061341682613d86565b602082019050919050565b600061342e6020836138c2565b915061343982613daf565b602082019050919050565b60006134516000836138b7565b915061345c82613dd8565b600082019050919050565b60006134746012836138c2565b915061347f82613ddb565b602082019050919050565b60006134976012836138c2565b91506134a282613e04565b602082019050919050565b60006134ba601b836138c2565b91506134c582613e2d565b602082019050919050565b60006134dd601f836138c2565b91506134e882613e56565b602082019050919050565b6000613500601f836138c2565b915061350b82613e7f565b602082019050919050565b61351f81613a5d565b82525050565b61352e81613a5d565b82525050565b600061354082866132c2565b915061354c82856132c2565b915061355882846132f3565b9150819050949350505050565b600061357082613444565b9150819050919050565b600060208201905061358f60008301846131d4565b92915050565b60006080820190506135aa60008301876131d4565b6135b760208301866131d4565b6135c46040830185613525565b81810360608301526135d68184613250565b905095945050505050565b600060208201905081810360008301526135fb81846131e3565b905092915050565b60006020820190506136186000830184613241565b92915050565b600060208201905081810360008301526136388184613289565b905092915050565b6000602082019050818103600083015261365981613372565b9050919050565b6000602082019050818103600083015261367981613395565b9050919050565b60006020820190508181036000830152613699816133b8565b9050919050565b600060208201905081810360008301526136b9816133db565b9050919050565b600060208201905081810360008301526136d9816133fe565b9050919050565b600060208201905081810360008301526136f981613421565b9050919050565b6000602082019050818103600083015261371981613467565b9050919050565b600060208201905081810360008301526137398161348a565b9050919050565b60006020820190508181036000830152613759816134ad565b9050919050565b60006020820190508181036000830152613779816134d0565b9050919050565b60006020820190508181036000830152613799816134f3565b9050919050565b60006020820190506137b56000830184613525565b92915050565b60006137c56137d6565b90506137d18282613adb565b919050565b6000604051905090565b600067ffffffffffffffff8211156137fb576137fa613c42565b5b61380482613c85565b9050602081019050919050565b600067ffffffffffffffff82111561382c5761382b613c42565b5b61383582613c85565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006138e982613a5d565b91506138f483613a5d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561392957613928613b86565b5b828201905092915050565b600061393f82613a5d565b915061394a83613a5d565b92508261395a57613959613bb5565b5b828204905092915050565b600061397082613a5d565b915061397b83613a5d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139b4576139b3613b86565b5b828202905092915050565b60006139ca82613a5d565b91506139d583613a5d565b9250828210156139e8576139e7613b86565b5b828203905092915050565b60006139fe82613a3d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a94578082015181840152602081019050613a79565b83811115613aa3576000848401525b50505050565b60006002820490506001821680613ac157607f821691505b60208210811415613ad557613ad4613be4565b5b50919050565b613ae482613c85565b810181811067ffffffffffffffff82111715613b0357613b02613c42565b5b80604052505050565b6000613b1782613a5d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b4a57613b49613b86565b5b600182019050919050565b6000613b6082613a5d565b9150613b6b83613a5d565b925082613b7b57613b7a613bb5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6d6178206d696e74207065722054782065786365656465640000000000000000600082015250565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f57686974656c697374204d6178537570706c7920657863656564656400000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b613eb1816139f3565b8114613ebc57600080fd5b50565b613ec881613a05565b8114613ed357600080fd5b50565b613edf81613a11565b8114613eea57600080fd5b50565b613ef681613a5d565b8114613f0157600080fd5b5056fea2646970667358221220bbf106fccfe7c1ac1e5dc24d8ba0a9b2fb40beedf39124840335fa430e3e16ce64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000012f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003c697066733a2f2f516d6268775534474d364e52534753715745474a5462477a3171664d653742733833724d554a32643467395555462f312e6a736f6e00000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): /
Arg [1] : _notRevealedUri (string): ipfs://QmbhwU4GM6NRSGSqWEGJTbGz1qfMe7Bs83rMUJ2d4g9UUF/1.json

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 2f00000000000000000000000000000000000000000000000000000000000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [5] : 697066733a2f2f516d6268775534474d364e52534753715745474a5462477a31
Arg [6] : 71664d653742733833724d554a32643467395555462f312e6a736f6e00000000


Deployed Bytecode Sourcemap

60221:6467:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27323:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65625:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28225:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34708:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60383:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34149:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62161:424;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60416:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64853:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23976:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38415:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64549:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65812:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65706:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65931:754;;;:::i;:::-;;41328:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64718:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60492:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60636:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65116:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60606:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60566:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29618:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60315:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25160:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8071:103;;;;;;;;;;;;;:::i;:::-;;63374:881;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7423:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64277:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28401:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60669:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61234:897;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35266:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60709:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42111:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60530:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60341:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62639:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60455:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65269:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63202:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64986:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64406:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35731:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65425:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8329:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27323:639;27408:4;27747:10;27732:25;;:11;:25;;;;:102;;;;27824:10;27809:25;;:11;:25;;;;27732:102;:179;;;;27901:10;27886:25;;:11;:25;;;;27732:179;27712:199;;27323:639;;;:::o;65625:73::-;7309:13;:11;:13::i;:::-;65686:6:::1;65677;;:15;;;;;;;;;;;;;;;;;;65625:73:::0;:::o;28225:100::-;28279:13;28312:5;28305:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28225:100;:::o;34708:218::-;34784:7;34809:16;34817:7;34809;:16::i;:::-;34804:64;;34834:34;;;;;;;;;;;;;;34804:64;34888:15;:24;34904:7;34888:24;;;;;;;;;;;:30;;;;;;;;;;;;34881:37;;34708:218;;;:::o;60383:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34149:400::-;34230:13;34246:16;34254:7;34246;:16::i;:::-;34230:32;;34302:5;34279:28;;:19;:17;:19::i;:::-;:28;;;34275:175;;34327:44;34344:5;34351:19;:17;:19::i;:::-;34327:16;:44::i;:::-;34322:128;;34399:35;;;;;;;;;;;;;;34322:128;34275:175;34495:2;34462:15;:24;34478:7;34462:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34533:7;34529:2;34513:28;;34522:5;34513:28;;;;;;;;;;;;34219:330;34149:400;;:::o;62161:424::-;1851:1;2449:7;;:19;;2441:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1851:1;2582:7;:18;;;;62231:6:::1;;;;;;;;;;;62230:7;62222:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;62322:16;;62312:6;62275:34;62289:19;:17;:19::i;:::-;62275:13;:34::i;:::-;:43;;;;:::i;:::-;:63;;62267:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;62395:16;;62385:6;:26;;62377:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;62481:10;;62471:6;62455:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;62447:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;62535:38;62545:19;:17;:19::i;:::-;62566:6;62535:9;:38::i;:::-;1807:1:::0;2761:7;:22;;;;62161:424;:::o;60416:34::-;;;;:::o;64853:94::-;7309:13;:11;:13::i;:::-;64931:10:::1;64919:9;:22;;;;64853:94:::0;:::o;23976:323::-;24037:7;24265:15;:13;:15::i;:::-;24250:12;;24234:13;;:28;:46;24227:53;;23976:323;:::o;38415:2817::-;38549:27;38579;38598:7;38579:18;:27::i;:::-;38549:57;;38664:4;38623:45;;38639:19;38623:45;;;38619:86;;38677:28;;;;;;;;;;;;;;38619:86;38719:27;38748:23;38775:35;38802:7;38775:26;:35::i;:::-;38718:92;;;;38910:68;38935:15;38952:4;38958:19;:17;:19::i;:::-;38910:24;:68::i;:::-;38905:180;;38998:43;39015:4;39021:19;:17;:19::i;:::-;38998:16;:43::i;:::-;38993:92;;39050:35;;;;;;;;;;;;;;38993:92;38905:180;39116:1;39102:16;;:2;:16;;;39098:52;;;39127:23;;;;;;;;;;;;;;39098:52;39163:43;39185:4;39191:2;39195:7;39204:1;39163:21;:43::i;:::-;39299:15;39296:160;;;39439:1;39418:19;39411:30;39296:160;39836:18;:24;39855:4;39836:24;;;;;;;;;;;;;;;;39834:26;;;;;;;;;;;;39905:18;:22;39924:2;39905:22;;;;;;;;;;;;;;;;39903:24;;;;;;;;;;;40227:146;40264:2;40313:45;40328:4;40334:2;40338:19;40313:14;:45::i;:::-;20375:8;40285:73;40227:18;:146::i;:::-;40198:17;:26;40216:7;40198:26;;;;;;;;;;;:175;;;;40544:1;20375:8;40493:19;:47;:52;40489:627;;;40566:19;40598:1;40588:7;:11;40566:33;;40755:1;40721:17;:30;40739:11;40721:30;;;;;;;;;;;;:35;40717:384;;;40859:13;;40844:11;:28;40840:242;;41039:19;41006:17;:30;41024:11;41006:30;;;;;;;;;;;:52;;;;40840:242;40717:384;40547:569;40489:627;41163:7;41159:2;41144:27;;41153:4;41144:27;;;;;;;;;;;;41182:42;41203:4;41209:2;41213:7;41222:1;41182:20;:42::i;:::-;38538:2694;;;38415:2817;;;:::o;64549:100::-;7309:13;:11;:13::i;:::-;64637:6:::1;64618:16;:25;;;;64549:100:::0;:::o;65812:113::-;65874:7;65900:9;:19;65910:8;65900:19;;;;;;;;;;;;;;;;65893:26;;65812:113;;;:::o;65706:95::-;7309:13;:11;:13::i;:::-;65789:6:::1;65771:15;;:24;;;;;;;;;;;;;;;;;;65706:95:::0;:::o;65931:754::-;7309:13;:11;:13::i;:::-;66125:7:::1;66146:42;66138:56;;66231:3;66226:2;66202:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;66138:101;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66124:115;;;66254:2;66246:11;;;::::0;::::1;;66507:7;66528;:5;:7::i;:::-;66520:21;;66549;66520:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66506:69;;;66590:2;66582:11;;;::::0;::::1;;65976:709;;65931:754::o:0;41328:185::-;41466:39;41483:4;41489:2;41493:7;41466:39;;;;;;;;;;;;:16;:39::i;:::-;41328:185;;;:::o;64718:80::-;7309:13;:11;:13::i;:::-;64784:8:::1;64777:4;:15;;;;64718:80:::0;:::o;60492:33::-;;;;:::o;60636:28::-;;;;;;;;;;;;;:::o;65116:98::-;7309:13;:11;:13::i;:::-;65197:11:::1;65187:7;:21;;;;;;;;;;;;:::i;:::-;;65116:98:::0;:::o;60606:25::-;;;;;;;;;;;;;:::o;60566:35::-;;;;:::o;29618:152::-;29690:7;29733:27;29752:7;29733:18;:27::i;:::-;29710:52;;29618:152;;;:::o;60315:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25160:233::-;25232:7;25273:1;25256:19;;:5;:19;;;25252:60;;;25284:28;;;;;;;;;;;;;;25252:60;19319:13;25330:18;:25;25349:5;25330:25;;;;;;;;;;;;;;;;:55;25323:62;;25160:233;;;:::o;8071:103::-;7309:13;:11;:13::i;:::-;8136:30:::1;8163:1;8136:18;:30::i;:::-;8071:103::o:0;63374:881::-;63433:16;63487:19;63521:25;63561:22;63586:16;63596:5;63586:9;:16::i;:::-;63561:41;;63617:25;63659:14;63645:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63617:57;;63689:31;;:::i;:::-;63740:9;63752:15;:13;:15::i;:::-;63740:27;;63735:472;63784:14;63769:11;:29;63735:472;;63836:15;63849:1;63836:12;:15::i;:::-;63824:27;;63874:9;:16;;;63870:73;;;63915:8;;63870:73;63991:1;63965:28;;:9;:14;;;:28;;;63961:111;;64038:9;:14;;;64018:34;;63961:111;64115:5;64094:26;;:17;:26;;;64090:102;;;64171:1;64145:8;64154:13;;;;;;64145:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;64090:102;63735:472;63800:3;;;;;63735:472;;;;64228:8;64221:15;;;;;;;63374:881;;;:::o;7423:87::-;7469:7;7496:6;;;;;;;;;;;7489:13;;7423:87;:::o;64277:78::-;7309:13;:11;:13::i;:::-;64343:6:::1;64332:8;;:17;;;;;;;;;;;;;;;;;;64277:78:::0;:::o;28401:104::-;28457:13;28490:7;28483:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28401:104;:::o;60669:34::-;;;;;;;;;;;;;:::o;61234:897::-;1851:1;2449:7;;:19;;2441:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1851:1;2582:7;:18;;;;61324:4:::1;61305:23;;:15;;;;;;;;;;;:23;;;61302:775;;;61345:6;;;;;;;;;;;61344:7;61336:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;61399:12;;61389:6;:22;;61381:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;61488:9;;61478:6;61462:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;61454:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;61574:12;;61564:6;61527:34;61541:19;:17;:19::i;:::-;61527:13;:34::i;:::-;:43;;;;:::i;:::-;:59;;61519:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;61653:6;61646:4;;:13;;;;:::i;:::-;61633:9;:26;;61625:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;61302:775;;;61729:6;;;;;;;;;;;61728:7;61720:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;61783:12;;61773:6;:22;;61765:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;61872:9;;61862:6;61846:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;61838:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;61958:12;;61948:6;61911:34;61925:19;:17;:19::i;:::-;61911:13;:34::i;:::-;:43;;;;:::i;:::-;:59;;61903:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;62037:6;62030:4;;:13;;;;:::i;:::-;62017:9;:26;;62009:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;61302:775;62087:38;62097:19;:17;:19::i;:::-;62118:6;62087:9;:38::i;:::-;1807:1:::0;2761:7;:22;;;;61234:897;:::o;35266:308::-;35377:19;:17;:19::i;:::-;35365:31;;:8;:31;;;35361:61;;;35405:17;;;;;;;;;;;;;;35361:61;35487:8;35435:18;:39;35454:19;:17;:19::i;:::-;35435:39;;;;;;;;;;;;;;;:49;35475:8;35435:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35547:8;35511:55;;35526:19;:17;:19::i;:::-;35511:55;;;35557:8;35511:55;;;;;;:::i;:::-;;;;;;;;35266:308;;:::o;60709:44::-;;;;;;;;;;;;;;;;;:::o;42111:399::-;42278:31;42291:4;42297:2;42301:7;42278:12;:31::i;:::-;42342:1;42324:2;:14;;;:19;42320:183;;42363:56;42394:4;42400:2;42404:7;42413:5;42363:30;:56::i;:::-;42358:145;;42447:40;;;;;;;;;;;;;;42358:145;42320:183;42111:399;;;;:::o;60530:31::-;;;;:::o;60341:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62639:498::-;62737:13;62778:16;62786:7;62778;:16::i;:::-;62762:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;62888:5;62876:17;;:8;;;;;;;;;;;:17;;;62873:62;;;62913:14;62906:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62873:62;62943:28;62974:10;:8;:10::i;:::-;62943:41;;63029:1;63004:14;62998:28;:32;:133;;;;;;;;;;;;;;;;;63066:14;63082:18;:7;:16;:18::i;:::-;63102:13;63049:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62998:133;62991:140;;;62639:498;;;;:::o;60455:32::-;;;;:::o;65269:122::-;7309:13;:11;:13::i;:::-;65368:17:::1;65352:13;:33;;;;;;;;;;;;:::i;:::-;;65269:122:::0;:::o;63202:107::-;63260:7;63283:20;63297:5;63283:13;:20::i;:::-;63276:27;;63202:107;;;:::o;64986:96::-;7309:13;:11;:13::i;:::-;65066:10:::1;65053;:23;;;;64986:96:::0;:::o;64406:92::-;7309:13;:11;:13::i;:::-;64486:6:::1;64471:12;:21;;;;64406:92:::0;:::o;35731:164::-;35828:4;35852:18;:25;35871:5;35852:25;;;;;;;;;;;;;;;:35;35878:8;35852:35;;;;;;;;;;;;;;;;;;;;;;;;;35845:42;;35731:164;;;;:::o;65425:120::-;7309:13;:11;:13::i;:::-;65524:15:::1;65507:14;:32;;;;;;;;;;;;:::i;:::-;;65425:120:::0;:::o;8329:201::-;7309:13;:11;:13::i;:::-;8438:1:::1;8418:22;;:8;:22;;;;8410:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8494:28;8513:8;8494:18;:28::i;:::-;8329:201:::0;:::o;7588:132::-;7663:12;:10;:12::i;:::-;7652:23;;:7;:5;:7::i;:::-;:23;;;7644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7588:132::o;36153:282::-;36218:4;36274:7;36255:15;:13;:15::i;:::-;:26;;:66;;;;;36308:13;;36298:7;:23;36255:66;:153;;;;;36407:1;20095:8;36359:17;:26;36377:7;36359:26;;;;;;;;;;;;:44;:49;36255:153;36235:173;;36153:282;;;:::o;57919:105::-;57979:7;58006:10;57999:17;;57919:105;:::o;25475:178::-;25536:7;19319:13;19457:2;25564:18;:25;25583:5;25564:25;;;;;;;;;;;;;;;;:50;;25563:82;25556:89;;25475:178;;;:::o;51751:112::-;51828:27;51838:2;51842:8;51828:27;;;;;;;;;;;;:9;:27::i;:::-;51751:112;;:::o;61089:101::-;61154:7;61181:1;61174:8;;61089:101;:::o;30773:1275::-;30840:7;30860:12;30875:7;30860:22;;30943:4;30924:15;:13;:15::i;:::-;:23;30920:1061;;30977:13;;30970:4;:20;30966:1015;;;31015:14;31032:17;:23;31050:4;31032:23;;;;;;;;;;;;31015:40;;31149:1;20095:8;31121:6;:24;:29;31117:845;;;31786:113;31803:1;31793:6;:11;31786:113;;;31846:17;:25;31864:6;;;;;;;31846:25;;;;;;;;;;;;31837:34;;31786:113;;;31932:6;31925:13;;;;;;31117:845;30992:989;30966:1015;30920:1061;32009:31;;;;;;;;;;;;;;30773:1275;;;;:::o;37316:479::-;37418:27;37447:23;37488:38;37529:15;:24;37545:7;37529:24;;;;;;;;;;;37488:65;;37700:18;37677:41;;37757:19;37751:26;37732:45;;37662:126;37316:479;;;:::o;36544:659::-;36693:11;36858:16;36851:5;36847:28;36838:37;;37018:16;37007:9;37003:32;36990:45;;37168:15;37157:9;37154:30;37146:5;37135:9;37132:20;37129:56;37119:66;;36544:659;;;;;:::o;43172:159::-;;;;;:::o;57228:311::-;57363:7;57383:16;20499:3;57409:19;:41;;57383:68;;20499:3;57477:31;57488:4;57494:2;57498:9;57477:10;:31::i;:::-;57469:40;;:62;;57462:69;;;57228:311;;;;;:::o;32596:450::-;32676:14;32844:16;32837:5;32833:28;32824:37;;33021:5;33007:11;32982:23;32978:41;32975:52;32968:5;32965:63;32955:73;;32596:450;;;;:::o;43996:158::-;;;;;:::o;8690:191::-;8764:16;8783:6;;;;;;;;;;;8764:25;;8809:8;8800:6;;:17;;;;;;;;;;;;;;;;;;8864:8;8833:40;;8854:8;8833:40;;;;;;;;;;;;8753:128;8690:191;:::o;30221:161::-;30289:21;;:::i;:::-;30330:44;30349:17;:24;30367:5;30349:24;;;;;;;;;;;;30330:18;:44::i;:::-;30323:51;;30221:161;;;:::o;44594:716::-;44757:4;44803:2;44778:45;;;44824:19;:17;:19::i;:::-;44845:4;44851:7;44860:5;44778:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44774:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45078:1;45061:6;:13;:18;45057:235;;;45107:40;;;;;;;;;;;;;;45057:235;45250:6;45244:13;45235:6;45231:2;45227:15;45220:38;44774:529;44947:54;;;44937:64;;;:6;:64;;;;44930:71;;;44594:716;;;;;;:::o;60979:102::-;61039:13;61068:7;61061:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60979:102;:::o;3228:723::-;3284:13;3514:1;3505:5;:10;3501:53;;;3532:10;;;;;;;;;;;;;;;;;;;;;3501:53;3564:12;3579:5;3564:20;;3595:14;3620:78;3635:1;3627:4;:9;3620:78;;3653:8;;;;;:::i;:::-;;;;3684:2;3676:10;;;;;:::i;:::-;;;3620:78;;;3708:19;3740:6;3730:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3708:39;;3758:154;3774:1;3765:5;:10;3758:154;;3802:1;3792:11;;;;;:::i;:::-;;;3869:2;3861:5;:10;;;;:::i;:::-;3848:2;:24;;;;:::i;:::-;3835:39;;3818:6;3825;3818:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3898:2;3889:11;;;;;:::i;:::-;;;3758:154;;;3936:6;3922:21;;;;;3228:723;;;;:::o;5974:98::-;6027:7;6054:10;6047:17;;5974:98;:::o;50978:689::-;51109:19;51115:2;51119:8;51109:5;:19::i;:::-;51188:1;51170:2;:14;;;:19;51166:483;;51210:11;51224:13;;51210:27;;51256:13;51278:8;51272:3;:14;51256:30;;51305:233;51336:62;51375:1;51379:2;51383:7;;;;;;51392:5;51336:30;:62::i;:::-;51331:167;;51434:40;;;;;;;;;;;;;;51331:167;51533:3;51525:5;:11;51305:233;;51620:3;51603:13;;:20;51599:34;;51625:8;;;51599:34;51191:458;;51166:483;50978:689;;;:::o;56929:147::-;57066:6;56929:147;;;;;:::o;32147:366::-;32213:31;;:::i;:::-;32290:6;32257:9;:14;;:41;;;;;;;;;;;19978:3;32343:6;:33;;32309:9;:24;;:68;;;;;;;;;;;32435:1;20095:8;32407:6;:24;:29;;32388:9;:16;;:48;;;;;;;;;;;20499:3;32476:6;:28;;32447:9;:19;;:58;;;;;;;;;;;32147:366;;;:::o;45772:2454::-;45845:20;45868:13;;45845:36;;45908:1;45896:8;:13;45892:44;;;45918:18;;;;;;;;;;;;;;45892:44;45949:61;45979:1;45983:2;45987:12;46001:8;45949:21;:61::i;:::-;46493:1;19457:2;46463:1;:26;;46462:32;46450:8;:45;46424:18;:22;46443:2;46424:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46772:139;46809:2;46863:33;46886:1;46890:2;46894:1;46863:14;:33::i;:::-;46830:30;46851:8;46830:20;:30::i;:::-;:66;46772:18;:139::i;:::-;46738:17;:31;46756:12;46738:31;;;;;;;;;;;:173;;;;46928:16;46959:11;46988:8;46973:12;:23;46959:37;;47243:16;47239:2;47235:25;47223:37;;47615:12;47575:8;47534:1;47472:25;47413:1;47352;47325:335;47740:1;47726:12;47722:20;47680:346;47781:3;47772:7;47769:16;47680:346;;47999:7;47989:8;47986:1;47959:25;47956:1;47953;47948:59;47834:1;47825:7;47821:15;47810:26;;47680:346;;;47684:77;48071:1;48059:8;:13;48055:45;;;48081:19;;;;;;;;;;;;;;48055:45;48133:3;48117:13;:19;;;;46198:1950;;48158:60;48187:1;48191:2;48195:12;48209:8;48158:20;:60::i;:::-;45834:2392;45772:2454;;:::o;33148:324::-;33218:14;33451:1;33441:8;33438:15;33412:24;33408:46;33398:56;;33148:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:398::-;13064:3;13085:83;13166:1;13161:3;13085:83;:::i;:::-;13078:90;;13177:93;13266:3;13177:93;:::i;:::-;13295:1;13290:3;13286:11;13279:18;;12905:398;;;:::o;13309:366::-;13451:3;13472:67;13536:2;13531:3;13472:67;:::i;:::-;13465:74;;13548:93;13637:3;13548:93;:::i;:::-;13666:2;13661:3;13657:12;13650:19;;13309:366;;;:::o;13681:::-;13823:3;13844:67;13908:2;13903:3;13844:67;:::i;:::-;13837:74;;13920:93;14009:3;13920:93;:::i;:::-;14038:2;14033:3;14029:12;14022:19;;13681:366;;;:::o;14053:::-;14195:3;14216:67;14280:2;14275:3;14216:67;:::i;:::-;14209:74;;14292:93;14381:3;14292:93;:::i;:::-;14410:2;14405:3;14401:12;14394:19;;14053:366;;;:::o;14425:::-;14567:3;14588:67;14652:2;14647:3;14588:67;:::i;:::-;14581:74;;14664:93;14753:3;14664:93;:::i;:::-;14782:2;14777:3;14773:12;14766:19;;14425:366;;;:::o;14797:::-;14939:3;14960:67;15024:2;15019:3;14960:67;:::i;:::-;14953:74;;15036:93;15125:3;15036:93;:::i;:::-;15154:2;15149:3;15145:12;15138:19;;14797:366;;;:::o;15169:108::-;15246:24;15264:5;15246:24;:::i;:::-;15241:3;15234:37;15169:108;;:::o;15283:118::-;15370:24;15388:5;15370:24;:::i;:::-;15365:3;15358:37;15283:118;;:::o;15407:589::-;15632:3;15654:95;15745:3;15736:6;15654:95;:::i;:::-;15647:102;;15766:95;15857:3;15848:6;15766:95;:::i;:::-;15759:102;;15878:92;15966:3;15957:6;15878:92;:::i;:::-;15871:99;;15987:3;15980:10;;15407:589;;;;;;:::o;16002:379::-;16186:3;16208:147;16351:3;16208:147;:::i;:::-;16201:154;;16372:3;16365:10;;16002:379;;;:::o;16387:222::-;16480:4;16518:2;16507:9;16503:18;16495:26;;16531:71;16599:1;16588:9;16584:17;16575:6;16531:71;:::i;:::-;16387:222;;;;:::o;16615:640::-;16810:4;16848:3;16837:9;16833:19;16825:27;;16862:71;16930:1;16919:9;16915:17;16906:6;16862:71;:::i;:::-;16943:72;17011:2;17000:9;16996:18;16987:6;16943:72;:::i;:::-;17025;17093:2;17082:9;17078:18;17069:6;17025:72;:::i;:::-;17144:9;17138:4;17134:20;17129:2;17118:9;17114:18;17107:48;17172:76;17243:4;17234:6;17172:76;:::i;:::-;17164:84;;16615:640;;;;;;;:::o;17261:373::-;17404:4;17442:2;17431:9;17427:18;17419:26;;17491:9;17485:4;17481:20;17477:1;17466:9;17462:17;17455:47;17519:108;17622:4;17613:6;17519:108;:::i;:::-;17511:116;;17261:373;;;;:::o;17640:210::-;17727:4;17765:2;17754:9;17750:18;17742:26;;17778:65;17840:1;17829:9;17825:17;17816:6;17778:65;:::i;:::-;17640:210;;;;:::o;17856:313::-;17969:4;18007:2;17996:9;17992:18;17984:26;;18056:9;18050:4;18046:20;18042:1;18031:9;18027:17;18020:47;18084:78;18157:4;18148:6;18084:78;:::i;:::-;18076:86;;17856:313;;;;:::o;18175:419::-;18341:4;18379:2;18368:9;18364:18;18356:26;;18428:9;18422:4;18418:20;18414:1;18403:9;18399:17;18392:47;18456:131;18582:4;18456:131;:::i;:::-;18448:139;;18175:419;;;:::o;18600:::-;18766:4;18804:2;18793:9;18789:18;18781:26;;18853:9;18847:4;18843:20;18839:1;18828:9;18824:17;18817:47;18881:131;19007:4;18881:131;:::i;:::-;18873:139;;18600:419;;;:::o;19025:::-;19191:4;19229:2;19218:9;19214:18;19206:26;;19278:9;19272:4;19268:20;19264:1;19253:9;19249:17;19242:47;19306:131;19432:4;19306:131;:::i;:::-;19298:139;;19025:419;;;:::o;19450:::-;19616:4;19654:2;19643:9;19639:18;19631:26;;19703:9;19697:4;19693:20;19689:1;19678:9;19674:17;19667:47;19731:131;19857:4;19731:131;:::i;:::-;19723:139;;19450:419;;;:::o;19875:::-;20041:4;20079:2;20068:9;20064:18;20056:26;;20128:9;20122:4;20118:20;20114:1;20103:9;20099:17;20092:47;20156:131;20282:4;20156:131;:::i;:::-;20148:139;;19875:419;;;:::o;20300:::-;20466:4;20504:2;20493:9;20489:18;20481:26;;20553:9;20547:4;20543:20;20539:1;20528:9;20524:17;20517:47;20581:131;20707:4;20581:131;:::i;:::-;20573:139;;20300:419;;;:::o;20725:::-;20891:4;20929:2;20918:9;20914:18;20906:26;;20978:9;20972:4;20968:20;20964:1;20953:9;20949:17;20942:47;21006:131;21132:4;21006:131;:::i;:::-;20998:139;;20725:419;;;:::o;21150:::-;21316:4;21354:2;21343:9;21339:18;21331:26;;21403:9;21397:4;21393:20;21389:1;21378:9;21374:17;21367:47;21431:131;21557:4;21431:131;:::i;:::-;21423:139;;21150:419;;;:::o;21575:::-;21741:4;21779:2;21768:9;21764:18;21756:26;;21828:9;21822:4;21818:20;21814:1;21803:9;21799:17;21792:47;21856:131;21982:4;21856:131;:::i;:::-;21848:139;;21575:419;;;:::o;22000:::-;22166:4;22204:2;22193:9;22189:18;22181:26;;22253:9;22247:4;22243:20;22239:1;22228:9;22224:17;22217:47;22281:131;22407:4;22281:131;:::i;:::-;22273:139;;22000:419;;;:::o;22425:::-;22591:4;22629:2;22618:9;22614:18;22606:26;;22678:9;22672:4;22668:20;22664:1;22653:9;22649:17;22642:47;22706:131;22832:4;22706:131;:::i;:::-;22698:139;;22425:419;;;:::o;22850:222::-;22943:4;22981:2;22970:9;22966:18;22958:26;;22994:71;23062:1;23051:9;23047:17;23038:6;22994:71;:::i;:::-;22850:222;;;;:::o;23078:129::-;23112:6;23139:20;;:::i;:::-;23129:30;;23168:33;23196:4;23188:6;23168:33;:::i;:::-;23078:129;;;:::o;23213:75::-;23246:6;23279:2;23273:9;23263:19;;23213:75;:::o;23294:307::-;23355:4;23445:18;23437:6;23434:30;23431:56;;;23467:18;;:::i;:::-;23431:56;23505:29;23527:6;23505:29;:::i;:::-;23497:37;;23589:4;23583;23579:15;23571:23;;23294:307;;;:::o;23607:308::-;23669:4;23759:18;23751:6;23748:30;23745:56;;;23781:18;;:::i;:::-;23745:56;23819:29;23841:6;23819:29;:::i;:::-;23811:37;;23903:4;23897;23893:15;23885:23;;23607:308;;;:::o;23921:132::-;23988:4;24011:3;24003:11;;24041:4;24036:3;24032:14;24024:22;;23921:132;;;:::o;24059:141::-;24108:4;24131:3;24123:11;;24154:3;24151:1;24144:14;24188:4;24185:1;24175:18;24167:26;;24059:141;;;:::o;24206:114::-;24273:6;24307:5;24301:12;24291:22;;24206:114;;;:::o;24326:98::-;24377:6;24411:5;24405:12;24395:22;;24326:98;;;:::o;24430:99::-;24482:6;24516:5;24510:12;24500:22;;24430:99;;;:::o;24535:113::-;24605:4;24637;24632:3;24628:14;24620:22;;24535:113;;;:::o;24654:184::-;24753:11;24787:6;24782:3;24775:19;24827:4;24822:3;24818:14;24803:29;;24654:184;;;;:::o;24844:168::-;24927:11;24961:6;24956:3;24949:19;25001:4;24996:3;24992:14;24977:29;;24844:168;;;;:::o;25018:147::-;25119:11;25156:3;25141:18;;25018:147;;;;:::o;25171:169::-;25255:11;25289:6;25284:3;25277:19;25329:4;25324:3;25320:14;25305:29;;25171:169;;;;:::o;25346:148::-;25448:11;25485:3;25470:18;;25346:148;;;;:::o;25500:305::-;25540:3;25559:20;25577:1;25559:20;:::i;:::-;25554:25;;25593:20;25611:1;25593:20;:::i;:::-;25588:25;;25747:1;25679:66;25675:74;25672:1;25669:81;25666:107;;;25753:18;;:::i;:::-;25666:107;25797:1;25794;25790:9;25783:16;;25500:305;;;;:::o;25811:185::-;25851:1;25868:20;25886:1;25868:20;:::i;:::-;25863:25;;25902:20;25920:1;25902:20;:::i;:::-;25897:25;;25941:1;25931:35;;25946:18;;:::i;:::-;25931:35;25988:1;25985;25981:9;25976:14;;25811:185;;;;:::o;26002:348::-;26042:7;26065:20;26083:1;26065:20;:::i;:::-;26060:25;;26099:20;26117:1;26099:20;:::i;:::-;26094:25;;26287:1;26219:66;26215:74;26212:1;26209:81;26204:1;26197:9;26190:17;26186:105;26183:131;;;26294:18;;:::i;:::-;26183:131;26342:1;26339;26335:9;26324:20;;26002:348;;;;:::o;26356:191::-;26396:4;26416:20;26434:1;26416:20;:::i;:::-;26411:25;;26450:20;26468:1;26450:20;:::i;:::-;26445:25;;26489:1;26486;26483:8;26480:34;;;26494:18;;:::i;:::-;26480:34;26539:1;26536;26532:9;26524:17;;26356:191;;;;:::o;26553:96::-;26590:7;26619:24;26637:5;26619:24;:::i;:::-;26608:35;;26553:96;;;:::o;26655:90::-;26689:7;26732:5;26725:13;26718:21;26707:32;;26655:90;;;:::o;26751:149::-;26787:7;26827:66;26820:5;26816:78;26805:89;;26751:149;;;:::o;26906:126::-;26943:7;26983:42;26976:5;26972:54;26961:65;;26906:126;;;:::o;27038:77::-;27075:7;27104:5;27093:16;;27038:77;;;:::o;27121:154::-;27205:6;27200:3;27195;27182:30;27267:1;27258:6;27253:3;27249:16;27242:27;27121:154;;;:::o;27281:307::-;27349:1;27359:113;27373:6;27370:1;27367:13;27359:113;;;27458:1;27453:3;27449:11;27443:18;27439:1;27434:3;27430:11;27423:39;27395:2;27392:1;27388:10;27383:15;;27359:113;;;27490:6;27487:1;27484:13;27481:101;;;27570:1;27561:6;27556:3;27552:16;27545:27;27481:101;27330:258;27281:307;;;:::o;27594:320::-;27638:6;27675:1;27669:4;27665:12;27655:22;;27722:1;27716:4;27712:12;27743:18;27733:81;;27799:4;27791:6;27787:17;27777:27;;27733:81;27861:2;27853:6;27850:14;27830:18;27827:38;27824:84;;;27880:18;;:::i;:::-;27824:84;27645:269;27594:320;;;:::o;27920:281::-;28003:27;28025:4;28003:27;:::i;:::-;27995:6;27991:40;28133:6;28121:10;28118:22;28097:18;28085:10;28082:34;28079:62;28076:88;;;28144:18;;:::i;:::-;28076:88;28184:10;28180:2;28173:22;27963:238;27920:281;;:::o;28207:233::-;28246:3;28269:24;28287:5;28269:24;:::i;:::-;28260:33;;28315:66;28308:5;28305:77;28302:103;;;28385:18;;:::i;:::-;28302:103;28432:1;28425:5;28421:13;28414:20;;28207:233;;;:::o;28446:176::-;28478:1;28495:20;28513:1;28495:20;:::i;:::-;28490:25;;28529:20;28547:1;28529:20;:::i;:::-;28524:25;;28568:1;28558:35;;28573:18;;:::i;:::-;28558:35;28614:1;28611;28607:9;28602:14;;28446:176;;;;:::o;28628:180::-;28676:77;28673:1;28666:88;28773:4;28770:1;28763:15;28797:4;28794:1;28787:15;28814:180;28862:77;28859:1;28852:88;28959:4;28956:1;28949:15;28983:4;28980:1;28973:15;29000:180;29048:77;29045:1;29038:88;29145:4;29142:1;29135:15;29169:4;29166:1;29159:15;29186:180;29234:77;29231:1;29224:88;29331:4;29328:1;29321:15;29355:4;29352:1;29345:15;29372:180;29420:77;29417:1;29410:88;29517:4;29514:1;29507:15;29541:4;29538:1;29531:15;29558:117;29667:1;29664;29657:12;29681:117;29790:1;29787;29780:12;29804:117;29913:1;29910;29903:12;29927:117;30036:1;30033;30026:12;30050:102;30091:6;30142:2;30138:7;30133:2;30126:5;30122:14;30118:28;30108:38;;30050:102;;;:::o;30158:174::-;30298:26;30294:1;30286:6;30282:14;30275:50;30158:174;:::o;30338:235::-;30478:34;30474:1;30466:6;30462:14;30455:58;30547:18;30542:2;30534:6;30530:15;30523:43;30338:235;:::o;30579:178::-;30719:30;30715:1;30707:6;30703:14;30696:54;30579:178;:::o;30763:225::-;30903:34;30899:1;30891:6;30887:14;30880:58;30972:8;30967:2;30959:6;30955:15;30948:33;30763:225;:::o;30994:160::-;31134:12;31130:1;31122:6;31118:14;31111:36;30994:160;:::o;31160:182::-;31300:34;31296:1;31288:6;31284:14;31277:58;31160:182;:::o;31348:114::-;;:::o;31468:168::-;31608:20;31604:1;31596:6;31592:14;31585:44;31468:168;:::o;31642:::-;31782:20;31778:1;31770:6;31766:14;31759:44;31642:168;:::o;31816:177::-;31956:29;31952:1;31944:6;31940:14;31933:53;31816:177;:::o;31999:181::-;32139:33;32135:1;32127:6;32123:14;32116:57;31999:181;:::o;32186:::-;32326:33;32322:1;32314:6;32310:14;32303:57;32186:181;:::o;32373:122::-;32446:24;32464:5;32446:24;:::i;:::-;32439:5;32436:35;32426:63;;32485:1;32482;32475:12;32426:63;32373:122;:::o;32501:116::-;32571:21;32586:5;32571:21;:::i;:::-;32564:5;32561:32;32551:60;;32607:1;32604;32597:12;32551:60;32501:116;:::o;32623:120::-;32695:23;32712:5;32695:23;:::i;:::-;32688:5;32685:34;32675:62;;32733:1;32730;32723:12;32675:62;32623:120;:::o;32749:122::-;32822:24;32840:5;32822:24;:::i;:::-;32815:5;32812:35;32802:63;;32861:1;32858;32851:12;32802:63;32749:122;:::o

Swarm Source

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