ETH Price: $3,235.51 (-6.06%)
Gas: 11 Gwei

Token

Seaman (UPMAN)
 

Overview

Max Total Supply

5,555 UPMAN

Holders

755

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 UPMAN
0xe012fbd995d295f7179b510aa89d2d58e52ba344
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:
Seaman

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-18
*/

// File: contracts/Seaman.sol


pragma solidity ^0.8.7;

/** 
 __    __  _______   _______    ______    ______  
/  |  /  |/       \ /       \  /      \  /      \ 
$$ |  $$ |$$$$$$$  |$$$$$$$  |/$$$$$$  |/$$$$$$  |
$$ |  $$ |$$ |__$$ |$$ |  $$ |$$ |__$$ |$$ |  $$ |
$$ |  $$ |$$    $$/ $$ |  $$ |$$    $$ |$$ |  $$ |
$$ |  $$ |$$$$$$$/  $$ |  $$ |$$$$$$$$ |$$ |  $$ |
$$ \__$$ |$$ |      $$ |__$$ |$$ |  $$ |$$ \__$$ |
$$    $$/ $$ |      $$    $$/ $$ |  $$ |$$    $$/ 
 $$$$$$/  $$/       $$$$$$$/  $$/   $$/  $$$$$$/ 

*
* This is the main contract that mints the Seaman NFT.
* 
* The UPDAO a diversified community of award-wining engineers, 
* product managers and NFT/WEB3 investors, with Great Sailing spirit in mind. 
* Our primary mission is to enable everyone to be a marketplace by building innovative products and tools. 
* We will connect NFTs with both real world and metaverse, bringing 100 million people into NFT world.
* 
**/

// ERC721A Contracts v4.2.0

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            // 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)
        }
    }
}

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

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

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


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

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

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

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

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

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

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

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

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

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

