ETH Price: $3,512.92 (+0.74%)
Gas: 2 Gwei

Token

justsaygm (gm)
 

Overview

Max Total Supply

2,022 gm

Holders

451

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 gm
0xA086c3Bbf195aA18bEe2805d568072b8aF58fbd6
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:
justsaygm

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
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();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of 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 through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 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`.
     *
     * 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 calldata data
    ) external;

    /**
     * @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
    ) external;

    /**
     * @dev Transfers `tokenId` token 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 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.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 {
        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;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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 '';
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    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 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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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 {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * 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) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

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

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

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

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

// File: contracts/gmgm.sol



pragma solidity >=0.8.9 <0.9.0;







contract justsaygm is ERC721A, Ownable, ReentrancyGuard {
    
    using Strings for uint256;
    
    
    uint256 private maxTotalTokens;
    

    string private _currentBaseURI;
    

    uint private _reservedMints;
    

    uint private maxReservedMints = 202;


    mapping(address => uint256) public mintsPerAddress;
    
    
    constructor() ERC721A('justsaygm', 'gm') {
        maxTotalTokens = 2022;

        _currentBaseURI = "ipfs://QmPnYkDUkXn67q5BCPq37G8BE5mqqDPoCX916zFayQaCPx/";
    }
    
    //in case somebody accidentaly sends funds or transaction to contract
    receive() payable external {}
    fallback() payable external {
        revert();
    }
    
    //visualize baseURI
    function _baseURI() internal view virtual override returns (string memory) {
        return _currentBaseURI;
    }
    
    //if we mess up, let's us fix it
    function changeBaseURI(string memory baseURI_) public onlyOwner {
        _currentBaseURI = baseURI_;
    }



    //mint a @param number of NFTs in public sale
    function mint() public nonReentrant {
        require(msg.sender == tx.origin, "Sender is not the same as origin!");
        require(totalSupply() < maxTotalTokens - (maxReservedMints - _reservedMints), "Not enough NFTs left to mint..");
        require(mintsPerAddress[msg.sender] <= 10, "Wallet has already have minted an NFT!");

        _safeMint(msg.sender, 2);
        mintsPerAddress[msg.sender] += 2;
    }
    
    function tokenURI(uint256 tokenId_) public view virtual override returns (string memory) {
        require(_exists(tokenId_), "ERC721Metadata: URI query for nonexistent token");

        tokenId_ += 1;
        string memory baseURI = _baseURI();
        return string(abi.encodePacked(baseURI, tokenId_.toString(), ".json")); 
    }
    
    //reserved NFTs for creator
    function reservedMint(uint number, address recipient) public onlyOwner {
        require(_reservedMints + number <= maxReservedMints, "Not enough Reserved NFTs left to mint..");

        _safeMint(recipient, number);
        mintsPerAddress[recipient] += number;
        _reservedMints += number; 
        
    }
    
    //burn 
    function burnTokens() public onlyOwner {
        maxTotalTokens = totalSupply();
    }
    
    //
    function accountBalance() public onlyOwner view returns(uint) {
        return address(this).balance;
    }
    
    //retrieve all funds recieved from minting
    function withdraw() public onlyOwner {
        uint256 balance = accountBalance();
        require(balance > 0, 'No Funds to withdraw, Balance is 0');

        _withdraw(payable(msg.sender), balance); 
    }
    
    //send the percentage of funds to a shareholder´s wallet
    function _withdraw(address payable account, uint256 amount) internal {
        (bool sent, ) = account.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }
    
    //to see the total amount of reserved mints left 
    function reservedMintsLeft() public onlyOwner view returns(uint) {
        return maxReservedMints - _reservedMints;
    }
    
    //see current state of sale
    //see the current state of the sale
  
   
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"accountBalance","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":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMintsLeft","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":"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":"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"},{"stateMutability":"payable","type":"receive"}]

608060405260ca600d553480156200001657600080fd5b506040518060400160405280600981526020017f6a757374736179676d00000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f676d00000000000000000000000000000000000000000000000000000000000081525081600290816200009491906200046e565b508060039081620000a691906200046e565b50620000b76200012160201b60201c565b6000819055505050620000df620000d36200012660201b60201c565b6200012e60201b60201c565b60016009819055506107e6600a81905550604051806060016040528060368152602001620036fc60369139600b90816200011a91906200046e565b5062000555565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200027657607f821691505b6020821081036200028c576200028b6200022e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002f67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002b7565b620003028683620002b7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200034f6200034962000343846200031a565b62000324565b6200031a565b9050919050565b6000819050919050565b6200036b836200032e565b620003836200037a8262000356565b848454620002c4565b825550505050565b600090565b6200039a6200038b565b620003a781848462000360565b505050565b5b81811015620003cf57620003c360008262000390565b600181019050620003ad565b5050565b601f8211156200041e57620003e88162000292565b620003f384620002a7565b8101602085101562000403578190505b6200041b6200041285620002a7565b830182620003ac565b50505b505050565b600082821c905092915050565b6000620004436000198460080262000423565b1980831691505092915050565b60006200045e838362000430565b9150826002028217905092915050565b6200047982620001f4565b67ffffffffffffffff811115620004955762000494620001ff565b5b620004a182546200025d565b620004ae828285620003d3565b600060209050601f831160018114620004e65760008415620004d1578287015190505b620004dd858262000450565b8655506200054d565b601f198416620004f68662000292565b60005b828110156200052057848901518255600182019150602085019450602081019050620004f9565b868310156200054057848901516200053c601f89168262000430565b8355505b6001600288020188555050505b505050505050565b61319780620005656000396000f3fe60806040526004361061016a5760003560e01c806342842e0e116100d157806395d89b411161008a578063b88d4fde11610064578063b88d4fde146104fb578063c87b56dd14610524578063e985e9c514610561578063f2fde38b1461059e57610171565b806395d89b411461047c578063a22cb465146104a7578063b0a1c1c4146104d057610171565b806342842e0e1461036c5780634520e916146103955780636352211e146103c057806370a08231146103fd578063715018a61461043a5780638da5cb5b1461045157610171565b806318160ddd1161012357806318160ddd1461027257806318df64031461029d57806323b872dd146102c65780633023eba6146102ef57806339a0c6f91461032c5780633ccfd60b1461035557610171565b806301ffc9a71461017657806306fdde03146101b357806308003f78146101de578063081812fc146101f5578063095ea7b3146102325780631249c58b1461025b57610171565b3661017157005b600080fd5b34801561018257600080fd5b5061019d60048036038101906101989190611f45565b6105c7565b6040516101aa9190611f8d565b60405180910390f35b3480156101bf57600080fd5b506101c8610659565b6040516101d59190612041565b60405180910390f35b3480156101ea57600080fd5b506101f36106eb565b005b34801561020157600080fd5b5061021c60048036038101906102179190612099565b610703565b6040516102299190612107565b60405180910390f35b34801561023e57600080fd5b506102596004803603810190610254919061214e565b61077f565b005b34801561026757600080fd5b506102706108c0565b005b34801561027e57600080fd5b50610287610acf565b604051610294919061219d565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906121b8565b610ae6565b005b3480156102d257600080fd5b506102ed60048036038101906102e891906121f8565b610bbd565b005b3480156102fb57600080fd5b506103166004803603810190610311919061224b565b610edf565b604051610323919061219d565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e91906123ad565b610ef7565b005b34801561036157600080fd5b5061036a610f12565b005b34801561037857600080fd5b50610393600480360381019061038e91906121f8565b610f76565b005b3480156103a157600080fd5b506103aa610f96565b6040516103b7919061219d565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612099565b610fb5565b6040516103f49190612107565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f919061224b565b610fc7565b604051610431919061219d565b60405180910390f35b34801561044657600080fd5b5061044f61107f565b005b34801561045d57600080fd5b50610466611093565b6040516104739190612107565b60405180910390f35b34801561048857600080fd5b506104916110bd565b60405161049e9190612041565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190612422565b61114f565b005b3480156104dc57600080fd5b506104e56112c6565b6040516104f2919061219d565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190612503565b6112d6565b005b34801561053057600080fd5b5061054b60048036038101906105469190612099565b611349565b6040516105589190612041565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190612586565b6113e0565b6040516105959190611f8d565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c0919061224b565b611474565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061062257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106525750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610668906125f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610694906125f5565b80156106e15780601f106106b6576101008083540402835291602001916106e1565b820191906000526020600020905b8154815290600101906020018083116106c457829003601f168201915b5050505050905090565b6106f36114f7565b6106fb610acf565b600a81905550565b600061070e82611575565b610744576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078a82610fb5565b90508073ffffffffffffffffffffffffffffffffffffffff166107ab6115d4565b73ffffffffffffffffffffffffffffffffffffffff161461080e576107d7816107d26115d4565b6113e0565b61080d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600260095403610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc90612672565b60405180910390fd5b60026009819055503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097290612704565b60405180910390fd5b600c54600d5461098b9190612753565b600a546109989190612753565b6109a0610acf565b106109e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d7906127d3565b60405180910390fd5b600a600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90612865565b60405180910390fd5b610a6e3360026115dc565b6002600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610abe9190612885565b925050819055506001600981905550565b6000610ad96115fa565b6001546000540303905090565b610aee6114f7565b600d5482600c54610aff9190612885565b1115610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b379061294d565b60405180910390fd5b610b4a81836115dc565b81600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b999190612885565b9250508190555081600c6000828254610bb29190612885565b925050819055505050565b6000610bc8826115ff565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c2f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3b846116cb565b91509150610c518187610c4c6115d4565b6116ed565b610c9d57610c6686610c616115d4565b6113e0565b610c9c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d03576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d108686866001611731565b8015610d1b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610de985610dc5888887611737565b7c02000000000000000000000000000000000000000000000000000000001761175f565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e6f5760006001850190506000600460008381526020019081526020016000205403610e6d576000548114610e6c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ed7868686600161178a565b505050505050565b600e6020528060005260406000206000915090505481565b610eff6114f7565b80600b9081610f0e9190612b19565b5050565b610f1a6114f7565b6000610f246112c6565b905060008111610f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6090612c5d565b60405180910390fd5b610f733382611790565b50565b610f91838383604051806020016040528060008152506112d6565b505050565b6000610fa06114f7565b600c54600d54610fb09190612753565b905090565b6000610fc0826115ff565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110876114f7565b6110916000611841565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110cc906125f5565b80601f01602080910402602001604051908101604052809291908181526020018280546110f8906125f5565b80156111455780601f1061111a57610100808354040283529160200191611145565b820191906000526020600020905b81548152906001019060200180831161112857829003601f168201915b5050505050905090565b6111576115d4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111bb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111c86115d4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112756115d4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112ba9190611f8d565b60405180910390a35050565b60006112d06114f7565b47905090565b6112e1848484610bbd565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113435761130c84848484611907565b611342576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061135482611575565b611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a90612cef565b60405180910390fd5b6001826113a09190612885565b915060006113ac611a57565b9050806113b884611ae9565b6040516020016113c9929190612d97565b604051602081830303815290604052915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61147c6114f7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290612e38565b60405180910390fd5b6114f481611841565b50565b6114ff611c49565b73ffffffffffffffffffffffffffffffffffffffff1661151d611093565b73ffffffffffffffffffffffffffffffffffffffff1614611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a90612ea4565b60405180910390fd5b565b6000816115806115fa565b1115801561158f575060005482105b80156115cd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6115f6828260405180602001604052806000815250611c51565b5050565b600090565b6000808290508061160e6115fa565b11611694576000548110156116935760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611691575b6000810361168757600460008360019003935083815260200190815260200160002054905061165d565b80925050506116c6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861174e868684611cee565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516117b690612ef5565b60006040518083038185875af1925050503d80600081146117f3576040519150601f19603f3d011682016040523d82523d6000602084013e6117f8565b606091505b505090508061183c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183390612f56565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261192d6115d4565b8786866040518563ffffffff1660e01b815260040161194f9493929190612fcb565b6020604051808303816000875af192505050801561198b57506040513d601f19601f82011682018060405250810190611988919061302c565b60015b611a04573d80600081146119bb576040519150601f19603f3d011682016040523d82523d6000602084013e6119c0565b606091505b5060008151036119fc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611a66906125f5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a92906125f5565b8015611adf5780601f10611ab457610100808354040283529160200191611adf565b820191906000526020600020905b815481529060010190602001808311611ac257829003601f168201915b5050505050905090565b606060008203611b30576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c44565b600082905060005b60008214611b62578080611b4b90613059565b915050600a82611b5b91906130d0565b9150611b38565b60008167ffffffffffffffff811115611b7e57611b7d612282565b5b6040519080825280601f01601f191660200182016040528015611bb05781602001600182028036833780820191505090505b5090505b60008514611c3d57600182611bc99190612753565b9150600a85611bd89190613101565b6030611be49190612885565b60f81b818381518110611bfa57611bf9613132565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c3691906130d0565b9450611bb4565b8093505050505b919050565b600033905090565b611c5b8383611cf7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ce957600080549050600083820390505b611c9b6000868380600101945086611907565b611cd1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c88578160005414611ce657600080fd5b50505b505050565b60009392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d63576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611d9d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611daa6000848385611731565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e2183611e126000866000611737565b611e1b85611ec9565b1761175f565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611e4557806000819055505050611ec4600084838561178a565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f2281611eed565b8114611f2d57600080fd5b50565b600081359050611f3f81611f19565b92915050565b600060208284031215611f5b57611f5a611ee3565b5b6000611f6984828501611f30565b91505092915050565b60008115159050919050565b611f8781611f72565b82525050565b6000602082019050611fa26000830184611f7e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611fe2578082015181840152602081019050611fc7565b83811115611ff1576000848401525b50505050565b6000601f19601f8301169050919050565b600061201382611fa8565b61201d8185611fb3565b935061202d818560208601611fc4565b61203681611ff7565b840191505092915050565b6000602082019050818103600083015261205b8184612008565b905092915050565b6000819050919050565b61207681612063565b811461208157600080fd5b50565b6000813590506120938161206d565b92915050565b6000602082840312156120af576120ae611ee3565b5b60006120bd84828501612084565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120f1826120c6565b9050919050565b612101816120e6565b82525050565b600060208201905061211c60008301846120f8565b92915050565b61212b816120e6565b811461213657600080fd5b50565b60008135905061214881612122565b92915050565b6000806040838503121561216557612164611ee3565b5b600061217385828601612139565b925050602061218485828601612084565b9150509250929050565b61219781612063565b82525050565b60006020820190506121b2600083018461218e565b92915050565b600080604083850312156121cf576121ce611ee3565b5b60006121dd85828601612084565b92505060206121ee85828601612139565b9150509250929050565b60008060006060848603121561221157612210611ee3565b5b600061221f86828701612139565b935050602061223086828701612139565b925050604061224186828701612084565b9150509250925092565b60006020828403121561226157612260611ee3565b5b600061226f84828501612139565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122ba82611ff7565b810181811067ffffffffffffffff821117156122d9576122d8612282565b5b80604052505050565b60006122ec611ed9565b90506122f882826122b1565b919050565b600067ffffffffffffffff82111561231857612317612282565b5b61232182611ff7565b9050602081019050919050565b82818337600083830152505050565b600061235061234b846122fd565b6122e2565b90508281526020810184848401111561236c5761236b61227d565b5b61237784828561232e565b509392505050565b600082601f83011261239457612393612278565b5b81356123a484826020860161233d565b91505092915050565b6000602082840312156123c3576123c2611ee3565b5b600082013567ffffffffffffffff8111156123e1576123e0611ee8565b5b6123ed8482850161237f565b91505092915050565b6123ff81611f72565b811461240a57600080fd5b50565b60008135905061241c816123f6565b92915050565b6000806040838503121561243957612438611ee3565b5b600061244785828601612139565b92505060206124588582860161240d565b9150509250929050565b600067ffffffffffffffff82111561247d5761247c612282565b5b61248682611ff7565b9050602081019050919050565b60006124a66124a184612462565b6122e2565b9050828152602081018484840111156124c2576124c161227d565b5b6124cd84828561232e565b509392505050565b600082601f8301126124ea576124e9612278565b5b81356124fa848260208601612493565b91505092915050565b6000806000806080858703121561251d5761251c611ee3565b5b600061252b87828801612139565b945050602061253c87828801612139565b935050604061254d87828801612084565b925050606085013567ffffffffffffffff81111561256e5761256d611ee8565b5b61257a878288016124d5565b91505092959194509250565b6000806040838503121561259d5761259c611ee3565b5b60006125ab85828601612139565b92505060206125bc85828601612139565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061260d57607f821691505b6020821081036126205761261f6125c6565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061265c601f83611fb3565b915061266782612626565b602082019050919050565b6000602082019050818103600083015261268b8161264f565b9050919050565b7f53656e646572206973206e6f74207468652073616d65206173206f726967696e60008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b60006126ee602183611fb3565b91506126f982612692565b604082019050919050565b6000602082019050818103600083015261271d816126e1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061275e82612063565b915061276983612063565b92508282101561277c5761277b612724565b5b828203905092915050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b60006127bd601e83611fb3565b91506127c882612787565b602082019050919050565b600060208201905081810360008301526127ec816127b0565b9050919050565b7f57616c6c65742068617320616c72656164792068617665206d696e746564206160008201527f6e204e4654210000000000000000000000000000000000000000000000000000602082015250565b600061284f602683611fb3565b915061285a826127f3565b604082019050919050565b6000602082019050818103600083015261287e81612842565b9050919050565b600061289082612063565b915061289b83612063565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128d0576128cf612724565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f60008201527f206d696e742e2e00000000000000000000000000000000000000000000000000602082015250565b6000612937602783611fb3565b9150612942826128db565b604082019050919050565b600060208201905081810360008301526129668161292a565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129cf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612992565b6129d98683612992565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612a16612a11612a0c84612063565b6129f1565b612063565b9050919050565b6000819050919050565b612a30836129fb565b612a44612a3c82612a1d565b84845461299f565b825550505050565b600090565b612a59612a4c565b612a64818484612a27565b505050565b5b81811015612a8857612a7d600082612a51565b600181019050612a6a565b5050565b601f821115612acd57612a9e8161296d565b612aa784612982565b81016020851015612ab6578190505b612aca612ac285612982565b830182612a69565b50505b505050565b600082821c905092915050565b6000612af060001984600802612ad2565b1980831691505092915050565b6000612b098383612adf565b9150826002028217905092915050565b612b2282611fa8565b67ffffffffffffffff811115612b3b57612b3a612282565b5b612b4582546125f5565b612b50828285612a8c565b600060209050601f831160018114612b835760008415612b71578287015190505b612b7b8582612afd565b865550612be3565b601f198416612b918661296d565b60005b82811015612bb957848901518255600182019150602085019450602081019050612b94565b86831015612bd65784890151612bd2601f891682612adf565b8355505b6001600288020188555050505b505050505050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c47602283611fb3565b9150612c5282612beb565b604082019050919050565b60006020820190508181036000830152612c7681612c3a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612cd9602f83611fb3565b9150612ce482612c7d565b604082019050919050565b60006020820190508181036000830152612d0881612ccc565b9050919050565b600081905092915050565b6000612d2582611fa8565b612d2f8185612d0f565b9350612d3f818560208601611fc4565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612d81600583612d0f565b9150612d8c82612d4b565b600582019050919050565b6000612da38285612d1a565b9150612daf8284612d1a565b9150612dba82612d74565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e22602683611fb3565b9150612e2d82612dc6565b604082019050919050565b60006020820190508181036000830152612e5181612e15565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e8e602083611fb3565b9150612e9982612e58565b602082019050919050565b60006020820190508181036000830152612ebd81612e81565b9050919050565b600081905092915050565b50565b6000612edf600083612ec4565b9150612eea82612ecf565b600082019050919050565b6000612f0082612ed2565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b6000612f40601483611fb3565b9150612f4b82612f0a565b602082019050919050565b60006020820190508181036000830152612f6f81612f33565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f9d82612f76565b612fa78185612f81565b9350612fb7818560208601611fc4565b612fc081611ff7565b840191505092915050565b6000608082019050612fe060008301876120f8565b612fed60208301866120f8565b612ffa604083018561218e565b818103606083015261300c8184612f92565b905095945050505050565b60008151905061302681611f19565b92915050565b60006020828403121561304257613041611ee3565b5b600061305084828501613017565b91505092915050565b600061306482612063565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361309657613095612724565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006130db82612063565b91506130e683612063565b9250826130f6576130f56130a1565b5b828204905092915050565b600061310c82612063565b915061311783612063565b925082613127576131266130a1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220ad5498fc5defc201ae3a2957bd6f6e04c509df46c4ed7565cbbf1ace30430b1464736f6c634300080f0033697066733a2f2f516d506e596b44556b586e3637713542435071333747384245356d717144506f43583931367a46617951614350782f

Deployed Bytecode

0x60806040526004361061016a5760003560e01c806342842e0e116100d157806395d89b411161008a578063b88d4fde11610064578063b88d4fde146104fb578063c87b56dd14610524578063e985e9c514610561578063f2fde38b1461059e57610171565b806395d89b411461047c578063a22cb465146104a7578063b0a1c1c4146104d057610171565b806342842e0e1461036c5780634520e916146103955780636352211e146103c057806370a08231146103fd578063715018a61461043a5780638da5cb5b1461045157610171565b806318160ddd1161012357806318160ddd1461027257806318df64031461029d57806323b872dd146102c65780633023eba6146102ef57806339a0c6f91461032c5780633ccfd60b1461035557610171565b806301ffc9a71461017657806306fdde03146101b357806308003f78146101de578063081812fc146101f5578063095ea7b3146102325780631249c58b1461025b57610171565b3661017157005b600080fd5b34801561018257600080fd5b5061019d60048036038101906101989190611f45565b6105c7565b6040516101aa9190611f8d565b60405180910390f35b3480156101bf57600080fd5b506101c8610659565b6040516101d59190612041565b60405180910390f35b3480156101ea57600080fd5b506101f36106eb565b005b34801561020157600080fd5b5061021c60048036038101906102179190612099565b610703565b6040516102299190612107565b60405180910390f35b34801561023e57600080fd5b506102596004803603810190610254919061214e565b61077f565b005b34801561026757600080fd5b506102706108c0565b005b34801561027e57600080fd5b50610287610acf565b604051610294919061219d565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906121b8565b610ae6565b005b3480156102d257600080fd5b506102ed60048036038101906102e891906121f8565b610bbd565b005b3480156102fb57600080fd5b506103166004803603810190610311919061224b565b610edf565b604051610323919061219d565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e91906123ad565b610ef7565b005b34801561036157600080fd5b5061036a610f12565b005b34801561037857600080fd5b50610393600480360381019061038e91906121f8565b610f76565b005b3480156103a157600080fd5b506103aa610f96565b6040516103b7919061219d565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612099565b610fb5565b6040516103f49190612107565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f919061224b565b610fc7565b604051610431919061219d565b60405180910390f35b34801561044657600080fd5b5061044f61107f565b005b34801561045d57600080fd5b50610466611093565b6040516104739190612107565b60405180910390f35b34801561048857600080fd5b506104916110bd565b60405161049e9190612041565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190612422565b61114f565b005b3480156104dc57600080fd5b506104e56112c6565b6040516104f2919061219d565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190612503565b6112d6565b005b34801561053057600080fd5b5061054b60048036038101906105469190612099565b611349565b6040516105589190612041565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190612586565b6113e0565b6040516105959190611f8d565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c0919061224b565b611474565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061062257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106525750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610668906125f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610694906125f5565b80156106e15780601f106106b6576101008083540402835291602001916106e1565b820191906000526020600020905b8154815290600101906020018083116106c457829003601f168201915b5050505050905090565b6106f36114f7565b6106fb610acf565b600a81905550565b600061070e82611575565b610744576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078a82610fb5565b90508073ffffffffffffffffffffffffffffffffffffffff166107ab6115d4565b73ffffffffffffffffffffffffffffffffffffffff161461080e576107d7816107d26115d4565b6113e0565b61080d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600260095403610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc90612672565b60405180910390fd5b60026009819055503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097290612704565b60405180910390fd5b600c54600d5461098b9190612753565b600a546109989190612753565b6109a0610acf565b106109e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d7906127d3565b60405180910390fd5b600a600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90612865565b60405180910390fd5b610a6e3360026115dc565b6002600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610abe9190612885565b925050819055506001600981905550565b6000610ad96115fa565b6001546000540303905090565b610aee6114f7565b600d5482600c54610aff9190612885565b1115610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b379061294d565b60405180910390fd5b610b4a81836115dc565b81600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b999190612885565b9250508190555081600c6000828254610bb29190612885565b925050819055505050565b6000610bc8826115ff565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c2f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3b846116cb565b91509150610c518187610c4c6115d4565b6116ed565b610c9d57610c6686610c616115d4565b6113e0565b610c9c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d03576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d108686866001611731565b8015610d1b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610de985610dc5888887611737565b7c02000000000000000000000000000000000000000000000000000000001761175f565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e6f5760006001850190506000600460008381526020019081526020016000205403610e6d576000548114610e6c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ed7868686600161178a565b505050505050565b600e6020528060005260406000206000915090505481565b610eff6114f7565b80600b9081610f0e9190612b19565b5050565b610f1a6114f7565b6000610f246112c6565b905060008111610f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6090612c5d565b60405180910390fd5b610f733382611790565b50565b610f91838383604051806020016040528060008152506112d6565b505050565b6000610fa06114f7565b600c54600d54610fb09190612753565b905090565b6000610fc0826115ff565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110876114f7565b6110916000611841565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110cc906125f5565b80601f01602080910402602001604051908101604052809291908181526020018280546110f8906125f5565b80156111455780601f1061111a57610100808354040283529160200191611145565b820191906000526020600020905b81548152906001019060200180831161112857829003601f168201915b5050505050905090565b6111576115d4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111bb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111c86115d4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112756115d4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112ba9190611f8d565b60405180910390a35050565b60006112d06114f7565b47905090565b6112e1848484610bbd565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113435761130c84848484611907565b611342576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061135482611575565b611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a90612cef565b60405180910390fd5b6001826113a09190612885565b915060006113ac611a57565b9050806113b884611ae9565b6040516020016113c9929190612d97565b604051602081830303815290604052915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61147c6114f7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290612e38565b60405180910390fd5b6114f481611841565b50565b6114ff611c49565b73ffffffffffffffffffffffffffffffffffffffff1661151d611093565b73ffffffffffffffffffffffffffffffffffffffff1614611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a90612ea4565b60405180910390fd5b565b6000816115806115fa565b1115801561158f575060005482105b80156115cd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6115f6828260405180602001604052806000815250611c51565b5050565b600090565b6000808290508061160e6115fa565b11611694576000548110156116935760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611691575b6000810361168757600460008360019003935083815260200190815260200160002054905061165d565b80925050506116c6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861174e868684611cee565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516117b690612ef5565b60006040518083038185875af1925050503d80600081146117f3576040519150601f19603f3d011682016040523d82523d6000602084013e6117f8565b606091505b505090508061183c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183390612f56565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261192d6115d4565b8786866040518563ffffffff1660e01b815260040161194f9493929190612fcb565b6020604051808303816000875af192505050801561198b57506040513d601f19601f82011682018060405250810190611988919061302c565b60015b611a04573d80600081146119bb576040519150601f19603f3d011682016040523d82523d6000602084013e6119c0565b606091505b5060008151036119fc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611a66906125f5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a92906125f5565b8015611adf5780601f10611ab457610100808354040283529160200191611adf565b820191906000526020600020905b815481529060010190602001808311611ac257829003601f168201915b5050505050905090565b606060008203611b30576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c44565b600082905060005b60008214611b62578080611b4b90613059565b915050600a82611b5b91906130d0565b9150611b38565b60008167ffffffffffffffff811115611b7e57611b7d612282565b5b6040519080825280601f01601f191660200182016040528015611bb05781602001600182028036833780820191505090505b5090505b60008514611c3d57600182611bc99190612753565b9150600a85611bd89190613101565b6030611be49190612885565b60f81b818381518110611bfa57611bf9613132565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c3691906130d0565b9450611bb4565b8093505050505b919050565b600033905090565b611c5b8383611cf7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ce957600080549050600083820390505b611c9b6000868380600101945086611907565b611cd1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c88578160005414611ce657600080fd5b50505b505050565b60009392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d63576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611d9d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611daa6000848385611731565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e2183611e126000866000611737565b611e1b85611ec9565b1761175f565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611e4557806000819055505050611ec4600084838561178a565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f2281611eed565b8114611f2d57600080fd5b50565b600081359050611f3f81611f19565b92915050565b600060208284031215611f5b57611f5a611ee3565b5b6000611f6984828501611f30565b91505092915050565b60008115159050919050565b611f8781611f72565b82525050565b6000602082019050611fa26000830184611f7e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611fe2578082015181840152602081019050611fc7565b83811115611ff1576000848401525b50505050565b6000601f19601f8301169050919050565b600061201382611fa8565b61201d8185611fb3565b935061202d818560208601611fc4565b61203681611ff7565b840191505092915050565b6000602082019050818103600083015261205b8184612008565b905092915050565b6000819050919050565b61207681612063565b811461208157600080fd5b50565b6000813590506120938161206d565b92915050565b6000602082840312156120af576120ae611ee3565b5b60006120bd84828501612084565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120f1826120c6565b9050919050565b612101816120e6565b82525050565b600060208201905061211c60008301846120f8565b92915050565b61212b816120e6565b811461213657600080fd5b50565b60008135905061214881612122565b92915050565b6000806040838503121561216557612164611ee3565b5b600061217385828601612139565b925050602061218485828601612084565b9150509250929050565b61219781612063565b82525050565b60006020820190506121b2600083018461218e565b92915050565b600080604083850312156121cf576121ce611ee3565b5b60006121dd85828601612084565b92505060206121ee85828601612139565b9150509250929050565b60008060006060848603121561221157612210611ee3565b5b600061221f86828701612139565b935050602061223086828701612139565b925050604061224186828701612084565b9150509250925092565b60006020828403121561226157612260611ee3565b5b600061226f84828501612139565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122ba82611ff7565b810181811067ffffffffffffffff821117156122d9576122d8612282565b5b80604052505050565b60006122ec611ed9565b90506122f882826122b1565b919050565b600067ffffffffffffffff82111561231857612317612282565b5b61232182611ff7565b9050602081019050919050565b82818337600083830152505050565b600061235061234b846122fd565b6122e2565b90508281526020810184848401111561236c5761236b61227d565b5b61237784828561232e565b509392505050565b600082601f83011261239457612393612278565b5b81356123a484826020860161233d565b91505092915050565b6000602082840312156123c3576123c2611ee3565b5b600082013567ffffffffffffffff8111156123e1576123e0611ee8565b5b6123ed8482850161237f565b91505092915050565b6123ff81611f72565b811461240a57600080fd5b50565b60008135905061241c816123f6565b92915050565b6000806040838503121561243957612438611ee3565b5b600061244785828601612139565b92505060206124588582860161240d565b9150509250929050565b600067ffffffffffffffff82111561247d5761247c612282565b5b61248682611ff7565b9050602081019050919050565b60006124a66124a184612462565b6122e2565b9050828152602081018484840111156124c2576124c161227d565b5b6124cd84828561232e565b509392505050565b600082601f8301126124ea576124e9612278565b5b81356124fa848260208601612493565b91505092915050565b6000806000806080858703121561251d5761251c611ee3565b5b600061252b87828801612139565b945050602061253c87828801612139565b935050604061254d87828801612084565b925050606085013567ffffffffffffffff81111561256e5761256d611ee8565b5b61257a878288016124d5565b91505092959194509250565b6000806040838503121561259d5761259c611ee3565b5b60006125ab85828601612139565b92505060206125bc85828601612139565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061260d57607f821691505b6020821081036126205761261f6125c6565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061265c601f83611fb3565b915061266782612626565b602082019050919050565b6000602082019050818103600083015261268b8161264f565b9050919050565b7f53656e646572206973206e6f74207468652073616d65206173206f726967696e60008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b60006126ee602183611fb3565b91506126f982612692565b604082019050919050565b6000602082019050818103600083015261271d816126e1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061275e82612063565b915061276983612063565b92508282101561277c5761277b612724565b5b828203905092915050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b60006127bd601e83611fb3565b91506127c882612787565b602082019050919050565b600060208201905081810360008301526127ec816127b0565b9050919050565b7f57616c6c65742068617320616c72656164792068617665206d696e746564206160008201527f6e204e4654210000000000000000000000000000000000000000000000000000602082015250565b600061284f602683611fb3565b915061285a826127f3565b604082019050919050565b6000602082019050818103600083015261287e81612842565b9050919050565b600061289082612063565b915061289b83612063565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128d0576128cf612724565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f60008201527f206d696e742e2e00000000000000000000000000000000000000000000000000602082015250565b6000612937602783611fb3565b9150612942826128db565b604082019050919050565b600060208201905081810360008301526129668161292a565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129cf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612992565b6129d98683612992565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612a16612a11612a0c84612063565b6129f1565b612063565b9050919050565b6000819050919050565b612a30836129fb565b612a44612a3c82612a1d565b84845461299f565b825550505050565b600090565b612a59612a4c565b612a64818484612a27565b505050565b5b81811015612a8857612a7d600082612a51565b600181019050612a6a565b5050565b601f821115612acd57612a9e8161296d565b612aa784612982565b81016020851015612ab6578190505b612aca612ac285612982565b830182612a69565b50505b505050565b600082821c905092915050565b6000612af060001984600802612ad2565b1980831691505092915050565b6000612b098383612adf565b9150826002028217905092915050565b612b2282611fa8565b67ffffffffffffffff811115612b3b57612b3a612282565b5b612b4582546125f5565b612b50828285612a8c565b600060209050601f831160018114612b835760008415612b71578287015190505b612b7b8582612afd565b865550612be3565b601f198416612b918661296d565b60005b82811015612bb957848901518255600182019150602085019450602081019050612b94565b86831015612bd65784890151612bd2601f891682612adf565b8355505b6001600288020188555050505b505050505050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c47602283611fb3565b9150612c5282612beb565b604082019050919050565b60006020820190508181036000830152612c7681612c3a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612cd9602f83611fb3565b9150612ce482612c7d565b604082019050919050565b60006020820190508181036000830152612d0881612ccc565b9050919050565b600081905092915050565b6000612d2582611fa8565b612d2f8185612d0f565b9350612d3f818560208601611fc4565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612d81600583612d0f565b9150612d8c82612d4b565b600582019050919050565b6000612da38285612d1a565b9150612daf8284612d1a565b9150612dba82612d74565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e22602683611fb3565b9150612e2d82612dc6565b604082019050919050565b60006020820190508181036000830152612e5181612e15565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e8e602083611fb3565b9150612e9982612e58565b602082019050919050565b60006020820190508181036000830152612ebd81612e81565b9050919050565b600081905092915050565b50565b6000612edf600083612ec4565b9150612eea82612ecf565b600082019050919050565b6000612f0082612ed2565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b6000612f40601483611fb3565b9150612f4b82612f0a565b602082019050919050565b60006020820190508181036000830152612f6f81612f33565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f9d82612f76565b612fa78185612f81565b9350612fb7818560208601611fc4565b612fc081611ff7565b840191505092915050565b6000608082019050612fe060008301876120f8565b612fed60208301866120f8565b612ffa604083018561218e565b818103606083015261300c8184612f92565b905095945050505050565b60008151905061302681611f19565b92915050565b60006020828403121561304257613041611ee3565b5b600061305084828501613017565b91505092915050565b600061306482612063565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361309657613095612724565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006130db82612063565b91506130e683612063565b9250826130f6576130f56130a1565b5b828204905092915050565b600061310c82612063565b915061311783612063565b925082613127576131266130a1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220ad5498fc5defc201ae3a2957bd6f6e04c509df46c4ed7565cbbf1ace30430b1464736f6c634300080f0033

Deployed Bytecode Sourcemap

53688:3270:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54377:8;;;23474:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29121:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55928:88;;;;;;;;;;;;;:::i;:::-;;31067:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30615:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54768:421;;;;;;;;;;;;;:::i;:::-;;22528:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55584:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40332:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53979:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54596:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56205:212;;;;;;;;;;;;;:::i;:::-;;31957:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56742:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28910:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24153:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8065:103;;;;;;;;;;;;;:::i;:::-;;7417:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29290:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31343:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56036:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32213:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55201:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31722:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8323:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23474:615;23559:4;23874:10;23859:25;;:11;:25;;;;:102;;;;23951:10;23936:25;;:11;:25;;;;23859:102;:179;;;;24028:10;24013:25;;:11;:25;;;;23859:179;23839:199;;23474:615;;;:::o;29121:100::-;29175:13;29208:5;29201:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29121:100;:::o;55928:88::-;7303:13;:11;:13::i;:::-;55995::::1;:11;:13::i;:::-;55978:14;:30;;;;55928:88::o:0;31067:204::-;31135:7;31160:16;31168:7;31160;:16::i;:::-;31155:64;;31185:34;;;;;;;;;;;;;;31155:64;31239:15;:24;31255:7;31239:24;;;;;;;;;;;;;;;;;;;;;31232:31;;31067:204;;;:::o;30615:386::-;30688:13;30704:16;30712:7;30704;:16::i;:::-;30688:32;;30760:5;30737:28;;:19;:17;:19::i;:::-;:28;;;30733:175;;30785:44;30802:5;30809:19;:17;:19::i;:::-;30785:16;:44::i;:::-;30780:128;;30857:35;;;;;;;;;;;;;;30780:128;30733:175;30947:2;30920:15;:24;30936:7;30920:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30985:7;30981:2;30965:28;;30974:5;30965:28;;;;;;;;;;;;30677:324;30615:386;;:::o;54768:421::-;4342:1;4940:7;;:19;4932:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4342:1;5073:7;:18;;;;54837:9:::1;54823:23;;:10;:23;;;54815:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;54956:14;;54937:16;;:33;;;;:::i;:::-;54919:14;;:52;;;;:::i;:::-;54903:13;:11;:13::i;:::-;:68;54895:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;55056:2;55025:15;:27;55041:10;55025:27;;;;;;;;;;;;;;;;:33;;55017:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;55114:24;55124:10;55136:1;55114:9;:24::i;:::-;55180:1;55149:15;:27;55165:10;55149:27;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;4298:1:::0;5252:7;:22;;;;54768:421::o;22528:315::-;22581:7;22809:15;:13;:15::i;:::-;22794:12;;22778:13;;:28;:46;22771:53;;22528:315;:::o;55584:319::-;7303:13;:11;:13::i;:::-;55701:16:::1;;55691:6;55674:14;;:23;;;;:::i;:::-;:43;;55666:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;55774:28;55784:9;55795:6;55774:9;:28::i;:::-;55843:6;55813:15;:26;55829:9;55813:26;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;55878:6;55860:14;;:24;;;;;;;:::i;:::-;;;;;;;;55584:319:::0;;:::o;40332:2800::-;40466:27;40496;40515:7;40496:18;:27::i;:::-;40466:57;;40581:4;40540:45;;40556:19;40540:45;;;40536:86;;40594:28;;;;;;;;;;;;;;40536:86;40636:27;40665:23;40692:28;40712:7;40692:19;:28::i;:::-;40635:85;;;;40820:62;40839:15;40856:4;40862:19;:17;:19::i;:::-;40820:18;:62::i;:::-;40815:174;;40902:43;40919:4;40925:19;:17;:19::i;:::-;40902:16;:43::i;:::-;40897:92;;40954:35;;;;;;;;;;;;;;40897:92;40815:174;41020:1;41006:16;;:2;:16;;;41002:52;;41031:23;;;;;;;;;;;;;;41002:52;41067:43;41089:4;41095:2;41099:7;41108:1;41067:21;:43::i;:::-;41203:15;41200:160;;;41343:1;41322:19;41315:30;41200:160;41738:18;:24;41757:4;41738:24;;;;;;;;;;;;;;;;41736:26;;;;;;;;;;;;41807:18;:22;41826:2;41807:22;;;;;;;;;;;;;;;;41805:24;;;;;;;;;;;42129:145;42166:2;42214:45;42229:4;42235:2;42239:19;42214:14;:45::i;:::-;19756:8;42187:72;42129:18;:145::i;:::-;42100:17;:26;42118:7;42100:26;;;;;;;;;;;:174;;;;42444:1;19756:8;42394:19;:46;:51;42390:626;;42466:19;42498:1;42488:7;:11;42466:33;;42655:1;42621:17;:30;42639:11;42621:30;;;;;;;;;;;;:35;42617:384;;42759:13;;42744:11;:28;42740:242;;42939:19;42906:17;:30;42924:11;42906:30;;;;;;;;;;;:52;;;;42740:242;42617:384;42447:569;42390:626;43063:7;43059:2;43044:27;;43053:4;43044:27;;;;;;;;;;;;43082:42;43103:4;43109:2;43113:7;43122:1;43082:20;:42::i;:::-;40455:2677;;;40332:2800;;;:::o;53979:50::-;;;;;;;;;;;;;;;;;:::o;54596:109::-;7303:13;:11;:13::i;:::-;54689:8:::1;54671:15;:26;;;;;;:::i;:::-;;54596:109:::0;:::o;56205:212::-;7303:13;:11;:13::i;:::-;56253:15:::1;56271:16;:14;:16::i;:::-;56253:34;;56316:1;56306:7;:11;56298:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;56369:39;56387:10;56400:7;56369:9;:39::i;:::-;56242:175;56205:212::o:0;31957:185::-;32095:39;32112:4;32118:2;32122:7;32095:39;;;;;;;;;;;;:16;:39::i;:::-;31957:185;;;:::o;56742:124::-;56801:4;7303:13;:11;:13::i;:::-;56844:14:::1;;56825:16;;:33;;;;:::i;:::-;56818:40;;56742:124:::0;:::o;28910:144::-;28974:7;29017:27;29036:7;29017:18;:27::i;:::-;28994:52;;28910:144;;;:::o;24153:224::-;24217:7;24258:1;24241:19;;:5;:19;;;24237:60;;24269:28;;;;;;;;;;;;;;24237:60;18708:13;24315:18;:25;24334:5;24315:25;;;;;;;;;;;;;;;;:54;24308:61;;24153:224;;;:::o;8065:103::-;7303:13;:11;:13::i;:::-;8130:30:::1;8157:1;8130:18;:30::i;:::-;8065:103::o:0;7417:87::-;7463:7;7490:6;;;;;;;;;;;7483:13;;7417:87;:::o;29290:104::-;29346:13;29379:7;29372:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29290:104;:::o;31343:308::-;31454:19;:17;:19::i;:::-;31442:31;;:8;:31;;;31438:61;;31482:17;;;;;;;;;;;;;;31438:61;31564:8;31512:18;:39;31531:19;:17;:19::i;:::-;31512:39;;;;;;;;;;;;;;;:49;31552:8;31512:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;31624:8;31588:55;;31603:19;:17;:19::i;:::-;31588:55;;;31634:8;31588:55;;;;;;:::i;:::-;;;;;;;;31343:308;;:::o;56036:109::-;56092:4;7303:13;:11;:13::i;:::-;56116:21:::1;56109:28;;56036:109:::0;:::o;32213:399::-;32380:31;32393:4;32399:2;32403:7;32380:12;:31::i;:::-;32444:1;32426:2;:14;;;:19;32422:183;;32465:56;32496:4;32502:2;32506:7;32515:5;32465:30;:56::i;:::-;32460:145;;32549:40;;;;;;;;;;;;;;32460:145;32422:183;32213:399;;;;:::o;55201:338::-;55275:13;55309:17;55317:8;55309:7;:17::i;:::-;55301:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;55403:1;55391:13;;;;;:::i;:::-;;;55415:21;55439:10;:8;:10::i;:::-;55415:34;;55491:7;55500:19;:8;:17;:19::i;:::-;55474:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55460:70;;;55201:338;;;:::o;31722:164::-;31819:4;31843:18;:25;31862:5;31843:25;;;;;;;;;;;;;;;:35;31869:8;31843:35;;;;;;;;;;;;;;;;;;;;;;;;;31836:42;;31722:164;;;;:::o;8323:201::-;7303:13;:11;:13::i;:::-;8432:1:::1;8412:22;;:8;:22;;::::0;8404:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8488:28;8507:8;8488:18;:28::i;:::-;8323:201:::0;:::o;7582:132::-;7657:12;:10;:12::i;:::-;7646:23;;:7;:5;:7::i;:::-;:23;;;7638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7582:132::o;32867:273::-;32924:4;32980:7;32961:15;:13;:15::i;:::-;:26;;:66;;;;;33014:13;;33004:7;:23;32961:66;:152;;;;;33112:1;19478:8;33065:17;:26;33083:7;33065:26;;;;;;;;;;;;:43;:48;32961:152;32941:172;;32867:273;;;:::o;51428:105::-;51488:7;51515:10;51508:17;;51428:105;:::o;33224:104::-;33293:27;33303:2;33307:8;33293:27;;;;;;;;;;;;:9;:27::i;:::-;33224:104;;:::o;22052:92::-;22108:7;22052:92;:::o;25827:1129::-;25894:7;25914:12;25929:7;25914:22;;25997:4;25978:15;:13;:15::i;:::-;:23;25974:915;;26031:13;;26024:4;:20;26020:869;;;26069:14;26086:17;:23;26104:4;26086:23;;;;;;;;;;;;26069:40;;26202:1;19478:8;26175:6;:23;:28;26171:699;;26694:113;26711:1;26701:6;:11;26694:113;;26754:17;:25;26772:6;;;;;;;26754:25;;;;;;;;;;;;26745:34;;26694:113;;;26840:6;26833:13;;;;;;26171:699;26046:843;26020:869;25974:915;26917:31;;;;;;;;;;;;;;25827:1129;;;;:::o;38668:652::-;38763:27;38792:23;38833:53;38889:15;38833:71;;39075:7;39069:4;39062:21;39110:22;39104:4;39097:36;39186:4;39180;39170:21;39147:44;;39282:19;39276:26;39257:45;;39013:300;38668:652;;;:::o;39433:645::-;39575:11;39737:15;39731:4;39727:26;39719:34;;39896:15;39885:9;39881:31;39868:44;;40043:15;40032:9;40029:30;40022:4;40011:9;40008:19;40005:55;39995:65;;39433:645;;;;;:::o;50261:159::-;;;;;:::o;48573:309::-;48708:7;48728:16;19879:3;48754:19;:40;;48728:67;;19879:3;48821:31;48832:4;48838:2;48842:9;48821:10;:31::i;:::-;48813:40;;:61;;48806:68;;;48573:309;;;;;:::o;28401:447::-;28481:14;28649:15;28642:5;28638:27;28629:36;;28823:5;28809:11;28785:22;28781:40;28778:51;28771:5;28768:62;28758:72;;28401:447;;;;:::o;51079:158::-;;;;;:::o;56492:183::-;56573:9;56588:7;:12;;56608:6;56588:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56572:47;;;56638:4;56630:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;56561:114;56492:183;;:::o;8684:191::-;8758:16;8777:6;;;;;;;;;;;8758:25;;8803:8;8794:6;;:17;;;;;;;;;;;;;;;;;;8858:8;8827:40;;8848:8;8827:40;;;;;;;;;;;;8747:128;8684:191;:::o;47083:716::-;47246:4;47292:2;47267:45;;;47313:19;:17;:19::i;:::-;47334:4;47340:7;47349:5;47267:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47263:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47567:1;47550:6;:13;:18;47546:235;;47596:40;;;;;;;;;;;;;;47546:235;47739:6;47733:13;47724:6;47720:2;47716:15;47709:38;47263:529;47436:54;;;47426:64;;;:6;:64;;;;47419:71;;;47083:716;;;;;;:::o;54430:116::-;54490:13;54523:15;54516:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54430:116;:::o;463:723::-;519:13;749:1;740:5;:10;736:53;;767:10;;;;;;;;;;;;;;;;;;;;;736:53;799:12;814:5;799:20;;830:14;855:78;870:1;862:4;:9;855:78;;888:8;;;;;:::i;:::-;;;;919:2;911:10;;;;;:::i;:::-;;;855:78;;;943:19;975:6;965:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;943:39;;993:154;1009:1;1000:5;:10;993:154;;1037:1;1027:11;;;;;:::i;:::-;;;1104:2;1096:5;:10;;;;:::i;:::-;1083:2;:24;;;;:::i;:::-;1070:39;;1053:6;1060;1053:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1133:2;1124:11;;;;;:::i;:::-;;;993:154;;;1171:6;1157:21;;;;;463:723;;;;:::o;5968:98::-;6021:7;6048:10;6041:17;;5968:98;:::o;33744:681::-;33867:19;33873:2;33877:8;33867:5;:19::i;:::-;33946:1;33928:2;:14;;;:19;33924:483;;33968:11;33982:13;;33968:27;;34014:13;34036:8;34030:3;:14;34014:30;;34063:233;34094:62;34133:1;34137:2;34141:7;;;;;;34150:5;34094:30;:62::i;:::-;34089:167;;34192:40;;;;;;;;;;;;;;34089:167;34291:3;34283:5;:11;34063:233;;34378:3;34361:13;;:20;34357:34;;34383:8;;;34357:34;33949:458;;33924:483;33744:681;;;:::o;49458:147::-;49595:6;49458:147;;;;;:::o;34698:1529::-;34763:20;34786:13;;34763:36;;34828:1;34814:16;;:2;:16;;;34810:48;;34839:19;;;;;;;;;;;;;;34810:48;34885:1;34873:8;:13;34869:44;;34895:18;;;;;;;;;;;;;;34869:44;34926:61;34956:1;34960:2;34964:12;34978:8;34926:21;:61::i;:::-;35469:1;18845:2;35440:1;:25;;35439:31;35427:8;:44;35401:18;:22;35420:2;35401:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;35748:139;35785:2;35839:33;35862:1;35866:2;35870:1;35839:14;:33::i;:::-;35806:30;35827:8;35806:20;:30::i;:::-;:66;35748:18;:139::i;:::-;35714:17;:31;35732:12;35714:31;;;;;;;;;;;:173;;;;35904:15;35922:12;35904:30;;35949:11;35978:8;35963:12;:23;35949:37;;36001:101;36053:9;;;;;;36049:2;36028:35;;36045:1;36028:35;;;;;;;;;;;;36097:3;36087:7;:13;36001:101;;36134:3;36118:13;:19;;;;35175:974;;36159:60;36188:1;36192:2;36196:12;36210:8;36159:20;:60::i;:::-;34752:1475;34698:1529;;:::o;30231:322::-;30301:14;30532:1;30522:8;30519:15;30494:23;30490:45;30480:55;;30231:322;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:474::-;5358:6;5366;5415:2;5403:9;5394:7;5390:23;5386:32;5383:119;;;5421:79;;:::i;:::-;5383:119;5541:1;5566:53;5611:7;5602:6;5591:9;5587:22;5566:53;:::i;:::-;5556:63;;5512:117;5668:2;5694:53;5739:7;5730:6;5719:9;5715:22;5694:53;:::i;:::-;5684:63;;5639:118;5290:474;;;;;:::o;5770:619::-;5847:6;5855;5863;5912:2;5900:9;5891:7;5887:23;5883:32;5880:119;;;5918:79;;:::i;:::-;5880:119;6038:1;6063:53;6108:7;6099:6;6088:9;6084:22;6063:53;:::i;:::-;6053:63;;6009:117;6165:2;6191:53;6236:7;6227:6;6216:9;6212:22;6191:53;:::i;:::-;6181:63;;6136:118;6293:2;6319:53;6364:7;6355:6;6344:9;6340:22;6319:53;:::i;:::-;6309:63;;6264:118;5770:619;;;;;:::o;6395:329::-;6454:6;6503:2;6491:9;6482:7;6478:23;6474:32;6471:119;;;6509:79;;:::i;:::-;6471:119;6629:1;6654:53;6699:7;6690:6;6679:9;6675:22;6654:53;:::i;:::-;6644:63;;6600:117;6395:329;;;;:::o;6730:117::-;6839:1;6836;6829:12;6853:117;6962:1;6959;6952:12;6976:180;7024:77;7021:1;7014:88;7121:4;7118:1;7111:15;7145:4;7142:1;7135:15;7162:281;7245:27;7267:4;7245:27;:::i;:::-;7237:6;7233:40;7375:6;7363:10;7360:22;7339:18;7327:10;7324:34;7321:62;7318:88;;;7386:18;;:::i;:::-;7318:88;7426:10;7422:2;7415:22;7205:238;7162:281;;:::o;7449:129::-;7483:6;7510:20;;:::i;:::-;7500:30;;7539:33;7567:4;7559:6;7539:33;:::i;:::-;7449:129;;;:::o;7584:308::-;7646:4;7736:18;7728:6;7725:30;7722:56;;;7758:18;;:::i;:::-;7722:56;7796:29;7818:6;7796:29;:::i;:::-;7788:37;;7880:4;7874;7870:15;7862:23;;7584:308;;;:::o;7898:154::-;7982:6;7977:3;7972;7959:30;8044:1;8035:6;8030:3;8026:16;8019:27;7898:154;;;:::o;8058:412::-;8136:5;8161:66;8177:49;8219:6;8177:49;:::i;:::-;8161:66;:::i;:::-;8152:75;;8250:6;8243:5;8236:21;8288:4;8281:5;8277:16;8326:3;8317:6;8312:3;8308:16;8305:25;8302:112;;;8333:79;;:::i;:::-;8302:112;8423:41;8457:6;8452:3;8447;8423:41;:::i;:::-;8142:328;8058:412;;;;;:::o;8490:340::-;8546:5;8595:3;8588:4;8580:6;8576:17;8572:27;8562:122;;8603:79;;:::i;:::-;8562:122;8720:6;8707:20;8745:79;8820:3;8812:6;8805:4;8797:6;8793:17;8745:79;:::i;:::-;8736:88;;8552:278;8490:340;;;;:::o;8836:509::-;8905:6;8954:2;8942:9;8933:7;8929:23;8925:32;8922:119;;;8960:79;;:::i;:::-;8922:119;9108:1;9097:9;9093:17;9080:31;9138:18;9130:6;9127:30;9124:117;;;9160:79;;:::i;:::-;9124:117;9265:63;9320:7;9311:6;9300:9;9296:22;9265:63;:::i;:::-;9255:73;;9051:287;8836:509;;;;:::o;9351:116::-;9421:21;9436:5;9421:21;:::i;:::-;9414:5;9411:32;9401:60;;9457:1;9454;9447:12;9401:60;9351:116;:::o;9473:133::-;9516:5;9554:6;9541:20;9532:29;;9570:30;9594:5;9570:30;:::i;:::-;9473:133;;;;:::o;9612:468::-;9677:6;9685;9734:2;9722:9;9713:7;9709:23;9705:32;9702:119;;;9740:79;;:::i;:::-;9702:119;9860:1;9885:53;9930:7;9921:6;9910:9;9906:22;9885:53;:::i;:::-;9875:63;;9831:117;9987:2;10013:50;10055:7;10046:6;10035:9;10031:22;10013:50;:::i;:::-;10003:60;;9958:115;9612:468;;;;;:::o;10086:307::-;10147:4;10237:18;10229:6;10226:30;10223:56;;;10259:18;;:::i;:::-;10223:56;10297:29;10319:6;10297:29;:::i;:::-;10289:37;;10381:4;10375;10371:15;10363:23;;10086:307;;;:::o;10399:410::-;10476:5;10501:65;10517:48;10558:6;10517:48;:::i;:::-;10501:65;:::i;:::-;10492:74;;10589:6;10582:5;10575:21;10627:4;10620:5;10616:16;10665:3;10656:6;10651:3;10647:16;10644:25;10641:112;;;10672:79;;:::i;:::-;10641:112;10762:41;10796:6;10791:3;10786;10762:41;:::i;:::-;10482:327;10399:410;;;;;:::o;10828:338::-;10883:5;10932:3;10925:4;10917:6;10913:17;10909:27;10899:122;;10940:79;;:::i;:::-;10899:122;11057:6;11044:20;11082:78;11156:3;11148:6;11141:4;11133:6;11129:17;11082:78;:::i;:::-;11073:87;;10889:277;10828:338;;;;:::o;11172:943::-;11267:6;11275;11283;11291;11340:3;11328:9;11319:7;11315:23;11311:33;11308:120;;;11347:79;;:::i;:::-;11308:120;11467:1;11492:53;11537:7;11528:6;11517:9;11513:22;11492:53;:::i;:::-;11482:63;;11438:117;11594:2;11620:53;11665:7;11656:6;11645:9;11641:22;11620:53;:::i;:::-;11610:63;;11565:118;11722:2;11748:53;11793:7;11784:6;11773:9;11769:22;11748:53;:::i;:::-;11738:63;;11693:118;11878:2;11867:9;11863:18;11850:32;11909:18;11901:6;11898:30;11895:117;;;11931:79;;:::i;:::-;11895:117;12036:62;12090:7;12081:6;12070:9;12066:22;12036:62;:::i;:::-;12026:72;;11821:287;11172:943;;;;;;;:::o;12121:474::-;12189:6;12197;12246:2;12234:9;12225:7;12221:23;12217:32;12214:119;;;12252:79;;:::i;:::-;12214:119;12372:1;12397:53;12442:7;12433:6;12422:9;12418:22;12397:53;:::i;:::-;12387:63;;12343:117;12499:2;12525:53;12570:7;12561:6;12550:9;12546:22;12525:53;:::i;:::-;12515:63;;12470:118;12121:474;;;;;:::o;12601:180::-;12649:77;12646:1;12639:88;12746:4;12743:1;12736:15;12770:4;12767:1;12760:15;12787:320;12831:6;12868:1;12862:4;12858:12;12848:22;;12915:1;12909:4;12905:12;12936:18;12926:81;;12992:4;12984:6;12980:17;12970:27;;12926:81;13054:2;13046:6;13043:14;13023:18;13020:38;13017:84;;13073:18;;:::i;:::-;13017:84;12838:269;12787:320;;;:::o;13113:181::-;13253:33;13249:1;13241:6;13237:14;13230:57;13113:181;:::o;13300:366::-;13442:3;13463:67;13527:2;13522:3;13463:67;:::i;:::-;13456:74;;13539:93;13628:3;13539:93;:::i;:::-;13657:2;13652:3;13648:12;13641:19;;13300:366;;;:::o;13672:419::-;13838:4;13876:2;13865:9;13861:18;13853:26;;13925:9;13919:4;13915:20;13911:1;13900:9;13896:17;13889:47;13953:131;14079:4;13953:131;:::i;:::-;13945:139;;13672:419;;;:::o;14097:220::-;14237:34;14233:1;14225:6;14221:14;14214:58;14306:3;14301:2;14293:6;14289:15;14282:28;14097:220;:::o;14323:366::-;14465:3;14486:67;14550:2;14545:3;14486:67;:::i;:::-;14479:74;;14562:93;14651:3;14562:93;:::i;:::-;14680:2;14675:3;14671:12;14664:19;;14323:366;;;:::o;14695:419::-;14861:4;14899:2;14888:9;14884:18;14876:26;;14948:9;14942:4;14938:20;14934:1;14923:9;14919:17;14912:47;14976:131;15102:4;14976:131;:::i;:::-;14968:139;;14695:419;;;:::o;15120:180::-;15168:77;15165:1;15158:88;15265:4;15262:1;15255:15;15289:4;15286:1;15279:15;15306:191;15346:4;15366:20;15384:1;15366:20;:::i;:::-;15361:25;;15400:20;15418:1;15400:20;:::i;:::-;15395:25;;15439:1;15436;15433:8;15430:34;;;15444:18;;:::i;:::-;15430:34;15489:1;15486;15482:9;15474:17;;15306:191;;;;:::o;15503:180::-;15643:32;15639:1;15631:6;15627:14;15620:56;15503:180;:::o;15689:366::-;15831:3;15852:67;15916:2;15911:3;15852:67;:::i;:::-;15845:74;;15928:93;16017:3;15928:93;:::i;:::-;16046:2;16041:3;16037:12;16030:19;;15689:366;;;:::o;16061:419::-;16227:4;16265:2;16254:9;16250:18;16242:26;;16314:9;16308:4;16304:20;16300:1;16289:9;16285:17;16278:47;16342:131;16468:4;16342:131;:::i;:::-;16334:139;;16061:419;;;:::o;16486:225::-;16626:34;16622:1;16614:6;16610:14;16603:58;16695:8;16690:2;16682:6;16678:15;16671:33;16486:225;:::o;16717:366::-;16859:3;16880:67;16944:2;16939:3;16880:67;:::i;:::-;16873:74;;16956:93;17045:3;16956:93;:::i;:::-;17074:2;17069:3;17065:12;17058:19;;16717:366;;;:::o;17089:419::-;17255:4;17293:2;17282:9;17278:18;17270:26;;17342:9;17336:4;17332:20;17328:1;17317:9;17313:17;17306:47;17370:131;17496:4;17370:131;:::i;:::-;17362:139;;17089:419;;;:::o;17514:305::-;17554:3;17573:20;17591:1;17573:20;:::i;:::-;17568:25;;17607:20;17625:1;17607:20;:::i;:::-;17602:25;;17761:1;17693:66;17689:74;17686:1;17683:81;17680:107;;;17767:18;;:::i;:::-;17680:107;17811:1;17808;17804:9;17797:16;;17514:305;;;;:::o;17825:226::-;17965:34;17961:1;17953:6;17949:14;17942:58;18034:9;18029:2;18021:6;18017:15;18010:34;17825:226;:::o;18057:366::-;18199:3;18220:67;18284:2;18279:3;18220:67;:::i;:::-;18213:74;;18296:93;18385:3;18296:93;:::i;:::-;18414:2;18409:3;18405:12;18398:19;;18057:366;;;:::o;18429:419::-;18595:4;18633:2;18622:9;18618:18;18610:26;;18682:9;18676:4;18672:20;18668:1;18657:9;18653:17;18646:47;18710:131;18836:4;18710:131;:::i;:::-;18702:139;;18429:419;;;:::o;18854:141::-;18903:4;18926:3;18918:11;;18949:3;18946:1;18939:14;18983:4;18980:1;18970:18;18962:26;;18854:141;;;:::o;19001:93::-;19038:6;19085:2;19080;19073:5;19069:14;19065:23;19055:33;;19001:93;;;:::o;19100:107::-;19144:8;19194:5;19188:4;19184:16;19163:37;;19100:107;;;;:::o;19213:393::-;19282:6;19332:1;19320:10;19316:18;19355:97;19385:66;19374:9;19355:97;:::i;:::-;19473:39;19503:8;19492:9;19473:39;:::i;:::-;19461:51;;19545:4;19541:9;19534:5;19530:21;19521:30;;19594:4;19584:8;19580:19;19573:5;19570:30;19560:40;;19289:317;;19213:393;;;;;:::o;19612:60::-;19640:3;19661:5;19654:12;;19612:60;;;:::o;19678:142::-;19728:9;19761:53;19779:34;19788:24;19806:5;19788:24;:::i;:::-;19779:34;:::i;:::-;19761:53;:::i;:::-;19748:66;;19678:142;;;:::o;19826:75::-;19869:3;19890:5;19883:12;;19826:75;;;:::o;19907:269::-;20017:39;20048:7;20017:39;:::i;:::-;20078:91;20127:41;20151:16;20127:41;:::i;:::-;20119:6;20112:4;20106:11;20078:91;:::i;:::-;20072:4;20065:105;19983:193;19907:269;;;:::o;20182:73::-;20227:3;20182:73;:::o;20261:189::-;20338:32;;:::i;:::-;20379:65;20437:6;20429;20423:4;20379:65;:::i;:::-;20314:136;20261:189;;:::o;20456:186::-;20516:120;20533:3;20526:5;20523:14;20516:120;;;20587:39;20624:1;20617:5;20587:39;:::i;:::-;20560:1;20553:5;20549:13;20540:22;;20516:120;;;20456:186;;:::o;20648:543::-;20749:2;20744:3;20741:11;20738:446;;;20783:38;20815:5;20783:38;:::i;:::-;20867:29;20885:10;20867:29;:::i;:::-;20857:8;20853:44;21050:2;21038:10;21035:18;21032:49;;;21071:8;21056:23;;21032:49;21094:80;21150:22;21168:3;21150:22;:::i;:::-;21140:8;21136:37;21123:11;21094:80;:::i;:::-;20753:431;;20738:446;20648:543;;;:::o;21197:117::-;21251:8;21301:5;21295:4;21291:16;21270:37;;21197:117;;;;:::o;21320:169::-;21364:6;21397:51;21445:1;21441:6;21433:5;21430:1;21426:13;21397:51;:::i;:::-;21393:56;21478:4;21472;21468:15;21458:25;;21371:118;21320:169;;;;:::o;21494:295::-;21570:4;21716:29;21741:3;21735:4;21716:29;:::i;:::-;21708:37;;21778:3;21775:1;21771:11;21765:4;21762:21;21754:29;;21494:295;;;;:::o;21794:1395::-;21911:37;21944:3;21911:37;:::i;:::-;22013:18;22005:6;22002:30;21999:56;;;22035:18;;:::i;:::-;21999:56;22079:38;22111:4;22105:11;22079:38;:::i;:::-;22164:67;22224:6;22216;22210:4;22164:67;:::i;:::-;22258:1;22282:4;22269:17;;22314:2;22306:6;22303:14;22331:1;22326:618;;;;22988:1;23005:6;23002:77;;;23054:9;23049:3;23045:19;23039:26;23030:35;;23002:77;23105:67;23165:6;23158:5;23105:67;:::i;:::-;23099:4;23092:81;22961:222;22296:887;;22326:618;22378:4;22374:9;22366:6;22362:22;22412:37;22444:4;22412:37;:::i;:::-;22471:1;22485:208;22499:7;22496:1;22493:14;22485:208;;;22578:9;22573:3;22569:19;22563:26;22555:6;22548:42;22629:1;22621:6;22617:14;22607:24;;22676:2;22665:9;22661:18;22648:31;;22522:4;22519:1;22515:12;22510:17;;22485:208;;;22721:6;22712:7;22709:19;22706:179;;;22779:9;22774:3;22770:19;22764:26;22822:48;22864:4;22856:6;22852:17;22841:9;22822:48;:::i;:::-;22814:6;22807:64;22729:156;22706:179;22931:1;22927;22919:6;22915:14;22911:22;22905:4;22898:36;22333:611;;;22296:887;;21886:1303;;;21794:1395;;:::o;23195:221::-;23335:34;23331:1;23323:6;23319:14;23312:58;23404:4;23399:2;23391:6;23387:15;23380:29;23195:221;:::o;23422:366::-;23564:3;23585:67;23649:2;23644:3;23585:67;:::i;:::-;23578:74;;23661:93;23750:3;23661:93;:::i;:::-;23779:2;23774:3;23770:12;23763:19;;23422:366;;;:::o;23794:419::-;23960:4;23998:2;23987:9;23983:18;23975:26;;24047:9;24041:4;24037:20;24033:1;24022:9;24018:17;24011:47;24075:131;24201:4;24075:131;:::i;:::-;24067:139;;23794:419;;;:::o;24219:234::-;24359:34;24355:1;24347:6;24343:14;24336:58;24428:17;24423:2;24415:6;24411:15;24404:42;24219:234;:::o;24459:366::-;24601:3;24622:67;24686:2;24681:3;24622:67;:::i;:::-;24615:74;;24698:93;24787:3;24698:93;:::i;:::-;24816:2;24811:3;24807:12;24800:19;;24459:366;;;:::o;24831:419::-;24997:4;25035:2;25024:9;25020:18;25012:26;;25084:9;25078:4;25074:20;25070:1;25059:9;25055:17;25048:47;25112:131;25238:4;25112:131;:::i;:::-;25104:139;;24831:419;;;:::o;25256:148::-;25358:11;25395:3;25380:18;;25256:148;;;;:::o;25410:377::-;25516:3;25544:39;25577:5;25544:39;:::i;:::-;25599:89;25681:6;25676:3;25599:89;:::i;:::-;25592:96;;25697:52;25742:6;25737:3;25730:4;25723:5;25719:16;25697:52;:::i;:::-;25774:6;25769:3;25765:16;25758:23;;25520:267;25410:377;;;;:::o;25793:155::-;25933:7;25929:1;25921:6;25917:14;25910:31;25793:155;:::o;25954:400::-;26114:3;26135:84;26217:1;26212:3;26135:84;:::i;:::-;26128:91;;26228:93;26317:3;26228:93;:::i;:::-;26346:1;26341:3;26337:11;26330:18;;25954:400;;;:::o;26360:701::-;26641:3;26663:95;26754:3;26745:6;26663:95;:::i;:::-;26656:102;;26775:95;26866:3;26857:6;26775:95;:::i;:::-;26768:102;;26887:148;27031:3;26887:148;:::i;:::-;26880:155;;27052:3;27045:10;;26360:701;;;;;:::o;27067:225::-;27207:34;27203:1;27195:6;27191:14;27184:58;27276:8;27271:2;27263:6;27259:15;27252:33;27067:225;:::o;27298:366::-;27440:3;27461:67;27525:2;27520:3;27461:67;:::i;:::-;27454:74;;27537:93;27626:3;27537:93;:::i;:::-;27655:2;27650:3;27646:12;27639:19;;27298:366;;;:::o;27670:419::-;27836:4;27874:2;27863:9;27859:18;27851:26;;27923:9;27917:4;27913:20;27909:1;27898:9;27894:17;27887:47;27951:131;28077:4;27951:131;:::i;:::-;27943:139;;27670:419;;;:::o;28095:182::-;28235:34;28231:1;28223:6;28219:14;28212:58;28095:182;:::o;28283:366::-;28425:3;28446:67;28510:2;28505:3;28446:67;:::i;:::-;28439:74;;28522:93;28611:3;28522:93;:::i;:::-;28640:2;28635:3;28631:12;28624:19;;28283:366;;;:::o;28655:419::-;28821:4;28859:2;28848:9;28844:18;28836:26;;28908:9;28902:4;28898:20;28894:1;28883:9;28879:17;28872:47;28936:131;29062:4;28936:131;:::i;:::-;28928:139;;28655:419;;;:::o;29080:147::-;29181:11;29218:3;29203:18;;29080:147;;;;:::o;29233:114::-;;:::o;29353:398::-;29512:3;29533:83;29614:1;29609:3;29533:83;:::i;:::-;29526:90;;29625:93;29714:3;29625:93;:::i;:::-;29743:1;29738:3;29734:11;29727:18;;29353:398;;;:::o;29757:379::-;29941:3;29963:147;30106:3;29963:147;:::i;:::-;29956:154;;30127:3;30120:10;;29757:379;;;:::o;30142:170::-;30282:22;30278:1;30270:6;30266:14;30259:46;30142:170;:::o;30318:366::-;30460:3;30481:67;30545:2;30540:3;30481:67;:::i;:::-;30474:74;;30557:93;30646:3;30557:93;:::i;:::-;30675:2;30670:3;30666:12;30659:19;;30318:366;;;:::o;30690:419::-;30856:4;30894:2;30883:9;30879:18;30871:26;;30943:9;30937:4;30933:20;30929:1;30918:9;30914:17;30907:47;30971:131;31097:4;30971:131;:::i;:::-;30963:139;;30690:419;;;:::o;31115:98::-;31166:6;31200:5;31194:12;31184:22;;31115:98;;;:::o;31219:168::-;31302:11;31336:6;31331:3;31324:19;31376:4;31371:3;31367:14;31352:29;;31219:168;;;;:::o;31393:360::-;31479:3;31507:38;31539:5;31507:38;:::i;:::-;31561:70;31624:6;31619:3;31561:70;:::i;:::-;31554:77;;31640:52;31685:6;31680:3;31673:4;31666:5;31662:16;31640:52;:::i;:::-;31717:29;31739:6;31717:29;:::i;:::-;31712:3;31708:39;31701:46;;31483:270;31393:360;;;;:::o;31759:640::-;31954:4;31992:3;31981:9;31977:19;31969:27;;32006:71;32074:1;32063:9;32059:17;32050:6;32006:71;:::i;:::-;32087:72;32155:2;32144:9;32140:18;32131:6;32087:72;:::i;:::-;32169;32237:2;32226:9;32222:18;32213:6;32169:72;:::i;:::-;32288:9;32282:4;32278:20;32273:2;32262:9;32258:18;32251:48;32316:76;32387:4;32378:6;32316:76;:::i;:::-;32308:84;;31759:640;;;;;;;:::o;32405:141::-;32461:5;32492:6;32486:13;32477:22;;32508:32;32534:5;32508:32;:::i;:::-;32405:141;;;;:::o;32552:349::-;32621:6;32670:2;32658:9;32649:7;32645:23;32641:32;32638:119;;;32676:79;;:::i;:::-;32638:119;32796:1;32821:63;32876:7;32867:6;32856:9;32852:22;32821:63;:::i;:::-;32811:73;;32767:127;32552:349;;;;:::o;32907:233::-;32946:3;32969:24;32987:5;32969:24;:::i;:::-;32960:33;;33015:66;33008:5;33005:77;33002:103;;33085:18;;:::i;:::-;33002:103;33132:1;33125:5;33121:13;33114:20;;32907:233;;;:::o;33146:180::-;33194:77;33191:1;33184:88;33291:4;33288:1;33281:15;33315:4;33312:1;33305:15;33332:185;33372:1;33389:20;33407:1;33389:20;:::i;:::-;33384:25;;33423:20;33441:1;33423:20;:::i;:::-;33418:25;;33462:1;33452:35;;33467:18;;:::i;:::-;33452:35;33509:1;33506;33502:9;33497:14;;33332:185;;;;:::o;33523:176::-;33555:1;33572:20;33590:1;33572:20;:::i;:::-;33567:25;;33606:20;33624:1;33606:20;:::i;:::-;33601:25;;33645:1;33635:35;;33650:18;;:::i;:::-;33635:35;33691:1;33688;33684:9;33679:14;;33523:176;;;;:::o;33705:180::-;33753:77;33750:1;33743:88;33850:4;33847:1;33840:15;33874:4;33871:1;33864:15

Swarm Source

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