ETH Price: $3,400.63 (-1.70%)
Gas: 8 Gwei

Token

Shark Gang Official (SGO)
 

Overview

Max Total Supply

6,969 SGO

Holders

1,298

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
thephotograbbear.eth
Balance
1 SGO
0x8c8b692ee84fc1370163151d53edf13529a296a5
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:
SharkGang

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-03
*/

// SPDX-License-Identifier: MIT

/**
Shark!Shark!Shark!Shark!Shark!Shark!
Shark!Shark!Shark!Shark!Shark!Shark!
Shark!Shark!Shark!Shark!Shark!Shark!
Shark!Shark!Shark!Shark!Shark!Shark!
Shark!Shark!Shark!Shark!Shark!Shark!
Shark!Shark!Shark!Shark!Shark!Shark!
Shark!Shark!Shark!Shark!Shark!Shark!
Shark!Shark!Shark!Shark!Shark!Shark!
Shark!Shark!Shark!Shark!Shark!Shark!
Shark!Shark!Shark!Shark!Shark!Shark!
Shark!Shark!Shark!Shark!Shark!Shark!
Shark!Shark!Shark!Shark!Shark!Shark!
Shark!Shark!Shark!Shark!Shark!Shark!
**/
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol

// File: erc721a/contracts/IERC721A.sol

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory 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 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/DigiDaigakuMan.sol





library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
pragma solidity ^0.8.13;

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}


pragma solidity ^0.8.13;

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}


pragma solidity >=0.8.9 <0.9.0;