// Updao - SeamanNFT
contract Seaman is ERC721A, Ownable {

    uint256 public constant _MAX_SUPPLY = 5555;
    string private _uriContract = "";
    string private _uriBase = "";
    string private _uriExtension = ".json";
    address private _minter;

    modifier onlyMinter() {
        require(msg.sender == owner() || msg.sender == _minter, "Caller is not the minter");
        _;
    }

    constructor() ERC721A("Seaman", "UPMAN") {
        _minter = msg.sender;
    }

    function setMinter(address one) public onlyOwner {
        require(one != address(0), "Cannot be the zero address");
        _minter = one;
    }

    function setContractURI(string memory uri) public onlyOwner {
        _uriContract = uri;
    }

    function contractURI() public view returns (string memory) {
        return _uriContract;
    }

    function setBaseUriAndExtension(string memory base, string memory ext) public onlyOwner {
        _uriBase = base; // http://base.url/
        _uriExtension = ext; // .json
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        if (!_exists(tokenId)) {
            revert URIQueryForNonexistentToken();
        }
        return string(abi.encodePacked(_uriBase, _toString(tokenId), _uriExtension));
    }

    function burn(uint256 tokenId) public {
        _burn(tokenId, true);
    }

    function mint(address to, uint256 quantity) public onlyMinter {
        require(_totalMinted() + quantity <= _MAX_SUPPLY, "Exceeds max supply");
        _safeMint(to, quantity);
    }

    function numberMinted(address one) public view returns (uint256) {
        return _numberMinted(one);
    }

    receive() external payable {
        payable(owner()).transfer(msg.value);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"one","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"base","type":"string"},{"internalType":"string","name":"ext","type":"string"}],"name":"setBaseUriAndExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"one","type":"address"}],"name":"setMinter","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526040518060200160405280600081525060099081620000249190620004f7565b5060405180602001604052806000815250600a9081620000459190620004f7565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200008c9190620004f7565b503480156200009a57600080fd5b506040518060400160405280600681526020017f5365616d616e00000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f55504d414e0000000000000000000000000000000000000000000000000000008152508160029081620001189190620004f7565b5080600390816200012a9190620004f7565b506200013b620001aa60201b60201c565b60008190555050506200016362000157620001af60201b60201c565b620001b760201b60201c565b33600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005de565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002ff57607f821691505b602082108103620003155762000314620002b7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200037f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000340565b6200038b868362000340565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003d8620003d2620003cc84620003a3565b620003ad565b620003a3565b9050919050565b6000819050919050565b620003f483620003b7565b6200040c6200040382620003df565b8484546200034d565b825550505050565b600090565b6200042362000414565b62000430818484620003e9565b505050565b5b8181101562000458576200044c60008262000419565b60018101905062000436565b5050565b601f821115620004a75762000471816200031b565b6200047c8462000330565b810160208510156200048c578190505b620004a46200049b8562000330565b83018262000435565b50505b505050565b600082821c905092915050565b6000620004cc60001984600802620004ac565b1980831691505092915050565b6000620004e78383620004b9565b9150826002028217905092915050565b62000502826200027d565b67ffffffffffffffff8111156200051e576200051d62000288565b5b6200052a8254620002e6565b620005378282856200045c565b600060209050601f8311600181146200056f57600084156200055a578287015190505b620005668582620004d9565b865550620005d6565b601f1984166200057f866200031b565b60005b82811015620005a95784890151825560018201915060208501945060208101905062000582565b86831015620005c95784890151620005c5601f891682620004b9565b8355505b6001600288020188555050505b505050505050565b612d8a80620005ee6000396000f3fe60806040526004361061016a5760003560e01c80638da5cb5b116100d1578063dc33e6811161008a578063f2fde38b11610064578063f2fde38b146105a4578063fca3b5aa146105cd578063fef1034a146105f6578063fffa65e01461061f576101be565b8063dc33e681146104ff578063e8a3d4851461053c578063e985e9c514610567576101be565b80638da5cb5b146103f1578063938e3d7b1461041c57806395d89b4114610445578063a22cb46514610470578063b88d4fde14610499578063c87b56dd146104c2576101be565b806340c10f191161012357806340c10f19146102e557806342842e0e1461030e57806342966c68146103375780636352211e1461036057806370a082311461039d578063715018a6146103da576101be565b806301ffc9a7146101c357806306fdde0314610200578063081812fc1461022b578063095ea7b31461026857806318160ddd1461029157806323b872dd146102bc576101be565b366101be5761017761064a565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156101bc573d6000803e3d6000fd5b005b600080fd5b3480156101cf57600080fd5b506101ea60048036038101906101e59190611f23565b610674565b6040516101f79190611f6b565b60405180910390f35b34801561020c57600080fd5b50610215610706565b604051610222919061201f565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612077565b610798565b60405161025f91906120e5565b60405180910390f35b34801561027457600080fd5b5061028f600480360381019061028a919061212c565b610817565b005b34801561029d57600080fd5b506102a661095b565b6040516102b3919061217b565b60405180910390f35b3480156102c857600080fd5b506102e360048036038101906102de9190612196565b610972565b005b3480156102f157600080fd5b5061030c6004803603810190610307919061212c565b610c94565b005b34801561031a57600080fd5b5061033560048036038101906103309190612196565b610dc6565b005b34801561034357600080fd5b5061035e60048036038101906103599190612077565b610de6565b005b34801561036c57600080fd5b5061038760048036038101906103829190612077565b610df4565b60405161039491906120e5565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf91906121e9565b610e06565b6040516103d1919061217b565b60405180910390f35b3480156103e657600080fd5b506103ef610ebe565b005b3480156103fd57600080fd5b5061040661064a565b60405161041391906120e5565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e919061234b565b610ed2565b005b34801561045157600080fd5b5061045a610eed565b604051610467919061201f565b60405180910390f35b34801561047c57600080fd5b50610497600480360381019061049291906123c0565b610f7f565b005b3480156104a557600080fd5b506104c060048036038101906104bb91906124a1565b6110f6565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190612077565b611169565b6040516104f6919061201f565b60405180910390f35b34801561050b57600080fd5b50610526600480360381019061052191906121e9565b6111df565b604051610533919061217b565b60405180910390f35b34801561054857600080fd5b506105516111f1565b60405161055e919061201f565b60405180910390f35b34801561057357600080fd5b5061058e60048036038101906105899190612524565b611283565b60405161059b9190611f6b565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c691906121e9565b611317565b005b3480156105d957600080fd5b506105f460048036038101906105ef91906121e9565b61139a565b005b34801561060257600080fd5b5061061d60048036038101906106189190612564565b611455565b005b34801561062b57600080fd5b50610634611481565b604051610641919061217b565b60405180910390f35b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106cf57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106ff5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107159061260b565b80601f01602080910402602001604051908101604052809291908181526020018280546107419061260b565b801561078e5780601f106107635761010080835404028352916020019161078e565b820191906000526020600020905b81548152906001019060200180831161077157829003601f168201915b5050505050905090565b60006107a382611487565b6107d9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082282610df4565b90508073ffffffffffffffffffffffffffffffffffffffff166108436114e6565b73ffffffffffffffffffffffffffffffffffffffff16146108a65761086f8161086a6114e6565b611283565b6108a5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109656114ee565b6001546000540303905090565b600061097d826114f3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109e4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109f0846115bf565b91509150610a068187610a016114e6565b6115e6565b610a5257610a1b86610a166114e6565b611283565b610a51576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ab8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ac5868686600161162a565b8015610ad057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b9e85610b7a888887611630565b7c020000000000000000000000000000000000000000000000000000000017611658565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c245760006001850190506000600460008381526020019081526020016000205403610c22576000548114610c21578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c8c8686866001611683565b505050505050565b610c9c61064a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610d225750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5890612688565b60405180910390fd5b6115b381610d6d611689565b610d7791906126d7565b1115610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90612779565b60405180910390fd5b610dc2828261169c565b5050565b610de1838383604051806020016040528060008152506110f6565b505050565b610df18160016116ba565b50565b6000610dff826114f3565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e6d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ec661190c565b610ed0600061198a565b565b610eda61190c565b8060099081610ee99190612945565b5050565b606060038054610efc9061260b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f289061260b565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b5050505050905090565b610f876114e6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610feb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610ff86114e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110a56114e6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110ea9190611f6b565b60405180910390a35050565b611101848484610972565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111635761112c84848484611a50565b611162576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061117482611487565b6111aa576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a6111b583611ba0565b600b6040516020016111c993929190612ad6565b6040516020818303038152906040529050919050565b60006111ea82611be7565b9050919050565b6060600980546112009061260b565b80601f016020809104026020016040519081016040528092919081815260200182805461122c9061260b565b80156112795780601f1061124e57610100808354040283529160200191611279565b820191906000526020600020905b81548152906001019060200180831161125c57829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61131f61190c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361138e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138590612b79565b60405180910390fd5b6113978161198a565b50565b6113a261190c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890612be5565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61145d61190c565b81600a908161146c9190612945565b5080600b908161147c9190612945565b505050565b6115b381565b6000816114926114ee565b111580156114a1575060005482105b80156114df575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806115026114ee565b11611588576000548110156115875760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611585575b6000810361157b576004600083600190039350838152602001908152602001600020549050611551565b80925050506115ba565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611647868684611c3e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006116936114ee565b60005403905090565b6116b6828260405180602001604052806000815250611c47565b5050565b60006116c5836114f3565b905060008190506000806116d8866115bf565b915091508415611741576116f481846116ef6114e6565b6115e6565b61174057611709836117046114e6565b611283565b61173f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b61174f83600088600161162a565b801561175a57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611802836117bf85600088611630565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611658565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036118885760006001870190506000600460008381526020019081526020016000205403611886576000548114611885578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118f2836000886001611683565b600160008154809291906001019190505550505050505050565b611914611ce4565b73ffffffffffffffffffffffffffffffffffffffff1661193261064a565b73ffffffffffffffffffffffffffffffffffffffff1614611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f90612c51565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a766114e6565b8786866040518563ffffffff1660e01b8152600401611a989493929190612cc6565b6020604051808303816000875af1925050508015611ad457506040513d601f19601f82011682018060405250810190611ad19190612d27565b60015b611b4d573d8060008114611b04576040519150601f19603f3d011682016040523d82523d6000602084013e611b09565b606091505b506000815103611b45576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060806040510190508060405280825b600115611bd357600183039250600a81066030018353600a8104905080611bb1575b508181036020830392508083525050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b611c518383611cec565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cdf57600080549050600083820390505b611c916000868380600101945086611a50565b611cc7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c7e578160005414611cdc57600080fd5b50505b505050565b600033905090565b60008054905060008203611d2c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d39600084838561162a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611db083611da16000866000611630565b611daa85611ea7565b17611658565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611e5157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611e16565b5060008203611e8c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611ea26000848385611683565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f0081611ecb565b8114611f0b57600080fd5b50565b600081359050611f1d81611ef7565b92915050565b600060208284031215611f3957611f38611ec1565b5b6000611f4784828501611f0e565b91505092915050565b60008115159050919050565b611f6581611f50565b82525050565b6000602082019050611f806000830184611f5c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611fc0578082015181840152602081019050611fa5565b83811115611fcf576000848401525b50505050565b6000601f19601f8301169050919050565b6000611ff182611f86565b611ffb8185611f91565b935061200b818560208601611fa2565b61201481611fd5565b840191505092915050565b600060208201905081810360008301526120398184611fe6565b905092915050565b6000819050919050565b61205481612041565b811461205f57600080fd5b50565b6000813590506120718161204b565b92915050565b60006020828403121561208d5761208c611ec1565b5b600061209b84828501612062565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120cf826120a4565b9050919050565b6120df816120c4565b82525050565b60006020820190506120fa60008301846120d6565b92915050565b612109816120c4565b811461211457600080fd5b50565b60008135905061212681612100565b92915050565b6000806040838503121561214357612142611ec1565b5b600061215185828601612117565b925050602061216285828601612062565b9150509250929050565b61217581612041565b82525050565b6000602082019050612190600083018461216c565b92915050565b6000806000606084860312156121af576121ae611ec1565b5b60006121bd86828701612117565b93505060206121ce86828701612117565b92505060406121df86828701612062565b9150509250925092565b6000602082840312156121ff576121fe611ec1565b5b600061220d84828501612117565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61225882611fd5565b810181811067ffffffffffffffff8211171561227757612276612220565b5b80604052505050565b600061228a611eb7565b9050612296828261224f565b919050565b600067ffffffffffffffff8211156122b6576122b5612220565b5b6122bf82611fd5565b9050602081019050919050565b82818337600083830152505050565b60006122ee6122e98461229b565b612280565b90508281526020810184848401111561230a5761230961221b565b5b6123158482856122cc565b509392505050565b600082601f83011261233257612331612216565b5b81356123428482602086016122db565b91505092915050565b60006020828403121561236157612360611ec1565b5b600082013567ffffffffffffffff81111561237f5761237e611ec6565b5b61238b8482850161231d565b91505092915050565b61239d81611f50565b81146123a857600080fd5b50565b6000813590506123ba81612394565b92915050565b600080604083850312156123d7576123d6611ec1565b5b60006123e585828601612117565b92505060206123f6858286016123ab565b9150509250929050565b600067ffffffffffffffff82111561241b5761241a612220565b5b61242482611fd5565b9050602081019050919050565b600061244461243f84612400565b612280565b9050828152602081018484840111156124605761245f61221b565b5b61246b8482856122cc565b509392505050565b600082601f83011261248857612487612216565b5b8135612498848260208601612431565b91505092915050565b600080600080608085870312156124bb576124ba611ec1565b5b60006124c987828801612117565b94505060206124da87828801612117565b93505060406124eb87828801612062565b925050606085013567ffffffffffffffff81111561250c5761250b611ec6565b5b61251887828801612473565b91505092959194509250565b6000806040838503121561253b5761253a611ec1565b5b600061254985828601612117565b925050602061255a85828601612117565b9150509250929050565b6000806040838503121561257b5761257a611ec1565b5b600083013567ffffffffffffffff81111561259957612598611ec6565b5b6125a58582860161231d565b925050602083013567ffffffffffffffff8111156125c6576125c5611ec6565b5b6125d28582860161231d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061262357607f821691505b602082108103612636576126356125dc565b5b50919050565b7f43616c6c6572206973206e6f7420746865206d696e7465720000000000000000600082015250565b6000612672601883611f91565b915061267d8261263c565b602082019050919050565b600060208201905081810360008301526126a181612665565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126e282612041565b91506126ed83612041565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612722576127216126a8565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000612763601283611f91565b915061276e8261272d565b602082019050919050565b6000602082019050818103600083015261279281612756565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026127fb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826127be565b61280586836127be565b95508019841693508086168417925050509392505050565b6000819050919050565b600061284261283d61283884612041565b61281d565b612041565b9050919050565b6000819050919050565b61285c83612827565b61287061286882612849565b8484546127cb565b825550505050565b600090565b612885612878565b612890818484612853565b505050565b5b818110156128b4576128a960008261287d565b600181019050612896565b5050565b601f8211156128f9576128ca81612799565b6128d3846127ae565b810160208510156128e2578190505b6128f66128ee856127ae565b830182612895565b50505b505050565b600082821c905092915050565b600061291c600019846008026128fe565b1980831691505092915050565b6000612935838361290b565b9150826002028217905092915050565b61294e82611f86565b67ffffffffffffffff81111561296757612966612220565b5b612971825461260b565b61297c8282856128b8565b600060209050601f8311600181146129af576000841561299d578287015190505b6129a78582612929565b865550612a0f565b601f1984166129bd86612799565b60005b828110156129e5578489015182556001820191506020850194506020810190506129c0565b86831015612a0257848901516129fe601f89168261290b565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60008154612a2f8161260b565b612a398186612a17565b94506001821660008114612a545760018114612a6957612a9c565b60ff1983168652811515820286019350612a9c565b612a7285612799565b60005b83811015612a9457815481890152600182019150602081019050612a75565b838801955050505b50505092915050565b6000612ab082611f86565b612aba8185612a17565b9350612aca818560208601611fa2565b80840191505092915050565b6000612ae28286612a22565b9150612aee8285612aa5565b9150612afa8284612a22565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b63602683611f91565b9150612b6e82612b07565b604082019050919050565b60006020820190508181036000830152612b9281612b56565b9050919050565b7f43616e6e6f7420626520746865207a65726f2061646472657373000000000000600082015250565b6000612bcf601a83611f91565b9150612bda82612b99565b602082019050919050565b60006020820190508181036000830152612bfe81612bc2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c3b602083611f91565b9150612c4682612c05565b602082019050919050565b60006020820190508181036000830152612c6a81612c2e565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612c9882612c71565b612ca28185612c7c565b9350612cb2818560208601611fa2565b612cbb81611fd5565b840191505092915050565b6000608082019050612cdb60008301876120d6565b612ce860208301866120d6565b612cf5604083018561216c565b8181036060830152612d078184612c8d565b905095945050505050565b600081519050612d2181611ef7565b92915050565b600060208284031215612d3d57612d3c611ec1565b5b6000612d4b84828501612d12565b9150509291505056fea2646970667358221220600d00678165c7767230318c55f37e98c2e9aa2cdad26ce1a487215fae29508a64736f6c634300080f0033

