ETH Price: $2,995.96 (-1.81%)
Gas: 2 Gwei

Token

FULL METAL RABBIT - KOSMO (FMRK)
 

Overview

Max Total Supply

2,169 FMRK

Holders

524

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 FMRK
0x0ad6f3c97ecc713522f5f4a838e31aaacdbc4443
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:
KOSMONFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-22
*/

pragma solidity >=0.7.0 <0.9.0;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}

interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT

contract KOSMONFT is ERC721A, Ownable, Pausable {
  string public baseURI = "ipfs://bafybeia2tz4m2wknn4ntycgyf743e6lozic7n37riyromi6yhdvyqiflce/";
  uint256 public cost = 0.03 ether;
  uint256 public maxSupply = 3000;
  uint256 public maxMintAmount = 5;
  uint256 public nftPerAddressLimit = 5;

  bool public onlyWhitelisted = true;
  mapping (address => bool) public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

  event NewTokenURI(string);

  constructor() ERC721A("FULL METAL RABBIT - KOSMO", "FMRK") {}

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

  function _startTokenId() internal pure override returns (uint256) {
    return 1;
  } 

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused(), "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
  
    if (msg.sender != owner()) {
      if (onlyWhitelisted == true) {
        require(whitelistedAddresses[msg.sender], "user is not whitelisted");
        require(supply + _mintAmount <= 1000, "First whitelist limit exceeded (1000)");
      }
      require(msg.value >= cost * _mintAmount, "insufficient funds");
    }

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

  function mintReserved(address to, uint8 amount) external onlyOwner {
    require(amount > 0, "No amount specified");
    uint256 supply = totalSupply();
    require(supply + amount <= maxSupply, "max NFT limit exceeded");
    _safeMint(to, amount);
    addressMintedBalance[to] += amount;
  }

  function mintReservedList(address[] calldata addresses, uint8 amount) external onlyOwner {
    require(amount > 0, "No amount specified");
    uint256 supply = totalSupply();
    require(supply + (amount * addresses.length) <= maxSupply, "max NFT limit exceeded");

    for (uint256 i = 0; i < addresses.length; i++) {
      _safeMint(addresses[i], amount);
      addressMintedBalance[addresses[i]] += amount;
    }
  }

  function setNewURI(string memory _newURI) external onlyOwner {
    baseURI = _newURI;
    emit NewTokenURI(_newURI);
  }

  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }

  function pause() external onlyOwner {
    _pause();
  }

  function unpause() external onlyOwner {
    _unpause();
  }

  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }

  function endOnlyWhitelisted() public onlyOwner {
    onlyWhitelisted = false;
  }

  function whitelistAddreses(address[] calldata addresses, bool isAllow) public onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      whitelistedAddresses[addresses[i]] = isAllow;
    }
  }

  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"","type":"string"}],"name":"NewTokenURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endOnlyWhitelisted","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":[],"name":"maxMintAmount","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":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mintReservedList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","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":[],"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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setNewURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"isAllow","type":"bool"}],"name":"whitelistAddreses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060800160405280604381526020016200427260439139600990805190602001906200003592919062000248565b50666a94d74f430000600a55610bb8600b556005600c556005600d556001600e60006101000a81548160ff0219169083151502179055503480156200007957600080fd5b506040518060400160405280601981526020017f46554c4c204d4554414c20524142424954202d204b4f534d4f000000000000008152506040518060400160405280600481526020017f464d524b000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000fe92919062000248565b5080600390805190602001906200011792919062000248565b50620001286200017160201b60201c565b600081905550505062000150620001446200017a60201b60201c565b6200018260201b60201c565b6000600860146101000a81548160ff0219169083151502179055506200035d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025690620002f8565b90600052602060002090601f0160209004810192826200027a5760008555620002c6565b82601f106200029557805160ff1916838001178555620002c6565b82800160010185558215620002c6579182015b82811115620002c5578251825591602001919060010190620002a8565b5b509050620002d59190620002d9565b5090565b5b80821115620002f4576000816000905550600101620002da565b5090565b600060028204905060018216806200031157607f821691505b602082108114156200032857620003276200032e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613f05806200036d6000396000f3fe6080604052600436106102305760003560e01c80636352211e1161012e578063a0712d68116100ab578063d0eb26b01161006f578063d0eb26b01461079f578063d5abeb01146107c8578063e985e9c5146107f3578063ea21b75114610830578063f2fde38b1461085957610230565b8063a0712d68146106d6578063a22cb465146106f2578063b88d4fde1461071b578063ba7d2c7614610737578063c87b56dd1461076257610230565b80638456cb59116100f25780638456cb59146106155780638da5cb5b1461062c5780638eb563961461065757806395d89b41146106805780639c70b512146106ab57610230565b80636352211e146105305780636c0360eb1461056d57806370a0823114610598578063715018a6146105d55780637f00c7a6146105ec57610230565b8063239c70ae116101bc5780633f4ba83a116101805780633f4ba83a1461048057806342842e0e1461049757806344a0d68a146104b35780635c975abb146104dc5780635d46b5091461050757610230565b8063239c70ae146103ef57806323b872dd1461041a57806328fb1eff146104365780633c9527641461044d5780633ccfd60b1461047657610230565b8063095ea7b311610203578063095ea7b3146103175780630e709b1b1461033357806313faede61461035c57806318160ddd1461038757806318cae269146103b257610230565b806301ffc9a71461023557806306c933d81461027257806306fdde03146102af578063081812fc146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906131d1565b610882565b60405161026991906135fb565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190612ee1565b610914565b6040516102a691906135fb565b60405180910390f35b3480156102bb57600080fd5b506102c4610934565b6040516102d19190613616565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613274565b6109c6565b60405161030e9190613594565b60405180910390f35b610331600480360381019061032c9190613064565b610a45565b005b34801561033f57600080fd5b5061035a6004803603810190610355919061322b565b610b89565b005b34801561036857600080fd5b50610371610c56565b60405161037e91906137d8565b60405180910390f35b34801561039357600080fd5b5061039c610c5c565b6040516103a991906137d8565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d49190612ee1565b610c73565b6040516103e691906137d8565b60405180910390f35b3480156103fb57600080fd5b50610404610c8b565b60405161041191906137d8565b60405180910390f35b610434600480360381019061042f9190612f4e565b610c91565b005b34801561044257600080fd5b5061044b610fb6565b005b34801561045957600080fd5b50610474600480360381019061046f91906131a4565b61104f565b005b61047e6110e8565b005b34801561048c57600080fd5b506104956111e4565b005b6104b160048036038101906104ac9190612f4e565b61126a565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190613274565b61128a565b005b3480156104e857600080fd5b506104f1611310565b6040516104fe91906135fb565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190613144565b611327565b005b34801561053c57600080fd5b5061055760048036038101906105529190613274565b611532565b6040516105649190613594565b60405180910390f35b34801561057957600080fd5b50610582611544565b60405161058f9190613616565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190612ee1565b6115d2565b6040516105cc91906137d8565b60405180910390f35b3480156105e157600080fd5b506105ea61168b565b005b3480156105f857600080fd5b50610613600480360381019061060e9190613274565b611713565b005b34801561062157600080fd5b5061062a611799565b005b34801561063857600080fd5b5061064161181f565b60405161064e9190613594565b60405180910390f35b34801561066357600080fd5b5061067e600480360381019061067991906130a4565b611849565b005b34801561068c57600080fd5b506106956119d5565b6040516106a29190613616565b60405180910390f35b3480156106b757600080fd5b506106c0611a67565b6040516106cd91906135fb565b60405180910390f35b6106f060048036038101906106eb9190613274565b611a7a565b005b3480156106fe57600080fd5b5061071960048036038101906107149190613024565b611e23565b005b61073560048036038101906107309190612fa1565b611f2e565b005b34801561074357600080fd5b5061074c611fa1565b60405161075991906137d8565b60405180910390f35b34801561076e57600080fd5b5061078960048036038101906107849190613274565b611fa7565b6040516107969190613616565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c19190613274565b612046565b005b3480156107d457600080fd5b506107dd6120cc565b6040516107ea91906137d8565b60405180910390f35b3480156107ff57600080fd5b5061081a60048036038101906108159190612f0e565b6120d2565b60405161082791906135fb565b60405180910390f35b34801561083c57600080fd5b50610857600480360381019061085291906130e4565b612166565b005b34801561086557600080fd5b50610880600480360381019061087b9190612ee1565b612287565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108dd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600f6020528060005260406000206000915054906101000a900460ff1681565b60606002805461094390613a3b565b80601f016020809104026020016040519081016040528092919081815260200182805461096f90613a3b565b80156109bc5780601f10610991576101008083540402835291602001916109bc565b820191906000526020600020905b81548152906001019060200180831161099f57829003601f168201915b5050505050905090565b60006109d18261237f565b610a07576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5082611532565b90508073ffffffffffffffffffffffffffffffffffffffff16610a716123de565b73ffffffffffffffffffffffffffffffffffffffff1614610ad457610a9d81610a986123de565b6120d2565b610ad3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b916123e6565b73ffffffffffffffffffffffffffffffffffffffff16610baf61181f565b73ffffffffffffffffffffffffffffffffffffffff1614610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc906136f8565b60405180910390fd5b8060099080519060200190610c1b929190612c8a565b507f8eca6ea708f9bc34439b72366aa672afc86bb8b1294f1ba9637945c5dab8ea7481604051610c4b9190613616565b60405180910390a150565b600a5481565b6000610c666123ee565b6001546000540303905090565b60106020528060005260406000206000915090505481565b600c5481565b6000610c9c826123f7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d03576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d0f846124c5565b91509150610d258187610d206123de565b6124ec565b610d7157610d3a86610d356123de565b6120d2565b610d70576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610dd8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610de58686866001612530565b8015610df057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ebe85610e9a888887612536565b7c02000000000000000000000000000000000000000000000000000000001761255e565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f46576000600185019050600060046000838152602001908152602001600020541415610f44576000548114610f43578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fae8686866001612589565b505050505050565b610fbe6123e6565b73ffffffffffffffffffffffffffffffffffffffff16610fdc61181f565b73ffffffffffffffffffffffffffffffffffffffff1614611032576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611029906136f8565b60405180910390fd5b6000600e60006101000a81548160ff021916908315150217905550565b6110576123e6565b73ffffffffffffffffffffffffffffffffffffffff1661107561181f565b73ffffffffffffffffffffffffffffffffffffffff16146110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c2906136f8565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6110f06123e6565b73ffffffffffffffffffffffffffffffffffffffff1661110e61181f565b73ffffffffffffffffffffffffffffffffffffffff1614611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b906136f8565b60405180910390fd5b600061116e61181f565b73ffffffffffffffffffffffffffffffffffffffff16476040516111919061357f565b60006040518083038185875af1925050503d80600081146111ce576040519150601f19603f3d011682016040523d82523d6000602084013e6111d3565b606091505b50509050806111e157600080fd5b50565b6111ec6123e6565b73ffffffffffffffffffffffffffffffffffffffff1661120a61181f565b73ffffffffffffffffffffffffffffffffffffffff1614611260576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611257906136f8565b60405180910390fd5b61126861258f565b565b61128583838360405180602001604052806000815250611f2e565b505050565b6112926123e6565b73ffffffffffffffffffffffffffffffffffffffff166112b061181f565b73ffffffffffffffffffffffffffffffffffffffff1614611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd906136f8565b60405180910390fd5b80600a8190555050565b6000600860149054906101000a900460ff16905090565b61132f6123e6565b73ffffffffffffffffffffffffffffffffffffffff1661134d61181f565b73ffffffffffffffffffffffffffffffffffffffff16146113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a906136f8565b60405180910390fd5b60008160ff16116113e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e090613738565b60405180910390fd5b60006113f3610c5c565b9050600b54848490508360ff1661140a919061391e565b8261141591906138c8565b1115611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d906136b8565b60405180910390fd5b60005b8484905081101561152b5761149885858381811061147a57611479613b45565b5b905060200201602081019061148f9190612ee1565b8460ff166125f2565b8260ff16601060008787858181106114b3576114b2613b45565b5b90506020020160208101906114c89190612ee1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461151191906138c8565b92505081905550808061152390613a9e565b915050611459565b5050505050565b600061153d826123f7565b9050919050565b6009805461155190613a3b565b80601f016020809104026020016040519081016040528092919081815260200182805461157d90613a3b565b80156115ca5780601f1061159f576101008083540402835291602001916115ca565b820191906000526020600020905b8154815290600101906020018083116115ad57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561163a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116936123e6565b73ffffffffffffffffffffffffffffffffffffffff166116b161181f565b73ffffffffffffffffffffffffffffffffffffffff1614611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe906136f8565b60405180910390fd5b6117116000612610565b565b61171b6123e6565b73ffffffffffffffffffffffffffffffffffffffff1661173961181f565b73ffffffffffffffffffffffffffffffffffffffff161461178f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611786906136f8565b60405180910390fd5b80600c8190555050565b6117a16123e6565b73ffffffffffffffffffffffffffffffffffffffff166117bf61181f565b73ffffffffffffffffffffffffffffffffffffffff1614611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c906136f8565b60405180910390fd5b61181d6126d6565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118516123e6565b73ffffffffffffffffffffffffffffffffffffffff1661186f61181f565b73ffffffffffffffffffffffffffffffffffffffff16146118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc906136f8565b60405180910390fd5b60008160ff161161190b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190290613738565b60405180910390fd5b6000611915610c5c565b9050600b548260ff168261192991906138c8565b111561196a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611961906136b8565b60405180910390fd5b611977838360ff166125f2565b8160ff16601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119c991906138c8565b92505081905550505050565b6060600380546119e490613a3b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1090613a3b565b8015611a5d5780601f10611a3257610100808354040283529160200191611a5d565b820191906000526020600020905b815481529060010190602001808311611a4057829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1681565b611a82611310565b15611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab990613718565b60405180910390fd5b6000611acc610c5c565b905060008211611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b08906137b8565b60405180910390fd5b600c54821115611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d906136d8565b60405180910390fd5b600b548282611b6591906138c8565b1115611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d906136b8565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548382611bf991906138c8565b1115611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190613678565b60405180910390fd5b611c4261181f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611dbe5760011515600e60009054906101000a900460ff1615151415611d6d57600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1390613798565b60405180910390fd5b6103e88383611d2b91906138c8565b1115611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6390613778565b60405180910390fd5b5b82600a54611d7b919061391e565b341015611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db490613758565b60405180910390fd5b5b82601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e0d91906138c8565b92505081905550611e1e33846125f2565b505050565b8060076000611e306123de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611edd6123de565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f2291906135fb565b60405180910390a35050565b611f39848484610c91565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f9b57611f6484848484612739565b611f9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d5481565b6060611fb28261237f565b611fe8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611ff2612899565b9050600081511415612013576040518060200160405280600081525061203e565b8061201d8461292b565b60405160200161202e92919061355b565b6040516020818303038152906040525b915050919050565b61204e6123e6565b73ffffffffffffffffffffffffffffffffffffffff1661206c61181f565b73ffffffffffffffffffffffffffffffffffffffff16146120c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b9906136f8565b60405180910390fd5b80600d8190555050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61216e6123e6565b73ffffffffffffffffffffffffffffffffffffffff1661218c61181f565b73ffffffffffffffffffffffffffffffffffffffff16146121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d9906136f8565b60405180910390fd5b60005b838390508110156122815781600f600086868581811061220857612207613b45565b5b905060200201602081019061221d9190612ee1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061227990613a9e565b9150506121e5565b50505050565b61228f6123e6565b73ffffffffffffffffffffffffffffffffffffffff166122ad61181f565b73ffffffffffffffffffffffffffffffffffffffff1614612303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fa906136f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236a90613658565b60405180910390fd5b61237c81612610565b50565b60008161238a6123ee565b11158015612399575060005482105b80156123d7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b60006001905090565b600080829050806124066123ee565b1161248e5760005481101561248d5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561248b575b6000811415612481576004600083600190039350838152602001908152602001600020549050612456565b80925050506124c0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861254d868684612984565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61259761298d565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6125db6123e6565b6040516125e89190613594565b60405180910390a1565b61260c8282604051806020016040528060008152506129d6565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126de612a73565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586127226123e6565b60405161272f9190613594565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261275f6123de565b8786866040518563ffffffff1660e01b815260040161278194939291906135af565b602060405180830381600087803b15801561279b57600080fd5b505af19250505080156127cc57506040513d601f19601f820116820180604052508101906127c991906131fe565b60015b612846573d80600081146127fc576040519150601f19603f3d011682016040523d82523d6000602084013e612801565b606091505b5060008151141561283e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546128a890613a3b565b80601f01602080910402602001604051908101604052809291908181526020018280546128d490613a3b565b80156129215780601f106128f657610100808354040283529160200191612921565b820191906000526020600020905b81548152906001019060200180831161290457829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561296f57600184039350600a81066030018453600a810490508061296a5761296f565b612944565b50828103602084039350808452505050919050565b60009392505050565b612995611310565b6129d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cb90613638565b60405180910390fd5b565b6129e08383612abd565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a6e57600080549050600083820390505b612a206000868380600101945086612739565b612a56576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612a0d578160005414612a6b57600080fd5b50505b505050565b612a7b611310565b15612abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab290613698565b60405180910390fd5b565b6000805490506000821415612afe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b0b6000848385612530565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612b8283612b736000866000612536565b612b7c85612c7a565b1761255e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612c2357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612be8565b506000821415612c5f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612c756000848385612589565b505050565b60006001821460e11b9050919050565b828054612c9690613a3b565b90600052602060002090601f016020900481019282612cb85760008555612cff565b82601f10612cd157805160ff1916838001178555612cff565b82800160010185558215612cff579182015b82811115612cfe578251825591602001919060010190612ce3565b5b509050612d0c9190612d10565b5090565b5b80821115612d29576000816000905550600101612d11565b5090565b6000612d40612d3b84613818565b6137f3565b905082815260208101848484011115612d5c57612d5b613bb2565b5b612d678482856139f9565b509392505050565b6000612d82612d7d84613849565b6137f3565b905082815260208101848484011115612d9e57612d9d613bb2565b5b612da98482856139f9565b509392505050565b600081359050612dc081613e5c565b92915050565b60008083601f840112612ddc57612ddb613ba8565b5b8235905067ffffffffffffffff811115612df957612df8613ba3565b5b602083019150836020820283011115612e1557612e14613bad565b5b9250929050565b600081359050612e2b81613e73565b92915050565b600081359050612e4081613e8a565b92915050565b600081519050612e5581613e8a565b92915050565b600082601f830112612e7057612e6f613ba8565b5b8135612e80848260208601612d2d565b91505092915050565b600082601f830112612e9e57612e9d613ba8565b5b8135612eae848260208601612d6f565b91505092915050565b600081359050612ec681613ea1565b92915050565b600081359050612edb81613eb8565b92915050565b600060208284031215612ef757612ef6613bbc565b5b6000612f0584828501612db1565b91505092915050565b60008060408385031215612f2557612f24613bbc565b5b6000612f3385828601612db1565b9250506020612f4485828601612db1565b9150509250929050565b600080600060608486031215612f6757612f66613bbc565b5b6000612f7586828701612db1565b9350506020612f8686828701612db1565b9250506040612f9786828701612eb7565b9150509250925092565b60008060008060808587031215612fbb57612fba613bbc565b5b6000612fc987828801612db1565b9450506020612fda87828801612db1565b9350506040612feb87828801612eb7565b925050606085013567ffffffffffffffff81111561300c5761300b613bb7565b5b61301887828801612e5b565b91505092959194509250565b6000806040838503121561303b5761303a613bbc565b5b600061304985828601612db1565b925050602061305a85828601612e1c565b9150509250929050565b6000806040838503121561307b5761307a613bbc565b5b600061308985828601612db1565b925050602061309a85828601612eb7565b9150509250929050565b600080604083850312156130bb576130ba613bbc565b5b60006130c985828601612db1565b92505060206130da85828601612ecc565b9150509250929050565b6000806000604084860312156130fd576130fc613bbc565b5b600084013567ffffffffffffffff81111561311b5761311a613bb7565b5b61312786828701612dc6565b9350935050602061313a86828701612e1c565b9150509250925092565b60008060006040848603121561315d5761315c613bbc565b5b600084013567ffffffffffffffff81111561317b5761317a613bb7565b5b61318786828701612dc6565b9350935050602061319a86828701612ecc565b9150509250925092565b6000602082840312156131ba576131b9613bbc565b5b60006131c884828501612e1c565b91505092915050565b6000602082840312156131e7576131e6613bbc565b5b60006131f584828501612e31565b91505092915050565b60006020828403121561321457613213613bbc565b5b600061322284828501612e46565b91505092915050565b60006020828403121561324157613240613bbc565b5b600082013567ffffffffffffffff81111561325f5761325e613bb7565b5b61326b84828501612e89565b91505092915050565b60006020828403121561328a57613289613bbc565b5b600061329884828501612eb7565b91505092915050565b6132aa81613978565b82525050565b6132b98161398a565b82525050565b60006132ca8261387a565b6132d48185613890565b93506132e4818560208601613a08565b6132ed81613bc1565b840191505092915050565b600061330382613885565b61330d81856138ac565b935061331d818560208601613a08565b61332681613bc1565b840191505092915050565b600061333c82613885565b61334681856138bd565b9350613356818560208601613a08565b80840191505092915050565b600061336f6014836138ac565b915061337a82613bd2565b602082019050919050565b60006133926026836138ac565b915061339d82613bfb565b604082019050919050565b60006133b5601c836138ac565b91506133c082613c4a565b602082019050919050565b60006133d86010836138ac565b91506133e382613c73565b602082019050919050565b60006133fb6016836138ac565b915061340682613c9c565b602082019050919050565b600061341e6024836138ac565b915061342982613cc5565b604082019050919050565b60006134416020836138ac565b915061344c82613d14565b602082019050919050565b60006134646016836138ac565b915061346f82613d3d565b602082019050919050565b60006134876013836138ac565b915061349282613d66565b602082019050919050565b60006134aa6000836138a1565b91506134b582613d8f565b600082019050919050565b60006134cd6012836138ac565b91506134d882613d92565b602082019050919050565b60006134f06025836138ac565b91506134fb82613dbb565b604082019050919050565b60006135136017836138ac565b915061351e82613e0a565b602082019050919050565b6000613536601b836138ac565b915061354182613e33565b602082019050919050565b613555816139e2565b82525050565b60006135678285613331565b91506135738284613331565b91508190509392505050565b600061358a8261349d565b9150819050919050565b60006020820190506135a960008301846132a1565b92915050565b60006080820190506135c460008301876132a1565b6135d160208301866132a1565b6135de604083018561354c565b81810360608301526135f081846132bf565b905095945050505050565b600060208201905061361060008301846132b0565b92915050565b6000602082019050818103600083015261363081846132f8565b905092915050565b6000602082019050818103600083015261365181613362565b9050919050565b6000602082019050818103600083015261367181613385565b9050919050565b60006020820190508181036000830152613691816133a8565b9050919050565b600060208201905081810360008301526136b1816133cb565b9050919050565b600060208201905081810360008301526136d1816133ee565b9050919050565b600060208201905081810360008301526136f181613411565b9050919050565b6000602082019050818103600083015261371181613434565b9050919050565b6000602082019050818103600083015261373181613457565b9050919050565b600060208201905081810360008301526137518161347a565b9050919050565b60006020820190508181036000830152613771816134c0565b9050919050565b60006020820190508181036000830152613791816134e3565b9050919050565b600060208201905081810360008301526137b181613506565b9050919050565b600060208201905081810360008301526137d181613529565b9050919050565b60006020820190506137ed600083018461354c565b92915050565b60006137fd61380e565b90506138098282613a6d565b919050565b6000604051905090565b600067ffffffffffffffff82111561383357613832613b74565b5b61383c82613bc1565b9050602081019050919050565b600067ffffffffffffffff82111561386457613863613b74565b5b61386d82613bc1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006138d3826139e2565b91506138de836139e2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561391357613912613ae7565b5b828201905092915050565b6000613929826139e2565b9150613934836139e2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561396d5761396c613ae7565b5b828202905092915050565b6000613983826139c2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613a26578082015181840152602081019050613a0b565b83811115613a35576000848401525b50505050565b60006002820490506001821680613a5357607f821691505b60208210811415613a6757613a66613b16565b5b50919050565b613a7682613bc1565b810181811067ffffffffffffffff82111715613a9557613a94613b74565b5b80604052505050565b6000613aa9826139e2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613adc57613adb613ae7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4e6f20616d6f756e742073706563696669656400000000000000000000000000600082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f46697273742077686974656c697374206c696d6974206578636565646564202860008201527f3130303029000000000000000000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b613e6581613978565b8114613e7057600080fd5b50565b613e7c8161398a565b8114613e8757600080fd5b50565b613e9381613996565b8114613e9e57600080fd5b50565b613eaa816139e2565b8114613eb557600080fd5b50565b613ec1816139ec565b8114613ecc57600080fd5b5056fea26469706673582212203404f4f5d7cc96f281f41b916777511ada204bcd0d6c186f9979f059b58485d564736f6c63430008070033697066733a2f2f626166796265696132747a346d32776b6e6e346e74796367796637343365366c6f7a6963376e3337726979726f6d693679686476797169666c63652f

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636352211e1161012e578063a0712d68116100ab578063d0eb26b01161006f578063d0eb26b01461079f578063d5abeb01146107c8578063e985e9c5146107f3578063ea21b75114610830578063f2fde38b1461085957610230565b8063a0712d68146106d6578063a22cb465146106f2578063b88d4fde1461071b578063ba7d2c7614610737578063c87b56dd1461076257610230565b80638456cb59116100f25780638456cb59146106155780638da5cb5b1461062c5780638eb563961461065757806395d89b41146106805780639c70b512146106ab57610230565b80636352211e146105305780636c0360eb1461056d57806370a0823114610598578063715018a6146105d55780637f00c7a6146105ec57610230565b8063239c70ae116101bc5780633f4ba83a116101805780633f4ba83a1461048057806342842e0e1461049757806344a0d68a146104b35780635c975abb146104dc5780635d46b5091461050757610230565b8063239c70ae146103ef57806323b872dd1461041a57806328fb1eff146104365780633c9527641461044d5780633ccfd60b1461047657610230565b8063095ea7b311610203578063095ea7b3146103175780630e709b1b1461033357806313faede61461035c57806318160ddd1461038757806318cae269146103b257610230565b806301ffc9a71461023557806306c933d81461027257806306fdde03146102af578063081812fc146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906131d1565b610882565b60405161026991906135fb565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190612ee1565b610914565b6040516102a691906135fb565b60405180910390f35b3480156102bb57600080fd5b506102c4610934565b6040516102d19190613616565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613274565b6109c6565b60405161030e9190613594565b60405180910390f35b610331600480360381019061032c9190613064565b610a45565b005b34801561033f57600080fd5b5061035a6004803603810190610355919061322b565b610b89565b005b34801561036857600080fd5b50610371610c56565b60405161037e91906137d8565b60405180910390f35b34801561039357600080fd5b5061039c610c5c565b6040516103a991906137d8565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d49190612ee1565b610c73565b6040516103e691906137d8565b60405180910390f35b3480156103fb57600080fd5b50610404610c8b565b60405161041191906137d8565b60405180910390f35b610434600480360381019061042f9190612f4e565b610c91565b005b34801561044257600080fd5b5061044b610fb6565b005b34801561045957600080fd5b50610474600480360381019061046f91906131a4565b61104f565b005b61047e6110e8565b005b34801561048c57600080fd5b506104956111e4565b005b6104b160048036038101906104ac9190612f4e565b61126a565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190613274565b61128a565b005b3480156104e857600080fd5b506104f1611310565b6040516104fe91906135fb565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190613144565b611327565b005b34801561053c57600080fd5b5061055760048036038101906105529190613274565b611532565b6040516105649190613594565b60405180910390f35b34801561057957600080fd5b50610582611544565b60405161058f9190613616565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190612ee1565b6115d2565b6040516105cc91906137d8565b60405180910390f35b3480156105e157600080fd5b506105ea61168b565b005b3480156105f857600080fd5b50610613600480360381019061060e9190613274565b611713565b005b34801561062157600080fd5b5061062a611799565b005b34801561063857600080fd5b5061064161181f565b60405161064e9190613594565b60405180910390f35b34801561066357600080fd5b5061067e600480360381019061067991906130a4565b611849565b005b34801561068c57600080fd5b506106956119d5565b6040516106a29190613616565b60405180910390f35b3480156106b757600080fd5b506106c0611a67565b6040516106cd91906135fb565b60405180910390f35b6106f060048036038101906106eb9190613274565b611a7a565b005b3480156106fe57600080fd5b5061071960048036038101906107149190613024565b611e23565b005b61073560048036038101906107309190612fa1565b611f2e565b005b34801561074357600080fd5b5061074c611fa1565b60405161075991906137d8565b60405180910390f35b34801561076e57600080fd5b5061078960048036038101906107849190613274565b611fa7565b6040516107969190613616565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c19190613274565b612046565b005b3480156107d457600080fd5b506107dd6120cc565b6040516107ea91906137d8565b60405180910390f35b3480156107ff57600080fd5b5061081a60048036038101906108159190612f0e565b6120d2565b60405161082791906135fb565b60405180910390f35b34801561083c57600080fd5b50610857600480360381019061085291906130e4565b612166565b005b34801561086557600080fd5b50610880600480360381019061087b9190612ee1565b612287565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108dd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600f6020528060005260406000206000915054906101000a900460ff1681565b60606002805461094390613a3b565b80601f016020809104026020016040519081016040528092919081815260200182805461096f90613a3b565b80156109bc5780601f10610991576101008083540402835291602001916109bc565b820191906000526020600020905b81548152906001019060200180831161099f57829003601f168201915b5050505050905090565b60006109d18261237f565b610a07576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5082611532565b90508073ffffffffffffffffffffffffffffffffffffffff16610a716123de565b73ffffffffffffffffffffffffffffffffffffffff1614610ad457610a9d81610a986123de565b6120d2565b610ad3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b916123e6565b73ffffffffffffffffffffffffffffffffffffffff16610baf61181f565b73ffffffffffffffffffffffffffffffffffffffff1614610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc906136f8565b60405180910390fd5b8060099080519060200190610c1b929190612c8a565b507f8eca6ea708f9bc34439b72366aa672afc86bb8b1294f1ba9637945c5dab8ea7481604051610c4b9190613616565b60405180910390a150565b600a5481565b6000610c666123ee565b6001546000540303905090565b60106020528060005260406000206000915090505481565b600c5481565b6000610c9c826123f7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d03576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d0f846124c5565b91509150610d258187610d206123de565b6124ec565b610d7157610d3a86610d356123de565b6120d2565b610d70576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610dd8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610de58686866001612530565b8015610df057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ebe85610e9a888887612536565b7c02000000000000000000000000000000000000000000000000000000001761255e565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f46576000600185019050600060046000838152602001908152602001600020541415610f44576000548114610f43578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fae8686866001612589565b505050505050565b610fbe6123e6565b73ffffffffffffffffffffffffffffffffffffffff16610fdc61181f565b73ffffffffffffffffffffffffffffffffffffffff1614611032576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611029906136f8565b60405180910390fd5b6000600e60006101000a81548160ff021916908315150217905550565b6110576123e6565b73ffffffffffffffffffffffffffffffffffffffff1661107561181f565b73ffffffffffffffffffffffffffffffffffffffff16146110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c2906136f8565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6110f06123e6565b73ffffffffffffffffffffffffffffffffffffffff1661110e61181f565b73ffffffffffffffffffffffffffffffffffffffff1614611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b906136f8565b60405180910390fd5b600061116e61181f565b73ffffffffffffffffffffffffffffffffffffffff16476040516111919061357f565b60006040518083038185875af1925050503d80600081146111ce576040519150601f19603f3d011682016040523d82523d6000602084013e6111d3565b606091505b50509050806111e157600080fd5b50565b6111ec6123e6565b73ffffffffffffffffffffffffffffffffffffffff1661120a61181f565b73ffffffffffffffffffffffffffffffffffffffff1614611260576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611257906136f8565b60405180910390fd5b61126861258f565b565b61128583838360405180602001604052806000815250611f2e565b505050565b6112926123e6565b73ffffffffffffffffffffffffffffffffffffffff166112b061181f565b73ffffffffffffffffffffffffffffffffffffffff1614611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd906136f8565b60405180910390fd5b80600a8190555050565b6000600860149054906101000a900460ff16905090565b61132f6123e6565b73ffffffffffffffffffffffffffffffffffffffff1661134d61181f565b73ffffffffffffffffffffffffffffffffffffffff16146113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a906136f8565b60405180910390fd5b60008160ff16116113e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e090613738565b60405180910390fd5b60006113f3610c5c565b9050600b54848490508360ff1661140a919061391e565b8261141591906138c8565b1115611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d906136b8565b60405180910390fd5b60005b8484905081101561152b5761149885858381811061147a57611479613b45565b5b905060200201602081019061148f9190612ee1565b8460ff166125f2565b8260ff16601060008787858181106114b3576114b2613b45565b5b90506020020160208101906114c89190612ee1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461151191906138c8565b92505081905550808061152390613a9e565b915050611459565b5050505050565b600061153d826123f7565b9050919050565b6009805461155190613a3b565b80601f016020809104026020016040519081016040528092919081815260200182805461157d90613a3b565b80156115ca5780601f1061159f576101008083540402835291602001916115ca565b820191906000526020600020905b8154815290600101906020018083116115ad57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561163a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116936123e6565b73ffffffffffffffffffffffffffffffffffffffff166116b161181f565b73ffffffffffffffffffffffffffffffffffffffff1614611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe906136f8565b60405180910390fd5b6117116000612610565b565b61171b6123e6565b73ffffffffffffffffffffffffffffffffffffffff1661173961181f565b73ffffffffffffffffffffffffffffffffffffffff161461178f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611786906136f8565b60405180910390fd5b80600c8190555050565b6117a16123e6565b73ffffffffffffffffffffffffffffffffffffffff166117bf61181f565b73ffffffffffffffffffffffffffffffffffffffff1614611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c906136f8565b60405180910390fd5b61181d6126d6565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118516123e6565b73ffffffffffffffffffffffffffffffffffffffff1661186f61181f565b73ffffffffffffffffffffffffffffffffffffffff16146118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc906136f8565b60405180910390fd5b60008160ff161161190b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190290613738565b60405180910390fd5b6000611915610c5c565b9050600b548260ff168261192991906138c8565b111561196a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611961906136b8565b60405180910390fd5b611977838360ff166125f2565b8160ff16601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119c991906138c8565b92505081905550505050565b6060600380546119e490613a3b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1090613a3b565b8015611a5d5780601f10611a3257610100808354040283529160200191611a5d565b820191906000526020600020905b815481529060010190602001808311611a4057829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1681565b611a82611310565b15611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab990613718565b60405180910390fd5b6000611acc610c5c565b905060008211611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b08906137b8565b60405180910390fd5b600c54821115611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d906136d8565b60405180910390fd5b600b548282611b6591906138c8565b1115611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d906136b8565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548382611bf991906138c8565b1115611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190613678565b60405180910390fd5b611c4261181f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611dbe5760011515600e60009054906101000a900460ff1615151415611d6d57600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1390613798565b60405180910390fd5b6103e88383611d2b91906138c8565b1115611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6390613778565b60405180910390fd5b5b82600a54611d7b919061391e565b341015611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db490613758565b60405180910390fd5b5b82601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e0d91906138c8565b92505081905550611e1e33846125f2565b505050565b8060076000611e306123de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611edd6123de565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f2291906135fb565b60405180910390a35050565b611f39848484610c91565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f9b57611f6484848484612739565b611f9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d5481565b6060611fb28261237f565b611fe8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611ff2612899565b9050600081511415612013576040518060200160405280600081525061203e565b8061201d8461292b565b60405160200161202e92919061355b565b6040516020818303038152906040525b915050919050565b61204e6123e6565b73ffffffffffffffffffffffffffffffffffffffff1661206c61181f565b73ffffffffffffffffffffffffffffffffffffffff16146120c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b9906136f8565b60405180910390fd5b80600d8190555050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61216e6123e6565b73ffffffffffffffffffffffffffffffffffffffff1661218c61181f565b73ffffffffffffffffffffffffffffffffffffffff16146121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d9906136f8565b60405180910390fd5b60005b838390508110156122815781600f600086868581811061220857612207613b45565b5b905060200201602081019061221d9190612ee1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061227990613a9e565b9150506121e5565b50505050565b61228f6123e6565b73ffffffffffffffffffffffffffffffffffffffff166122ad61181f565b73ffffffffffffffffffffffffffffffffffffffff1614612303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fa906136f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236a90613658565b60405180910390fd5b61237c81612610565b50565b60008161238a6123ee565b11158015612399575060005482105b80156123d7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b60006001905090565b600080829050806124066123ee565b1161248e5760005481101561248d5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561248b575b6000811415612481576004600083600190039350838152602001908152602001600020549050612456565b80925050506124c0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861254d868684612984565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61259761298d565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6125db6123e6565b6040516125e89190613594565b60405180910390a1565b61260c8282604051806020016040528060008152506129d6565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126de612a73565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586127226123e6565b60405161272f9190613594565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261275f6123de565b8786866040518563ffffffff1660e01b815260040161278194939291906135af565b602060405180830381600087803b15801561279b57600080fd5b505af19250505080156127cc57506040513d601f19601f820116820180604052508101906127c991906131fe565b60015b612846573d80600081146127fc576040519150601f19603f3d011682016040523d82523d6000602084013e612801565b606091505b5060008151141561283e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546128a890613a3b565b80601f01602080910402602001604051908101604052809291908181526020018280546128d490613a3b565b80156129215780601f106128f657610100808354040283529160200191612921565b820191906000526020600020905b81548152906001019060200180831161290457829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561296f57600184039350600a81066030018453600a810490508061296a5761296f565b612944565b50828103602084039350808452505050919050565b60009392505050565b612995611310565b6129d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cb90613638565b60405180910390fd5b565b6129e08383612abd565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a6e57600080549050600083820390505b612a206000868380600101945086612739565b612a56576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612a0d578160005414612a6b57600080fd5b50505b505050565b612a7b611310565b15612abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab290613698565b60405180910390fd5b565b6000805490506000821415612afe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b0b6000848385612530565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612b8283612b736000866000612536565b612b7c85612c7a565b1761255e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612c2357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612be8565b506000821415612c5f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612c756000848385612589565b505050565b60006001821460e11b9050919050565b828054612c9690613a3b565b90600052602060002090601f016020900481019282612cb85760008555612cff565b82601f10612cd157805160ff1916838001178555612cff565b82800160010185558215612cff579182015b82811115612cfe578251825591602001919060010190612ce3565b5b509050612d0c9190612d10565b5090565b5b80821115612d29576000816000905550600101612d11565b5090565b6000612d40612d3b84613818565b6137f3565b905082815260208101848484011115612d5c57612d5b613bb2565b5b612d678482856139f9565b509392505050565b6000612d82612d7d84613849565b6137f3565b905082815260208101848484011115612d9e57612d9d613bb2565b5b612da98482856139f9565b509392505050565b600081359050612dc081613e5c565b92915050565b60008083601f840112612ddc57612ddb613ba8565b5b8235905067ffffffffffffffff811115612df957612df8613ba3565b5b602083019150836020820283011115612e1557612e14613bad565b5b9250929050565b600081359050612e2b81613e73565b92915050565b600081359050612e4081613e8a565b92915050565b600081519050612e5581613e8a565b92915050565b600082601f830112612e7057612e6f613ba8565b5b8135612e80848260208601612d2d565b91505092915050565b600082601f830112612e9e57612e9d613ba8565b5b8135612eae848260208601612d6f565b91505092915050565b600081359050612ec681613ea1565b92915050565b600081359050612edb81613eb8565b92915050565b600060208284031215612ef757612ef6613bbc565b5b6000612f0584828501612db1565b91505092915050565b60008060408385031215612f2557612f24613bbc565b5b6000612f3385828601612db1565b9250506020612f4485828601612db1565b9150509250929050565b600080600060608486031215612f6757612f66613bbc565b5b6000612f7586828701612db1565b9350506020612f8686828701612db1565b9250506040612f9786828701612eb7565b9150509250925092565b60008060008060808587031215612fbb57612fba613bbc565b5b6000612fc987828801612db1565b9450506020612fda87828801612db1565b9350506040612feb87828801612eb7565b925050606085013567ffffffffffffffff81111561300c5761300b613bb7565b5b61301887828801612e5b565b91505092959194509250565b6000806040838503121561303b5761303a613bbc565b5b600061304985828601612db1565b925050602061305a85828601612e1c565b9150509250929050565b6000806040838503121561307b5761307a613bbc565b5b600061308985828601612db1565b925050602061309a85828601612eb7565b9150509250929050565b600080604083850312156130bb576130ba613bbc565b5b60006130c985828601612db1565b92505060206130da85828601612ecc565b9150509250929050565b6000806000604084860312156130fd576130fc613bbc565b5b600084013567ffffffffffffffff81111561311b5761311a613bb7565b5b61312786828701612dc6565b9350935050602061313a86828701612e1c565b9150509250925092565b60008060006040848603121561315d5761315c613bbc565b5b600084013567ffffffffffffffff81111561317b5761317a613bb7565b5b61318786828701612dc6565b9350935050602061319a86828701612ecc565b9150509250925092565b6000602082840312156131ba576131b9613bbc565b5b60006131c884828501612e1c565b91505092915050565b6000602082840312156131e7576131e6613bbc565b5b60006131f584828501612e31565b91505092915050565b60006020828403121561321457613213613bbc565b5b600061322284828501612e46565b91505092915050565b60006020828403121561324157613240613bbc565b5b600082013567ffffffffffffffff81111561325f5761325e613bb7565b5b61326b84828501612e89565b91505092915050565b60006020828403121561328a57613289613bbc565b5b600061329884828501612eb7565b91505092915050565b6132aa81613978565b82525050565b6132b98161398a565b82525050565b60006132ca8261387a565b6132d48185613890565b93506132e4818560208601613a08565b6132ed81613bc1565b840191505092915050565b600061330382613885565b61330d81856138ac565b935061331d818560208601613a08565b61332681613bc1565b840191505092915050565b600061333c82613885565b61334681856138bd565b9350613356818560208601613a08565b80840191505092915050565b600061336f6014836138ac565b915061337a82613bd2565b602082019050919050565b60006133926026836138ac565b915061339d82613bfb565b604082019050919050565b60006133b5601c836138ac565b91506133c082613c4a565b602082019050919050565b60006133d86010836138ac565b91506133e382613c73565b602082019050919050565b60006133fb6016836138ac565b915061340682613c9c565b602082019050919050565b600061341e6024836138ac565b915061342982613cc5565b604082019050919050565b60006134416020836138ac565b915061344c82613d14565b602082019050919050565b60006134646016836138ac565b915061346f82613d3d565b602082019050919050565b60006134876013836138ac565b915061349282613d66565b602082019050919050565b60006134aa6000836138a1565b91506134b582613d8f565b600082019050919050565b60006134cd6012836138ac565b91506134d882613d92565b602082019050919050565b60006134f06025836138ac565b91506134fb82613dbb565b604082019050919050565b60006135136017836138ac565b915061351e82613e0a565b602082019050919050565b6000613536601b836138ac565b915061354182613e33565b602082019050919050565b613555816139e2565b82525050565b60006135678285613331565b91506135738284613331565b91508190509392505050565b600061358a8261349d565b9150819050919050565b60006020820190506135a960008301846132a1565b92915050565b60006080820190506135c460008301876132a1565b6135d160208301866132a1565b6135de604083018561354c565b81810360608301526135f081846132bf565b905095945050505050565b600060208201905061361060008301846132b0565b92915050565b6000602082019050818103600083015261363081846132f8565b905092915050565b6000602082019050818103600083015261365181613362565b9050919050565b6000602082019050818103600083015261367181613385565b9050919050565b60006020820190508181036000830152613691816133a8565b9050919050565b600060208201905081810360008301526136b1816133cb565b9050919050565b600060208201905081810360008301526136d1816133ee565b9050919050565b600060208201905081810360008301526136f181613411565b9050919050565b6000602082019050818103600083015261371181613434565b9050919050565b6000602082019050818103600083015261373181613457565b9050919050565b600060208201905081810360008301526137518161347a565b9050919050565b60006020820190508181036000830152613771816134c0565b9050919050565b60006020820190508181036000830152613791816134e3565b9050919050565b600060208201905081810360008301526137b181613506565b9050919050565b600060208201905081810360008301526137d181613529565b9050919050565b60006020820190506137ed600083018461354c565b92915050565b60006137fd61380e565b90506138098282613a6d565b919050565b6000604051905090565b600067ffffffffffffffff82111561383357613832613b74565b5b61383c82613bc1565b9050602081019050919050565b600067ffffffffffffffff82111561386457613863613b74565b5b61386d82613bc1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006138d3826139e2565b91506138de836139e2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561391357613912613ae7565b5b828201905092915050565b6000613929826139e2565b9150613934836139e2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561396d5761396c613ae7565b5b828202905092915050565b6000613983826139c2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613a26578082015181840152602081019050613a0b565b83811115613a35576000848401525b50505050565b60006002820490506001821680613a5357607f821691505b60208210811415613a6757613a66613b16565b5b50919050565b613a7682613bc1565b810181811067ffffffffffffffff82111715613a9557613a94613b74565b5b80604052505050565b6000613aa9826139e2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613adc57613adb613ae7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4e6f20616d6f756e742073706563696669656400000000000000000000000000600082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f46697273742077686974656c697374206c696d6974206578636565646564202860008201527f3130303029000000000000000000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b613e6581613978565b8114613e7057600080fd5b50565b613e7c8161398a565b8114613e8757600080fd5b50565b613e9381613996565b8114613e9e57600080fd5b50565b613eaa816139e2565b8114613eb557600080fd5b50565b613ec1816139ec565b8114613ecc57600080fd5b5056fea26469706673582212203404f4f5d7cc96f281f41b916777511ada204bcd0d6c186f9979f059b58485d564736f6c63430008070033