contract SharkGang is ERC721A, DefaultOperatorFilterer, Ownable, ReentrancyGuard {
    using Address for address;
    using Strings for uint;
    
    string  public baseTokenURI = "ipfs://bafybeiepdk7kjz4bjybky5bvzjlwrqdgcjuwga35nc3au77xurebgn7ewq/";
    uint256 public MAX_SHARK = 6969;
    uint256 public MAX_PER_TX = 15;
    uint256 public PRICE = 0.00369 ether;
    uint256 public MAX_FREE_PER_WALLET = 1;
    bool public paused = true;

    mapping(address => uint256) private _freeMintedCount;

    constructor() ERC721A("Shark Gang Official", "SGO") {}

    function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
        require(totalSupply() + _mintAmount <= MAX_SHARK, "Max supply exceeded!");
        _safeMint(_receiver, _mintAmount);
    }


    function mint(uint256 _quantity) external payable
    {
		require(
            _quantity <= MAX_PER_TX, "Max per transaction is 15"
            );
		require(
            _totalMinted() + _quantity <= MAX_SHARK, "No Shark lefts!"
            );
        require(
            !paused, "Minting paused"
            );
        uint payForCount = _quantity;
        
        uint freeMintCount = _freeMintedCount[msg.sender];

        if (freeMintCount < 1) {
                if (_quantity > 1) {
                    payForCount = _quantity - 1;
                } else {
                    payForCount = 0;
                }

                _freeMintedCount[msg.sender] = 1;
            }
		require(
			msg.value >= payForCount * PRICE,
			"Incorrect ETH amount"
		);

        _safeMint(msg.sender, _quantity);
    }

    function freeMintedCount(address owner) external view returns (uint256) {
        return _freeMintedCount[owner];
    }
    
    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner
    {
        baseTokenURI = baseURI;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 0;
    }

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

    function tokenURI(uint tokenId)
		public
		view
		override
		returns (string memory)
	{
        require(_exists(tokenId), "ERC721Metadata");

        return bytes(_baseURI()).length > 0 
            ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"))
            : baseTokenURI;
	}

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


    function flipSale(bool _paused) external onlyOwner
    {
        paused = _paused;
    }

    function setPrice(uint256 _price) external onlyOwner
    {
        PRICE = _price;
    }

    function setMaxLimitPerTransaction(uint256 _limit) external onlyOwner
    {
        MAX_PER_TX = _limit;
    }

    function setLimitFreeMintPerWallet(uint256 _limit) external onlyOwner
    {
        MAX_FREE_PER_WALLET = _limit;
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

}

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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SHARK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"freeMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setLimitFreeMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060800160405280604381526020016200423560439139600a90816200002e9190620006a4565b50611b39600b55600f600c55660d1c091338a000600d556001600e556001600f60006101000a81548160ff0219169083151502179055503480156200007257600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601381526020017f536861726b2047616e67204f6666696369616c000000000000000000000000008152506040518060400160405280600381526020017f53474f00000000000000000000000000000000000000000000000000000000008152508160029081620001079190620006a4565b508060039081620001199190620006a4565b506200012a6200035760201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000327578015620001ed576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001b3929190620007d0565b600060405180830381600087803b158015620001ce57600080fd5b505af1158015620001e3573d6000803e3d6000fd5b5050505062000326565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002a7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200026d929190620007d0565b600060405180830381600087803b1580156200028857600080fd5b505af11580156200029d573d6000803e3d6000fd5b5050505062000325565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002f09190620007fd565b600060405180830381600087803b1580156200030b57600080fd5b505af115801562000320573d6000803e3d6000fd5b505050505b5b5b5050620003496200033d6200035c60201b60201c565b6200036460201b60201c565b60016009819055506200081a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004ac57607f821691505b602082108103620004c257620004c162000464565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200052c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004ed565b620005388683620004ed565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005856200057f620005798462000550565b6200055a565b62000550565b9050919050565b6000819050919050565b620005a18362000564565b620005b9620005b0826200058c565b848454620004fa565b825550505050565b600090565b620005d0620005c1565b620005dd81848462000596565b505050565b5b818110156200060557620005f9600082620005c6565b600181019050620005e3565b5050565b601f82111562000654576200061e81620004c8565b6200062984620004dd565b8101602085101562000639578190505b620006516200064885620004dd565b830182620005e2565b50505b505050565b600082821c905092915050565b6000620006796000198460080262000659565b1980831691505092915050565b600062000694838362000666565b9150826002028217905092915050565b620006af826200042a565b67ffffffffffffffff811115620006cb57620006ca62000435565b5b620006d7825462000493565b620006e482828562000609565b600060209050601f8311600181146200071c576000841562000707578287015190505b62000713858262000686565b86555062000783565b601f1984166200072c86620004c8565b60005b8281101562000756578489015182556001820191506020850194506020810190506200072f565b8683101562000776578489015162000772601f89168262000666565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007b8826200078b565b9050919050565b620007ca81620007ab565b82525050565b6000604082019050620007e76000830185620007bf565b620007f66020830184620007bf565b9392505050565b6000602082019050620008146000830184620007bf565b92915050565b613a0b806200082a6000396000f3fe6080604052600436106101ee5760003560e01c806391b7f5ed1161010d578063c87b56dd116100a0578063e19979f51161006f578063e19979f5146106dc578063e985e9c514610705578063efbd73f414610742578063f2fde38b1461076b578063f43a22dc14610794576101ee565b8063c87b56dd1461060c578063d547cfb714610649578063dadf4be014610674578063dc33e6811461069f576101ee565b80639e9fcffc116100dc5780639e9fcffc14610575578063a0712d681461059e578063a22cb465146105ba578063b88d4fde146105e3576101ee565b806391b7f5ed146104b957806395d89b41146104e2578063981332351461050d57806398710d1e1461054a576101ee565b806342842e0e1161018557806370a082311161015457806370a082311461040f578063715018a61461044c5780638d859f3e146104635780638da5cb5b1461048e576101ee565b806342842e0e1461035557806355f804b31461037e5780635c975abb146103a75780636352211e146103d2576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780633031e7c7146103155780633ccfd60b1461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612834565b6107bf565b604051610227919061287c565b60405180910390f35b34801561023c57600080fd5b50610245610851565b6040516102529190612927565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061297f565b6108e3565b60405161028f91906129ed565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612a34565b610962565b005b3480156102cd57600080fd5b506102d6610aa6565b6040516102e39190612a83565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612a9e565b610abd565b005b34801561032157600080fd5b5061033c60048036038101906103379190612b1d565b610c9f565b005b34801561034a57600080fd5b50610353610cc4565b005b34801561036157600080fd5b5061037c60048036038101906103779190612a9e565b610da1565b005b34801561038a57600080fd5b506103a560048036038101906103a09190612c7f565b610f83565b005b3480156103b357600080fd5b506103bc610f9e565b6040516103c9919061287c565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f4919061297f565b610fb1565b60405161040691906129ed565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612cc8565b610fc3565b6040516104439190612a83565b60405180910390f35b34801561045857600080fd5b5061046161107b565b005b34801561046f57600080fd5b5061047861108f565b6040516104859190612a83565b60405180910390f35b34801561049a57600080fd5b506104a3611095565b6040516104b091906129ed565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db919061297f565b6110bf565b005b3480156104ee57600080fd5b506104f76110d1565b6040516105049190612927565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190612cc8565b611163565b6040516105419190612a83565b60405180910390f35b34801561055657600080fd5b5061055f6111ac565b60405161056c9190612a83565b60405180910390f35b34801561058157600080fd5b5061059c6004803603810190610597919061297f565b6111b2565b005b6105b860048036038101906105b3919061297f565b6111c4565b005b3480156105c657600080fd5b506105e160048036038101906105dc9190612cf5565b6113c9565b005b3480156105ef57600080fd5b5061060a60048036038101906106059190612dd6565b611540565b005b34801561061857600080fd5b50610633600480360381019061062e919061297f565b611725565b6040516106409190612927565b60405180910390f35b34801561065557600080fd5b5061065e611848565b60405161066b9190612927565b60405180910390f35b34801561068057600080fd5b506106896118d6565b6040516106969190612a83565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190612cc8565b6118dc565b6040516106d39190612a83565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe919061297f565b6118ee565b005b34801561071157600080fd5b5061072c60048036038101906107279190612e59565b611900565b604051610739919061287c565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190612e99565b611994565b005b34801561077757600080fd5b50610792600480360381019061078d9190612cc8565b611a01565b005b3480156107a057600080fd5b506107a9611a84565b6040516107b69190612a83565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061084a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461086090612f08565b80601f016020809104026020016040519081016040528092919081815260200182805461088c90612f08565b80156108d95780601f106108ae576101008083540402835291602001916108d9565b820191906000526020600020905b8154815290600101906020018083116108bc57829003601f168201915b5050505050905090565b60006108ee82611a8a565b610924576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096d82610fb1565b90508073ffffffffffffffffffffffffffffffffffffffff1661098e611ae9565b73ffffffffffffffffffffffffffffffffffffffff16146109f1576109ba816109b5611ae9565b611900565b6109f0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ab0611af1565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c8d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b2f57610b2a848484611af6565b610c99565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b78929190612f39565b602060405180830381865afa158015610b95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb99190612f77565b8015610c4b57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610c09929190612f39565b602060405180830381865afa158015610c26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4a9190612f77565b5b610c8c57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c8391906129ed565b60405180910390fd5b5b610c98848484611af6565b5b50505050565b610ca7611e18565b80600f60006101000a81548160ff02191690831515021790555050565b610ccc611e18565b600260095403610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0890612ff0565b60405180910390fd5b60026009819055506000610d23611095565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d4690613041565b60006040518083038185875af1925050503d8060008114610d83576040519150601f19603f3d011682016040523d82523d6000602084013e610d88565b606091505b5050905080610d9657600080fd5b506001600981905550565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f71573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e1357610e0e848484611e96565b610f7d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e5c929190612f39565b602060405180830381865afa158015610e79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9d9190612f77565b8015610f2f57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610eed929190612f39565b602060405180830381865afa158015610f0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2e9190612f77565b5b610f7057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f6791906129ed565b60405180910390fd5b5b610f7c848484611e96565b5b50505050565b610f8b611e18565b80600a9081610f9a9190613202565b5050565b600f60009054906101000a900460ff1681565b6000610fbc82611eb6565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611083611e18565b61108d6000611f82565b565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110c7611e18565b80600d8190555050565b6060600380546110e090612f08565b80601f016020809104026020016040519081016040528092919081815260200182805461110c90612f08565b80156111595780601f1061112e57610100808354040283529160200191611159565b820191906000526020600020905b81548152906001019060200180831161113c57829003601f168201915b5050505050905090565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e5481565b6111ba611e18565b80600c8190555050565b600c54811115611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090613320565b60405180910390fd5b600b5481611215612048565b61121f919061336f565b1115611260576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611257906133ef565b60405180910390fd5b600f60009054906101000a900460ff16156112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a79061345b565b60405180910390fd5b60008190506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600181101561136a57600183111561131f57600183611318919061347b565b9150611324565b600091505b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600d548261137891906134af565b3410156113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b19061353d565b60405180910390fd5b6113c4338461205b565b505050565b6113d1611ae9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611435576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611442611ae9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ef611ae9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611534919061287c565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611711573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115b3576115ae85858585612079565b61171e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016115fc929190612f39565b602060405180830381865afa158015611619573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163d9190612f77565b80156116cf57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161168d929190612f39565b602060405180830381865afa1580156116aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ce9190612f77565b5b61171057336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161170791906129ed565b60405180910390fd5b5b61171d85858585612079565b5b5050505050565b606061173082611a8a565b61176f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611766906135a9565b60405180910390fd5b60006117796120ec565b511161180f57600a805461178c90612f08565b80601f01602080910402602001604051908101604052809291908181526020018280546117b890612f08565b80156118055780601f106117da57610100808354040283529160200191611805565b820191906000526020600020905b8154815290600101906020018083116117e857829003601f168201915b5050505050611841565b6118176120ec565b6118208361217e565b604051602001611831929190613651565b6040516020818303038152906040525b9050919050565b600a805461185590612f08565b80601f016020809104026020016040519081016040528092919081815260200182805461188190612f08565b80156118ce5780601f106118a3576101008083540402835291602001916118ce565b820191906000526020600020905b8154815290600101906020018083116118b157829003601f168201915b505050505081565b600b5481565b60006118e7826122de565b9050919050565b6118f6611e18565b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61199c611e18565b600b54826119a8610aa6565b6119b2919061336f565b11156119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea906136cc565b60405180910390fd5b6119fd818361205b565b5050565b611a09611e18565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f9061375e565b60405180910390fd5b611a8181611f82565b50565b600c5481565b600081611a95611af1565b11158015611aa4575060005482105b8015611ae2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000611b0182611eb6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b68576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611b7484612335565b91509150611b8a8187611b85611ae9565b61235c565b611bd657611b9f86611b9a611ae9565b611900565b611bd5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c3c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c4986868660016123a0565b8015611c5457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611d2285611cfe8888876123a6565b7c0200000000000000000000000000000000000000000000000000000000176123ce565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611da85760006001850190506000600460008381526020019081526020016000205403611da6576000548114611da5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e1086868660016123f9565b505050505050565b611e206123ff565b73ffffffffffffffffffffffffffffffffffffffff16611e3e611095565b73ffffffffffffffffffffffffffffffffffffffff1614611e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8b906137ca565b60405180910390fd5b565b611eb183838360405180602001604052806000815250611540565b505050565b60008082905080611ec5611af1565b11611f4b57600054811015611f4a5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611f48575b60008103611f3e576004600083600190039350838152602001908152602001600020549050611f14565b8092505050611f7d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612052611af1565b60005403905090565b612075828260405180602001604052806000815250612407565b5050565b612084848484610abd565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120e6576120af848484846124a4565b6120e5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a80546120fb90612f08565b80601f016020809104026020016040519081016040528092919081815260200182805461212790612f08565b80156121745780601f1061214957610100808354040283529160200191612174565b820191906000526020600020905b81548152906001019060200180831161215757829003601f168201915b5050505050905090565b6060600082036121c5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122d9565b600082905060005b600082146121f75780806121e0906137ea565b915050600a826121f09190613861565b91506121cd565b60008167ffffffffffffffff81111561221357612212612b54565b5b6040519080825280601f01601f1916602001820160405280156122455781602001600182028036833780820191505090505b5090505b600085146122d25760018261225e919061347b565b9150600a8561226d9190613892565b6030612279919061336f565b60f81b81838151811061228f5761228e6138c3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122cb9190613861565b9450612249565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86123bd8686846125f4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b61241183836125fd565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461249f57600080549050600083820390505b61245160008683806001019450866124a4565b612487576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061243e57816000541461249c57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124ca611ae9565b8786866040518563ffffffff1660e01b81526004016124ec9493929190613947565b6020604051808303816000875af192505050801561252857506040513d601f19601f8201168201806040525081019061252591906139a8565b60015b6125a1573d8060008114612558576040519150601f19603f3d011682016040523d82523d6000602084013e61255d565b606091505b506000815103612599576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000820361263d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61264a60008483856123a0565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506126c1836126b260008660006123a6565b6126bb856127b8565b176123ce565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461276257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612727565b506000820361279d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127b360008483856123f9565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612811816127dc565b811461281c57600080fd5b50565b60008135905061282e81612808565b92915050565b60006020828403121561284a576128496127d2565b5b60006128588482850161281f565b91505092915050565b60008115159050919050565b61287681612861565b82525050565b6000602082019050612891600083018461286d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128d15780820151818401526020810190506128b6565b60008484015250505050565b6000601f19601f8301169050919050565b60006128f982612897565b61290381856128a2565b93506129138185602086016128b3565b61291c816128dd565b840191505092915050565b6000602082019050818103600083015261294181846128ee565b905092915050565b6000819050919050565b61295c81612949565b811461296757600080fd5b50565b60008135905061297981612953565b92915050565b600060208284031215612995576129946127d2565b5b60006129a38482850161296a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129d7826129ac565b9050919050565b6129e7816129cc565b82525050565b6000602082019050612a0260008301846129de565b92915050565b612a11816129cc565b8114612a1c57600080fd5b50565b600081359050612a2e81612a08565b92915050565b60008060408385031215612a4b57612a4a6127d2565b5b6000612a5985828601612a1f565b9250506020612a6a8582860161296a565b9150509250929050565b612a7d81612949565b82525050565b6000602082019050612a986000830184612a74565b92915050565b600080600060608486031215612ab757612ab66127d2565b5b6000612ac586828701612a1f565b9350506020612ad686828701612a1f565b9250506040612ae78682870161296a565b9150509250925092565b612afa81612861565b8114612b0557600080fd5b50565b600081359050612b1781612af1565b92915050565b600060208284031215612b3357612b326127d2565b5b6000612b4184828501612b08565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b8c826128dd565b810181811067ffffffffffffffff82111715612bab57612baa612b54565b5b80604052505050565b6000612bbe6127c8565b9050612bca8282612b83565b919050565b600067ffffffffffffffff821115612bea57612be9612b54565b5b612bf3826128dd565b9050602081019050919050565b82818337600083830152505050565b6000612c22612c1d84612bcf565b612bb4565b905082815260208101848484011115612c3e57612c3d612b4f565b5b612c49848285612c00565b509392505050565b600082601f830112612c6657612c65612b4a565b5b8135612c76848260208601612c0f565b91505092915050565b600060208284031215612c9557612c946127d2565b5b600082013567ffffffffffffffff811115612cb357612cb26127d7565b5b612cbf84828501612c51565b91505092915050565b600060208284031215612cde57612cdd6127d2565b5b6000612cec84828501612a1f565b91505092915050565b60008060408385031215612d0c57612d0b6127d2565b5b6000612d1a85828601612a1f565b9250506020612d2b85828601612b08565b9150509250929050565b600067ffffffffffffffff821115612d5057612d4f612b54565b5b612d59826128dd565b9050602081019050919050565b6000612d79612d7484612d35565b612bb4565b905082815260208101848484011115612d9557612d94612b4f565b5b612da0848285612c00565b509392505050565b600082601f830112612dbd57612dbc612b4a565b5b8135612dcd848260208601612d66565b91505092915050565b60008060008060808587031215612df057612def6127d2565b5b6000612dfe87828801612a1f565b9450506020612e0f87828801612a1f565b9350506040612e208782880161296a565b925050606085013567ffffffffffffffff811115612e4157612e406127d7565b5b612e4d87828801612da8565b91505092959194509250565b60008060408385031215612e7057612e6f6127d2565b5b6000612e7e85828601612a1f565b9250506020612e8f85828601612a1f565b9150509250929050565b60008060408385031215612eb057612eaf6127d2565b5b6000612ebe8582860161296a565b9250506020612ecf85828601612a1f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f2057607f821691505b602082108103612f3357612f32612ed9565b5b50919050565b6000604082019050612f4e60008301856129de565b612f5b60208301846129de565b9392505050565b600081519050612f7181612af1565b92915050565b600060208284031215612f8d57612f8c6127d2565b5b6000612f9b84828501612f62565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612fda601f836128a2565b9150612fe582612fa4565b602082019050919050565b6000602082019050818103600083015261300981612fcd565b9050919050565b600081905092915050565b50565b600061302b600083613010565b91506130368261301b565b600082019050919050565b600061304c8261301e565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130b87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261307b565b6130c2868361307b565b95508019841693508086168417925050509392505050565b6000819050919050565b60006130ff6130fa6130f584612949565b6130da565b612949565b9050919050565b6000819050919050565b613119836130e4565b61312d61312582613106565b848454613088565b825550505050565b600090565b613142613135565b61314d818484613110565b505050565b5b818110156131715761316660008261313a565b600181019050613153565b5050565b601f8211156131b65761318781613056565b6131908461306b565b8101602085101561319f578190505b6131b36131ab8561306b565b830182613152565b50505b505050565b600082821c905092915050565b60006131d9600019846008026131bb565b1980831691505092915050565b60006131f283836131c8565b9150826002028217905092915050565b61320b82612897565b67ffffffffffffffff81111561322457613223612b54565b5b61322e8254612f08565b613239828285613175565b600060209050601f83116001811461326c576000841561325a578287015190505b61326485826131e6565b8655506132cc565b601f19841661327a86613056565b60005b828110156132a25784890151825560018201915060208501945060208101905061327d565b868310156132bf57848901516132bb601f8916826131c8565b8355505b6001600288020188555050505b505050505050565b7f4d617820706572207472616e73616374696f6e20697320313500000000000000600082015250565b600061330a6019836128a2565b9150613315826132d4565b602082019050919050565b60006020820190508181036000830152613339816132fd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061337a82612949565b915061338583612949565b925082820190508082111561339d5761339c613340565b5b92915050565b7f4e6f20536861726b206c65667473210000000000000000000000000000000000600082015250565b60006133d9600f836128a2565b91506133e4826133a3565b602082019050919050565b60006020820190508181036000830152613408816133cc565b9050919050565b7f4d696e74696e6720706175736564000000000000000000000000000000000000600082015250565b6000613445600e836128a2565b91506134508261340f565b602082019050919050565b6000602082019050818103600083015261347481613438565b9050919050565b600061348682612949565b915061349183612949565b92508282039050818111156134a9576134a8613340565b5b92915050565b60006134ba82612949565b91506134c583612949565b92508282026134d381612949565b915082820484148315176134ea576134e9613340565b5b5092915050565b7f496e636f72726563742045544820616d6f756e74000000000000000000000000600082015250565b60006135276014836128a2565b9150613532826134f1565b602082019050919050565b600060208201905081810360008301526135568161351a565b9050919050565b7f4552433732314d65746164617461000000000000000000000000000000000000600082015250565b6000613593600e836128a2565b915061359e8261355d565b602082019050919050565b600060208201905081810360008301526135c281613586565b9050919050565b600081905092915050565b60006135df82612897565b6135e981856135c9565b93506135f98185602086016128b3565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061363b6005836135c9565b915061364682613605565b600582019050919050565b600061365d82856135d4565b915061366982846135d4565b91506136748261362e565b91508190509392505050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006136b66014836128a2565b91506136c182613680565b602082019050919050565b600060208201905081810360008301526136e5816136a9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137486026836128a2565b9150613753826136ec565b604082019050919050565b600060208201905081810360008301526137778161373b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137b46020836128a2565b91506137bf8261377e565b602082019050919050565b600060208201905081810360008301526137e3816137a7565b9050919050565b60006137f582612949565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361382757613826613340565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061386c82612949565b915061387783612949565b92508261388757613886613832565b5b828204905092915050565b600061389d82612949565b91506138a883612949565b9250826138b8576138b7613832565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613919826138f2565b61392381856138fd565b93506139338185602086016128b3565b61393c816128dd565b840191505092915050565b600060808201905061395c60008301876129de565b61396960208301866129de565b6139766040830185612a74565b8181036060830152613988818461390e565b905095945050505050565b6000815190506139a281612808565b92915050565b6000602082840312156139be576139bd6127d2565b5b60006139cc84828501613993565b9150509291505056fea26469706673582212200869b6dbd5fbc4ace303d6b3782ad6cb66fa430d04677fd8469d7e0ea10defd564736f6c63430008120033697066733a2f2f626166796265696570646b376b6a7a34626a79626b793562767a6a6c7772716467636a7577676133356e6333617537377875726562676e376577712f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806391b7f5ed1161010d578063c87b56dd116100a0578063e19979f51161006f578063e19979f5146106dc578063e985e9c514610705578063efbd73f414610742578063f2fde38b1461076b578063f43a22dc14610794576101ee565b8063c87b56dd1461060c578063d547cfb714610649578063dadf4be014610674578063dc33e6811461069f576101ee565b80639e9fcffc116100dc5780639e9fcffc14610575578063a0712d681461059e578063a22cb465146105ba578063b88d4fde146105e3576101ee565b806391b7f5ed146104b957806395d89b41146104e2578063981332351461050d57806398710d1e1461054a576101ee565b806342842e0e1161018557806370a082311161015457806370a082311461040f578063715018a61461044c5780638d859f3e146104635780638da5cb5b1461048e576101ee565b806342842e0e1461035557806355f804b31461037e5780635c975abb146103a75780636352211e146103d2576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780633031e7c7146103155780633ccfd60b1461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612834565b6107bf565b604051610227919061287c565b60405180910390f35b34801561023c57600080fd5b50610245610851565b6040516102529190612927565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061297f565b6108e3565b60405161028f91906129ed565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612a34565b610962565b005b3480156102cd57600080fd5b506102d6610aa6565b6040516102e39190612a83565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612a9e565b610abd565b005b34801561032157600080fd5b5061033c60048036038101906103379190612b1d565b610c9f565b005b34801561034a57600080fd5b50610353610cc4565b005b34801561036157600080fd5b5061037c60048036038101906103779190612a9e565b610da1565b005b34801561038a57600080fd5b506103a560048036038101906103a09190612c7f565b610f83565b005b3480156103b357600080fd5b506103bc610f9e565b6040516103c9919061287c565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f4919061297f565b610fb1565b60405161040691906129ed565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612cc8565b610fc3565b6040516104439190612a83565b60405180910390f35b34801561045857600080fd5b5061046161107b565b005b34801561046f57600080fd5b5061047861108f565b6040516104859190612a83565b60405180910390f35b34801561049a57600080fd5b506104a3611095565b6040516104b091906129ed565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db919061297f565b6110bf565b005b3480156104ee57600080fd5b506104f76110d1565b6040516105049190612927565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190612cc8565b611163565b6040516105419190612a83565b60405180910390f35b34801561055657600080fd5b5061055f6111ac565b60405161056c9190612a83565b60405180910390f35b34801561058157600080fd5b5061059c6004803603810190610597919061297f565b6111b2565b005b6105b860048036038101906105b3919061297f565b6111c4565b005b3480156105c657600080fd5b506105e160048036038101906105dc9190612cf5565b6113c9565b005b3480156105ef57600080fd5b5061060a60048036038101906106059190612dd6565b611540565b005b34801561061857600080fd5b50610633600480360381019061062e919061297f565b611725565b6040516106409190612927565b60405180910390f35b34801561065557600080fd5b5061065e611848565b60405161066b9190612927565b60405180910390f35b34801561068057600080fd5b506106896118d6565b6040516106969190612a83565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190612cc8565b6118dc565b6040516106d39190612a83565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe919061297f565b6118ee565b005b34801561071157600080fd5b5061072c60048036038101906107279190612e59565b611900565b604051610739919061287c565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190612e99565b611994565b005b34801561077757600080fd5b50610792600480360381019061078d9190612cc8565b611a01565b005b3480156107a057600080fd5b506107a9611a84565b6040516107b69190612a83565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061084a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461086090612f08565b80601f016020809104026020016040519081016040528092919081815260200182805461088c90612f08565b80156108d95780601f106108ae576101008083540402835291602001916108d9565b820191906000526020600020905b8154815290600101906020018083116108bc57829003601f168201915b5050505050905090565b60006108ee82611a8a565b610924576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096d82610fb1565b90508073ffffffffffffffffffffffffffffffffffffffff1661098e611ae9565b73ffffffffffffffffffffffffffffffffffffffff16146109f1576109ba816109b5611ae9565b611900565b6109f0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ab0611af1565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c8d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b2f57610b2a848484611af6565b610c99565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b78929190612f39565b602060405180830381865afa158015610b95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb99190612f77565b8015610c4b57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610c09929190612f39565b602060405180830381865afa158015610c26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4a9190612f77565b5b610c8c57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c8391906129ed565b60405180910390fd5b5b610c98848484611af6565b5b50505050565b610ca7611e18565b80600f60006101000a81548160ff02191690831515021790555050565b610ccc611e18565b600260095403610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0890612ff0565b60405180910390fd5b60026009819055506000610d23611095565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d4690613041565b60006040518083038185875af1925050503d8060008114610d83576040519150601f19603f3d011682016040523d82523d6000602084013e610d88565b606091505b5050905080610d9657600080fd5b506001600981905550565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f71573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e1357610e0e848484611e96565b610f7d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e5c929190612f39565b602060405180830381865afa158015610e79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9d9190612f77565b8015610f2f57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610eed929190612f39565b602060405180830381865afa158015610f0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2e9190612f77565b5b610f7057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f6791906129ed565b60405180910390fd5b5b610f7c848484611e96565b5b50505050565b610f8b611e18565b80600a9081610f9a9190613202565b5050565b600f60009054906101000a900460ff1681565b6000610fbc82611eb6565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611083611e18565b61108d6000611f82565b565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110c7611e18565b80600d8190555050565b6060600380546110e090612f08565b80601f016020809104026020016040519081016040528092919081815260200182805461110c90612f08565b80156111595780601f1061112e57610100808354040283529160200191611159565b820191906000526020600020905b81548152906001019060200180831161113c57829003601f168201915b5050505050905090565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e5481565b6111ba611e18565b80600c8190555050565b600c54811115611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090613320565b60405180910390fd5b600b5481611215612048565b61121f919061336f565b1115611260576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611257906133ef565b60405180910390fd5b600f60009054906101000a900460ff16156112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a79061345b565b60405180910390fd5b60008190506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600181101561136a57600183111561131f57600183611318919061347b565b9150611324565b600091505b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600d548261137891906134af565b3410156113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b19061353d565b60405180910390fd5b6113c4338461205b565b505050565b6113d1611ae9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611435576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611442611ae9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ef611ae9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611534919061287c565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611711573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115b3576115ae85858585612079565b61171e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016115fc929190612f39565b602060405180830381865afa158015611619573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163d9190612f77565b80156116cf57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161168d929190612f39565b602060405180830381865afa1580156116aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ce9190612f77565b5b61171057336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161170791906129ed565b60405180910390fd5b5b61171d85858585612079565b5b5050505050565b606061173082611a8a565b61176f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611766906135a9565b60405180910390fd5b60006117796120ec565b511161180f57600a805461178c90612f08565b80601f01602080910402602001604051908101604052809291908181526020018280546117b890612f08565b80156118055780601f106117da57610100808354040283529160200191611805565b820191906000526020600020905b8154815290600101906020018083116117e857829003601f168201915b5050505050611841565b6118176120ec565b6118208361217e565b604051602001611831929190613651565b6040516020818303038152906040525b9050919050565b600a805461185590612f08565b80601f016020809104026020016040519081016040528092919081815260200182805461188190612f08565b80156118ce5780601f106118a3576101008083540402835291602001916118ce565b820191906000526020600020905b8154815290600101906020018083116118b157829003601f168201915b505050505081565b600b5481565b60006118e7826122de565b9050919050565b6118f6611e18565b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61199c611e18565b600b54826119a8610aa6565b6119b2919061336f565b11156119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea906136cc565b60405180910390fd5b6119fd818361205b565b5050565b611a09611e18565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f9061375e565b60405180910390fd5b611a8181611f82565b50565b600c5481565b600081611a95611af1565b11158015611aa4575060005482105b8015611ae2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000611b0182611eb6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b68576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611b7484612335565b91509150611b8a8187611b85611ae9565b61235c565b611bd657611b9f86611b9a611ae9565b611900565b611bd5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c3c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c4986868660016123a0565b8015611c5457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611d2285611cfe8888876123a6565b7c0200000000000000000000000000000000000000000000000000000000176123ce565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611da85760006001850190506000600460008381526020019081526020016000205403611da6576000548114611da5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e1086868660016123f9565b505050505050565b611e206123ff565b73ffffffffffffffffffffffffffffffffffffffff16611e3e611095565b73ffffffffffffffffffffffffffffffffffffffff1614611e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8b906137ca565b60405180910390fd5b565b611eb183838360405180602001604052806000815250611540565b505050565b60008082905080611ec5611af1565b11611f4b57600054811015611f4a5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611f48575b60008103611f3e576004600083600190039350838152602001908152602001600020549050611f14565b8092505050611f7d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612052611af1565b60005403905090565b612075828260405180602001604052806000815250612407565b5050565b612084848484610abd565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120e6576120af848484846124a4565b6120e5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a80546120fb90612f08565b80601f016020809104026020016040519081016040528092919081815260200182805461212790612f08565b80156121745780601f1061214957610100808354040283529160200191612174565b820191906000526020600020905b81548152906001019060200180831161215757829003601f168201915b5050505050905090565b6060600082036121c5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122d9565b600082905060005b600082146121f75780806121e0906137ea565b915050600a826121f09190613861565b91506121cd565b60008167ffffffffffffffff81111561221357612212612b54565b5b6040519080825280601f01601f1916602001820160405280156122455781602001600182028036833780820191505090505b5090505b600085146122d25760018261225e919061347b565b9150600a8561226d9190613892565b6030612279919061336f565b60f81b81838151811061228f5761228e6138c3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122cb9190613861565b9450612249565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86123bd8686846125f4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b61241183836125fd565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461249f57600080549050600083820390505b61245160008683806001019450866124a4565b612487576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061243e57816000541461249c57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124ca611ae9565b8786866040518563ffffffff1660e01b81526004016124ec9493929190613947565b6020604051808303816000875af192505050801561252857506040513d601f19601f8201168201806040525081019061252591906139a8565b60015b6125a1573d8060008114612558576040519150601f19603f3d011682016040523d82523d6000602084013e61255d565b606091505b506000815103612599576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000820361263d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61264a60008483856123a0565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506126c1836126b260008660006123a6565b6126bb856127b8565b176123ce565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461276257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612727565b506000820361279d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127b360008483856123f9565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612811816127dc565b811461281c57600080fd5b50565b60008135905061282e81612808565b92915050565b60006020828403121561284a576128496127d2565b5b60006128588482850161281f565b91505092915050565b60008115159050919050565b61287681612861565b82525050565b6000602082019050612891600083018461286d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128d15780820151818401526020810190506128b6565b60008484015250505050565b6000601f19601f8301169050919050565b60006128f982612897565b61290381856128a2565b93506129138185602086016128b3565b61291c816128dd565b840191505092915050565b6000602082019050818103600083015261294181846128ee565b905092915050565b6000819050919050565b61295c81612949565b811461296757600080fd5b50565b60008135905061297981612953565b92915050565b600060208284031215612995576129946127d2565b5b60006129a38482850161296a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129d7826129ac565b9050919050565b6129e7816129cc565b82525050565b6000602082019050612a0260008301846129de565b92915050565b612a11816129cc565b8114612a1c57600080fd5b50565b600081359050612a2e81612a08565b92915050565b60008060408385031215612a4b57612a4a6127d2565b5b6000612a5985828601612a1f565b9250506020612a6a8582860161296a565b9150509250929050565b612a7d81612949565b82525050565b6000602082019050612a986000830184612a74565b92915050565b600080600060608486031215612ab757612ab66127d2565b5b6000612ac586828701612a1f565b9350506020612ad686828701612a1f565b9250506040612ae78682870161296a565b9150509250925092565b612afa81612861565b8114612b0557600080fd5b50565b600081359050612b1781612af1565b92915050565b600060208284031215612b3357612b326127d2565b5b6000612b4184828501612b08565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b8c826128dd565b810181811067ffffffffffffffff82111715612bab57612baa612b54565b5b80604052505050565b6000612bbe6127c8565b9050612bca8282612b83565b919050565b600067ffffffffffffffff821115612bea57612be9612b54565b5b612bf3826128dd565b9050602081019050919050565b82818337600083830152505050565b6000612c22612c1d84612bcf565b612bb4565b905082815260208101848484011115612c3e57612c3d612b4f565b5b612c49848285612c00565b509392505050565b600082601f830112612c6657612c65612b4a565b5b8135612c76848260208601612c0f565b91505092915050565b600060208284031215612c9557612c946127d2565b5b600082013567ffffffffffffffff811115612cb357612cb26127d7565b5b612cbf84828501612c51565b91505092915050565b600060208284031215612cde57612cdd6127d2565b5b6000612cec84828501612a1f565b91505092915050565b60008060408385031215612d0c57612d0b6127d2565b5b6000612d1a85828601612a1f565b9250506020612d2b85828601612b08565b9150509250929050565b600067ffffffffffffffff821115612d5057612d4f612b54565b5b612d59826128dd565b9050602081019050919050565b6000612d79612d7484612d35565b612bb4565b905082815260208101848484011115612d9557612d94612b4f565b5b612da0848285612c00565b509392505050565b600082601f830112612dbd57612dbc612b4a565b5b8135612dcd848260208601612d66565b91505092915050565b60008060008060808587031215612df057612def6127d2565b5b6000612dfe87828801612a1f565b9450506020612e0f87828801612a1f565b9350506040612e208782880161296a565b925050606085013567ffffffffffffffff811115612e4157612e406127d7565b5b612e4d87828801612da8565b91505092959194509250565b60008060408385031215612e7057612e6f6127d2565b5b6000612e7e85828601612a1f565b9250506020612e8f85828601612a1f565b9150509250929050565b60008060408385031215612eb057612eaf6127d2565b5b6000612ebe8582860161296a565b9250506020612ecf85828601612a1f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f2057607f821691505b602082108103612f3357612f32612ed9565b5b50919050565b6000604082019050612f4e60008301856129de565b612f5b60208301846129de565b9392505050565b600081519050612f7181612af1565b92915050565b600060208284031215612f8d57612f8c6127d2565b5b6000612f9b84828501612f62565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612fda601f836128a2565b9150612fe582612fa4565b602082019050919050565b6000602082019050818103600083015261300981612fcd565b9050919050565b600081905092915050565b50565b600061302b600083613010565b91506130368261301b565b600082019050919050565b600061304c8261301e565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130b87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261307b565b6130c2868361307b565b95508019841693508086168417925050509392505050565b6000819050919050565b60006130ff6130fa6130f584612949565b6130da565b612949565b9050919050565b6000819050919050565b613119836130e4565b61312d61312582613106565b848454613088565b825550505050565b600090565b613142613135565b61314d818484613110565b505050565b5b818110156131715761316660008261313a565b600181019050613153565b5050565b601f8211156131b65761318781613056565b6131908461306b565b8101602085101561319f578190505b6131b36131ab8561306b565b830182613152565b50505b505050565b600082821c905092915050565b60006131d9600019846008026131bb565b1980831691505092915050565b60006131f283836131c8565b9150826002028217905092915050565b61320b82612897565b67ffffffffffffffff81111561322457613223612b54565b5b61322e8254612f08565b613239828285613175565b600060209050601f83116001811461326c576000841561325a578287015190505b61326485826131e6565b8655506132cc565b601f19841661327a86613056565b60005b828110156132a25784890151825560018201915060208501945060208101905061327d565b868310156132bf57848901516132bb601f8916826131c8565b8355505b6001600288020188555050505b505050505050565b7f4d617820706572207472616e73616374696f6e20697320313500000000000000600082015250565b600061330a6019836128a2565b9150613315826132d4565b602082019050919050565b60006020820190508181036000830152613339816132fd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061337a82612949565b915061338583612949565b925082820190508082111561339d5761339c613340565b5b92915050565b7f4e6f20536861726b206c65667473210000000000000000000000000000000000600082015250565b60006133d9600f836128a2565b91506133e4826133a3565b602082019050919050565b60006020820190508181036000830152613408816133cc565b9050919050565b7f4d696e74696e6720706175736564000000000000000000000000000000000000600082015250565b6000613445600e836128a2565b91506134508261340f565b602082019050919050565b6000602082019050818103600083015261347481613438565b9050919050565b600061348682612949565b915061349183612949565b92508282039050818111156134a9576134a8613340565b5b92915050565b60006134ba82612949565b91506134c583612949565b92508282026134d381612949565b915082820484148315176134ea576134e9613340565b5b5092915050565b7f496e636f72726563742045544820616d6f756e74000000000000000000000000600082015250565b60006135276014836128a2565b9150613532826134f1565b602082019050919050565b600060208201905081810360008301526135568161351a565b9050919050565b7f4552433732314d65746164617461000000000000000000000000000000000000600082015250565b6000613593600e836128a2565b915061359e8261355d565b602082019050919050565b600060208201905081810360008301526135c281613586565b9050919050565b600081905092915050565b60006135df82612897565b6135e981856135c9565b93506135f98185602086016128b3565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061363b6005836135c9565b915061364682613605565b600582019050919050565b600061365d82856135d4565b915061366982846135d4565b91506136748261362e565b91508190509392505050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006136b66014836128a2565b91506136c182613680565b602082019050919050565b600060208201905081810360008301526136e5816136a9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137486026836128a2565b9150613753826136ec565b604082019050919050565b600060208201905081810360008301526137778161373b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137b46020836128a2565b91506137bf8261377e565b602082019050919050565b600060208201905081810360008301526137e3816137a7565b9050919050565b60006137f582612949565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361382757613826613340565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061386c82612949565b915061387783612949565b92508261388757613886613832565b5b828204905092915050565b600061389d82612949565b91506138a883612949565b9250826138b8576138b7613832565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613919826138f2565b61392381856138fd565b93506139338185602086016128b3565b61393c816128dd565b840191505092915050565b600060808201905061395c60008301876129de565b61396960208301866129de565b6139766040830185612a74565b8181036060830152613988818461390e565b905095945050505050565b6000815190506139a281612808565b92915050565b6000602082840312156139be576139bd6127d2565b5b60006139cc84828501613993565b9150509291505056fea26469706673582212200869b6dbd5fbc4ace303d6b3782ad6cb66fa430d04677fd8469d7e0ea10defd564736f6c63430008120033