Deployed Bytecode

0x60806040526004361061016a5760003560e01c80638da5cb5b116100d1578063dc33e6811161008a578063f2fde38b11610064578063f2fde38b146105a4578063fca3b5aa146105cd578063fef1034a146105f6578063fffa65e01461061f576101be565b8063dc33e681146104ff578063e8a3d4851461053c578063e985e9c514610567576101be565b80638da5cb5b146103f1578063938e3d7b1461041c57806395d89b4114610445578063a22cb46514610470578063b88d4fde14610499578063c87b56dd146104c2576101be565b806340c10f191161012357806340c10f19146102e557806342842e0e1461030e57806342966c68146103375780636352211e1461036057806370a082311461039d578063715018a6146103da576101be565b806301ffc9a7146101c357806306fdde0314610200578063081812fc1461022b578063095ea7b31461026857806318160ddd1461029157806323b872dd146102bc576101be565b366101be5761017761064a565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156101bc573d6000803e3d6000fd5b005b600080fd5b3480156101cf57600080fd5b506101ea60048036038101906101e59190611f23565b610674565b6040516101f79190611f6b565b60405180910390f35b34801561020c57600080fd5b50610215610706565b604051610222919061201f565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612077565b610798565b60405161025f91906120e5565b60405180910390f35b34801561027457600080fd5b5061028f600480360381019061028a919061212c565b610817565b005b34801561029d57600080fd5b506102a661095b565b6040516102b3919061217b565b60405180910390f35b3480156102c857600080fd5b506102e360048036038101906102de9190612196565b610972565b005b3480156102f157600080fd5b5061030c6004803603810190610307919061212c565b610c94565b005b34801561031a57600080fd5b5061033560048036038101906103309190612196565b610dc6565b005b34801561034357600080fd5b5061035e60048036038101906103599190612077565b610de6565b005b34801561036c57600080fd5b5061038760048036038101906103829190612077565b610df4565b60405161039491906120e5565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf91906121e9565b610e06565b6040516103d1919061217b565b60405180910390f35b3480156103e657600080fd5b506103ef610ebe565b005b3480156103fd57600080fd5b5061040661064a565b60405161041391906120e5565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e919061234b565b610ed2565b005b34801561045157600080fd5b5061045a610eed565b604051610467919061201f565b60405180910390f35b34801561047c57600080fd5b50610497600480360381019061049291906123c0565b610f7f565b005b3480156104a557600080fd5b506104c060048036038101906104bb91906124a1565b6110f6565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190612077565b611169565b6040516104f6919061201f565b60405180910390f35b34801561050b57600080fd5b50610526600480360381019061052191906121e9565b6111df565b604051610533919061217b565b60405180910390f35b34801561054857600080fd5b506105516111f1565b60405161055e919061201f565b60405180910390f35b34801561057357600080fd5b5061058e60048036038101906105899190612524565b611283565b60405161059b9190611f6b565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c691906121e9565b611317565b005b3480156105d957600080fd5b506105f460048036038101906105ef91906121e9565b61139a565b005b34801561060257600080fd5b5061061d60048036038101906106189190612564565b611455565b005b34801561062b57600080fd5b50610634611481565b604051610641919061217b565b60405180910390f35b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106cf57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106ff5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107159061260b565b80601f01602080910402602001604051908101604052809291908181526020018280546107419061260b565b801561078e5780601f106107635761010080835404028352916020019161078e565b820191906000526020600020905b81548152906001019060200180831161077157829003601f168201915b5050505050905090565b60006107a382611487565b6107d9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082282610df4565b90508073ffffffffffffffffffffffffffffffffffffffff166108436114e6565b73ffffffffffffffffffffffffffffffffffffffff16146108a65761086f8161086a6114e6565b611283565b6108a5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109656114ee565b6001546000540303905090565b600061097d826114f3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109e4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109f0846115bf565b91509150610a068187610a016114e6565b6115e6565b610a5257610a1b86610a166114e6565b611283565b610a51576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ab8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ac5868686600161162a565b8015610ad057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b9e85610b7a888887611630565b7c020000000000000000000000000000000000000000000000000000000017611658565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c245760006001850190506000600460008381526020019081526020016000205403610c22576000548114610c21578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c8c8686866001611683565b505050505050565b610c9c61064a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610d225750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5890612688565b60405180910390fd5b6115b381610d6d611689565b610d7791906126d7565b1115610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90612779565b60405180910390fd5b610dc2828261169c565b5050565b610de1838383604051806020016040528060008152506110f6565b505050565b610df18160016116ba565b50565b6000610dff826114f3565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e6d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ec661190c565b610ed0600061198a565b565b610eda61190c565b8060099081610ee99190612945565b5050565b606060038054610efc9061260b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f289061260b565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b5050505050905090565b610f876114e6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610feb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610ff86114e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110a56114e6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110ea9190611f6b565b60405180910390a35050565b611101848484610972565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111635761112c84848484611a50565b611162576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061117482611487565b6111aa576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a6111b583611ba0565b600b6040516020016111c993929190612ad6565b6040516020818303038152906040529050919050565b60006111ea82611be7565b9050919050565b6060600980546112009061260b565b80601f016020809104026020016040519081016040528092919081815260200182805461122c9061260b565b80156112795780601f1061124e57610100808354040283529160200191611279565b820191906000526020600020905b81548152906001019060200180831161125c57829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61131f61190c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361138e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138590612b79565b60405180910390fd5b6113978161198a565b50565b6113a261190c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890612be5565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61145d61190c565b81600a908161146c9190612945565b5080600b908161147c9190612945565b505050565b6115b381565b6000816114926114ee565b111580156114a1575060005482105b80156114df575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806115026114ee565b11611588576000548110156115875760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611585575b6000810361157b576004600083600190039350838152602001908152602001600020549050611551565b80925050506115ba565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611647868684611c3e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006116936114ee565b60005403905090565b6116b6828260405180602001604052806000815250611c47565b5050565b60006116c5836114f3565b905060008190506000806116d8866115bf565b915091508415611741576116f481846116ef6114e6565b6115e6565b61174057611709836117046114e6565b611283565b61173f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b61174f83600088600161162a565b801561175a57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611802836117bf85600088611630565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611658565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036118885760006001870190506000600460008381526020019081526020016000205403611886576000548114611885578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118f2836000886001611683565b600160008154809291906001019190505550505050505050565b611914611ce4565b73ffffffffffffffffffffffffffffffffffffffff1661193261064a565b73ffffffffffffffffffffffffffffffffffffffff1614611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f90612c51565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a766114e6565b8786866040518563ffffffff1660e01b8152600401611a989493929190612cc6565b6020604051808303816000875af1925050508015611ad457506040513d601f19601f82011682018060405250810190611ad19190612d27565b60015b611b4d573d8060008114611b04576040519150601f19603f3d011682016040523d82523d6000602084013e611b09565b606091505b506000815103611b45576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060806040510190508060405280825b600115611bd357600183039250600a81066030018353600a8104905080611bb1575b508181036020830392508083525050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b611c518383611cec565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cdf57600080549050600083820390505b611c916000868380600101945086611a50565b611cc7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c7e578160005414611cdc57600080fd5b50505b505050565b600033905090565b60008054905060008203611d2c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d39600084838561162a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611db083611da16000866000611630565b611daa85611ea7565b17611658565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611e5157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611e16565b5060008203611e8c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611ea26000848385611683565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f0081611ecb565b8114611f0b57600080fd5b50565b600081359050611f1d81611ef7565b92915050565b600060208284031215611f3957611f38611ec1565b5b6000611f4784828501611f0e565b91505092915050565b60008115159050919050565b611f6581611f50565b82525050565b6000602082019050611f806000830184611f5c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611fc0578082015181840152602081019050611fa5565b83811115611fcf576000848401525b50505050565b6000601f19601f8301169050919050565b6000611ff182611f86565b611ffb8185611f91565b935061200b818560208601611fa2565b61201481611fd5565b840191505092915050565b600060208201905081810360008301526120398184611fe6565b905092915050565b6000819050919050565b61205481612041565b811461205f57600080fd5b50565b6000813590506120718161204b565b92915050565b60006020828403121561208d5761208c611ec1565b5b600061209b84828501612062565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120cf826120a4565b9050919050565b6120df816120c4565b82525050565b60006020820190506120fa60008301846120d6565b92915050565b612109816120c4565b811461211457600080fd5b50565b60008135905061212681612100565b92915050565b6000806040838503121561214357612142611ec1565b5b600061215185828601612117565b925050602061216285828601612062565b9150509250929050565b61217581612041565b82525050565b6000602082019050612190600083018461216c565b92915050565b6000806000606084860312156121af576121ae611ec1565b5b60006121bd86828701612117565b93505060206121ce86828701612117565b92505060406121df86828701612062565b9150509250925092565b6000602082840312156121ff576121fe611ec1565b5b600061220d84828501612117565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61225882611fd5565b810181811067ffffffffffffffff8211171561227757612276612220565b5b80604052505050565b600061228a611eb7565b9050612296828261224f565b919050565b600067ffffffffffffffff8211156122b6576122b5612220565b5b6122bf82611fd5565b9050602081019050919050565b82818337600083830152505050565b60006122ee6122e98461229b565b612280565b90508281526020810184848401111561230a5761230961221b565b5b6123158482856122cc565b509392505050565b600082601f83011261233257612331612216565b5b81356123428482602086016122db565b91505092915050565b60006020828403121561236157612360611ec1565b5b600082013567ffffffffffffffff81111561237f5761237e611ec6565b5b61238b8482850161231d565b91505092915050565b61239d81611f50565b81146123a857600080fd5b50565b6000813590506123ba81612394565b92915050565b600080604083850312156123d7576123d6611ec1565b5b60006123e585828601612117565b92505060206123f6858286016123ab565b9150509250929050565b600067ffffffffffffffff82111561241b5761241a612220565b5b61242482611fd5565b9050602081019050919050565b600061244461243f84612400565b612280565b9050828152602081018484840111156124605761245f61221b565b5b61246b8482856122cc565b509392505050565b600082601f83011261248857612487612216565b5b8135612498848260208601612431565b91505092915050565b600080600080608085870312156124bb576124ba611ec1565b5b60006124c987828801612117565b94505060206124da87828801612117565b93505060406124eb87828801612062565b925050606085013567ffffffffffffffff81111561250c5761250b611ec6565b5b61251887828801612473565b91505092959194509250565b6000806040838503121561253b5761253a611ec1565b5b600061254985828601612117565b925050602061255a85828601612117565b9150509250929050565b6000806040838503121561257b5761257a611ec1565b5b600083013567ffffffffffffffff81111561259957612598611ec6565b5b6125a58582860161231d565b925050602083013567ffffffffffffffff8111156125c6576125c5611ec6565b5b6125d28582860161231d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061262357607f821691505b602082108103612636576126356125dc565b5b50919050565b7f43616c6c6572206973206e6f7420746865206d696e7465720000000000000000600082015250565b6000612672601883611f91565b915061267d8261263c565b602082019050919050565b600060208201905081810360008301526126a181612665565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126e282612041565b91506126ed83612041565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612722576127216126a8565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000612763601283611f91565b915061276e8261272d565b602082019050919050565b6000602082019050818103600083015261279281612756565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026127fb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826127be565b61280586836127be565b95508019841693508086168417925050509392505050565b6000819050919050565b600061284261283d61283884612041565b61281d565b612041565b9050919050565b6000819050919050565b61285c83612827565b61287061286882612849565b8484546127cb565b825550505050565b600090565b612885612878565b612890818484612853565b505050565b5b818110156128b4576128a960008261287d565b600181019050612896565b5050565b601f8211156128f9576128ca81612799565b6128d3846127ae565b810160208510156128e2578190505b6128f66128ee856127ae565b830182612895565b50505b505050565b600082821c905092915050565b600061291c600019846008026128fe565b1980831691505092915050565b6000612935838361290b565b9150826002028217905092915050565b61294e82611f86565b67ffffffffffffffff81111561296757612966612220565b5b612971825461260b565b61297c8282856128b8565b600060209050601f8311600181146129af576000841561299d578287015190505b6129a78582612929565b865550612a0f565b601f1984166129bd86612799565b60005b828110156129e5578489015182556001820191506020850194506020810190506129c0565b86831015612a0257848901516129fe601f89168261290b565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60008154612a2f8161260b565b612a398186612a17565b94506001821660008114612a545760018114612a6957612a9c565b60ff1983168652811515820286019350612a9c565b612a7285612799565b60005b83811015612a9457815481890152600182019150602081019050612a75565b838801955050505b50505092915050565b6000612ab082611f86565b612aba8185612a17565b9350612aca818560208601611fa2565b80840191505092915050565b6000612ae28286612a22565b9150612aee8285612aa5565b9150612afa8284612a22565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b63602683611f91565b9150612b6e82612b07565b604082019050919050565b60006020820190508181036000830152612b9281612b56565b9050919050565b7f43616e6e6f7420626520746865207a65726f2061646472657373000000000000600082015250565b6000612bcf601a83611f91565b9150612bda82612b99565b602082019050919050565b60006020820190508181036000830152612bfe81612bc2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c3b602083611f91565b9150612c4682612c05565b602082019050919050565b60006020820190508181036000830152612c6a81612c2e565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612c9882612c71565b612ca28185612c7c565b9350612cb2818560208601611fa2565b612cbb81611fd5565b840191505092915050565b6000608082019050612cdb60008301876120d6565b612ce860208301866120d6565b612cf5604083018561216c565b8181036060830152612d078184612c8d565b905095945050505050565b600081519050612d2181611ef7565b92915050565b600060208284031215612d3d57612d3c611ec1565b5b6000612d4b84828501612d12565b9150509291505056fea2646970667358221220600d00678165c7767230318c55f37e98c2e9aa2cdad26ce1a487215fae29508a64736f6c634300080f0033