Deployed Bytecode Sourcemap

54805:3627:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21739:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55149:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22641:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29132:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28565:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57303:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54956:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18392:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55207:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55029:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32771:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57981:83;;;;;;;;;;;;;:::i;:::-;;57880:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58284:145;;;:::i;:::-;;57813:61;;;;;;;;;;;;;:::i;:::-;;35692:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57432:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1342:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56869:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24034:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54858:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19576:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3387:103;;;;;;;;;;;;;:::i;:::-;;57518:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57750:57;;;;;;;;;;;;;:::i;:::-;;2736:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56565:298;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22817:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55110:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55598:961;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29690:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36483:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55066:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23027:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57640:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54993:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30081:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58070:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3645:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21739:639;21824:4;22163:10;22148:25;;:11;:25;;;;:102;;;;22240:10;22225:25;;:11;:25;;;;22148:102;:179;;;;22317:10;22302:25;;:11;:25;;;;22148:179;22128:199;;21739:639;;;:::o;55149:53::-;;;;;;;;;;;;;;;;;;;;;;:::o;22641:100::-;22695:13;22728:5;22721:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22641:100;:::o;29132:218::-;29208:7;29233:16;29241:7;29233;:16::i;:::-;29228:64;;29258:34;;;;;;;;;;;;;;29228:64;29312:15;:24;29328:7;29312:24;;;;;;;;;;;:30;;;;;;;;;;;;29305:37;;29132:218;;;:::o;28565:408::-;28654:13;28670:16;28678:7;28670;:16::i;:::-;28654:32;;28726:5;28703:28;;:19;:17;:19::i;:::-;:28;;;28699:175;;28751:44;28768:5;28775:19;:17;:19::i;:::-;28751:16;:44::i;:::-;28746:128;;28823:35;;;;;;;;;;;;;;28746:128;28699:175;28919:2;28886:15;:24;28902:7;28886:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;28957:7;28953:2;28937:28;;28946:5;28937:28;;;;;;;;;;;;28643:330;28565:408;;:::o;57303:123::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57381:7:::1;57371;:17;;;;;;;;;;;;:::i;:::-;;57400:20;57412:7;57400:20;;;;;;:::i;:::-;;;;;;;;57303:123:::0;:::o;54956:32::-;;;;:::o;18392:323::-;18453:7;18681:15;:13;:15::i;:::-;18666:12;;18650:13;;:28;:46;18643:53;;18392:323;:::o;55207:55::-;;;;;;;;;;;;;;;;;:::o;55029:32::-;;;;:::o;32771:2825::-;32913:27;32943;32962:7;32943:18;:27::i;:::-;32913:57;;33028:4;32987:45;;33003:19;32987:45;;;32983:86;;33041:28;;;;;;;;;;;;;;32983:86;33083:27;33112:23;33139:35;33166:7;33139:26;:35::i;:::-;33082:92;;;;33274:68;33299:15;33316:4;33322:19;:17;:19::i;:::-;33274:24;:68::i;:::-;33269:180;;33362:43;33379:4;33385:19;:17;:19::i;:::-;33362:16;:43::i;:::-;33357:92;;33414:35;;;;;;;;;;;;;;33357:92;33269:180;33480:1;33466:16;;:2;:16;;;33462:52;;;33491:23;;;;;;;;;;;;;;33462:52;33527:43;33549:4;33555:2;33559:7;33568:1;33527:21;:43::i;:::-;33663:15;33660:160;;;33803:1;33782:19;33775:30;33660:160;34200:18;:24;34219:4;34200:24;;;;;;;;;;;;;;;;34198:26;;;;;;;;;;;;34269:18;:22;34288:2;34269:22;;;;;;;;;;;;;;;;34267:24;;;;;;;;;;;34591:146;34628:2;34677:45;34692:4;34698:2;34702:19;34677:14;:45::i;:::-;14791:8;34649:73;34591:18;:146::i;:::-;34562:17;:26;34580:7;34562:26;;;;;;;;;;;:175;;;;34908:1;14791:8;34857:19;:47;:52;34853:627;;;34930:19;34962:1;34952:7;:11;34930:33;;35119:1;35085:17;:30;35103:11;35085:30;;;;;;;;;;;;:35;35081:384;;;35223:13;;35208:11;:28;35204:242;;35403:19;35370:17;:30;35388:11;35370:30;;;;;;;;;;;:52;;;;35204:242;35081:384;34911:569;34853:627;35527:7;35523:2;35508:27;;35517:4;35508:27;;;;;;;;;;;;35546:42;35567:4;35573:2;35577:7;35586:1;35546:20;:42::i;:::-;32902:2694;;;32771:2825;;;:::o;57981:83::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58053:5:::1;58035:15;;:23;;;;;;;;;;;;;;;;;;57981:83::o:0;57880:95::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57963:6:::1;57945:15;;:24;;;;;;;;;;;;;;;;;;57880:95:::0;:::o;58284:145::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58337:7:::1;58358;:5;:7::i;:::-;58350:21;;58379;58350:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58336:69;;;58420:2;58412:11;;;::::0;::::1;;58329:100;58284:145::o:0;57813:61::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57858:10:::1;:8;:10::i;:::-;57813:61::o:0;35692:193::-;35838:39;35855:4;35861:2;35865:7;35838:39;;;;;;;;;;;;:16;:39::i;:::-;35692:193;;;:::o;57432:80::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57498:8:::1;57491:4;:15;;;;57432:80:::0;:::o;1342:86::-;1389:4;1413:7;;;;;;;;;;;1406:14;;1342:86;:::o;56869:428::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56982:1:::1;56973:6;:10;;;56965:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;57014:14;57031:13;:11;:13::i;:::-;57014:30;;57099:9;;57078;;:16;;57069:6;:25;;;;;;:::i;:::-;57059:6;:36;;;;:::i;:::-;:49;;57051:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;57149:9;57144:148;57168:9;;:16;;57164:1;:20;57144:148;;;57200:31;57210:9;;57220:1;57210:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;57224:6;57200:31;;:9;:31::i;:::-;57278:6;57240:44;;:20;:34;57261:9;;57271:1;57261:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;57240:34;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;57186:3;;;;;:::i;:::-;;;;57144:148;;;;56958:339;56869:428:::0;;;:::o;24034:152::-;24106:7;24149:27;24168:7;24149:18;:27::i;:::-;24126:52;;24034:152;;;:::o;54858:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19576:233::-;19648:7;19689:1;19672:19;;:5;:19;;;19668:60;;;19700:28;;;;;;;;;;;;;;19668:60;13735:13;19746:18;:25;19765:5;19746:25;;;;;;;;;;;;;;;;:55;19739:62;;19576:233;;;:::o;3387:103::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3452:30:::1;3479:1;3452:18;:30::i;:::-;3387:103::o:0;57518:116::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57611:17:::1;57595:13;:33;;;;57518:116:::0;:::o;57750:57::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57793:8:::1;:6;:8::i;:::-;57750:57::o:0;2736:87::-;2782:7;2809:6;;;;;;;;;;;2802:13;;2736:87;:::o;56565:298::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56656:1:::1;56647:6;:10;;;56639:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;56688:14;56705:13;:11;:13::i;:::-;56688:30;;56752:9;;56742:6;56733:15;;:6;:15;;;;:::i;:::-;:28;;56725:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;56795:21;56805:2;56809:6;56795:21;;:9;:21::i;:::-;56851:6;56823:34;;:20;:24;56844:2;56823:24;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;56632:231;56565:298:::0;;:::o;22817:104::-;22873:13;22906:7;22899:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22817:104;:::o;55110:34::-;;;;;;;;;;;;;:::o;55598:961::-;55664:8;:6;:8::i;:::-;55663:9;55655:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;55706:14;55723:13;:11;:13::i;:::-;55706:30;;55765:1;55751:11;:15;55743:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;55828:13;;55813:11;:28;;55805:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;55921:9;;55906:11;55897:6;:20;;;;:::i;:::-;:33;;55889:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55966:24;55993:20;:32;56014:10;55993:32;;;;;;;;;;;;;;;;55966:59;;56074:18;;56059:11;56040:16;:30;;;;:::i;:::-;:52;;56032:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;56154:7;:5;:7::i;:::-;56140:21;;:10;:21;;;56136:321;;56195:4;56176:23;;:15;;;;;;;;;;;:23;;;56172:207;;;56220:20;:32;56241:10;56220:32;;;;;;;;;;;;;;;;;;;;;;;;;56212:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56323:4;56308:11;56299:6;:20;;;;:::i;:::-;:28;;56291:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;56172:207;56415:11;56408:4;;:18;;;;:::i;:::-;56395:9;:31;;56387:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;56136:321;56501:11;56465:20;:32;56486:10;56465:32;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;56519:34;56529:10;56541:11;56519:9;:34::i;:::-;55648:911;;55598:961;:::o;29690:234::-;29837:8;29785:18;:39;29804:19;:17;:19::i;:::-;29785:39;;;;;;;;;;;;;;;:49;29825:8;29785:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29897:8;29861:55;;29876:19;:17;:19::i;:::-;29861:55;;;29907:8;29861:55;;;;;;:::i;:::-;;;;;;;;29690:234;;:::o;36483:407::-;36658:31;36671:4;36677:2;36681:7;36658:12;:31::i;:::-;36722:1;36704:2;:14;;;:19;36700:183;;36743:56;36774:4;36780:2;36784:7;36793:5;36743:30;:56::i;:::-;36738:145;;36827:40;;;;;;;;;;;;;;36738:145;36700:183;36483:407;;;;:::o;55066:37::-;;;;:::o;23027:318::-;23100:13;23131:16;23139:7;23131;:16::i;:::-;23126:59;;23156:29;;;;;;;;;;;;;;23126:59;23198:21;23222:10;:8;:10::i;:::-;23198:34;;23275:1;23256:7;23250:21;:26;;:87;;;;;;;;;;;;;;;;;23303:7;23312:18;23322:7;23312:9;:18::i;:::-;23286:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23250:87;23243:94;;;23027:318;;;:::o;57640:104::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57732:6:::1;57711:18;:27;;;;57640:104:::0;:::o;54993:31::-;;;;:::o;30081:164::-;30178:4;30202:18;:25;30221:5;30202:25;;;;;;;;;;;;;;;:35;30228:8;30202:35;;;;;;;;;;;;;;;;;;;;;;;;;30195:42;;30081:164;;;;:::o;58070:208::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58170:9:::1;58165:108;58189:9;;:16;;58185:1;:20;58165:108;;;58258:7;58221:20;:34;58242:9;;58252:1;58242:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;58221:34;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;58207:3;;;;;:::i;:::-;;;;58165:108;;;;58070:208:::0;;;:::o;3645:201::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3754:1:::1;3734:22;;:8;:22;;;;3726:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3810:28;3829:8;3810:18;:28::i;:::-;3645:201:::0;:::o;30503:282::-;30568:4;30624:7;30605:15;:13;:15::i;:::-;:26;;:66;;;;;30658:13;;30648:7;:23;30605:66;:153;;;;;30757:1;14511:8;30709:17;:26;30727:7;30709:26;;;;;;;;;;;;:44;:49;30605:153;30585:173;;30503:282;;;:::o;52811:105::-;52871:7;52898:10;52891:17;;52811:105;:::o;68:98::-;121:7;148:10;141:17;;68:98;:::o;55491:87::-;55548:7;55571:1;55564:8;;55491:87;:::o;25189:1275::-;25256:7;25276:12;25291:7;25276:22;;25359:4;25340:15;:13;:15::i;:::-;:23;25336:1061;;25393:13;;25386:4;:20;25382:1015;;;25431:14;25448:17;:23;25466:4;25448:23;;;;;;;;;;;;25431:40;;25565:1;14511:8;25537:6;:24;:29;25533:845;;;26202:113;26219:1;26209:6;:11;26202:113;;;26262:17;:25;26280:6;;;;;;;26262:25;;;;;;;;;;;;26253:34;;26202:113;;;26348:6;26341:13;;;;;;25533:845;25408:989;25382:1015;25336:1061;26425:31;;;;;;;;;;;;;;25189:1275;;;;:::o;31666:485::-;31768:27;31797:23;31838:38;31879:15;:24;31895:7;31879:24;;;;;;;;;;;31838:65;;32056:18;32033:41;;32113:19;32107:26;32088:45;;32018:126;31666:485;;;:::o;30894:659::-;31043:11;31208:16;31201:5;31197:28;31188:37;;31368:16;31357:9;31353:32;31340:45;;31518:15;31507:9;31504:30;31496:5;31485:9;31482:20;31479:56;31469:66;;30894:659;;;;;:::o;37552:159::-;;;;;:::o;52120:311::-;52255:7;52275:16;14915:3;52301:19;:41;;52275:68;;14915:3;52369:31;52380:4;52386:2;52390:9;52369:10;:31::i;:::-;52361:40;;:62;;52354:69;;;52120:311;;;;;:::o;27012:450::-;27092:14;27260:16;27253:5;27249:28;27240:37;;27437:5;27423:11;27398:23;27394:41;27391:52;27384:5;27381:63;27371:73;;27012:450;;;;:::o;38376:158::-;;;;;:::o;2197:120::-;1206:16;:14;:16::i;:::-;2266:5:::1;2256:7;;:15;;;;;;;;;;;;;;;;;;2287:22;2296:12;:10;:12::i;:::-;2287:22;;;;;;:::i;:::-;;;;;;;;2197:120::o:0;46643:112::-;46720:27;46730:2;46734:8;46720:27;;;;;;;;;;;;:9;:27::i;:::-;46643:112;;:::o;4006:191::-;4080:16;4099:6;;;;;;;;;;;4080:25;;4125:8;4116:6;;:17;;;;;;;;;;;;;;;;;;4180:8;4149:40;;4170:8;4149:40;;;;;;;;;;;;4069:128;4006:191;:::o;1938:118::-;947:19;:17;:19::i;:::-;2008:4:::1;1998:7;;:14;;;;;;;;;;;;;;;;;;2028:20;2035:12;:10;:12::i;:::-;2028:20;;;;;;:::i;:::-;;;;;;;;1938:118::o:0;38974:716::-;39137:4;39183:2;39158:45;;;39204:19;:17;:19::i;:::-;39225:4;39231:7;39240:5;39158:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39154:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39458:1;39441:6;:13;:18;39437:235;;;39487:40;;;;;;;;;;;;;;39437:235;39630:6;39624:13;39615:6;39611:2;39607:15;39600:38;39154:529;39327:54;;;39317:64;;;:6;:64;;;;39310:71;;;38974:716;;;;;;:::o;55383:102::-;55443:13;55472:7;55465:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55383:102;:::o;53018:1745::-;53083:17;53517:4;53510;53504:11;53500:22;53609:1;53603:4;53596:15;53684:4;53681:1;53677:12;53670:19;;53766:1;53761:3;53754:14;53870:3;54109:5;54091:428;54117:1;54091:428;;;54157:1;54152:3;54148:11;54141:18;;54328:2;54322:4;54318:13;54314:2;54310:22;54305:3;54297:36;54422:2;54416:4;54412:13;54404:21;;54489:4;54479:25;;54497:5;;54479:25;54091:428;;;54095:21;54558:3;54553;54549:13;54673:4;54668:3;54664:14;54657:21;;54738:6;54733:3;54726:19;53122:1634;;;53018:1745;;;:::o;51821:147::-;51958:6;51821:147;;;;;:::o;1686:108::-;1753:8;:6;:8::i;:::-;1745:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1686:108::o;45870:689::-;46001:19;46007:2;46011:8;46001:5;:19::i;:::-;46080:1;46062:2;:14;;;:19;46058:483;;46102:11;46116:13;;46102:27;;46148:13;46170:8;46164:3;:14;46148:30;;46197:233;46228:62;46267:1;46271:2;46275:7;;;;;;46284:5;46228:30;:62::i;:::-;46223:167;;46326:40;;;;;;;;;;;;;;46223:167;46425:3;46417:5;:11;46197:233;;46512:3;46495:13;;:20;46491:34;;46517:8;;;46491:34;46083:458;;46058:483;45870:689;;;:::o;1501:108::-;1572:8;:6;:8::i;:::-;1571:9;1563:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1501:108::o;40152:2966::-;40225:20;40248:13;;40225:36;;40288:1;40276:8;:13;40272:44;;;40298:18;;;;;;;;;;;;;;40272:44;40329:61;40359:1;40363:2;40367:12;40381:8;40329:21;:61::i;:::-;40873:1;13873:2;40843:1;:26;;40842:32;40830:8;:45;40804:18;:22;40823:2;40804:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41152:139;41189:2;41243:33;41266:1;41270:2;41274:1;41243:14;:33::i;:::-;41210:30;41231:8;41210:20;:30::i;:::-;:66;41152:18;:139::i;:::-;41118:17;:31;41136:12;41118:31;;;;;;;;;;;:173;;;;41308:16;41339:11;41368:8;41353:12;:23;41339:37;;41889:16;41885:2;41881:25;41869:37;;42261:12;42221:8;42180:1;42118:25;42059:1;41998;41971:335;42632:1;42618:12;42614:20;42572:346;42673:3;42664:7;42661:16;42572:346;;42891:7;42881:8;42878:1;42851:25;42848:1;42845;42840:59;42726:1;42717:7;42713:15;42702:26;;42572:346;;;42576:77;42963:1;42951:8;:13;42947:45;;;42973:19;;;;;;;;;;;;;;42947:45;43025:3;43009:13;:19;;;;40578:2462;;43050:60;43079:1;43083:2;43087:12;43101:8;43050:20;:60::i;:::-;40214:2904;40152:2966;;:::o;27564:324::-;27634:14;27867:1;27857:8;27854:15;27828:24;27824:46;27814:56;;27564:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:135::-;2912:5;2950:6;2937:20;2928:29;;2966:31;2991:5;2966:31;:::i;:::-;2868:135;;;;:::o;3009:329::-;3068:6;3117:2;3105:9;3096:7;3092:23;3088:32;3085:119;;;3123:79;;:::i;:::-;3085:119;3243:1;3268:53;3313:7;3304:6;3293:9;3289:22;3268:53;:::i;:::-;3258:63;;3214:117;3009:329;;;;:::o;3344:474::-;3412:6;3420;3469:2;3457:9;3448:7;3444:23;3440:32;3437:119;;;3475:79;;:::i;:::-;3437:119;3595:1;3620:53;3665:7;3656:6;3645:9;3641:22;3620:53;:::i;:::-;3610:63;;3566:117;3722:2;3748:53;3793:7;3784:6;3773:9;3769:22;3748:53;:::i;:::-;3738:63;;3693:118;3344:474;;;;;:::o;3824:619::-;3901:6;3909;3917;3966:2;3954:9;3945:7;3941:23;3937:32;3934:119;;;3972:79;;:::i;:::-;3934:119;4092:1;4117:53;4162:7;4153:6;4142:9;4138:22;4117:53;:::i;:::-;4107:63;;4063:117;4219:2;4245:53;4290:7;4281:6;4270:9;4266:22;4245:53;:::i;:::-;4235:63;;4190:118;4347:2;4373:53;4418:7;4409:6;4398:9;4394:22;4373:53;:::i;:::-;4363:63;;4318:118;3824:619;;;;;:::o;4449:943::-;4544:6;4552;4560;4568;4617:3;4605:9;4596:7;4592:23;4588:33;4585:120;;;4624:79;;:::i;:::-;4585:120;4744:1;4769:53;4814:7;4805:6;4794:9;4790:22;4769:53;:::i;:::-;4759:63;;4715:117;4871:2;4897:53;4942:7;4933:6;4922:9;4918:22;4897:53;:::i;:::-;4887:63;;4842:118;4999:2;5025:53;5070:7;5061:6;5050:9;5046:22;5025:53;:::i;:::-;5015:63;;4970:118;5155:2;5144:9;5140:18;5127:32;5186:18;5178:6;5175:30;5172:117;;;5208:79;;:::i;:::-;5172:117;5313:62;5367:7;5358:6;5347:9;5343:22;5313:62;:::i;:::-;5303:72;;5098:287;4449:943;;;;;;;:::o;5398:468::-;5463:6;5471;5520:2;5508:9;5499:7;5495:23;5491:32;5488:119;;;5526:79;;:::i;:::-;5488:119;5646:1;5671:53;5716:7;5707:6;5696:9;5692:22;5671:53;:::i;:::-;5661:63;;5617:117;5773:2;5799:50;5841:7;5832:6;5821:9;5817:22;5799:50;:::i;:::-;5789:60;;5744:115;5398:468;;;;;:::o;5872:474::-;5940:6;5948;5997:2;5985:9;5976:7;5972:23;5968:32;5965:119;;;6003:79;;:::i;:::-;5965:119;6123:1;6148:53;6193:7;6184:6;6173:9;6169:22;6148:53;:::i;:::-;6138:63;;6094:117;6250:2;6276:53;6321:7;6312:6;6301:9;6297:22;6276:53;:::i;:::-;6266:63;;6221:118;5872:474;;;;;:::o;6352:470::-;6418:6;6426;6475:2;6463:9;6454:7;6450:23;6446:32;6443:119;;;6481:79;;:::i;:::-;6443:119;6601:1;6626:53;6671:7;6662:6;6651:9;6647:22;6626:53;:::i;:::-;6616:63;;6572:117;6728:2;6754:51;6797:7;6788:6;6777:9;6773:22;6754:51;:::i;:::-;6744:61;;6699:116;6352:470;;;;;:::o;6828:698::-;6920:6;6928;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:80;7376:7;7367:6;7356:9;7352:22;7304:80;:::i;:::-;7286:98;;;;7082:312;7433:2;7459:50;7501:7;7492:6;7481:9;7477:22;7459:50;:::i;:::-;7449:60;;7404:115;6828:698;;;;;:::o;7532:700::-;7625:6;7633;7641;7690:2;7678:9;7669:7;7665:23;7661:32;7658:119;;;7696:79;;:::i;:::-;7658:119;7844:1;7833:9;7829:17;7816:31;7874:18;7866:6;7863:30;7860:117;;;7896:79;;:::i;:::-;7860:117;8009:80;8081:7;8072:6;8061:9;8057:22;8009:80;:::i;:::-;7991:98;;;;7787:312;8138:2;8164:51;8207:7;8198:6;8187:9;8183:22;8164:51;:::i;:::-;8154:61;;8109:116;7532:700;;;;;:::o;8238:323::-;8294:6;8343:2;8331:9;8322:7;8318:23;8314:32;8311:119;;;8349:79;;:::i;:::-;8311:119;8469:1;8494:50;8536:7;8527:6;8516:9;8512:22;8494:50;:::i;:::-;8484:60;;8440:114;8238:323;;;;:::o;8567:327::-;8625:6;8674:2;8662:9;8653:7;8649:23;8645:32;8642:119;;;8680:79;;:::i;:::-;8642:119;8800:1;8825:52;8869:7;8860:6;8849:9;8845:22;8825:52;:::i;:::-;8815:62;;8771:116;8567:327;;;;:::o;8900:349::-;8969:6;9018:2;9006:9;8997:7;8993:23;8989:32;8986:119;;;9024:79;;:::i;:::-;8986:119;9144:1;9169:63;9224:7;9215:6;9204:9;9200:22;9169:63;:::i;:::-;9159:73;;9115:127;8900:349;;;;:::o;9255:509::-;9324:6;9373:2;9361:9;9352:7;9348:23;9344:32;9341:119;;;9379:79;;:::i;:::-;9341:119;9527:1;9516:9;9512:17;9499:31;9557:18;9549:6;9546:30;9543:117;;;9579:79;;:::i;:::-;9543:117;9684:63;9739:7;9730:6;9719:9;9715:22;9684:63;:::i;:::-;9674:73;;9470:287;9255:509;;;;:::o;9770:329::-;9829:6;9878:2;9866:9;9857:7;9853:23;9849:32;9846:119;;;9884:79;;:::i;:::-;9846:119;10004:1;10029:53;10074:7;10065:6;10054:9;10050:22;10029:53;:::i;:::-;10019:63;;9975:117;9770:329;;;;:::o;10105:118::-;10192:24;10210:5;10192:24;:::i;:::-;10187:3;10180:37;10105:118;;:::o;10229:109::-;10310:21;10325:5;10310:21;:::i;:::-;10305:3;10298:34;10229:109;;:::o;10344:360::-;10430:3;10458:38;10490:5;10458:38;:::i;:::-;10512:70;10575:6;10570:3;10512:70;:::i;:::-;10505:77;;10591:52;10636:6;10631:3;10624:4;10617:5;10613:16;10591:52;:::i;:::-;10668:29;10690:6;10668:29;:::i;:::-;10663:3;10659:39;10652:46;;10434:270;10344:360;;;;:::o;10710:364::-;10798:3;10826:39;10859:5;10826:39;:::i;:::-;10881:71;10945:6;10940:3;10881:71;:::i;:::-;10874:78;;10961:52;11006:6;11001:3;10994:4;10987:5;10983:16;10961:52;:::i;:::-;11038:29;11060:6;11038:29;:::i;:::-;11033:3;11029:39;11022:46;;10802:272;10710:364;;;;:::o;11080:377::-;11186:3;11214:39;11247:5;11214:39;:::i;:::-;11269:89;11351:6;11346:3;11269:89;:::i;:::-;11262:96;;11367:52;11412:6;11407:3;11400:4;11393:5;11389:16;11367:52;:::i;:::-;11444:6;11439:3;11435:16;11428:23;;11190:267;11080:377;;;;:::o;11463:366::-;11605:3;11626:67;11690:2;11685:3;11626:67;:::i;:::-;11619:74;;11702:93;11791:3;11702:93;:::i;:::-;11820:2;11815:3;11811:12;11804:19;;11463:366;;;:::o;11835:::-;11977:3;11998:67;12062:2;12057:3;11998:67;:::i;:::-;11991:74;;12074:93;12163:3;12074:93;:::i;:::-;12192:2;12187:3;12183:12;12176:19;;11835:366;;;:::o;12207:::-;12349:3;12370:67;12434:2;12429:3;12370:67;:::i;:::-;12363:74;;12446:93;12535:3;12446:93;:::i;:::-;12564:2;12559:3;12555:12;12548:19;;12207:366;;;:::o;12579:::-;12721:3;12742:67;12806:2;12801:3;12742:67;:::i;:::-;12735:74;;12818:93;12907:3;12818:93;:::i;:::-;12936:2;12931:3;12927:12;12920:19;;12579:366;;;:::o;12951:::-;13093:3;13114:67;13178:2;13173:3;13114:67;:::i;:::-;13107:74;;13190:93;13279:3;13190:93;:::i;:::-;13308:2;13303:3;13299:12;13292:19;;12951:366;;;:::o;13323:::-;13465:3;13486:67;13550:2;13545:3;13486:67;:::i;:::-;13479:74;;13562:93;13651:3;13562:93;:::i;:::-;13680:2;13675:3;13671:12;13664:19;;13323:366;;;:::o;13695:::-;13837:3;13858:67;13922:2;13917:3;13858:67;:::i;:::-;13851:74;;13934:93;14023:3;13934:93;:::i;:::-;14052:2;14047:3;14043:12;14036:19;;13695:366;;;:::o;14067:::-;14209:3;14230:67;14294:2;14289:3;14230:67;:::i;:::-;14223:74;;14306:93;14395:3;14306:93;:::i;:::-;14424:2;14419:3;14415:12;14408:19;;14067:366;;;:::o;14439:::-;14581:3;14602:67;14666:2;14661:3;14602:67;:::i;:::-;14595:74;;14678:93;14767:3;14678:93;:::i;:::-;14796:2;14791:3;14787:12;14780:19;;14439:366;;;:::o;14811:398::-;14970:3;14991:83;15072:1;15067:3;14991:83;:::i;:::-;14984:90;;15083:93;15172:3;15083:93;:::i;:::-;15201:1;15196:3;15192:11;15185:18;;14811:398;;;:::o;15215:366::-;15357:3;15378:67;15442:2;15437:3;15378:67;:::i;:::-;15371:74;;15454:93;15543:3;15454:93;:::i;:::-;15572:2;15567:3;15563:12;15556:19;;15215:366;;;:::o;15587:::-;15729:3;15750:67;15814:2;15809:3;15750:67;:::i;:::-;15743:74;;15826:93;15915:3;15826:93;:::i;:::-;15944:2;15939:3;15935:12;15928:19;;15587:366;;;:::o;15959:::-;16101:3;16122:67;16186:2;16181:3;16122:67;:::i;:::-;16115:74;;16198:93;16287:3;16198:93;:::i;:::-;16316:2;16311:3;16307:12;16300:19;;15959:366;;;:::o;16331:::-;16473:3;16494:67;16558:2;16553:3;16494:67;:::i;:::-;16487:74;;16570:93;16659:3;16570:93;:::i;:::-;16688:2;16683:3;16679:12;16672:19;;16331:366;;;:::o;16703:118::-;16790:24;16808:5;16790:24;:::i;:::-;16785:3;16778:37;16703:118;;:::o;16827:435::-;17007:3;17029:95;17120:3;17111:6;17029:95;:::i;:::-;17022:102;;17141:95;17232:3;17223:6;17141:95;:::i;:::-;17134:102;;17253:3;17246:10;;16827:435;;;;;:::o;17268:379::-;17452:3;17474:147;17617:3;17474:147;:::i;:::-;17467:154;;17638:3;17631:10;;17268:379;;;:::o;17653:222::-;17746:4;17784:2;17773:9;17769:18;17761:26;;17797:71;17865:1;17854:9;17850:17;17841:6;17797:71;:::i;:::-;17653:222;;;;:::o;17881:640::-;18076:4;18114:3;18103:9;18099:19;18091:27;;18128:71;18196:1;18185:9;18181:17;18172:6;18128:71;:::i;:::-;18209:72;18277:2;18266:9;18262:18;18253:6;18209:72;:::i;:::-;18291;18359:2;18348:9;18344:18;18335:6;18291:72;:::i;:::-;18410:9;18404:4;18400:20;18395:2;18384:9;18380:18;18373:48;18438:76;18509:4;18500:6;18438:76;:::i;:::-;18430:84;;17881:640;;;;;;;:::o;18527:210::-;18614:4;18652:2;18641:9;18637:18;18629:26;;18665:65;18727:1;18716:9;18712:17;18703:6;18665:65;:::i;:::-;18527:210;;;;:::o;18743:313::-;18856:4;18894:2;18883:9;18879:18;18871:26;;18943:9;18937:4;18933:20;18929:1;18918:9;18914:17;18907:47;18971:78;19044:4;19035:6;18971:78;:::i;:::-;18963:86;;18743:313;;;;:::o;19062:419::-;19228:4;19266:2;19255:9;19251:18;19243:26;;19315:9;19309:4;19305:20;19301:1;19290:9;19286:17;19279:47;19343:131;19469:4;19343:131;:::i;:::-;19335:139;;19062:419;;;:::o;19487:::-;19653:4;19691:2;19680:9;19676:18;19668:26;;19740:9;19734:4;19730:20;19726:1;19715:9;19711:17;19704:47;19768:131;19894:4;19768:131;:::i;:::-;19760:139;;19487:419;;;:::o;19912:::-;20078:4;20116:2;20105:9;20101:18;20093:26;;20165:9;20159:4;20155:20;20151:1;20140:9;20136:17;20129:47;20193:131;20319:4;20193:131;:::i;:::-;20185:139;;19912:419;;;:::o;20337:::-;20503:4;20541:2;20530:9;20526:18;20518:26;;20590:9;20584:4;20580:20;20576:1;20565:9;20561:17;20554:47;20618:131;20744:4;20618:131;:::i;:::-;20610:139;;20337:419;;;:::o;20762:::-;20928:4;20966:2;20955:9;20951:18;20943:26;;21015:9;21009:4;21005:20;21001:1;20990:9;20986:17;20979:47;21043:131;21169:4;21043:131;:::i;:::-;21035:139;;20762:419;;;:::o;21187:::-;21353:4;21391:2;21380:9;21376:18;21368:26;;21440:9;21434:4;21430:20;21426:1;21415:9;21411:17;21404:47;21468:131;21594:4;21468:131;:::i;:::-;21460:139;;21187:419;;;:::o;21612:::-;21778:4;21816:2;21805:9;21801:18;21793:26;;21865:9;21859:4;21855:20;21851:1;21840:9;21836:17;21829:47;21893:131;22019:4;21893:131;:::i;:::-;21885:139;;21612:419;;;:::o;22037:::-;22203:4;22241:2;22230:9;22226:18;22218:26;;22290:9;22284:4;22280:20;22276:1;22265:9;22261:17;22254:47;22318:131;22444:4;22318:131;:::i;:::-;22310:139;;22037:419;;;:::o;22462:::-;22628:4;22666:2;22655:9;22651:18;22643:26;;22715:9;22709:4;22705:20;22701:1;22690:9;22686:17;22679:47;22743:131;22869:4;22743:131;:::i;:::-;22735:139;;22462:419;;;:::o;22887:::-;23053:4;23091:2;23080:9;23076:18;23068:26;;23140:9;23134:4;23130:20;23126:1;23115:9;23111:17;23104:47;23168:131;23294:4;23168:131;:::i;:::-;23160:139;;22887:419;;;:::o;23312:::-;23478:4;23516:2;23505:9;23501:18;23493:26;;23565:9;23559:4;23555:20;23551:1;23540:9;23536:17;23529:47;23593:131;23719:4;23593:131;:::i;:::-;23585:139;;23312:419;;;:::o;23737:::-;23903:4;23941:2;23930:9;23926:18;23918:26;;23990:9;23984:4;23980:20;23976:1;23965:9;23961:17;23954:47;24018:131;24144:4;24018:131;:::i;:::-;24010:139;;23737:419;;;:::o;24162:::-;24328:4;24366:2;24355:9;24351:18;24343:26;;24415:9;24409:4;24405:20;24401:1;24390:9;24386:17;24379:47;24443:131;24569:4;24443:131;:::i;:::-;24435:139;;24162:419;;;:::o;24587:222::-;24680:4;24718:2;24707:9;24703:18;24695:26;;24731:71;24799:1;24788:9;24784:17;24775:6;24731:71;:::i;:::-;24587:222;;;;:::o;24815:129::-;24849:6;24876:20;;:::i;:::-;24866:30;;24905:33;24933:4;24925:6;24905:33;:::i;:::-;24815:129;;;:::o;24950:75::-;24983:6;25016:2;25010:9;25000:19;;24950:75;:::o;25031:307::-;25092:4;25182:18;25174:6;25171:30;25168:56;;;25204:18;;:::i;:::-;25168:56;25242:29;25264:6;25242:29;:::i;:::-;25234:37;;25326:4;25320;25316:15;25308:23;;25031:307;;;:::o;25344:308::-;25406:4;25496:18;25488:6;25485:30;25482:56;;;25518:18;;:::i;:::-;25482:56;25556:29;25578:6;25556:29;:::i;:::-;25548:37;;25640:4;25634;25630:15;25622:23;;25344:308;;;:::o;25658:98::-;25709:6;25743:5;25737:12;25727:22;;25658:98;;;:::o;25762:99::-;25814:6;25848:5;25842:12;25832:22;;25762:99;;;:::o;25867:168::-;25950:11;25984:6;25979:3;25972:19;26024:4;26019:3;26015:14;26000:29;;25867:168;;;;:::o;26041:147::-;26142:11;26179:3;26164:18;;26041:147;;;;:::o;26194:169::-;26278:11;26312:6;26307:3;26300:19;26352:4;26347:3;26343:14;26328:29;;26194:169;;;;:::o;26369:148::-;26471:11;26508:3;26493:18;;26369:148;;;;:::o;26523:305::-;26563:3;26582:20;26600:1;26582:20;:::i;:::-;26577:25;;26616:20;26634:1;26616:20;:::i;:::-;26611:25;;26770:1;26702:66;26698:74;26695:1;26692:81;26689:107;;;26776:18;;:::i;:::-;26689:107;26820:1;26817;26813:9;26806:16;;26523:305;;;;:::o;26834:348::-;26874:7;26897:20;26915:1;26897:20;:::i;:::-;26892:25;;26931:20;26949:1;26931:20;:::i;:::-;26926:25;;27119:1;27051:66;27047:74;27044:1;27041:81;27036:1;27029:9;27022:17;27018:105;27015:131;;;27126:18;;:::i;:::-;27015:131;27174:1;27171;27167:9;27156:20;;26834:348;;;;:::o;27188:96::-;27225:7;27254:24;27272:5;27254:24;:::i;:::-;27243:35;;27188:96;;;:::o;27290:90::-;27324:7;27367:5;27360:13;27353:21;27342:32;;27290:90;;;:::o;27386:149::-;27422:7;27462:66;27455:5;27451:78;27440:89;;27386:149;;;:::o;27541:126::-;27578:7;27618:42;27611:5;27607:54;27596:65;;27541:126;;;:::o;27673:77::-;27710:7;27739:5;27728:16;;27673:77;;;:::o;27756:86::-;27791:7;27831:4;27824:5;27820:16;27809:27;;27756:86;;;:::o;27848:154::-;27932:6;27927:3;27922;27909:30;27994:1;27985:6;27980:3;27976:16;27969:27;27848:154;;;:::o;28008:307::-;28076:1;28086:113;28100:6;28097:1;28094:13;28086:113;;;28185:1;28180:3;28176:11;28170:18;28166:1;28161:3;28157:11;28150:39;28122:2;28119:1;28115:10;28110:15;;28086:113;;;28217:6;28214:1;28211:13;28208:101;;;28297:1;28288:6;28283:3;28279:16;28272:27;28208:101;28057:258;28008:307;;;:::o;28321:320::-;28365:6;28402:1;28396:4;28392:12;28382:22;;28449:1;28443:4;28439:12;28470:18;28460:81;;28526:4;28518:6;28514:17;28504:27;;28460:81;28588:2;28580:6;28577:14;28557:18;28554:38;28551:84;;;28607:18;;:::i;:::-;28551:84;28372:269;28321:320;;;:::o;28647:281::-;28730:27;28752:4;28730:27;:::i;:::-;28722:6;28718:40;28860:6;28848:10;28845:22;28824:18;28812:10;28809:34;28806:62;28803:88;;;28871:18;;:::i;:::-;28803:88;28911:10;28907:2;28900:22;28690:238;28647:281;;:::o;28934:233::-;28973:3;28996:24;29014:5;28996:24;:::i;:::-;28987:33;;29042:66;29035:5;29032:77;29029:103;;;29112:18;;:::i;:::-;29029:103;29159:1;29152:5;29148:13;29141:20;;28934:233;;;:::o;29173:180::-;29221:77;29218:1;29211:88;29318:4;29315:1;29308:15;29342:4;29339:1;29332:15;29359:180;29407:77;29404:1;29397:88;29504:4;29501:1;29494:15;29528:4;29525:1;29518:15;29545:180;29593:77;29590:1;29583:88;29690:4;29687:1;29680:15;29714:4;29711:1;29704:15;29731:180;29779:77;29776:1;29769:88;29876:4;29873:1;29866:15;29900:4;29897:1;29890:15;29917:117;30026:1;30023;30016:12;30040:117;30149:1;30146;30139:12;30163:117;30272:1;30269;30262:12;30286:117;30395:1;30392;30385:12;30409:117;30518:1;30515;30508:12;30532:117;30641:1;30638;30631:12;30655:102;30696:6;30747:2;30743:7;30738:2;30731:5;30727:14;30723:28;30713:38;;30655:102;;;:::o;30763:170::-;30903:22;30899:1;30891:6;30887:14;30880:46;30763:170;:::o;30939:225::-;31079:34;31075:1;31067:6;31063:14;31056:58;31148:8;31143:2;31135:6;31131:15;31124:33;30939:225;:::o;31170:178::-;31310:30;31306:1;31298:6;31294:14;31287:54;31170:178;:::o;31354:166::-;31494:18;31490:1;31482:6;31478:14;31471:42;31354:166;:::o;31526:172::-;31666:24;31662:1;31654:6;31650:14;31643:48;31526:172;:::o;31704:223::-;31844:34;31840:1;31832:6;31828:14;31821:58;31913:6;31908:2;31900:6;31896:15;31889:31;31704:223;:::o;31933:182::-;32073:34;32069:1;32061:6;32057:14;32050:58;31933:182;:::o;32121:172::-;32261:24;32257:1;32249:6;32245:14;32238:48;32121:172;:::o;32299:169::-;32439:21;32435:1;32427:6;32423:14;32416:45;32299:169;:::o;32474:114::-;;:::o;32594:168::-;32734:20;32730:1;32722:6;32718:14;32711:44;32594:168;:::o;32768:224::-;32908:34;32904:1;32896:6;32892:14;32885:58;32977:7;32972:2;32964:6;32960:15;32953:32;32768:224;:::o;32998:173::-;33138:25;33134:1;33126:6;33122:14;33115:49;32998:173;:::o;33177:177::-;33317:29;33313:1;33305:6;33301:14;33294:53;33177:177;:::o;33360:122::-;33433:24;33451:5;33433:24;:::i;:::-;33426:5;33423:35;33413:63;;33472:1;33469;33462:12;33413:63;33360:122;:::o;33488:116::-;33558:21;33573:5;33558:21;:::i;:::-;33551:5;33548:32;33538:60;;33594:1;33591;33584:12;33538:60;33488:116;:::o;33610:120::-;33682:23;33699:5;33682:23;:::i;:::-;33675:5;33672:34;33662:62;;33720:1;33717;33710:12;33662:62;33610:120;:::o;33736:122::-;33809:24;33827:5;33809:24;:::i;:::-;33802:5;33799:35;33789:63;;33848:1;33845;33838:12;33789:63;33736:122;:::o;33864:118::-;33935:22;33951:5;33935:22;:::i;:::-;33928:5;33925:33;33915:61;;33972:1;33969;33962:12;33915:61;33864:118;:::o

Swarm Source

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