Deployed Bytecode Sourcemap

72859:3783:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19037:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19939:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26422:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25863:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15690:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76059:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75610:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74998:160;;;;;;;;;;;;;:::i;:::-;;76230:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74775:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73283:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21332:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16874:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56894:103;;;;;;;;;;;;;:::i;:::-;;73195:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56246:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75709:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20115:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74517:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73238:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75808:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73667:842;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26980:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76409:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75166:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73014:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73120:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74650:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75929:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27445:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73440:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57152:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73158:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19037:639;19122:4;19461:10;19446:25;;:11;:25;;;;:102;;;;19538:10;19523:25;;:11;:25;;;;19446:102;:179;;;;19615:10;19600:25;;:11;:25;;;;19446:179;19426:199;;19037:639;;;:::o;19939:100::-;19993:13;20026:5;20019:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19939:100;:::o;26422:218::-;26498:7;26523:16;26531:7;26523;:16::i;:::-;26518:64;;26548:34;;;;;;;;;;;;;;26518:64;26602:15;:24;26618:7;26602:24;;;;;;;;;;;:30;;;;;;;;;;;;26595:37;;26422:218;;;:::o;25863:400::-;25944:13;25960:16;25968:7;25960;:16::i;:::-;25944:32;;26016:5;25993:28;;:19;:17;:19::i;:::-;:28;;;25989:175;;26041:44;26058:5;26065:19;:17;:19::i;:::-;26041:16;:44::i;:::-;26036:128;;26113:35;;;;;;;;;;;;;;26036:128;25989:175;26209:2;26176:15;:24;26192:7;26176:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26247:7;26243:2;26227:28;;26236:5;26227:28;;;;;;;;;;;;25933:330;25863:400;;:::o;15690:323::-;15751:7;15979:15;:13;:15::i;:::-;15964:12;;15948:13;;:28;:46;15941:53;;15690:323;:::o;76059:163::-;76160:4;71880:1;70694:42;71834:43;;;:47;71830:699;;;72121:10;72113:18;;:4;:18;;;72109:85;;76177:37:::1;76196:4;76202:2;76206:7;76177:18;:37::i;:::-;72172:7:::0;;72109:85;70694:42;72254:40;;;72303:4;72310:10;72254:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;70694:42;72350:40;;;72399:4;72406;72350:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;72254:157;72208:310;;72491:10;72472:30;;;;;;;;;;;:::i;:::-;;;;;;;;72208:310;71830:699;76177:37:::1;76196:4;76202:2;76206:7;76177:18;:37::i;:::-;76059:163:::0;;;;;:::o;75610:91::-;56132:13;:11;:13::i;:::-;75686:7:::1;75677:6;;:16;;;;;;;;;;;;;;;;;;75610:91:::0;:::o;74998:160::-;56132:13;:11;:13::i;:::-;53173:1:::1;53771:7;;:19:::0;53763:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;53173:1;53904:7;:18;;;;75060:7:::2;75081;:5;:7::i;:::-;75073:21;;75102;75073:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75059:69;;;75147:2;75139:11;;;::::0;::::2;;75048:110;53129:1:::1;54083:7;:22;;;;74998:160::o:0;76230:171::-;76335:4;71880:1;70694:42;71834:43;;;:47;71830:699;;;72121:10;72113:18;;:4;:18;;;72109:85;;76352:41:::1;76375:4;76381:2;76385:7;76352:22;:41::i;:::-;72172:7:::0;;72109:85;70694:42;72254:40;;;72303:4;72310:10;72254:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;70694:42;72350:40;;;72399:4;72406;72350:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;72254:157;72208:310;;72491:10;72472:30;;;;;;;;;;;:::i;:::-;;;;;;;;72208:310;71830:699;76352:41:::1;76375:4;76381:2;76385:7;76352:22;:41::i;:::-;76230:171:::0;;;;;:::o;74775:106::-;56132:13;:11;:13::i;:::-;74866:7:::1;74851:12;:22;;;;;;:::i;:::-;;74775:106:::0;:::o;73283:25::-;;;;;;;;;;;;;:::o;21332:152::-;21404:7;21447:27;21466:7;21447:18;:27::i;:::-;21424:52;;21332:152;;;:::o;16874:233::-;16946:7;16987:1;16970:19;;:5;:19;;;16966:60;;16998:28;;;;;;;;;;;;;;16966:60;11033:13;17044:18;:25;17063:5;17044:25;;;;;;;;;;;;;;;;:55;17037:62;;16874:233;;;:::o;56894:103::-;56132:13;:11;:13::i;:::-;56959:30:::1;56986:1;56959:18;:30::i;:::-;56894:103::o:0;73195:36::-;;;;:::o;56246:87::-;56292:7;56319:6;;;;;;;;;;;56312:13;;56246:87;:::o;75709:91::-;56132:13;:11;:13::i;:::-;75786:6:::1;75778:5;:14;;;;75709:91:::0;:::o;20115:104::-;20171:13;20204:7;20197:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20115:104;:::o;74517:121::-;74580:7;74607:16;:23;74624:5;74607:23;;;;;;;;;;;;;;;;74600:30;;74517:121;;;:::o;73238:38::-;;;;:::o;75808:113::-;56132:13;:11;:13::i;:::-;75907:6:::1;75894:10;:19;;;;75808:113:::0;:::o;73667:842::-;73762:10;;73749:9;:23;;73727:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;73873:9;;73860;73843:14;:12;:14::i;:::-;:26;;;;:::i;:::-;:39;;73821:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;73950:6;;;;;;;;;;;73949:7;73927:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;74000:16;74019:9;74000:28;;74049:18;74070:16;:28;74087:10;74070:28;;;;;;;;;;;;;;;;74049:49;;74131:1;74115:13;:17;74111:263;;;74169:1;74157:9;:13;74153:153;;;74221:1;74209:9;:13;;;;:::i;:::-;74195:27;;74153:153;;;74285:1;74271:15;;74153:153;74357:1;74326:16;:28;74343:10;74326:28;;;;;;;;;;;;;;;:32;;;;74111:263;74418:5;;74404:11;:19;;;;:::i;:::-;74391:9;:32;;74378:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;74469:32;74479:10;74491:9;74469;:32::i;:::-;73722:787;;73667:842;:::o;26980:308::-;27091:19;:17;:19::i;:::-;27079:31;;:8;:31;;;27075:61;;27119:17;;;;;;;;;;;;;;27075:61;27201:8;27149:18;:39;27168:19;:17;:19::i;:::-;27149:39;;;;;;;;;;;;;;;:49;27189:8;27149:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27261:8;27225:55;;27240:19;:17;:19::i;:::-;27225:55;;;27271:8;27225:55;;;;;;:::i;:::-;;;;;;;;26980:308;;:::o;76409:228::-;76560:4;71880:1;70694:42;71834:43;;;:47;71830:699;;;72121:10;72113:18;;:4;:18;;;72109:85;;76582:47:::1;76605:4;76611:2;76615:7;76624:4;76582:22;:47::i;:::-;72172:7:::0;;72109:85;70694:42;72254:40;;;72303:4;72310:10;72254:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;70694:42;72350:40;;;72399:4;72406;72350:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;72254:157;72208:310;;72491:10;72472:30;;;;;;;;;;;:::i;:::-;;;;;;;;72208:310;71830:699;76582:47:::1;76605:4;76611:2;76615:7;76624:4;76582:22;:47::i;:::-;76409:228:::0;;;;;;:::o;75166:308::-;75240:13;75276:16;75284:7;75276;:16::i;:::-;75268:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;75358:1;75337:10;:8;:10::i;:::-;75331:24;:28;:138;;75457:12;75331:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75400:10;:8;:10::i;:::-;75412:18;:7;:16;:18::i;:::-;75383:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75331:138;75324:145;;75166:308;;;:::o;73014:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;73120:31::-;;;;:::o;74650:113::-;74708:7;74735:20;74749:5;74735:13;:20::i;:::-;74728:27;;74650:113;;;:::o;75929:122::-;56132:13;:11;:13::i;:::-;76037:6:::1;76015:19;:28;;;;75929:122:::0;:::o;27445:164::-;27542:4;27566:18;:25;27585:5;27566:25;;;;;;;;;;;;;;;:35;27592:8;27566:35;;;;;;;;;;;;;;;;;;;;;;;;;27559:42;;27445:164;;;;:::o;73440:217::-;56132:13;:11;:13::i;:::-;73571:9:::1;;73556:11;73540:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;73532:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;73616:33;73626:9;73637:11;73616:9;:33::i;:::-;73440:217:::0;;:::o;57152:201::-;56132:13;:11;:13::i;:::-;57261:1:::1;57241:22;;:8;:22;;::::0;57233:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;57317:28;57336:8;57317:18;:28::i;:::-;57152:201:::0;:::o;73158:30::-;;;;:::o;27867:282::-;27932:4;27988:7;27969:15;:13;:15::i;:::-;:26;;:66;;;;;28022:13;;28012:7;:23;27969:66;:153;;;;;28121:1;11809:8;28073:17;:26;28091:7;28073:26;;;;;;;;;;;;:44;:49;27969:153;27949:173;;27867:282;;;:::o;49633:105::-;49693:7;49720:10;49713:17;;49633:105;:::o;74889:101::-;74954:7;74889:101;:::o;30129:2817::-;30263:27;30293;30312:7;30293:18;:27::i;:::-;30263:57;;30378:4;30337:45;;30353:19;30337:45;;;30333:86;;30391:28;;;;;;;;;;;;;;30333:86;30433:27;30462:23;30489:35;30516:7;30489:26;:35::i;:::-;30432:92;;;;30624:68;30649:15;30666:4;30672:19;:17;:19::i;:::-;30624:24;:68::i;:::-;30619:180;;30712:43;30729:4;30735:19;:17;:19::i;:::-;30712:16;:43::i;:::-;30707:92;;30764:35;;;;;;;;;;;;;;30707:92;30619:180;30830:1;30816:16;;:2;:16;;;30812:52;;30841:23;;;;;;;;;;;;;;30812:52;30877:43;30899:4;30905:2;30909:7;30918:1;30877:21;:43::i;:::-;31013:15;31010:160;;;31153:1;31132:19;31125:30;31010:160;31550:18;:24;31569:4;31550:24;;;;;;;;;;;;;;;;31548:26;;;;;;;;;;;;31619:18;:22;31638:2;31619:22;;;;;;;;;;;;;;;;31617:24;;;;;;;;;;;31941:146;31978:2;32027:45;32042:4;32048:2;32052:19;32027:14;:45::i;:::-;12089:8;31999:73;31941:18;:146::i;:::-;31912:17;:26;31930:7;31912:26;;;;;;;;;;;:175;;;;32258:1;12089:8;32207:19;:47;:52;32203:627;;32280:19;32312:1;32302:7;:11;32280:33;;32469:1;32435:17;:30;32453:11;32435:30;;;;;;;;;;;;:35;32431:384;;32573:13;;32558:11;:28;32554:242;;32753:19;32720:17;:30;32738:11;32720:30;;;;;;;;;;;:52;;;;32554:242;32431:384;32261:569;32203:627;32877:7;32873:2;32858:27;;32867:4;32858:27;;;;;;;;;;;;32896:42;32917:4;32923:2;32927:7;32936:1;32896:20;:42::i;:::-;30252:2694;;;30129:2817;;;:::o;56411:132::-;56486:12;:10;:12::i;:::-;56475:23;;:7;:5;:7::i;:::-;:23;;;56467:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56411:132::o;33042:185::-;33180:39;33197:4;33203:2;33207:7;33180:39;;;;;;;;;;;;:16;:39::i;:::-;33042:185;;;:::o;22487:1275::-;22554:7;22574:12;22589:7;22574:22;;22657:4;22638:15;:13;:15::i;:::-;:23;22634:1061;;22691:13;;22684:4;:20;22680:1015;;;22729:14;22746:17;:23;22764:4;22746:23;;;;;;;;;;;;22729:40;;22863:1;11809:8;22835:6;:24;:29;22831:845;;23500:113;23517:1;23507:6;:11;23500:113;;23560:17;:25;23578:6;;;;;;;23560:25;;;;;;;;;;;;23551:34;;23500:113;;;23646:6;23639:13;;;;;;22831:845;22706:989;22680:1015;22634:1061;23723:31;;;;;;;;;;;;;;22487:1275;;;;:::o;57513:191::-;57587:16;57606:6;;;;;;;;;;;57587:25;;57632:8;57623:6;;:17;;;;;;;;;;;;;;;;;;57687:8;57656:40;;57677:8;57656:40;;;;;;;;;;;;57576:128;57513:191;:::o;16111:296::-;16166:7;16373:15;:13;:15::i;:::-;16357:13;;:31;16350:38;;16111:296;:::o;43465:112::-;43542:27;43552:2;43556:8;43542:27;;;;;;;;;;;;:9;:27::i;:::-;43465:112;;:::o;33825:399::-;33992:31;34005:4;34011:2;34015:7;33992:12;:31::i;:::-;34056:1;34038:2;:14;;;:19;34034:183;;34077:56;34108:4;34114:2;34118:7;34127:5;34077:30;:56::i;:::-;34072:145;;34161:40;;;;;;;;;;;;;;34072:145;34034:183;33825:399;;;;:::o;75482:118::-;75542:13;75580:12;75573:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75482:118;:::o;57998:723::-;58054:13;58284:1;58275:5;:10;58271:53;;58302:10;;;;;;;;;;;;;;;;;;;;;58271:53;58334:12;58349:5;58334:20;;58365:14;58390:78;58405:1;58397:4;:9;58390:78;;58423:8;;;;;:::i;:::-;;;;58454:2;58446:10;;;;;:::i;:::-;;;58390:78;;;58478:19;58510:6;58500:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58478:39;;58528:154;58544:1;58535:5;:10;58528:154;;58572:1;58562:11;;;;;:::i;:::-;;;58639:2;58631:5;:10;;;;:::i;:::-;58618:2;:24;;;;:::i;:::-;58605:39;;58588:6;58595;58588:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;58668:2;58659:11;;;;;:::i;:::-;;;58528:154;;;58706:6;58692:21;;;;;57998:723;;;;:::o;17189:178::-;17250:7;11033:13;11171:2;17278:18;:25;17297:5;17278:25;;;;;;;;;;;;;;;;:50;;17277:82;17270:89;;17189:178;;;:::o;29030:479::-;29132:27;29161:23;29202:38;29243:15;:24;29259:7;29243:24;;;;;;;;;;;29202:65;;29414:18;29391:41;;29471:19;29465:26;29446:45;;29376:126;29030:479;;;:::o;28258:659::-;28407:11;28572:16;28565:5;28561:28;28552:37;;28732:16;28721:9;28717:32;28704:45;;28882:15;28871:9;28868:30;28860:5;28849:9;28846:20;28843:56;28833:66;;28258:659;;;;;:::o;34886:159::-;;;;;:::o;48942:311::-;49077:7;49097:16;12213:3;49123:19;:41;;49097:68;;12213:3;49191:31;49202:4;49208:2;49212:9;49191:10;:31::i;:::-;49183:40;;:62;;49176:69;;;48942:311;;;;;:::o;24310:450::-;24390:14;24558:16;24551:5;24547:28;24538:37;;24735:5;24721:11;24696:23;24692:41;24689:52;24682:5;24679:63;24669:73;;24310:450;;;;:::o;35710:158::-;;;;;:::o;54797:98::-;54850:7;54877:10;54870:17;;54797:98;:::o;42692:689::-;42823:19;42829:2;42833:8;42823:5;:19::i;:::-;42902:1;42884:2;:14;;;:19;42880:483;;42924:11;42938:13;;42924:27;;42970:13;42992:8;42986:3;:14;42970:30;;43019:233;43050:62;43089:1;43093:2;43097:7;;;;;;43106:5;43050:30;:62::i;:::-;43045:167;;43148:40;;;;;;;;;;;;;;43045:167;43247:3;43239:5;:11;43019:233;;43334:3;43317:13;;:20;43313:34;;43339:8;;;43313:34;42905:458;;42880:483;42692:689;;;:::o;36308:716::-;36471:4;36517:2;36492:45;;;36538:19;:17;:19::i;:::-;36559:4;36565:7;36574:5;36492:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36488:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36792:1;36775:6;:13;:18;36771:235;;36821:40;;;;;;;;;;;;;;36771:235;36964:6;36958:13;36949:6;36945:2;36941:15;36934:38;36488:529;36661:54;;;36651:64;;;:6;:64;;;;36644:71;;;36308:716;;;;;;:::o;48643:147::-;48780:6;48643:147;;;;;:::o;37486:2454::-;37559:20;37582:13;;37559:36;;37622:1;37610:8;:13;37606:44;;37632:18;;;;;;;;;;;;;;37606:44;37663:61;37693:1;37697:2;37701:12;37715:8;37663:21;:61::i;:::-;38207:1;11171:2;38177:1;:26;;38176:32;38164:8;:45;38138:18;:22;38157:2;38138:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38486:139;38523:2;38577:33;38600:1;38604:2;38608:1;38577:14;:33::i;:::-;38544:30;38565:8;38544:20;:30::i;:::-;:66;38486:18;:139::i;:::-;38452:17;:31;38470:12;38452:31;;;;;;;;;;;:173;;;;38642:16;38673:11;38702:8;38687:12;:23;38673:37;;38957:16;38953:2;38949:25;38937:37;;39329:12;39289:8;39248:1;39186:25;39127:1;39066;39039:335;39454:1;39440:12;39436:20;39394:346;39495:3;39486:7;39483:16;39394:346;;39713:7;39703:8;39700:1;39673:25;39670:1;39667;39662:59;39548:1;39539:7;39535:15;39524:26;;39394:346;;;39398:77;39785:1;39773:8;:13;39769:45;;39795:19;;;;;;;;;;;;;;39769:45;39847:3;39831:13;:19;;;;37912:1950;;39872:60;39901:1;39905:2;39909:12;39923:8;39872:20;:60::i;:::-;37548:2392;37486:2454;;:::o;24862:324::-;24932:14;25165:1;25155:8;25152:15;25126:24;25122:46;25112:56;;24862: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:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:116::-;5937:21;5952:5;5937:21;:::i;:::-;5930:5;5927:32;5917:60;;5973:1;5970;5963:12;5917:60;5867:116;:::o;5989:133::-;6032:5;6070:6;6057:20;6048:29;;6086:30;6110:5;6086:30;:::i;:::-;5989:133;;;;:::o;6128:323::-;6184:6;6233:2;6221:9;6212:7;6208:23;6204:32;6201:119;;;6239:79;;:::i;:::-;6201:119;6359:1;6384:50;6426:7;6417:6;6406:9;6402:22;6384:50;:::i;:::-;6374:60;;6330:114;6128:323;;;;:::o;6457:117::-;6566:1;6563;6556:12;6580:117;6689:1;6686;6679:12;6703:180;6751:77;6748:1;6741:88;6848:4;6845:1;6838:15;6872:4;6869:1;6862:15;6889:281;6972:27;6994:4;6972:27;:::i;:::-;6964:6;6960:40;7102:6;7090:10;7087:22;7066:18;7054:10;7051:34;7048:62;7045:88;;;7113:18;;:::i;:::-;7045:88;7153:10;7149:2;7142:22;6932:238;6889:281;;:::o;7176:129::-;7210:6;7237:20;;:::i;:::-;7227:30;;7266:33;7294:4;7286:6;7266:33;:::i;:::-;7176:129;;;:::o;7311:308::-;7373:4;7463:18;7455:6;7452:30;7449:56;;;7485:18;;:::i;:::-;7449:56;7523:29;7545:6;7523:29;:::i;:::-;7515:37;;7607:4;7601;7597:15;7589:23;;7311:308;;;:::o;7625:146::-;7722:6;7717:3;7712;7699:30;7763:1;7754:6;7749:3;7745:16;7738:27;7625:146;;;:::o;7777:425::-;7855:5;7880:66;7896:49;7938:6;7896:49;:::i;:::-;7880:66;:::i;:::-;7871:75;;7969:6;7962:5;7955:21;8007:4;8000:5;7996:16;8045:3;8036:6;8031:3;8027:16;8024:25;8021:112;;;8052:79;;:::i;:::-;8021:112;8142:54;8189:6;8184:3;8179;8142:54;:::i;:::-;7861:341;7777:425;;;;;:::o;8222:340::-;8278:5;8327:3;8320:4;8312:6;8308:17;8304:27;8294:122;;8335:79;;:::i;:::-;8294:122;8452:6;8439:20;8477:79;8552:3;8544:6;8537:4;8529:6;8525:17;8477:79;:::i;:::-;8468:88;;8284:278;8222:340;;;;:::o;8568:509::-;8637:6;8686:2;8674:9;8665:7;8661:23;8657:32;8654:119;;;8692:79;;:::i;:::-;8654:119;8840:1;8829:9;8825:17;8812:31;8870:18;8862:6;8859:30;8856:117;;;8892:79;;:::i;:::-;8856:117;8997:63;9052:7;9043:6;9032:9;9028:22;8997:63;:::i;:::-;8987:73;;8783:287;8568:509;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:468::-;9483:6;9491;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:53;9736:7;9727:6;9716:9;9712:22;9691:53;:::i;:::-;9681:63;;9637:117;9793:2;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9764:115;9418:468;;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:::-;12488:6;12496;12545:2;12533:9;12524:7;12520:23;12516:32;12513:119;;;12551:79;;:::i;:::-;12513:119;12671:1;12696:53;12741:7;12732:6;12721:9;12717:22;12696:53;:::i;:::-;12686:63;;12642:117;12798:2;12824:53;12869:7;12860:6;12849:9;12845:22;12824:53;:::i;:::-;12814:63;;12769:118;12420:474;;;;;:::o;12900:180::-;12948:77;12945:1;12938:88;13045:4;13042:1;13035:15;13069:4;13066:1;13059:15;13086:320;13130:6;13167:1;13161:4;13157:12;13147:22;;13214:1;13208:4;13204:12;13235:18;13225:81;;13291:4;13283:6;13279:17;13269:27;;13225:81;13353:2;13345:6;13342:14;13322:18;13319:38;13316:84;;13372:18;;:::i;:::-;13316:84;13137:269;13086:320;;;:::o;13412:332::-;13533:4;13571:2;13560:9;13556:18;13548:26;;13584:71;13652:1;13641:9;13637:17;13628:6;13584:71;:::i;:::-;13665:72;13733:2;13722:9;13718:18;13709:6;13665:72;:::i;:::-;13412:332;;;;;:::o;13750:137::-;13804:5;13835:6;13829:13;13820:22;;13851:30;13875:5;13851:30;:::i;:::-;13750:137;;;;:::o;13893:345::-;13960:6;14009:2;13997:9;13988:7;13984:23;13980:32;13977:119;;;14015:79;;:::i;:::-;13977:119;14135:1;14160:61;14213:7;14204:6;14193:9;14189:22;14160:61;:::i;:::-;14150:71;;14106:125;13893:345;;;;:::o;14244:181::-;14384:33;14380:1;14372:6;14368:14;14361:57;14244:181;:::o;14431:366::-;14573:3;14594:67;14658:2;14653:3;14594:67;:::i;:::-;14587:74;;14670:93;14759:3;14670:93;:::i;:::-;14788:2;14783:3;14779:12;14772:19;;14431:366;;;:::o;14803:419::-;14969:4;15007:2;14996:9;14992:18;14984:26;;15056:9;15050:4;15046:20;15042:1;15031:9;15027:17;15020:47;15084:131;15210:4;15084:131;:::i;:::-;15076:139;;14803:419;;;:::o;15228:147::-;15329:11;15366:3;15351:18;;15228:147;;;;:::o;15381:114::-;;:::o;15501:398::-;15660:3;15681:83;15762:1;15757:3;15681:83;:::i;:::-;15674:90;;15773:93;15862:3;15773:93;:::i;:::-;15891:1;15886:3;15882:11;15875:18;;15501:398;;;:::o;15905:379::-;16089:3;16111:147;16254:3;16111:147;:::i;:::-;16104:154;;16275:3;16268:10;;15905:379;;;:::o;16290:141::-;16339:4;16362:3;16354:11;;16385:3;16382:1;16375:14;16419:4;16416:1;16406:18;16398:26;;16290:141;;;:::o;16437:93::-;16474:6;16521:2;16516;16509:5;16505:14;16501:23;16491:33;;16437:93;;;:::o;16536:107::-;16580:8;16630:5;16624:4;16620:16;16599:37;;16536:107;;;;:::o;16649:393::-;16718:6;16768:1;16756:10;16752:18;16791:97;16821:66;16810:9;16791:97;:::i;:::-;16909:39;16939:8;16928:9;16909:39;:::i;:::-;16897:51;;16981:4;16977:9;16970:5;16966:21;16957:30;;17030:4;17020:8;17016:19;17009:5;17006:30;16996:40;;16725:317;;16649:393;;;;;:::o;17048:60::-;17076:3;17097:5;17090:12;;17048:60;;;:::o;17114:142::-;17164:9;17197:53;17215:34;17224:24;17242:5;17224:24;:::i;:::-;17215:34;:::i;:::-;17197:53;:::i;:::-;17184:66;;17114:142;;;:::o;17262:75::-;17305:3;17326:5;17319:12;;17262:75;;;:::o;17343:269::-;17453:39;17484:7;17453:39;:::i;:::-;17514:91;17563:41;17587:16;17563:41;:::i;:::-;17555:6;17548:4;17542:11;17514:91;:::i;:::-;17508:4;17501:105;17419:193;17343:269;;;:::o;17618:73::-;17663:3;17618:73;:::o;17697:189::-;17774:32;;:::i;:::-;17815:65;17873:6;17865;17859:4;17815:65;:::i;:::-;17750:136;17697:189;;:::o;17892:186::-;17952:120;17969:3;17962:5;17959:14;17952:120;;;18023:39;18060:1;18053:5;18023:39;:::i;:::-;17996:1;17989:5;17985:13;17976:22;;17952:120;;;17892:186;;:::o;18084:543::-;18185:2;18180:3;18177:11;18174:446;;;18219:38;18251:5;18219:38;:::i;:::-;18303:29;18321:10;18303:29;:::i;:::-;18293:8;18289:44;18486:2;18474:10;18471:18;18468:49;;;18507:8;18492:23;;18468:49;18530:80;18586:22;18604:3;18586:22;:::i;:::-;18576:8;18572:37;18559:11;18530:80;:::i;:::-;18189:431;;18174:446;18084:543;;;:::o;18633:117::-;18687:8;18737:5;18731:4;18727:16;18706:37;;18633:117;;;;:::o;18756:169::-;18800:6;18833:51;18881:1;18877:6;18869:5;18866:1;18862:13;18833:51;:::i;:::-;18829:56;18914:4;18908;18904:15;18894:25;;18807:118;18756:169;;;;:::o;18930:295::-;19006:4;19152:29;19177:3;19171:4;19152:29;:::i;:::-;19144:37;;19214:3;19211:1;19207:11;19201:4;19198:21;19190:29;;18930:295;;;;:::o;19230:1395::-;19347:37;19380:3;19347:37;:::i;:::-;19449:18;19441:6;19438:30;19435:56;;;19471:18;;:::i;:::-;19435:56;19515:38;19547:4;19541:11;19515:38;:::i;:::-;19600:67;19660:6;19652;19646:4;19600:67;:::i;:::-;19694:1;19718:4;19705:17;;19750:2;19742:6;19739:14;19767:1;19762:618;;;;20424:1;20441:6;20438:77;;;20490:9;20485:3;20481:19;20475:26;20466:35;;20438:77;20541:67;20601:6;20594:5;20541:67;:::i;:::-;20535:4;20528:81;20397:222;19732:887;;19762:618;19814:4;19810:9;19802:6;19798:22;19848:37;19880:4;19848:37;:::i;:::-;19907:1;19921:208;19935:7;19932:1;19929:14;19921:208;;;20014:9;20009:3;20005:19;19999:26;19991:6;19984:42;20065:1;20057:6;20053:14;20043:24;;20112:2;20101:9;20097:18;20084:31;;19958:4;19955:1;19951:12;19946:17;;19921:208;;;20157:6;20148:7;20145:19;20142:179;;;20215:9;20210:3;20206:19;20200:26;20258:48;20300:4;20292:6;20288:17;20277:9;20258:48;:::i;:::-;20250:6;20243:64;20165:156;20142:179;20367:1;20363;20355:6;20351:14;20347:22;20341:4;20334:36;19769:611;;;19732:887;;19322:1303;;;19230:1395;;:::o;20631:175::-;20771:27;20767:1;20759:6;20755:14;20748:51;20631:175;:::o;20812:366::-;20954:3;20975:67;21039:2;21034:3;20975:67;:::i;:::-;20968:74;;21051:93;21140:3;21051:93;:::i;:::-;21169:2;21164:3;21160:12;21153:19;;20812:366;;;:::o;21184:419::-;21350:4;21388:2;21377:9;21373:18;21365:26;;21437:9;21431:4;21427:20;21423:1;21412:9;21408:17;21401:47;21465:131;21591:4;21465:131;:::i;:::-;21457:139;;21184:419;;;:::o;21609:180::-;21657:77;21654:1;21647:88;21754:4;21751:1;21744:15;21778:4;21775:1;21768:15;21795:191;21835:3;21854:20;21872:1;21854:20;:::i;:::-;21849:25;;21888:20;21906:1;21888:20;:::i;:::-;21883:25;;21931:1;21928;21924:9;21917:16;;21952:3;21949:1;21946:10;21943:36;;;21959:18;;:::i;:::-;21943:36;21795:191;;;;:::o;21992:165::-;22132:17;22128:1;22120:6;22116:14;22109:41;21992:165;:::o;22163:366::-;22305:3;22326:67;22390:2;22385:3;22326:67;:::i;:::-;22319:74;;22402:93;22491:3;22402:93;:::i;:::-;22520:2;22515:3;22511:12;22504:19;;22163:366;;;:::o;22535:419::-;22701:4;22739:2;22728:9;22724:18;22716:26;;22788:9;22782:4;22778:20;22774:1;22763:9;22759:17;22752:47;22816:131;22942:4;22816:131;:::i;:::-;22808:139;;22535:419;;;:::o;22960:164::-;23100:16;23096:1;23088:6;23084:14;23077:40;22960:164;:::o;23130:366::-;23272:3;23293:67;23357:2;23352:3;23293:67;:::i;:::-;23286:74;;23369:93;23458:3;23369:93;:::i;:::-;23487:2;23482:3;23478:12;23471:19;;23130:366;;;:::o;23502:419::-;23668:4;23706:2;23695:9;23691:18;23683:26;;23755:9;23749:4;23745:20;23741:1;23730:9;23726:17;23719:47;23783:131;23909:4;23783:131;:::i;:::-;23775:139;;23502:419;;;:::o;23927:194::-;23967:4;23987:20;24005:1;23987:20;:::i;:::-;23982:25;;24021:20;24039:1;24021:20;:::i;:::-;24016:25;;24065:1;24062;24058:9;24050:17;;24089:1;24083:4;24080:11;24077:37;;;24094:18;;:::i;:::-;24077:37;23927:194;;;;:::o;24127:410::-;24167:7;24190:20;24208:1;24190:20;:::i;:::-;24185:25;;24224:20;24242:1;24224:20;:::i;:::-;24219:25;;24279:1;24276;24272:9;24301:30;24319:11;24301:30;:::i;:::-;24290:41;;24480:1;24471:7;24467:15;24464:1;24461:22;24441:1;24434:9;24414:83;24391:139;;24510:18;;:::i;:::-;24391:139;24175:362;24127:410;;;;:::o;24543:170::-;24683:22;24679:1;24671:6;24667:14;24660:46;24543:170;:::o;24719:366::-;24861:3;24882:67;24946:2;24941:3;24882:67;:::i;:::-;24875:74;;24958:93;25047:3;24958:93;:::i;:::-;25076:2;25071:3;25067:12;25060:19;;24719:366;;;:::o;25091:419::-;25257:4;25295:2;25284:9;25280:18;25272:26;;25344:9;25338:4;25334:20;25330:1;25319:9;25315:17;25308:47;25372:131;25498:4;25372:131;:::i;:::-;25364:139;;25091:419;;;:::o;25516:164::-;25656:16;25652:1;25644:6;25640:14;25633:40;25516:164;:::o;25686:366::-;25828:3;25849:67;25913:2;25908:3;25849:67;:::i;:::-;25842:74;;25925:93;26014:3;25925:93;:::i;:::-;26043:2;26038:3;26034:12;26027:19;;25686:366;;;:::o;26058:419::-;26224:4;26262:2;26251:9;26247:18;26239:26;;26311:9;26305:4;26301:20;26297:1;26286:9;26282:17;26275:47;26339:131;26465:4;26339:131;:::i;:::-;26331:139;;26058:419;;;:::o;26483:148::-;26585:11;26622:3;26607:18;;26483:148;;;;:::o;26637:390::-;26743:3;26771:39;26804:5;26771:39;:::i;:::-;26826:89;26908:6;26903:3;26826:89;:::i;:::-;26819:96;;26924:65;26982:6;26977:3;26970:4;26963:5;26959:16;26924:65;:::i;:::-;27014:6;27009:3;27005:16;26998:23;;26747:280;26637:390;;;;:::o;27033:155::-;27173:7;27169:1;27161:6;27157:14;27150:31;27033:155;:::o;27194:400::-;27354:3;27375:84;27457:1;27452:3;27375:84;:::i;:::-;27368:91;;27468:93;27557:3;27468:93;:::i;:::-;27586:1;27581:3;27577:11;27570:18;;27194:400;;;:::o;27600:701::-;27881:3;27903:95;27994:3;27985:6;27903:95;:::i;:::-;27896:102;;28015:95;28106:3;28097:6;28015:95;:::i;:::-;28008:102;;28127:148;28271:3;28127:148;:::i;:::-;28120:155;;28292:3;28285:10;;27600:701;;;;;:::o;28307:170::-;28447:22;28443:1;28435:6;28431:14;28424:46;28307:170;:::o;28483:366::-;28625:3;28646:67;28710:2;28705:3;28646:67;:::i;:::-;28639:74;;28722:93;28811:3;28722:93;:::i;:::-;28840:2;28835:3;28831:12;28824:19;;28483:366;;;:::o;28855:419::-;29021:4;29059:2;29048:9;29044:18;29036:26;;29108:9;29102:4;29098:20;29094:1;29083:9;29079:17;29072:47;29136:131;29262:4;29136:131;:::i;:::-;29128:139;;28855:419;;;:::o;29280:225::-;29420:34;29416:1;29408:6;29404:14;29397:58;29489:8;29484:2;29476:6;29472:15;29465:33;29280:225;:::o;29511:366::-;29653:3;29674:67;29738:2;29733:3;29674:67;:::i;:::-;29667:74;;29750:93;29839:3;29750:93;:::i;:::-;29868:2;29863:3;29859:12;29852:19;;29511:366;;;:::o;29883:419::-;30049:4;30087:2;30076:9;30072:18;30064:26;;30136:9;30130:4;30126:20;30122:1;30111:9;30107:17;30100:47;30164:131;30290:4;30164:131;:::i;:::-;30156:139;;29883:419;;;:::o;30308:182::-;30448:34;30444:1;30436:6;30432:14;30425:58;30308:182;:::o;30496:366::-;30638:3;30659:67;30723:2;30718:3;30659:67;:::i;:::-;30652:74;;30735:93;30824:3;30735:93;:::i;:::-;30853:2;30848:3;30844:12;30837:19;;30496:366;;;:::o;30868:419::-;31034:4;31072:2;31061:9;31057:18;31049:26;;31121:9;31115:4;31111:20;31107:1;31096:9;31092:17;31085:47;31149:131;31275:4;31149:131;:::i;:::-;31141:139;;30868:419;;;:::o;31293:233::-;31332:3;31355:24;31373:5;31355:24;:::i;:::-;31346:33;;31401:66;31394:5;31391:77;31388:103;;31471:18;;:::i;:::-;31388:103;31518:1;31511:5;31507:13;31500:20;;31293:233;;;:::o;31532:180::-;31580:77;31577:1;31570:88;31677:4;31674:1;31667:15;31701:4;31698:1;31691:15;31718:185;31758:1;31775:20;31793:1;31775:20;:::i;:::-;31770:25;;31809:20;31827:1;31809:20;:::i;:::-;31804:25;;31848:1;31838:35;;31853:18;;:::i;:::-;31838:35;31895:1;31892;31888:9;31883:14;;31718:185;;;;:::o;31909:176::-;31941:1;31958:20;31976:1;31958:20;:::i;:::-;31953:25;;31992:20;32010:1;31992:20;:::i;:::-;31987:25;;32031:1;32021:35;;32036:18;;:::i;:::-;32021:35;32077:1;32074;32070:9;32065:14;;31909:176;;;;:::o;32091:180::-;32139:77;32136:1;32129:88;32236:4;32233:1;32226:15;32260:4;32257:1;32250:15;32277:98;32328:6;32362:5;32356:12;32346:22;;32277:98;;;:::o;32381:168::-;32464:11;32498:6;32493:3;32486:19;32538:4;32533:3;32529:14;32514:29;;32381:168;;;;:::o;32555:373::-;32641:3;32669:38;32701:5;32669:38;:::i;:::-;32723:70;32786:6;32781:3;32723:70;:::i;:::-;32716:77;;32802:65;32860:6;32855:3;32848:4;32841:5;32837:16;32802:65;:::i;:::-;32892:29;32914:6;32892:29;:::i;:::-;32887:3;32883:39;32876:46;;32645:283;32555:373;;;;:::o;32934:640::-;33129:4;33167:3;33156:9;33152:19;33144:27;;33181:71;33249:1;33238:9;33234:17;33225:6;33181:71;:::i;:::-;33262:72;33330:2;33319:9;33315:18;33306:6;33262:72;:::i;:::-;33344;33412:2;33401:9;33397:18;33388:6;33344:72;:::i;:::-;33463:9;33457:4;33453:20;33448:2;33437:9;33433:18;33426:48;33491:76;33562:4;33553:6;33491:76;:::i;:::-;33483:84;;32934:640;;;;;;;:::o;33580:141::-;33636:5;33667:6;33661:13;33652:22;;33683:32;33709:5;33683:32;:::i;:::-;33580:141;;;;:::o;33727:349::-;33796:6;33845:2;33833:9;33824:7;33820:23;33816:32;33813:119;;;33851:79;;:::i;:::-;33813:119;33971:1;33996:63;34051:7;34042:6;34031:9;34027:22;33996:63;:::i;:::-;33986:73;;33942:127;33727:349;;;;:::o

Swarm Source

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