Deployed Bytecode Sourcemap

55019:1794:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56772:7;:5;:7::i;:::-;56764:25;;:36;56790:9;56764:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55019:1794;;;;19180:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20082:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26565:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26006:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15833:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30272:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56415:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33185:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56330:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21475:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17017:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54180:103;;;;;;;;;;;;;:::i;:::-;;53532:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55652:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20258:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27123:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33968:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56051:271;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56609:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55757:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27588:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54438:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55496:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55862:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55064:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53532:87;53578:7;53605:6;;;;;;;;;;;53598:13;;53532:87;:::o;19180:639::-;19265:4;19604:10;19589:25;;:11;:25;;;;:102;;;;19681:10;19666:25;;:11;:25;;;;19589:102;:179;;;;19758:10;19743:25;;:11;:25;;;;19589:179;19569:199;;19180:639;;;:::o;20082:100::-;20136:13;20169:5;20162:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20082:100;:::o;26565:218::-;26641:7;26666:16;26674:7;26666;:16::i;:::-;26661:64;;26691:34;;;;;;;;;;;;;;26661:64;26745:15;:24;26761:7;26745:24;;;;;;;;;;;:30;;;;;;;;;;;;26738:37;;26565:218;;;:::o;26006:400::-;26087:13;26103:16;26111:7;26103;:16::i;:::-;26087:32;;26159:5;26136:28;;:19;:17;:19::i;:::-;:28;;;26132:175;;26184:44;26201:5;26208:19;:17;:19::i;:::-;26184:16;:44::i;:::-;26179:128;;26256:35;;;;;;;;;;;;;;26179:128;26132:175;26352:2;26319:15;:24;26335:7;26319:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26390:7;26386:2;26370:28;;26379:5;26370:28;;;;;;;;;;;;26076:330;26006:400;;:::o;15833:323::-;15894:7;16122:15;:13;:15::i;:::-;16107:12;;16091:13;;:28;:46;16084:53;;15833:323;:::o;30272:2817::-;30406:27;30436;30455:7;30436:18;:27::i;:::-;30406:57;;30521:4;30480:45;;30496:19;30480:45;;;30476:86;;30534:28;;;;;;;;;;;;;;30476:86;30576:27;30605:23;30632:35;30659:7;30632:26;:35::i;:::-;30575:92;;;;30767:68;30792:15;30809:4;30815:19;:17;:19::i;:::-;30767:24;:68::i;:::-;30762:180;;30855:43;30872:4;30878:19;:17;:19::i;:::-;30855:16;:43::i;:::-;30850:92;;30907:35;;;;;;;;;;;;;;30850:92;30762:180;30973:1;30959:16;;:2;:16;;;30955:52;;30984:23;;;;;;;;;;;;;;30955:52;31020:43;31042:4;31048:2;31052:7;31061:1;31020:21;:43::i;:::-;31156:15;31153:160;;;31296:1;31275:19;31268:30;31153:160;31693:18;:24;31712:4;31693:24;;;;;;;;;;;;;;;;31691:26;;;;;;;;;;;;31762:18;:22;31781:2;31762:22;;;;;;;;;;;;;;;;31760:24;;;;;;;;;;;32084:146;32121:2;32170:45;32185:4;32191:2;32195:19;32170:14;:45::i;:::-;12232:8;32142:73;32084:18;:146::i;:::-;32055:17;:26;32073:7;32055:26;;;;;;;;;;;:175;;;;32401:1;12232:8;32350:19;:47;:52;32346:627;;32423:19;32455:1;32445:7;:11;32423:33;;32612:1;32578:17;:30;32596:11;32578:30;;;;;;;;;;;;:35;32574:384;;32716:13;;32701:11;:28;32697:242;;32896:19;32863:17;:30;32881:11;32863:30;;;;;;;;;;;:52;;;;32697:242;32574:384;32404:569;32346:627;33020:7;33016:2;33001:27;;33010:4;33001:27;;;;;;;;;;;;33039:42;33060:4;33066:2;33070:7;33079:1;33039:20;:42::i;:::-;30395:2694;;;30272:2817;;;:::o;56415:186::-;55319:7;:5;:7::i;:::-;55305:21;;:10;:21;;;:46;;;;55344:7;;;;;;;;;;;55330:21;;:10;:21;;;55305:46;55297:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;55102:4:::1;56513:8;56496:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:40;;56488:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;56570:23;56580:2;56584:8;56570:9;:23::i;:::-;56415:186:::0;;:::o;33185:185::-;33323:39;33340:4;33346:2;33350:7;33323:39;;;;;;;;;;;;:16;:39::i;:::-;33185:185;;;:::o;56330:77::-;56379:20;56385:7;56394:4;56379:5;:20::i;:::-;56330:77;:::o;21475:152::-;21547:7;21590:27;21609:7;21590:18;:27::i;:::-;21567:52;;21475:152;;;:::o;17017:233::-;17089:7;17130:1;17113:19;;:5;:19;;;17109:60;;17141:28;;;;;;;;;;;;;;17109:60;11176:13;17187:18;:25;17206:5;17187:25;;;;;;;;;;;;;;;;:55;17180:62;;17017:233;;;:::o;54180:103::-;53418:13;:11;:13::i;:::-;54245:30:::1;54272:1;54245:18;:30::i;:::-;54180:103::o:0;55652:97::-;53418:13;:11;:13::i;:::-;55738:3:::1;55723:12;:18;;;;;;:::i;:::-;;55652:97:::0;:::o;20258:104::-;20314:13;20347:7;20340:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20258:104;:::o;27123:308::-;27234:19;:17;:19::i;:::-;27222:31;;:8;:31;;;27218:61;;27262:17;;;;;;;;;;;;;;27218:61;27344:8;27292:18;:39;27311:19;:17;:19::i;:::-;27292:39;;;;;;;;;;;;;;;:49;27332:8;27292:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27404:8;27368:55;;27383:19;:17;:19::i;:::-;27368:55;;;27414:8;27368:55;;;;;;:::i;:::-;;;;;;;;27123:308;;:::o;33968:399::-;34135:31;34148:4;34154:2;34158:7;34135:12;:31::i;:::-;34199:1;34181:2;:14;;;:19;34177:183;;34220:56;34251:4;34257:2;34261:7;34270:5;34220:30;:56::i;:::-;34215:145;;34304:40;;;;;;;;;;;;;;34215:145;34177:183;33968:399;;;;:::o;56051:271::-;56116:13;56147:16;56155:7;56147;:16::i;:::-;56142:86;;56187:29;;;;;;;;;;;;;;56142:86;56269:8;56279:18;56289:7;56279:9;:18::i;:::-;56299:13;56252:61;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56238:76;;56051:271;;;:::o;56609:109::-;56665:7;56692:18;56706:3;56692:13;:18::i;:::-;56685:25;;56609:109;;;:::o;55757:97::-;55801:13;55834:12;55827:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55757:97;:::o;27588:164::-;27685:4;27709:18;:25;27728:5;27709:25;;;;;;;;;;;;;;;:35;27735:8;27709:35;;;;;;;;;;;;;;;;;;;;;;;;;27702:42;;27588:164;;;;:::o;54438:201::-;53418:13;:11;:13::i;:::-;54547:1:::1;54527:22;;:8;:22;;::::0;54519:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;54603:28;54622:8;54603:18;:28::i;:::-;54438:201:::0;:::o;55496:148::-;53418:13;:11;:13::i;:::-;55579:1:::1;55564:17;;:3;:17;;::::0;55556:56:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;55633:3;55623:7;;:13;;;;;;;;;;;;;;;;;;55496:148:::0;:::o;55862:181::-;53418:13;:11;:13::i;:::-;55972:4:::1;55961:8;:15;;;;;;:::i;:::-;;56023:3;56007:13;:19;;;;;;:::i;:::-;;55862:181:::0;;:::o;55064:42::-;55102:4;55064:42;:::o;28010:282::-;28075:4;28131:7;28112:15;:13;:15::i;:::-;:26;;:66;;;;;28165:13;;28155:7;:23;28112:66;:153;;;;;28264:1;11952:8;28216:17;:26;28234:7;28216:26;;;;;;;;;;;;:44;:49;28112:153;28092:173;;28010:282;;;:::o;49776:105::-;49836:7;49863:10;49856:17;;49776:105;:::o;15349:92::-;15405:7;15349:92;:::o;22630:1275::-;22697:7;22717:12;22732:7;22717:22;;22800:4;22781:15;:13;:15::i;:::-;:23;22777:1061;;22834:13;;22827:4;:20;22823:1015;;;22872:14;22889:17;:23;22907:4;22889:23;;;;;;;;;;;;22872:40;;23006:1;11952:8;22978:6;:24;:29;22974:845;;23643:113;23660:1;23650:6;:11;23643:113;;23703:17;:25;23721:6;;;;;;;23703:25;;;;;;;;;;;;23694:34;;23643:113;;;23789:6;23782:13;;;;;;22974:845;22849:989;22823:1015;22777:1061;23866:31;;;;;;;;;;;;;;22630:1275;;;;:::o;29173:479::-;29275:27;29304:23;29345:38;29386:15;:24;29402:7;29386:24;;;;;;;;;;;29345:65;;29557:18;29534:41;;29614:19;29608:26;29589:45;;29519:126;29173:479;;;:::o;28401:659::-;28550:11;28715:16;28708:5;28704:28;28695:37;;28875:16;28864:9;28860:32;28847:45;;29025:15;29014:9;29011:30;29003:5;28992:9;28989:20;28986:56;28976:66;;28401:659;;;;;:::o;35029:159::-;;;;;:::o;49085:311::-;49220:7;49240:16;12356:3;49266:19;:41;;49240:68;;12356:3;49334:31;49345:4;49351:2;49355:9;49334:10;:31::i;:::-;49326:40;;:62;;49319:69;;;49085:311;;;;;:::o;24453:450::-;24533:14;24701:16;24694:5;24690:28;24681:37;;24878:5;24864:11;24839:23;24835:41;24832:52;24825:5;24822:63;24812:73;;24453:450;;;;:::o;35853:158::-;;;;;:::o;16254:296::-;16309:7;16516:15;:13;:15::i;:::-;16500:13;;:31;16493:38;;16254:296;:::o;43608:112::-;43685:27;43695:2;43699:8;43685:27;;;;;;;;;;;;:9;:27::i;:::-;43608:112;;:::o;44305:3081::-;44385:27;44415;44434:7;44415:18;:27::i;:::-;44385:57;;44455:12;44486:19;44455:52;;44521:27;44550:23;44577:35;44604:7;44577:26;:35::i;:::-;44520:92;;;;44629:13;44625:316;;;44750:68;44775:15;44792:4;44798:19;:17;:19::i;:::-;44750:24;:68::i;:::-;44745:184;;44842:43;44859:4;44865:19;:17;:19::i;:::-;44842:16;:43::i;:::-;44837:92;;44894:35;;;;;;;;;;;;;;44837:92;44745:184;44625:316;44953:51;44975:4;44989:1;44993:7;45002:1;44953:21;:51::i;:::-;45097:15;45094:160;;;45237:1;45216:19;45209:30;45094:160;45915:1;11441:3;45885:1;:26;;45884:32;45856:18;:24;45875:4;45856:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;46183:176;46220:4;46291:53;46306:4;46320:1;46324:19;46291:14;:53::i;:::-;12232:8;11952;46244:43;46243:101;46183:18;:176::i;:::-;46154:17;:26;46172:7;46154:26;;;;;;;;;;;:205;;;;46530:1;12232:8;46479:19;:47;:52;46475:627;;46552:19;46584:1;46574:7;:11;46552:33;;46741:1;46707:17;:30;46725:11;46707:30;;;;;;;;;;;;:35;46703:384;;46845:13;;46830:11;:28;46826:242;;47025:19;46992:17;:30;47010:11;46992:30;;;;;;;;;;;:52;;;;46826:242;46703:384;46533:569;46475:627;47157:7;47153:1;47130:35;;47139:4;47130:35;;;;;;;;;;;;47176:50;47197:4;47211:1;47215:7;47224:1;47176:20;:50::i;:::-;47353:12;;:14;;;;;;;;;;;;;44374:3012;;;;44305:3081;;:::o;53697:132::-;53772:12;:10;:12::i;:::-;53761:23;;:7;:5;:7::i;:::-;:23;;;53753:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53697:132::o;54799:191::-;54873:16;54892:6;;;;;;;;;;;54873:25;;54918:8;54909:6;;:17;;;;;;;;;;;;;;;;;;54973:8;54942:40;;54963:8;54942:40;;;;;;;;;;;;54862:128;54799:191;:::o;36451:716::-;36614:4;36660:2;36635:45;;;36681:19;:17;:19::i;:::-;36702:4;36708:7;36717:5;36635:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36631:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36935:1;36918:6;:13;:18;36914:235;;36964:40;;;;;;;;;;;;;;36914:235;37107:6;37101:13;37092:6;37088:2;37084:15;37077:38;36631:529;36804:54;;;36794:64;;;:6;:64;;;;36787:71;;;36451:716;;;;;;:::o;49983:1581::-;50048:17;50473:4;50466;50460:11;50456:22;50449:29;;50565:3;50559:4;50552:17;50671:3;50910:5;50892:428;50918:1;50892:428;;;50958:1;50953:3;50949:11;50942:18;;51129:2;51123:4;51119:13;51115:2;51111:22;51106:3;51098:36;51223:2;51217:4;51213:13;51205:21;;51290:4;50892:428;51280:25;50892:428;50896:21;51359:3;51354;51350:13;51474:4;51469:3;51465:14;51458:21;;51539:6;51534:3;51527:19;50087:1470;;49983:1581;;;:::o;17332:178::-;17393:7;11176:13;11314:2;17421:18;:25;17440:5;17421:25;;;;;;;;;;;;;;;;:50;;17420:82;17413:89;;17332:178;;;:::o;48786:147::-;48923:6;48786:147;;;;;:::o;42835:689::-;42966:19;42972:2;42976:8;42966:5;:19::i;:::-;43045:1;43027:2;:14;;;:19;43023:483;;43067:11;43081:13;;43067:27;;43113:13;43135:8;43129:3;:14;43113:30;;43162:233;43193:62;43232:1;43236:2;43240:7;;;;;;43249:5;43193:30;:62::i;:::-;43188:167;;43291:40;;;;;;;;;;;;;;43188:167;43390:3;43382:5;:11;43162:233;;43477:3;43460:13;;:20;43456:34;;43482:8;;;43456:34;43048:458;;43023:483;42835:689;;;:::o;52167:98::-;52220:7;52247:10;52240:17;;52167:98;:::o;37629:2454::-;37702:20;37725:13;;37702:36;;37765:1;37753:8;:13;37749:44;;37775:18;;;;;;;;;;;;;;37749:44;37806:61;37836:1;37840:2;37844:12;37858:8;37806:21;:61::i;:::-;38350:1;11314:2;38320:1;:26;;38319:32;38307:8;:45;38281:18;:22;38300:2;38281:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38629:139;38666:2;38720:33;38743:1;38747:2;38751:1;38720:14;:33::i;:::-;38687:30;38708:8;38687:20;:30::i;:::-;:66;38629:18;:139::i;:::-;38595:17;:31;38613:12;38595:31;;;;;;;;;;;:173;;;;38785:16;38816:11;38845:8;38830:12;:23;38816:37;;39100:16;39096:2;39092:25;39080:37;;39472:12;39432:8;39391:1;39329:25;39270:1;39209;39182:335;39597:1;39583:12;39579:20;39537:346;39638:3;39629:7;39626:16;39537:346;;39856:7;39846:8;39843:1;39816:25;39813:1;39810;39805:59;39691:1;39682:7;39678:15;39667:26;;39537:346;;;39541:77;39928:1;39916:8;:13;39912:45;;39938:19;;;;;;;;;;;;;;39912:45;39990:3;39974:13;:19;;;;38055:1950;;40015:60;40044:1;40048:2;40052:12;40066:8;40015:20;:60::i;:::-;37691:2392;37629:2454;;:::o;25005:324::-;25075:14;25308:1;25298:8;25295:15;25269:24;25265:46;25255:56;;25005:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:834::-;12209:6;12217;12266:2;12254:9;12245:7;12241:23;12237:32;12234:119;;;12272:79;;:::i;:::-;12234:119;12420:1;12409:9;12405:17;12392:31;12450:18;12442:6;12439:30;12436:117;;;12472:79;;:::i;:::-;12436:117;12577:63;12632:7;12623:6;12612:9;12608:22;12577:63;:::i;:::-;12567:73;;12363:287;12717:2;12706:9;12702:18;12689:32;12748:18;12740:6;12737:30;12734:117;;;12770:79;;:::i;:::-;12734:117;12875:63;12930:7;12921:6;12910:9;12906:22;12875:63;:::i;:::-;12865:73;;12660:288;12121:834;;;;;:::o;12961:180::-;13009:77;13006:1;12999:88;13106:4;13103:1;13096:15;13130:4;13127:1;13120:15;13147:320;13191:6;13228:1;13222:4;13218:12;13208:22;;13275:1;13269:4;13265:12;13296:18;13286:81;;13352:4;13344:6;13340:17;13330:27;;13286:81;13414:2;13406:6;13403:14;13383:18;13380:38;13377:84;;13433:18;;:::i;:::-;13377:84;13198:269;13147:320;;;:::o;13473:174::-;13613:26;13609:1;13601:6;13597:14;13590:50;13473:174;:::o;13653:366::-;13795:3;13816:67;13880:2;13875:3;13816:67;:::i;:::-;13809:74;;13892:93;13981:3;13892:93;:::i;:::-;14010:2;14005:3;14001:12;13994:19;;13653:366;;;:::o;14025:419::-;14191:4;14229:2;14218:9;14214:18;14206:26;;14278:9;14272:4;14268:20;14264:1;14253:9;14249:17;14242:47;14306:131;14432:4;14306:131;:::i;:::-;14298:139;;14025:419;;;:::o;14450:180::-;14498:77;14495:1;14488:88;14595:4;14592:1;14585:15;14619:4;14616:1;14609:15;14636:305;14676:3;14695:20;14713:1;14695:20;:::i;:::-;14690:25;;14729:20;14747:1;14729:20;:::i;:::-;14724:25;;14883:1;14815:66;14811:74;14808:1;14805:81;14802:107;;;14889:18;;:::i;:::-;14802:107;14933:1;14930;14926:9;14919:16;;14636:305;;;;:::o;14947:168::-;15087:20;15083:1;15075:6;15071:14;15064:44;14947:168;:::o;15121:366::-;15263:3;15284:67;15348:2;15343:3;15284:67;:::i;:::-;15277:74;;15360:93;15449:3;15360:93;:::i;:::-;15478:2;15473:3;15469:12;15462:19;;15121:366;;;:::o;15493:419::-;15659:4;15697:2;15686:9;15682:18;15674:26;;15746:9;15740:4;15736:20;15732:1;15721:9;15717:17;15710:47;15774:131;15900:4;15774:131;:::i;:::-;15766:139;;15493:419;;;:::o;15918:141::-;15967:4;15990:3;15982:11;;16013:3;16010:1;16003:14;16047:4;16044:1;16034:18;16026:26;;15918:141;;;:::o;16065:93::-;16102:6;16149:2;16144;16137:5;16133:14;16129:23;16119:33;;16065:93;;;:::o;16164:107::-;16208:8;16258:5;16252:4;16248:16;16227:37;;16164:107;;;;:::o;16277:393::-;16346:6;16396:1;16384:10;16380:18;16419:97;16449:66;16438:9;16419:97;:::i;:::-;16537:39;16567:8;16556:9;16537:39;:::i;:::-;16525:51;;16609:4;16605:9;16598:5;16594:21;16585:30;;16658:4;16648:8;16644:19;16637:5;16634:30;16624:40;;16353:317;;16277:393;;;;;:::o;16676:60::-;16704:3;16725:5;16718:12;;16676:60;;;:::o;16742:142::-;16792:9;16825:53;16843:34;16852:24;16870:5;16852:24;:::i;:::-;16843:34;:::i;:::-;16825:53;:::i;:::-;16812:66;;16742:142;;;:::o;16890:75::-;16933:3;16954:5;16947:12;;16890:75;;;:::o;16971:269::-;17081:39;17112:7;17081:39;:::i;:::-;17142:91;17191:41;17215:16;17191:41;:::i;:::-;17183:6;17176:4;17170:11;17142:91;:::i;:::-;17136:4;17129:105;17047:193;16971:269;;;:::o;17246:73::-;17291:3;17246:73;:::o;17325:189::-;17402:32;;:::i;:::-;17443:65;17501:6;17493;17487:4;17443:65;:::i;:::-;17378:136;17325:189;;:::o;17520:186::-;17580:120;17597:3;17590:5;17587:14;17580:120;;;17651:39;17688:1;17681:5;17651:39;:::i;:::-;17624:1;17617:5;17613:13;17604:22;;17580:120;;;17520:186;;:::o;17712:543::-;17813:2;17808:3;17805:11;17802:446;;;17847:38;17879:5;17847:38;:::i;:::-;17931:29;17949:10;17931:29;:::i;:::-;17921:8;17917:44;18114:2;18102:10;18099:18;18096:49;;;18135:8;18120:23;;18096:49;18158:80;18214:22;18232:3;18214:22;:::i;:::-;18204:8;18200:37;18187:11;18158:80;:::i;:::-;17817:431;;17802:446;17712:543;;;:::o;18261:117::-;18315:8;18365:5;18359:4;18355:16;18334:37;;18261:117;;;;:::o;18384:169::-;18428:6;18461:51;18509:1;18505:6;18497:5;18494:1;18490:13;18461:51;:::i;:::-;18457:56;18542:4;18536;18532:15;18522:25;;18435:118;18384:169;;;;:::o;18558:295::-;18634:4;18780:29;18805:3;18799:4;18780:29;:::i;:::-;18772:37;;18842:3;18839:1;18835:11;18829:4;18826:21;18818:29;;18558:295;;;;:::o;18858:1395::-;18975:37;19008:3;18975:37;:::i;:::-;19077:18;19069:6;19066:30;19063:56;;;19099:18;;:::i;:::-;19063:56;19143:38;19175:4;19169:11;19143:38;:::i;:::-;19228:67;19288:6;19280;19274:4;19228:67;:::i;:::-;19322:1;19346:4;19333:17;;19378:2;19370:6;19367:14;19395:1;19390:618;;;;20052:1;20069:6;20066:77;;;20118:9;20113:3;20109:19;20103:26;20094:35;;20066:77;20169:67;20229:6;20222:5;20169:67;:::i;:::-;20163:4;20156:81;20025:222;19360:887;;19390:618;19442:4;19438:9;19430:6;19426:22;19476:37;19508:4;19476:37;:::i;:::-;19535:1;19549:208;19563:7;19560:1;19557:14;19549:208;;;19642:9;19637:3;19633:19;19627:26;19619:6;19612:42;19693:1;19685:6;19681:14;19671:24;;19740:2;19729:9;19725:18;19712:31;;19586:4;19583:1;19579:12;19574:17;;19549:208;;;19785:6;19776:7;19773:19;19770:179;;;19843:9;19838:3;19834:19;19828:26;19886:48;19928:4;19920:6;19916:17;19905:9;19886:48;:::i;:::-;19878:6;19871:64;19793:156;19770:179;19995:1;19991;19983:6;19979:14;19975:22;19969:4;19962:36;19397:611;;;19360:887;;18950:1303;;;18858:1395;;:::o;20259:148::-;20361:11;20398:3;20383:18;;20259:148;;;;:::o;20437:874::-;20540:3;20577:5;20571:12;20606:36;20632:9;20606:36;:::i;:::-;20658:89;20740:6;20735:3;20658:89;:::i;:::-;20651:96;;20778:1;20767:9;20763:17;20794:1;20789:166;;;;20969:1;20964:341;;;;20756:549;;20789:166;20873:4;20869:9;20858;20854:25;20849:3;20842:38;20935:6;20928:14;20921:22;20913:6;20909:35;20904:3;20900:45;20893:52;;20789:166;;20964:341;21031:38;21063:5;21031:38;:::i;:::-;21091:1;21105:154;21119:6;21116:1;21113:13;21105:154;;;21193:7;21187:14;21183:1;21178:3;21174:11;21167:35;21243:1;21234:7;21230:15;21219:26;;21141:4;21138:1;21134:12;21129:17;;21105:154;;;21288:6;21283:3;21279:16;21272:23;;20971:334;;20756:549;;20544:767;;20437:874;;;;:::o;21317:377::-;21423:3;21451:39;21484:5;21451:39;:::i;:::-;21506:89;21588:6;21583:3;21506:89;:::i;:::-;21499:96;;21604:52;21649:6;21644:3;21637:4;21630:5;21626:16;21604:52;:::i;:::-;21681:6;21676:3;21672:16;21665:23;;21427:267;21317:377;;;;:::o;21700:583::-;21922:3;21944:92;22032:3;22023:6;21944:92;:::i;:::-;21937:99;;22053:95;22144:3;22135:6;22053:95;:::i;:::-;22046:102;;22165:92;22253:3;22244:6;22165:92;:::i;:::-;22158:99;;22274:3;22267:10;;21700:583;;;;;;:::o;22289:225::-;22429:34;22425:1;22417:6;22413:14;22406:58;22498:8;22493:2;22485:6;22481:15;22474:33;22289:225;:::o;22520:366::-;22662:3;22683:67;22747:2;22742:3;22683:67;:::i;:::-;22676:74;;22759:93;22848:3;22759:93;:::i;:::-;22877:2;22872:3;22868:12;22861:19;;22520:366;;;:::o;22892:419::-;23058:4;23096:2;23085:9;23081:18;23073:26;;23145:9;23139:4;23135:20;23131:1;23120:9;23116:17;23109:47;23173:131;23299:4;23173:131;:::i;:::-;23165:139;;22892:419;;;:::o;23317:176::-;23457:28;23453:1;23445:6;23441:14;23434:52;23317:176;:::o;23499:366::-;23641:3;23662:67;23726:2;23721:3;23662:67;:::i;:::-;23655:74;;23738:93;23827:3;23738:93;:::i;:::-;23856:2;23851:3;23847:12;23840:19;;23499:366;;;:::o;23871:419::-;24037:4;24075:2;24064:9;24060:18;24052:26;;24124:9;24118:4;24114:20;24110:1;24099:9;24095:17;24088:47;24152:131;24278:4;24152:131;:::i;:::-;24144:139;;23871:419;;;:::o;24296:182::-;24436:34;24432:1;24424:6;24420:14;24413:58;24296:182;:::o;24484:366::-;24626:3;24647:67;24711:2;24706:3;24647:67;:::i;:::-;24640:74;;24723:93;24812:3;24723:93;:::i;:::-;24841:2;24836:3;24832:12;24825:19;;24484:366;;;:::o;24856:419::-;25022:4;25060:2;25049:9;25045:18;25037:26;;25109:9;25103:4;25099:20;25095:1;25084:9;25080:17;25073:47;25137:131;25263:4;25137:131;:::i;:::-;25129:139;;24856:419;;;:::o;25281:98::-;25332:6;25366:5;25360:12;25350:22;;25281:98;;;:::o;25385:168::-;25468:11;25502:6;25497:3;25490:19;25542:4;25537:3;25533:14;25518:29;;25385:168;;;;:::o;25559:360::-;25645:3;25673:38;25705:5;25673:38;:::i;:::-;25727:70;25790:6;25785:3;25727:70;:::i;:::-;25720:77;;25806:52;25851:6;25846:3;25839:4;25832:5;25828:16;25806:52;:::i;:::-;25883:29;25905:6;25883:29;:::i;:::-;25878:3;25874:39;25867:46;;25649:270;25559:360;;;;:::o;25925:640::-;26120:4;26158:3;26147:9;26143:19;26135:27;;26172:71;26240:1;26229:9;26225:17;26216:6;26172:71;:::i;:::-;26253:72;26321:2;26310:9;26306:18;26297:6;26253:72;:::i;:::-;26335;26403:2;26392:9;26388:18;26379:6;26335:72;:::i;:::-;26454:9;26448:4;26444:20;26439:2;26428:9;26424:18;26417:48;26482:76;26553:4;26544:6;26482:76;:::i;:::-;26474:84;;25925:640;;;;;;;:::o;26571:141::-;26627:5;26658:6;26652:13;26643:22;;26674:32;26700:5;26674:32;:::i;:::-;26571:141;;;;:::o;26718:349::-;26787:6;26836:2;26824:9;26815:7;26811:23;26807:32;26804:119;;;26842:79;;:::i;:::-;26804:119;26962:1;26987:63;27042:7;27033:6;27022:9;27018:22;26987:63;:::i;:::-;26977:73;;26933:127;26718:349;;;;:::o

Swarm Source

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